@charset "utf-8";
/* CSS Document */


.bg-img {
  position: relative;
  z-index: 1;
}

.heading__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #435ba1;
  margin-bottom: 12px;
}

.heading__title {
  font-size: 37px;
  margin-bottom: 20px;
}
.heading__title .underlined-text {
  border-bottom: 4px solid #21cdc0;
}

.heading__desc {
  font-size: 16px;
  margin-bottom: 0;
}

.heading-layout2 .heading__title {
  font-size: 40px;
}

.heading-layout3 .heading__title {
  font-size: 50px;
}

.heading-light .heading__subtitle {
  color: #f9f9f9;
}
.heading-light .heading__subtitle:after {
  background-color: #ffffff;
}
.heading-light .heading__title,
.heading-light .heading__desc {
  color: #ffffff;
}

.text-block__title {
  font-size: 25px;
  margin-bottom: 17px;
}

.text-block__desc {
  font-size: 16px;
  line-height: 26px;
}

.text__link {
  font-size: 14px;
  font-weight: 700;
}
.text__link a:not(.btn) {
  padding-bottom: 2px;
  border-bottom: 2px solid #21cdc0;
}
.text__link a:not(.btn).color-secondary {
  border-bottom-color: #213360;
}
.text__link:hover a:not(.btn) {
  color: #213360;
  border-bottom-color: #213360;
}
.text__link:hover a:not(.btn).color-secondary {
  color: #21cdc0;
  border-bottom-color: #21cdc0;
}

@media (max-width: 992px) {
  .heading__title {
    font-size: 30px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .heading__title {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .heading__subtitle,
  .text__link {
    font-size: 13px;
  }
  .heading__desc {
    font-size: 13px;
  }
  .heading-layout2 .heading__title {
    font-size: 24px;
  }
  .heading-layout3 .heading__title {
    font-size: 26px;
  }
  .text-block__desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}


/*-----------------------
    Services 
--------------------------*/
.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.05);
  transition: all 0.4s ease;
}
.service-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  background-color: #435ba1;
  transition: all 0.4s linear;
}
.service-item .service__content {
  padding: 40px;
}
.service-item .service__icon {
  color: #213360;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 25px;
  transition: all 0.3s linear;
}
.service-item .service__icon i:nth-of-type(2) {
  position: absolute;
  right: -60px;
  font-size: 140px;
  opacity: 0.1;
  top: 100px;
}
.service-item .service__title {
  font-size: 24px;
  margin-bottom: 31px;
  transition: all 0.3s linear;
}
.service-item .service__desc {
  font-size: 15px;
  margin-bottom: 32px;
  transition: all 0.3s linear;
}
.service-item .list-items {
  margin-bottom: 30px;
}
.service-item .list-items li {
  margin-bottom: 15px;
}
.service-item .btn:not(.btn__link) {
  height: 50px;
}
.service-item .btn:hover {
  border-color: #21cdc0;
  background-color: #21cdc0;
}
.service-item:hover {
  z-index: 5;
  box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.12);
}
.service-item:hover:before {
  background-color: #21cdc0;
}

