@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

.mb_br {
  display: none;
}
@media (width < 769px) {
  .mb_br {
    display: block;
  }
}

@media (width < 431px) {
  .space_left {
    padding-left: 2rem;
  }
}

@media (width < 431px) {
  .pc_br {
    display: none;
  }
}

/*----------セクションタイトル----------*/
.section_title p {
  color: #00A6C0;
  font-size: 20px;
  font-weight: bold;
}
.section_title p img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.section_title h2 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.top_about_title p {
  text-align: center;
  padding-bottom: 30px;
}
.top_about_title h2 {
  width: 30%;
  margin: 0 auto;
}
@media (width < 769px) {
  .top_about_title h2 {
    width: 50%;
    padding: 5% 0 0 0;
  }
}
@media (width < 769px) {
  .top_about_title h2 {
    width: 70%;
    padding: 0 0 0 0;
  }
}

.top_service_title p {
  padding-bottom: 20px;
}
.top_service_title h2 {
  width: 30%;
}
@media (width < 1281px) {
  .top_service_title h2 {
    width: 27%;
  }
}
@media (width < 769px) {
  .top_service_title h2 {
    width: 35%;
  }
}
@media (width < 431px) {
  .top_service_title h2 {
    width: 50%;
  }
}

.top_company_title p {
  padding-bottom: 20px;
  text-align: center;
}
.top_company_title h2 {
  width: 13%;
  margin: 0 auto;
}
@media (width < 769px) {
  .top_company_title h2 {
    width: 20%;
  }
}
@media (width < 431px) {
  .top_company_title h2 {
    width: 30%;
  }
}

.top_news_title p {
  padding-bottom: 20px;
}
.top_news_title h2 {
  width: 15%;
}
@media (width < 769px) {
  .top_news_title h2 {
    width: 20%;
  }
}
@media (width < 431px) {
  .top_news_title h2 {
    width: 30%;
  }
}

.top_contact_title p {
  padding-bottom: 20px;
}
.top_contact_title h2 {
  width: 45%;
}
@media (width < 1281px) {
  .top_contact_title h2 {
    width: 40%;
  }
}

.top_app_title p {
  padding-bottom: 20px;
}
.top_app_title h2 {
  width: 45%;
}
@media (width < 1281px) {
  .top_app_title h2 {
    width: 40%;
  }
}
@media (width < 769px) {
  .top_app_title h2 {
    width: 50%;
  }
}

/*----------オレンジボタン----------*/
.o_btn {
  color: #fff;
  font-weight: bold;
  background-color: #FDA900;
  border-radius: 10px;
  display: block;
  text-align: center;
  width: 250px;
  height: 70px;
  line-height: 70px;
  transition: all 0.3s ease;
}
.o_btn:hover {
  opacity: 0.7;
}
@media (width < 431px) {
  .o_btn {
    width: 200px;
    height: 50px;
    line-height: 50px;
  }
}

/*----------ブルーボタン----------*/
.b_btn {
  color: #fff;
  font-weight: bold;
  background-color: #00A6C0;
  border-radius: 10px;
  display: block;
  text-align: center;
  width: 250px;
  height: 70px;
  line-height: 70px;
  transition: all 0.3s ease;
}
.b_btn:hover {
  opacity: 0.7;
}
@media (width < 431px) {
  .b_btn {
    width: 200px;
    height: 50px;
    line-height: 50px;
  }
}

/*----------フェード----------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
header a {
  color: #000;
  transition: all 0.3s ease;
}
header a:hover {
  opacity: 0.4;
}

/* front-page 以外は最初は白 */
body:not(.home) .header_pc_nav a {
  color: #fff;
}

/* front-page 以外 + .scrolled が付いたら黒に戻す */
body:not(.home) header.scrolled .header_pc_nav a {
  color: #000;
}

.slide_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: right;
  margin: 0 5% 0 0;
  padding: 3% 0;
}

.header_logo {
  display: inline-block;
  width: 181px;
  height: 46px;
}
.header_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.header_pc_container {
  width: 60%;
}
@media (width < 1101px) {
  .header_pc_container {
    display: none;
  }
}

.header_pc_nav {
  width: 100%;
}
.header_pc_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header_pc_nav .contact_btn {
  background-color: #000;
  width: 150px;
  height: 50px;
  transition: all 0.3s ease;
}
.header_pc_nav .contact_btn:hover {
  opacity: 0.4;
}
.header_pc_nav .contact_btn a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mb_header__container {
  display: none;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .mb_header__container {
    display: flex;
  }
}

/* サブメニューの初期状態は非表示 */
.header_pc_nav .submenu {
  display: none;
  position: absolute;
  background: #fff;
  width: 150px;
  margin: 0;
  list-style: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.header_pc_nav .submenu li {
  padding: 0;
}

.header_pc_nav .submenu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.header_pc_nav .submenu li a:hover {
  background: #f0f0f0;
}

/* 親liにホバーでサブメニューを表示 */
.header_pc_nav li.has-submenu {
  position: relative;
}

.header_pc_nav li.has-submenu:hover .submenu {
  display: block;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  position: fixed;
  right: 3%;
  top: 3%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 5%;
  cursor: pointer;
  z-index: 550;
  background-color: #00A6C0;
  border-radius: 50%;
  transition: 0.5s all;
}

@media (width < 769px) {
  .hamburger {
    padding: 5%;
  }
}
@media (width < 431px) {
  .hamburger {
    padding: 8%;
    top: 2%;
  }
}
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.5s;
}

@media (width < 1281px) {
  .hamburger span,
.hamburger span::after,
.hamburger span::before {
    width: 30px;
  }
}
.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.mb_nav {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #404040;
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}

@media (width < 431px) {
  .mb_nav {
    width: 100%;
    padding: 30% 0 100px 0;
  }
}
.mb_nav__list {
  display: block;
}

.mb_nav__list li {
  padding-left: 15%;
}

.mb_nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
@media (width < 431px) {
  .mb_nav__item a {
    font-size: 16px;
  }
}

.mb_nav__item + .mb_nav__item {
  margin-top: 5%;
}

.mb_nav__item a:hover {
  opacity: 0.7;
}

.mb_nav.open {
  right: 0;
}

.mb_header__container {
  display: none;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1101px) {
  .mb_header__container {
    display: flex;
  }
}

/* ===============================================
ファーストビュー
=============================================== */
.top_fv {
  position: relative;
}

.top_logo_box {
  position: absolute;
  left: 10px;
  top: -10px;
  width: 200px;
  height: 200px;
}
@media (width < 1281px) {
  .top_logo_box {
    width: 170px;
    height: 170px;
  }
}
@media (width < 769px) {
  .top_logo_box {
    top: -15px;
    left: -10px;
  }
}
@media (width < 431px) {
  .top_logo_box {
    width: 130px;
    height: 130px;
  }
}
.top_logo_box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.top_fv_wrapper {
  position: relative;
  margin: 0 0 0 5%;
  height: 95vh;
  overflow: hidden;
}
@media (width < 1537px) {
  .top_fv_wrapper {
    height: 90vh;
  }
}
@media (width < 1281px) {
  .top_fv_wrapper {
    height: 85vh;
  }
}
@media (width < 769px) {
  .top_fv_wrapper {
    height: 90vh;
  }
}
@media (width < 431px) {
  .top_fv_wrapper {
    margin: 0 0 0 3%;
    border-radius: 0 0 0 100px;
  }
}
.top_fv_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -200px;
  bottom: 0;
  background-image: url(img/fv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-bottom-left-radius: 170px;
}
@media (width < 769px) {
  .top_fv_wrapper::before {
    right: 0px;
  }
}
@media (width < 431px) {
  .top_fv_wrapper::before {
    left: -300px;
    bottom: -100px;
  }
}