/* 各カード右上の電話アイコンボタン */
.service-item .service__call {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #21cdc0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  z-index: 2;
}
.service-item .service__call i { font-size: 18px; line-height: 1; }
.service-item .service__call:focus { outline: 2px solid rgba(33, 205, 192, .5); outline-offset: 2px; }
.service-item .service__call:hover { background: #1bb3a8; }

/* 注意ボックス */
.notice-box {
  position: relative;
  margin: 40px 0 10px;
  padding: 24px 24px 20px;
  border: 1px solid #e5e7eb;
  border-left: 6px solid #8A1538; /* wine red accent */
  background: linear-gradient(135deg,#ffffff,#f9fafb);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.notice-box__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8A1538;
}
.notice-box__title i { font-size: 22px; line-height: 1; }
.notice-box__list { margin: 0; padding: 0; list-style: none; }
.notice-box__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.notice-box__list li:before {
  content: "\e95d"; /* icon-alert */
  font-family: icomoon;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: #8A1538;
}
.notice-box__list li:last-child { margin-bottom: 0; }
@media (max-width: 767px){
  .notice-box { padding: 18px 18px 16px; margin: 32px 0 8px; }
  .notice-box__title { font-size: 16px; }
  .notice-box__list li { font-size: 13px; }
}

.services-layout1 .service-item {
  padding: 40px;
}
.services-layout1 .service-item .service__content {
  padding: 0;
}

.services-layout2 .service-item:before {
  background-color: #213360 !important;
  transform: scaleX(0);
}
.services-layout2 .service-item .service__title {
  font-size: 23px;
  margin-bottom: 16px;
}
.services-layout2 .service-item .service__img {
  overflow: hidden;
  border-radius: 8px;
}
.services-layout2 .service-item .service__img img {
  transition: all 0.9s ease;
}
.services-layout2 .service-item .btn:hover {
  border-color: #213360;
  background-color: #213360;
}
.services-layout2 .service-item:hover:before {
  transform: scaleX(1);
}
.services-layout2 .service-item:hover .service__img img {
  transform: scale(1.1) rotate(1deg);
}

.services-carousel.services-layout1 .service-item {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.05);
}
.services-carousel.services-layout1 .service-item:hover {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}
.services-carousel.services-layout1 .slick-dots {
  text-align: center;
}
.services-carousel .slick-dots {
  margin-top: 40px;
  text-align: left;
}
.services-carousel .slick-list {
  margin: -15px;
  overflow: visible;
}
.services-carousel .slick-slide {
  margin: 15px;
  transition: all 0.3s ease;
}
.services-carousel .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}
.services-carousel .slick-slide:not(.slick-active) {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 1500px) {
  .services-carousel .carousel-container {
    margin-right: -250px;
  }
}
@media (min-width: 1200px) {
  .services-carousel .carousel-container {
    margin-right: -170px;
  }
  .services-carousel .slick-arrow {
    top: -90px;
  }
  .services-carousel .slick-arrow.slick-prev {
    left: 80%;
  }
  .services-carousel .slick-arrow.slick-next {
    left: 85%;
  }
  .services-carousel .service-item .service__desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
}
/* Mobile Phones & tablets and Small Screens */
@media (max-width: 992px) {
  .service-item {
    padding: 20px;
  }
  .service-item:before {
    left: 20px;
    right: 20px;
  }
  .service-item .service__icon {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .service-item .service__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .service-item .service__desc {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .services-layout1 .service-item {
    padding: 20px;
  }
  .services-layout2 .service-item {
    margin-bottom: 30px;
  }
  .services-layout2 .service-item .service__content {
    padding: 15px 0 0 0;
  }
  .services-layout3 .service-item {
    padding: 20px;
  }
}



/*-------------------
    lists
-------------------*/
.contact-list li {
  font-size: 14px;
  margin-bottom: 5px;
}
.contact-list li:last-child {
  margin-bottom: 0;
}
.contact-list li a {
  color: #848e9f;
}

.list-items li {
  position: relative;
  padding-left: 27px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 9px;
}
.list-items li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 9px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  color: #21cdc0;
}
.list-items li:last-of-type {
  margin-bottom: 0;
}

/* 予約ページ リスト（layout1）は icomoon のアラートアイコンを使用 */
.list-items.list-items-layout1 li:before {
  content: "\e95d"; /* .icon-alert と同じコード */
  font-family: icomoon !important;
  font-weight: 400; /* icomoon は太字不要 */
  font-size: 14px;  /* 視認性を少し高める */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.list-items-layout2 li {
  margin-bottom: 14px;
  padding-left: 33px;
  color: #848e9f;
}
.list-items-layout2 li:before {
  color: #ffffff;
  border-color: #21cdc0;
  background-color: #21cdc0;
}

.list-items-layout4 li {
  margin-bottom: 14px;
  padding-left: 33px;
  color: #848e9f;
}
.list-items-layout4 li:before {
  color: #ffffff;
  border-color: #435ba1;
  background-color: #435ba1;
}

.list-items-layout3 li:before {
  color: #213360;
}

.list-items-light li {
  color: #ffffff;
}
.list-items-light li:before {
  color: #ffffff;
}
.list-items-light.list-items-layout2 li:before {
  color: #ffffff;
  border-color: #21cdc0;
  background-color: #21cdc0;
}

.list-horizontal {
  display: flex;
  flex-wrap: wrap;
}
.list-horizontal li {
  flex: 0 0 50%;
  max-width: 50%;
}

.details-list > li {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 13px;
}

/* -------------------
   Numbered list (steps)
   使用例: <ul class="list-items list-items-layout1 list-numbered list-unstyled"> ... </ul>
-------------------- */
.list-items.list-items-layout1.list-numbered { counter-reset: step; }
.list-items.list-items-layout1.list-numbered li { padding-left: 34px; }
.list-items.list-items-layout1.list-numbered li:before {
  content: counter(step);
  counter-increment: step;
  font-family: inherit !important;
  font-weight: 700;
  font-size: 12px;
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: #8A1538;            /* wine red number */
  border: 2px solid #8A1538; /* wine red circle */
  background-color: #ffffff;
}

/* -------------------
   Modal Lite (pure CSS)
   トリガ: <a href="#flowDialog">…</a>
   本体:  <div id="flowDialog" class="modal-lite">…</div>
-------------------- */
.modal-lite {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.modal-lite:target {
  display: flex;
  align-items: center;     /* 縦中央 */
  justify-content: center; /* 横中央 */
  padding: 16px;           /* 画面端の余白 */
}
.modal-lite__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.modal-lite__content {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;  /* 画面高に収まる */
  overflow: auto;     /* はみ出しスクロール */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  padding: 16px 16px 20px;
}
.modal-lite__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.modal-lite__title { font-size: 18px; margin: 0; }
.modal-lite__close {
  display: inline-block;
  width: 32px; height: 32px; line-height: 30px; text-align: center;
  border-radius: 6px;
  color: #333; text-decoration: none;
}
.modal-lite__close:hover { background: #f3f4f6; }
.modal-lite__body { font-size: 14px; }
.details-list > li:nth-of-type(odd) {
  background-color: #def8f6;
}
.details-list > li .details__title {
  font-size: 14px;
  flex: 0 0 40%;
  max-width: 40%;
  margin-bottom: 0;
}
.details-list > li .details__content {
  flex: 0 0 60%;
  max-width: 60%;
}
.details-list .list-items-layout2 li {
  font-weight: 400;
}

.borderd-box {
  padding: 27px;
  border-radius: 4px;
  border: 1px solid #e7ebef;
}

@media (max-width: 992px) {
  .list-horizontal li {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .details-list > li {
    padding: 10px;
    flex-direction: column;
  }
  .details-list > li .details__title,
  .details-list > li .details__content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 767px) {
  .list-items li {
    font-size: 14px;
  }
  .list-horizontal li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/*--------------------
   Buttons
---------------------*/
.btn {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  min-width: 170px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.btn:focus, .btn.active, .btn:active {
  box-shadow: none;
  outline: none;
}
.btn span,
.btn i {
  margin: 0 3px;
}
.btn .icon-filled {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  transition: all 0.3s linear;
}

.btn:not(.btn__link):not(.btn__outlined):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #213360;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
}
.btn:not(.btn__link):not(.btn__outlined):hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}

.btn__primary {
  color: #ffffff;
  background-color: #21cdc0;
}
.btn__primary .icon-outlined {
  color: #213360;
  border: 1px solid #21cdc0;
  color: #21cdc0;
  background-color: #ffffff;
}
.btn__primary .icon-filled {
  color: #ffffff;
  background-color: #21cdc0;
}
.btn__primary:active, .btn__primary:focus {
  color: #ffffff;
  border-color: #21cdc0;
  background-color: #21cdc0;
}
.btn__primary:hover {
  color: #ffffff;
}
.btn__primary:hover .icon-outlined {
  color: #213360;
  background-color: #ffffff;
}
.btn__primary:hover .icon-filled {
  color: #ffffff;
  background-color: #213360;
}
.btn__primary.btn__outlined {
  background-color: transparent;
  border: 2px solid #21cdc0;
  color: #21cdc0;
}
.btn__primary.btn__outlined .icon-arrow-right,
.btn__primary.btn__outlined .icon-arrow-left {
  color: #ffffff;
  background-color: #21cdc0;
}
.btn__primary.btn__outlined:hover {
  color: #ffffff;
  background-color: #21cdc0;
}
.btn__primary.btn__outlined:hover .icon-arrow-right,
.btn__primary.btn__outlined:hover .icon-arrow-left {
  color: #21cdc0;
  background-color: #ffffff;
}
.btn__primary-style2:before {
  background-color: #ffffff !important;
}
.btn__primary-style2:hover {
  color: #213360;
}
.btn__primary-style2:hover .icon-arrow-right,
.btn__primary-style2:hover .icon-arrow-left {
  color: #ffffff;
  background-color: #213360;
}

.btn__secondary {
  color: #ffffff;
  background-color: #213360;
}
.btn__secondary:before {
  background-color: #21cdc0 !important;
}
.btn__secondary .icon-filled {
  color: #ffffff;
  background-color: #213360;
}
.btn__secondary:hover {
  color: #ffffff;
}
.btn__secondary:hover .icon-filled {
  background-color: #21cdc0;
}
.btn__secondary:active, .btn__secondary:focus {
  color: #ffffff;
  border-color: #222222;
  background-color: #222222;
}
.btn__secondary.btn__outlined {
  color: #213360;
  background-color: transparent;
  border: 2px solid #213360;
}
.btn__secondary.btn__outlined:hover {
  color: #ffffff;
  background-color: #213360;
}
.btn__secondary-style2:before {
  background-color: #ffffff !important;
}
.btn__secondary-style2:hover {
  color: #213360;
}

.btn__white {
  background-color: #ffffff;
  color: #213360;
}
.btn__white:active, .btn__white:focus {
  color: #213360;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn__white:hover {
  color: #ffffff;
}
.btn__white.btn__outlined {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
}
.btn__white.btn__outlined:hover {
  color: #21cdc0;
  background-color: #ffffff;
}
.btn__white-style2 {
  color: #21cdc0;
}
.btn__white-style2:before {
  background-color: #21cdc0 !important;
}

.btn__outlined {
  background-color: transparent;
}

.btn__link {
  background-color: transparent;
  border-color: transparent;
  min-width: 0;
  line-height: 1;
  height: auto;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
}
.btn__link:focus, .btn__link:active {
  background-color: transparent;
}
.btn__link.btn__icon {
  height: auto;
  line-height: 1;
  padding: 0;
}
.btn__link.btn__primary {
  color: #21cdc0;
}
.btn__link.btn__primary-style2:hover {
  color: #ffffff !important;
}
.btn__link.btn__primary.btn__underlined {
  padding-bottom: 3px;
  border-bottom: 2px solid #21cdc0;
}
.btn__link.btn__primary:hover {
  color: #222222;
}
.btn__link.btn__primary:hover.btn__underlined {
  border-color: #213360;
}
.btn__link.btn__secondary {
  color: #213360;
}
.btn__link.btn__secondary:hover {
  color: #21cdc0;
}
.btn__link.btn__white {
  color: #ffffff;
}
.btn__link.btn__white.btn__underlined {
  padding-bottom: 3px;
  border-bottom: 2px solid #ffffff;
}
.btn__link.btn__white:hover {
  color: #213360;
}
.btn__link.btn__white:hover.btn__underlined {
  border-color: #213360;
}

.btn__block {
  width: 100%;
}

.btn__icon {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.btn__icon i,
.btn__icon span {
  margin: 0 5px;
}

.btn__social {
  height: 54px;
  line-height: 54px;
  width: 54px;
  min-width: 0 !important;
  font-weight: 400;
  color: #ffffff;
  border-radius: 3px;
}

.btn__facebook {
  background-color: #4267b2;
}

.btn__twitter {
  background-color: #1da0f0;
}

.btn__google-plus {
  background-color: #ea4335;
}

.btn__lg {
  min-width: 200px;
}

.btn__xl {
  height: 70px;
  line-height: 70px;
  min-width: 220px;
}

.btn__xhight {
  height: 70px;
  line-height: 68px;
}

.btn__rounded {
  border-radius: 50px;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .btn:not(.btn__link) {
    font-size: 13px;
    min-width: 120px;
    height: 50px;
  }
  .btn__icon {
    padding: 0 10px;
  }
  .btn__xl {
    height: 50px;
    min-width: 150px;
  }
}




.icon-head:before {
  content: "\e93d";
}


.faq-item {
  border-bottom: 1px dashed #e3d5c3;
  padding-bottom: 12px;
}

.faq-q {
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #444;
}
.first3 {
  color: #ea4335; /* 好きな色 */
  font-weight: 700;
}

.faq-a {
  color: #666;
  margin: 0;
  line-height: 1.7;
}