.top_fv_inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.fv_text_box {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%); /* 幅の半分ずらして中央揃え */
}
@media (width < 431px) {
  .fv_text_box {
    left: 3%;
  }
}
.fv_text_box h1 {
  width: 889px;
  height: 139px;
}
@media (width < 1537px) {
  .fv_text_box h1 {
    width: 700px;
    height: 109px;
  }
}
@media (width < 1281px) {
  .fv_text_box h1 {
    width: 595px;
    height: 93px;
  }
}
@media (width < 769px) {
  .fv_text_box h1 {
    width: 400px;
    height: 62px;
  }
}
@media (width < 431px) {
  .fv_text_box h1 {
    width: 345px;
    height: 53px;
  }
}
.fv_text_box h1 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fv_text_box p {
  font-weight: bold;
  font-size: 20px;
  line-height: 4rem;
  padding-left: 2.5rem;
  letter-spacing: 0.3rem;
}
@media (width < 1281px) {
  .fv_text_box p {
    font-size: 18px;
    line-height: 3rem;
    padding-left: 2rem;
  }
}
@media (width < 1101px) {
  .fv_text_box p {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .fv_text_box p {
    font-size: 14px;
    padding-left: 1rem;
    line-height: 2.5rem;
  }
}
.fv_text_box p:first-of-type {
  padding-top: 2rem; /* お好みの値に調整 */
}

.animation_box {
  position: absolute;
  right: 0;
}

/* 車のアニメーション */
.animation_box {
  -webkit-animation: gata-goto 0.3s infinite;
          animation: gata-goto 0.3s infinite;
  position: absolute;
  right: 7%;
  bottom: 10%;
}
@media (width < 1537px) {
  .animation_box {
    right: 0%;
  }
}
@media (width < 1281px) {
  .animation_box {
    right: -7%;
  }
}
@media (width < 1101px) {
  .animation_box {
    right: -20%;
    bottom: 15%;
  }
}
@media (width < 769px) {
  .animation_box {
    right: -40%;
  }
}
@media (width < 431px) {
  .animation_box {
    right: -80%;
    bottom: 7%;
  }
}

.car {
  width: 70%;
}
@media (width < 1537px) {
  .car {
    width: 60%;
  }
}
@media (width < 1281px) {
  .car {
    width: 50%;
  }
}
@media (width < 1101px) {
  .car {
    width: 40%;
  }
}
@media (width < 769px) {
  .car {
    width: 30%;
  }
}

@-webkit-keyframes gata-goto {
  20% {
    transform: translateY(-2px);
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
  }
  25% {
    transform: translateY(0px);
  }
  55% {
    transform: translateY(-1px);
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
  }
  60% {
    transform: translateY(0px);
  }
}

@keyframes gata-goto {
  20% {
    transform: translateY(-2px);
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
  }
  25% {
    transform: translateY(0px);
  }
  55% {
    transform: translateY(-1px);
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
  }
  60% {
    transform: translateY(0px);
  }
}
/* サイドCTAボタン */
.cta_btn {
  position: fixed; /* ← relative ではなく fixed */
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column; /* 縦に並べる */
  z-index: 1000; /* 他要素の上に表示 */
  transition: opacity 0.6s ease; /* フェード用 */
}
@media (width < 1101px) {
  .cta_btn {
    display: none;
  }
}

/* フェードアウト用クラス */
.cta_btn.hidden {
  opacity: 0;
  pointer-events: none; /* クリックできなくする */
}

.cta_btn a {
  writing-mode: vertical-rl; /* 文字だけ縦書き */
  text-orientation: upright; /* 縦でも文字が寝ない */
  padding: 30px 20px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  transition: all 0.3s ease;
}
.cta_btn a:hover {
  opacity: 0.7;
}
@media (width < 1281px) {
  .cta_btn a {
    padding: 20px 15px;
    font-size: 18px;
  }
}

.cta_contact {
  color: #fff;
  background-color: #00A6C0;
  border-radius: 8px 8px 0 0; /* 上だけ丸める */
}

.cta_application {
  color: #000000;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px; /* 下だけ丸める */
}

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  left: 2%;
  bottom: 20%;
  writing-mode: vertical-rl;
  font-size: 20px;
  white-space: nowrap;
  color: #6FC9D7;
}
@media (width < 1441px) {
  .scroll {
    left: 1.5%;
  }
}
@media (width < 1281px) {
  .scroll {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .scroll {
    bottom: 15%;
  }
}

@media (width < 769px) {
  .scroll {
    display: none;
  }
}
/* 線のアニメーション部分 */
.scroll::before {
  -webkit-animation: scroll 2s infinite;
  animation: scroll 2s infinite;
  background-color: #6FC9D7;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 15%;
  width: 1px;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ===============================================
アバウト
=============================================== */
.top_about {
  padding: 10% 0 0 0;
}
@media (width < 1281px) {
  .top_about {
    padding: 8% 0 0 0;
  }
}

.top_about_inner {
  position: relative;
  padding-bottom: 5%;
}
@media (width < 1281px) {
  .top_about_inner {
    padding-bottom: 7%;
  }
}
@media (width < 769px) {
  .top_about_inner {
    padding-bottom: 15%;
  }
}
@media (width < 769px) {
  .top_about_inner {
    padding-bottom: 20%;
  }
}

.top_about_text {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 3rem;
  padding-top: 50px;
  letter-spacing: 0.2rem;
}
@media (width < 1281px) {
  .top_about_text {
    font-size: 18px;
  }
}
@media (width < 1101px) {
  .top_about_text {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .top_about_text {
    font-size: 14px;
    line-height: 2.5rem;
  }
}
@media (width < 431px) {
  .top_about_text {
    line-height: 2.3rem;
  }
}

.top_about_text p:last-child {
  padding-top: 30px;
}

.top_about_icon1, .top_about_icon2 {
  width: 10%;
}
@media (width < 769px) {
  .top_about_icon1, .top_about_icon2 {
    width: 15%;
  }
}
@media (width < 431px) {
  .top_about_icon1, .top_about_icon2 {
    width: 25%;
  }
}
.top_about_icon1 img, .top_about_icon2 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.top_about_icon1 {
  position: absolute;
  left: 15%;
  bottom: -10%;
}
@media (width < 431px) {
  .top_about_icon1 {
    left: 5%;
  }
}

.top_about_icon2 {
  position: absolute;
  right: 15%;
  bottom: -10%;
}
@media (width < 431px) {
  .top_about_icon2 {
    right: 5%;
  }
}

/* セクション切り替え */
.wrap {
  overflow: hidden;
}

.content01 {
  background: #C2E8EE;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

@media (width < 769px) {
  .content01 {
    height: 150px;
  }
}
@media (width < 431px) {
  .content01 {
    height: 120px;
  }
}
.content02 {
  background: #C2E8EE;
  border-bottom-left-radius: 1000px 200px;
  border-bottom-right-radius: 1000px 200px;
  height: 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

@media (width < 431px) {
  .content02 {
    height: 120px;
  }
}
/* ===============================================
事業内容
=============================================== */
.top_service {
  background-color: #C2E8EE;
  padding: 5% 0 6% 0;
}
@media (width < 1281px) {
  .top_service {
    padding: 3% 0 5% 0;
  }
}

.top_service_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .top_service_wrapper {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .top_service_wrapper {
    padding: 0 5%;
  }
}
@media (width < 769px) {
  .top_service_wrapper {
    padding: 0 3%;
  }
}

.top_service_text {
  padding: 3% 0 7% 0;
  line-height: 2rem;
}

.top_service_contents_text {
  padding: 1rem 0 0 1rem;
  width: 45%;
  line-height: 2.5rem;
}
@media (width < 1281px) {
  .top_service_contents_text {
    padding: 1rem 0 0 0.5rem;
  }
}
@media (width < 1101px) {
  .top_service_contents_text {
    width: 100%;
    padding: 0 0 5% 0;
  }
}

.top_service_contents_text.no-padding {
  padding: 1rem 0 0 0rem;
}

.top_service_text, .top_service_contents_text {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
@media (width < 1281px) {
  .top_service_text, .top_service_contents_text {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .top_service_text, .top_service_contents_text {
    font-size: 14px;
  }
}

.top_service_box {
  background-color: #fff;
  border-radius: 50px;
  padding: 5% 7% 6% 7%;
}
@media (width < 1281px) {
  .top_service_box {
    padding: 5%;
  }
}
@media (width < 431px) {
  .top_service_box {
    padding: 10% 5%;
  }
}

.top_service_box + .top_service_box {
  margin-top: 10%;
}

.top_service_box_title {
  font-size: 30px;
  border-bottom: 4px dashed #00A6C0;
  letter-spacing: 0.2rem;
  padding: 0 0 1rem 1rem;
}
@media (width < 1281px) {
  .top_service_box_title {
    padding: 0 0 1rem 0.5rem;
  }
}
@media (width < 769px) {
  .top_service_box_title {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}

.top_service_contents {
  display: flex;
  justify-content: space-between;
  padding: 5% 0 6% 0;
}
@media (width < 1101px) {
  .top_service_contents {
    display: block;
  }
}
@media (width < 769px) {
  .top_service_contents {
    padding: 0% 0 6% 0;
  }
}

.top_service_img {
  width: 45%;
}
@media (width < 1101px) {
  .top_service_img {
    width: 100%;
  }
}
.top_service_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.top_service_btn {
  margin: 0 auto;
}

/* ===============================================
会社概要
=============================================== */
.top_company {
  background-image: url(img/bg-blue.webp);
  background-repeat: repeat;
  overflow: hidden;
}

.top_conmpany_wrapper {
  padding: 5% 0 0 0;
}

.top_company_text {
  padding: 3% 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2rem;
}
@media (width < 1281px) {
  .top_company_text {
    font-size: 16px;
    line-height: 2.5rem;
  }
}
@media (width < 769px) {
  .top_company_text {
    font-size: 14px;
  }
}
@media (width < 431px) {
  .top_company_text {
    padding: 7% 0;
    line-height: 2rem;
  }
}

.company_btn {
  margin: 0 auto 7% auto;
}
@media (width < 431px) {
  .company_btn {
    margin: 0 auto 17% auto;
  }
}

/* sスライドショー */
.top_company_slide {
  display: flex;
  width: 100vw;
  height: 350px;
}
@media (width < 1281px) {
  .top_company_slide {
    height: 250px;
  }
}
@media (width < 431px) {
  .top_company_slide {
    height: 150px;
  }
}
.top_company_slide img {
  width: auto;
  height: 100%;
}
.top_company_slide img:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
          animation: slide1 60s -30s linear infinite;
}
.top_company_slide img:last-child {
  -webkit-animation: slide2 60s linear infinite;
          animation: slide2 60s linear infinite;
}

@-webkit-keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* ===============================================
お知らせ
=============================================== */
.top_news{
    padding: 7% 0;
    @include max(mb){
        padding: 15% 0;
    }
}
.top_news_wrapper{
    max-width: 1280px;
    margin: 0 auto;
    @include max(pc){
        max-width: 1100px;
    }
    @include max(ltb){
        padding: 0 5%;
    }
    @include max(tb){
        padding: 0 3%;
    }
}
.news_box{
    background-color: #C2E8EE;
    border-radius: 50px;
    padding: 10% 10% 5% 10%;
    margin-top: 5%;
}
.news_list{
    a{
        display: flex;
        align-items: center;
        border-bottom: 3px dashed #00A6C0;
        padding-bottom: 15px;
    }
    li + li{
        padding-top: 5%;
    }
    p + p{
        margin-left: 15px;
    }
}
@media (width < 431px) {
  .news_list a {
    display: block;
  }
	.news_category{
        display: inline-block;
        margin: 15px 0;
	}
}
.news_category{
    color: #fff;
    font-weight: bold;
    background-color: #00A6C0;
    border-radius: 5px;
    padding: 5px 10px;
    @include max(ltb){
        font-size: 14px;
    }
}
.news_date{
    padding-left: 1rem;
}
.news_date, .news_title{
    color: #000;
    font-size: 18px;
    font-weight: bold;
    @include max(ltb){
        font-size: 14px;
    }
}
.single_news_title, .archive_news_title{
	font-size: 25px;
	padding: 15px 0;
    @include max(ltb){
        font-size: 16px;
    }
    @include max(tb){
        font-size: 14px;
    }
}
.single_news_date, .archive_news_date{
    color: #000;
    font-size: 18px;
    font-weight: bold;
	padding-bottom: 15px;
}
@media (width < 768px) {
.single_news_date, .archive_news_date{
    font-size: 14px;
}
}
.news_listpage_btn{
    color: #00A6C0;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: right;
    margin-top: 5%;
    transition: all 0.3s ease;
    letter-spacing: 0.1rem;
    &:hover{
    opacity: 0.4;
    }
    @include max(mb){
        margin: 10% 0 7% 0;
    }
}

/* ===============================================
インフォメーション
=============================================== */
.information {
  background-color: #C2E8EE;
  padding-bottom: 12%;
}
@media (width < 431px) {
  .information {
    padding-bottom: 25%;
  }
}

.info_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media (width < 1281px) {
  .info_wrapper {
    max-width: 1100px;
    padding: 0 5%;
  }
}
@media (width < 1101px) {
  .info_wrapper {
    padding: 0 5%;
  }
}
@media (width < 769px) {
  .info_wrapper {
    padding: 0 3%;
  }
}

.info_inner {
  width: 100%;
}
@media (width < 769px) {
  .info_inner {
    padding-left: 20%;
  }
}
@media (width < 431px) {
  .info_inner {
    padding-left: 5%;
  }
}
.info_inner a {
  display: inline-block;
  transition: all 0.3s ease;
}
.info_inner a:hover {
  opacity: 0.5;
}

.info_contents_text {
  padding: 15px 0 0 0;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  color: #000;
}
@media (width < 431px) {
  .info_contents_text {
    font-size: 14px;
  }
}

.info_application {
  margin-top: 10%;
}

.top_contact_img, .top_app_img {
  width: 35%;
  position: absolute;
  transition: transform 0.6s ease, z-index 0s;
}

.top_contact_img {
  top: 0%;
  right: 10%;
  z-index: 1;
}
@media (width < 1281px) {
  .top_contact_img {
    right: 15%;
  }
}
@media (width < 769px) {
  .top_contact_img {
    display: none;
  }
}

.top_app_img {
  right: 0;
  top: 30%;
  z-index: 0;
}
@media (width < 1281px) {
  .top_app_img {
    right: 5%;
  }
}
@media (width < 769px) {
  .top_app_img {
    display: none;
  }
}

/* JSで付与するクラス */
.float-up {
  transform: translateY(-30px);
  z-index: 2; /* 常に一番前に */
}

/* ===============================================
フッター
=============================================== */
footer {
  padding: 5% 0 0 0;
  background-color: #FBFBFB;
}
@media (width < 431px) {
  footer {
    padding: 10% 0 0 0;
  }
}

.footer_wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5% 5% 5%;
}
@media (width < 1441px) {
  .footer_wrapper {
    max-width: 1280px;
  }
}
@media (width < 431px) {
  .footer_wrapper {
    padding: 0 5% 10% 5%;
  }
}

.footer_inner {
  width: 50%;
}
@media (width < 1101px) {
  .footer_inner {
    text-align: center;
    width: 100%;
  }
}
.footer_inner img {
  width: 25%;
}
@media (width < 1101px) {
  .footer_inner img {
    width: 10%;
  }
}
@media (width < 769px) {
  .footer_inner img {
    width: 15%;
  }
}
@media (width < 431px) {
  .footer_inner img {
    width: 25%;
  }
}

.footer_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
@media (width < 1281px) {
  .footer_nav {
    width: 70%;
  }
}
@media (width < 1101px) {
  .footer_nav {
    display: none;
  }
}
.footer_nav ul {
  display: grid;
  grid-template-columns: repeat(2, auto); /* 2列 */
  grid-template-rows: repeat(3, auto); /* 3行 */
  gap: 3rem 5rem; /* 行間・列間の余白を調整 */
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_nav li a {
  text-decoration: none;
  color: #000; /* 適宜調整 */
  font-size: 16px;
  transition: all 0.3s ease;
}
@media (width < 1281px) {
  .footer_nav li a {
    font-size: 14px;
  }
}
.footer_nav li a:hover {
  opacity: 0.4;
}

.footer_nav_btn .o_btn {
  margin-top: 10%;
}

.copyright {
  font-size: 12px;
  text-align: center;
  padding-bottom: 15px;
}

/* ===============================================
個別ページ共通
=============================================== */
.page_wrapper {
  position: relative;
  margin: 0 0 7% 5%;
  height: 70vh;
  overflow: hidden;
}
@media (width < 1281px) {
  .page_wrapper {
    height: 60vh;
  }
}
@media (width < 431px) {
  .page_wrapper {
    margin: 0 0 15% 3%;
    height: 50vh;
  }
}

.page_inner {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.page_fv_title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  color: #FBFBFB;
  text-align: center;
}
.page_fv_title p {
  font-size: 18px;
}
@media (width < 769px) {
  .page_fv_title p {
    font-size: 16px;
  }
}
.page_fv_title h1 {
  font-size: 50px;
  letter-spacing: 0.5rem;
  white-space: nowrap;
}
@media (width < 769px) {
  .page_fv_title h1 {
    font-size: 40px;
  }
}
@media (width < 431px) {
  .page_fv_title h1 {
    font-size: 30px;
  }
}
.page_fv_title h2 {
  font-size: 20px;
  padding-top: 0.5rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
}
@media (width < 769px) {
  .page_fv_title h2 {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .page_fv_title h2 {
    font-size: 14px;
  }
}

.page_child_title {
  text-align: center;
}
.page_child_title p {
  font-size: 18px;
  margin-bottom: 0.5rem;
}
@media (width < 431px) {
  .page_child_title p {
    font-size: 14px;
  }
}
.page_child_title h2 {
  font-size: 35px;
  letter-spacing: 0.3rem;
}
@media (width < 769px) {
  .page_child_title h2 {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .page_child_title h2 {
    font-size: 20px;
  }
}

.page_child_title_img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.page_child_subtitle p {
  font-size: 16px;
  margin-bottom: 0.5rem;
}
@media (width < 769px) {
  .page_child_subtitle p {
    font-size: 14px;
  }
}
@media (width < 431px) {
  .page_child_subtitle p {
    font-size: 12px;
  }
}
.page_child_subtitle h3 {
  font-size: 30px;
  letter-spacing: 0.1rem;
}
@media (width < 769px) {
  .page_child_subtitle h3 {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .page_child_subtitle h3 {
    font-size: 18px;
  }
}

.lifesupport_subtitle {
  margin-bottom: 3%;
}

/* ===============================================
個別ページ・事業内容（軽貨物・引っ越し）
=============================================== */
.page_ourservice_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/service-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-bottom-left-radius: 170px;
}

.page_ourservice {
  background-color: #EDEDED;
  padding: 5% 0 10% 0;
}
@media (width < 769px) {
  .page_ourservice {
    padding: 10% 0 15% 0;
  }
}

.ourservice_text {
  font-size: 18px;
  padding: 3% 0 5% 0;
  text-align: center;
  line-height: 2rem;
}
@media (width < 769px) {
  .ourservice_text {
    font-size: 16px;
    padding: 3% 0 10% 0;
  }
}
@media (width < 431px) {
  .ourservice_text {
    font-size: 14px;
    padding: 7% 0 12% 0;
  }
}

.ourservice_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (width < 1281px) {
  .ourservice_inner {
    padding: 0 5%;
  }
}
@media (width < 431px) {
  .ourservice_inner {
    padding: 0 3%;
  }
}

.ourservice_box {
  background-color: #fff;
  border-radius: 10px;
  padding: 6% 8%;
}

.ourservice_box + .ourservice_box {
  margin-top: 10%;
}

.ourservice_box_text {
  padding: 3% 0 5% 0;
  font-size: 18px;
  line-height: 3rem;
}
@media (width < 769px) {
  .ourservice_box_text {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .ourservice_box_text {
    font-size: 14px;
    line-height: 2rem;
    padding: 7% 0 10% 0;
  }
}

.ourservice_box_img {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 431px) {
  .ourservice_box_img {
    display: block;
  }
}
.ourservice_box_img img {
  width: 45%;
}
@media (width < 769px) {
  .ourservice_box_img img {
    width: 48%;
  }
}
@media (width < 431px) {
  .ourservice_box_img img {
    width: 100%;
  }
}
.ourservice_box_img img + img {
  padding-top: 5%;
}

.ourservice_bg {
  background-color: #EDEDED;
}

.lifesupport_bg {
  background-color: #E7F4F6;
}

/* ===============================================
個別ページ・多目的支援事業
=============================================== */
.page_lifesupport_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/life-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-bottom-left-radius: 170px;
}

.page_lifesupport {
  background-color: #E7F4F6;
  padding: 5% 0 10% 0;
}
@media (width < 769px) {
  .page_lifesupport {
    padding: 10% 0 15% 0;
  }
}

.lifesupport_menu {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (width < 431px) {
  .lifesupport_menu {
    padding: 0 3%;
  }
}

.lifesupport_menu_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10% 0;
}
.lifesupport_menu_list li {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 3% 0;
}
@media (width < 1101px) {
  .lifesupport_menu_list li {
    width: 200px;
  }
}
@media (width < 431px) {
  .lifesupport_menu_list li {
    width: 110px;
  }
}
.lifesupport_menu_list li img {
  width: 50%;
}
@media (width < 1101px) {
  .lifesupport_menu_list li img {
    width: 40%;
  }
}
.lifesupport_menu_list li p {
  color: #000;
  font-weight: bold;
  font-size: 20px;
  padding-top: 10px;
}
@media (width < 769px) {
  .lifesupport_menu_list li p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .lifesupport_menu_list li p {
    font-size: 14px;
  }
}
.lifesupport_menu_list li a {
  transition: all 0.3s ease;
}
.lifesupport_menu_list li a:hover {
  opacity: 0.7;
}

.lifesupport_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (width < 1281px) {
  .lifesupport_inner {
    padding: 0 5%;
  }
}
@media (width < 431px) {
  .lifesupport_inner {
    padding: 10% 3% 0 3%;
  }
}

.lifesupport_box {
  background-color: #fff;
  border-radius: 10px;
  padding: 6% 8%;
  margin-bottom: 7%;
}
.lifesupport_box img {
  width: 100%;
}

.lifesupport_box_text {
  padding: 3% 0 0 0;
  font-size: 18px;
  line-height: 3rem;
}
@media (width < 769px) {
  .lifesupport_box_text {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .lifesupport_box_text {
    font-size: 14px;
    line-height: 2rem;
    padding: 7% 0 10% 0;
  }
}

/* ===============================================
個別ページ・会社概要
=============================================== */
.page_company_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/company-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-bottom-left-radius: 170px;
}

.page_company_vision {
  background-color: #E7F4F6;
  padding: 5% 0 10% 0;
}
@media (width < 769px) {
  .page_company_vision {
    padding: 10% 0 15% 0;
  }
}

.company_vision_wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (width < 431px) {
  .company_vision_wrapper {
    padding: 0 3%;
  }
}

.company_vision_box {
  background-color: #fff;
  border-radius: 10px;
  padding: 5% 7%;
  width: 100%;
  margin: 10% 0;
}
@media (width < 769px) {
  .company_vision_box {
    margin: 10% 0;
  }
}
@media (width < 431px) {
  .company_vision_box {
    padding: 10% 3%;
  }
}
.company_vision_box h3 {
  font-size: 35px;
  letter-spacing: 0.2rem;
  padding-bottom: 30px;
  text-align: center;
}
@media (width < 1101px) {
  .company_vision_box h3 {
    font-size: 30px;
  }
}
@media (width < 769px) {
  .company_vision_box h3 {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .company_vision_box h3 {
    font-size: 25px;
  }
}
.company_vision_box p {
  font-size: 20px;
  line-height: 3rem;
}
@media (width < 1101px) {
  .company_vision_box p {
    font-size: 18px;
  }
}
@media (width < 769px) {
  .company_vision_box p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .company_vision_box p {
    font-size: 14px;
    padding-left: 5%;
  }
}

.font_color_b {
  color: #00A6C0;
}

.page_conpany_overview {
  background-color: #E7F4F6;
  padding-bottom: 10%;
}

.company_inner {
  max-width: 1440px;
  margin: 0 auto;
}

.company_title {
  text-align: center;
}
.company_title h2 {
  font-size: 60px;
  letter-spacing: 0.5rem;
  font-weight: bold;
}
@media (width < 769px) {
  .company_title h2 {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .company_title h2 {
    font-size: 35px;
  }
}
.company_title p {
  font-size: 20px;
  font-weight: bold;
}
@media (width < 769px) {
  .company_title p {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .company_title p {
    font-size: 16px;
  }
}

.company_overview_contents {
  padding: 7% 0 10% 0;
  background-color: #fff;
  border-radius: 10px;
  margin: 5% 5% 0 5%;
}
@media (width < 769px) {
  .company_overview_contents {
    margin: 5% 3% 0 3%;
  }
}
@media (width < 769px) {
  .company_overview_contents {
    margin: 5% 3% 10% 3%;
  }
}

@media (width < 431px) {
  .company_overview_contents {
    padding: 15% 3% 15% 3%;
  }
}
.company_overview_contents table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 80%;
  margin: 0 auto;
  font-size: 18px;
}

@media (width < 1281px) {
  .company_overview_contents table {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .company_overview_contents table {
    width: 100%;
  }
}
.company_overview_contents tr {
  border-bottom: solid 1px #D9D9D9;
}

.company_overview_contents td {
  padding: 2% 0;
}

@media (width < 431px) {
  .company_overview_contents td {
    font-size: 12px;
  }
}
.company_overview_contents .contents_more {
  padding-left: 5%;
}

.company_overview_contents .contents_title {
  padding-left: 15px;
  white-space: nowrap;
}

@media (width < 431px) {
  .company_overview_contents .contents_title {
    padding-left: 0px;
  }
}
.company_img_box {
  width: 100%;
}

.company_img_box img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===============================================
個別ページ・お問い合わせフォーム
=============================================== */
.page_contact_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/contact-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-bottom-left-radius: 170px;
}

.page_contact {
  padding-top: 7%;
  background-color: #E7F4F6;
}

.page_contact_inner {
  padding-bottom: 10%;
}

.contact_announce {
  padding: 5% 0;
  text-align: center;
  font-size: 18px;
  line-height: 2.5rem;
}
@media (width < 769px) {
  .contact_announce {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .contact_announce {
    padding: 10% 0 10% 0;
    font-size: 12px;
    line-height: 2rem;
  }
}

.contactform_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .contactform_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .contactform_inner {
    padding: 0 3%;
  }
}

.contactform_box {
  padding: 3% 5%;
  background-color: #fff;
  border-radius: 10px;
}

.contact_main_box {
  padding: 10% 5%;
}

@media (width < 431px) {
  .contact_main_box {
    padding: 10% 5% 15% 5%;
  }
}
.contact_main_box dl {
  padding: 3% 0;
  border-top: solid 1px #CDD4E2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (width < 769px) {
  .contact_main_box dl {
    display: block;
  }
}
.contact_main_box dt {
  width: 40%; /* ラベル部分の幅 */
  padding-left: 1rem;
}

@media (width < 769px) {
  .contact_main_box dt {
    width: 100%;
    padding: 0 0 3% 0;
    font-size: 14px;
  }
}
.contact_main_box dd {
  width: 60%; /* 入力フィールドの幅 */
  border: solid 1px #CDD4E2;
}

@media (width < 769px) {
  .contact_main_box dd {
    width: 100%;
  }
}
.contact_main_box .required {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 15px;
  background-color: #00A6C0;
  color: #fff;
  font-size: 12px;
  vertical-align: middle;
  border-radius: 10px;
}

.contact_main_box input {
  width: 100%;
  padding: 2% 1rem;
  background-color: #fff;
}

.contact_main_box textarea {
  width: 100%;
  padding: 2% 1rem 10% 1rem;
  resize: none;
  background-color: #fff;
}

.pparea_btnbox {
  padding: 5% 0 20px 0;
}

.pp_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 14px;
}
.pp_checkbox a {
  color: #7a7a7a;
}

.pp_checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}

/*コンタクトボタン・アニメーション*/
.contact_formbtnarea {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}

@media (width < 769px) {
  .contact_formbtnarea {
    font-size: 20px;
    width: 50%;
  }
}
.contact_formbtn {
  font-size: 20px;
  color: #000;
  background-color: #fff;
  border: solid 1px #CDD4E2;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  cursor: pointer;
  transition: all 0.4s;
}

@media (width < 431px) {
  .contact_formbtn {
    font-size: 16px;
    padding: 7% 0;
  }
}
.contact_formbtn:hover {
  border-radius: 15px;
}

.contct_anouncetxt {
  text-align: center;
  padding: 3% 0;
}

.first_type {
  font-size: 16px;
  padding-top: 1rem;
}
@media (width < 1101px) {
  .first_type {
    font-size: 12px;
    padding-top: 0.5rem;
  }
}

/* ===============================================
個別ページ・お申し込みフォーム
=============================================== */
.page_application_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/Application-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-bottom-left-radius: 170px;
}

/* ===============================================
個別ページ・お知らせ
=============================================== */
.news_navigation_inner {
  max-width: 1100px;
  margin: 0 auto;
}

.news_nav_list {
  display: flex;
  padding: 0 0 3% 3%;
}
.news_nav_list li + li {
  padding-left: 5%;
}
.news_nav_list a {
  color: #000;
}
.news_nav_list a:hover {
  color: #9C9C9C;
}

.news_single_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .news_single_inner {
    padding: 0 3%;
  }
}

.news_single_box {
  width: 100%;
  height: 100%;
  background-color: #F3F3F3;
  padding: 5% 7%;
}

.news_single_title {
  border-bottom: 1px solid #9C9C9C;
  margin-bottom: 10px;
}
.news_single_title h1 {
  font-size: 30px;
  padding: 15px 0;
}
@media (width < 769px) {
  .news_single_title h1 {
    font-size: 25px;
  }
}

.post-header {
  display: flex;
}

time {
  font-size: 20px;
  padding-right: 3%;
}

.cat-list {
  background-color: #404040;
  display: inline-block;
}
.cat-list li {
  color: #fff;
  padding: 5px 10px;
}

.page-nav {
  padding: 5% 0 10% 0;
}
.page-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-nav a {
  color: #000;
  display: inline-block;
  padding: 0 15px;
}
.page-nav a:hover {
  color: #9C9C9C;
}
.page-nav img {
  width: 50px;
  height: 50px;
}
.page-nav img:hover {
  opacity: 0.8;
}

/*----------お知らせ-アーカイブページ----------*/
.page_news{
    padding: 7% 0;
	background-color: #C2E8EE;
    @include max(mb){
        padding: 15% 0;
    }
}
.top_news_wrapper{
    max-width: 1280px;
    margin: 0 auto;
}
@media (width < 1280px) {
  .top_news_wrapper {
        max-width: 1100px;
  }
}
@media (width < 768px) {
  .top_news_wrapper {
		padding: 0 3%;
  }
}
.page_news_box{
    background-color: #fff;
    border-radius: 50px;
    padding: 7% 10% 5% 10%;
    margin-top: 5%;
}
@media (width < 768px) {
.page_news_box{
    padding: 20% 10% 20% 10%;
}
}
.page_news_list{
    a{
        display: flex;
        align-items: center;
        border-bottom: 3px dashed #00A6C0;
        padding-bottom: 15px;
    }
    li + li{
        padding-top: 5%;
    }
    p + p{
        margin-left: 15px;
    }
}
@media (width < 769px) {
  .page_news_list a {
		display: block;
  }
}
.news_category{
    color: #fff;
    font-weight: bold;
    background-color: #00A6C0;
    border-radius: 5px;
    padding: 5px 10px;
    @include max(ltb){
        font-size: 14px;
    }
    @include max(mb){
        display: inline-block;
        margin: 15px 0;
    }
}
.single_news_category{
    color: #fff;
    font-weight: bold;
    background-color: #00A6C0;
    border-radius: 5px;
    padding: 5px 10px;
	display: inline-block;
    @include max(ltb){
        font-size: 14px;
    }
    @include max(mb){
        display: inline-block;
        margin: 15px 0;
    }
}
.news_date{
    padding-left: 1rem;
}
.news_date, .news_title{
    color: #000;
    font-size: 18px;
    font-weight: bold;
    @include max(ltb){
        font-size: 14px;
    }
}
.news_listpage_btn{
    color: #00A6C0;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: right;
    margin-top: 5%;
    transition: all 0.3s ease;
    letter-spacing: 0.1rem;
    &:hover{
    opacity: 0.4;
    }
    @include max(mb){
        margin: 10% 0 7% 0;
    }
}


/* ===============================================
個別ページ・プライバシーポリシー
=============================================== */
.page_privacy_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/life-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-bottom-left-radius: 170px;
}

.page_privacy {
  background-color: #E7F4F6;
  padding-bottom: 10%;
}

.page_privacy_subtitle {
  padding: 10% 0 7% 0;
}

.page_privacy_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 5%;
}

@media (width < 1281px) {
  .page_privacy_inner {
    max-width: 1100px;
  }
}
.page_privacy_contents_box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 5% 2%;
}

@media (width < 769px) {
  .page_privacy_contents_box {
    margin: 0 5%;
  }
}

.contact_formbtnarea input{
	padding: 5% 1rem;
}
.wpcf7 select {
  color: #000;              /* 文字色を黒に */
  background-color: #fff;   /* 背景色 */
  -webkit-appearance: none; /* iOS Safariで矢印やスタイルを消す */
  -moz-appearance: none;    /* Firefox用 */
  appearance: none;          /* 標準 */
  padding: 10px;
  border-radius: 8px;
  width: 100%;
}


fieldset.hidden-fields-container {
  display: none !important;
}
/* 入力欄ごとのエラーメッセージ（必須チェックなど） */
.wpcf7-not-valid-tip {
  color: red !important;
  font-size: 14px;  /* 必要なら調整 */
}

/* フォーム全体のエラー（送信失敗時など） */
.wpcf7-response-output {
  color: red !important;
  border-color: red !important; /* デフォは灰色枠 */
}
.wpcf7 .screen-reader-response {
  position: absolute !important;
  left: -9999px !important;
}
/*# sourceMappingURL=style.css.map */