/*--------------------

--------------------*/
* {
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  margin: 0;
  scroll-behavior: smooth;
}

a {
  color: var(--color-black);
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*--------------------
root
--------------------*/
:root {
  --color-main: #453C30;
  --color-txt: #393939;
  --color-gold: #A68D71;
  --color-black: #201A13;
  --color-white: #ffffff;
  --color-back: #F8F8F8;
  --color-gold-grad: linear-gradient(83deg, #453C30 0%, #BBAB95 64.9%, #453C30 100%);
}

/*--------------------
ttl
--------------------*/
.ttl {
  padding-top: 100px;
  text-align: center;

  @media (max-width: 768px) {
    padding-top: 50px;
  }

  .en {
    font-family: "Marcellus";
    font-size: clamp(35px, 28.932px + 1.618vw, 60px);
    background: linear-gradient(83deg, #453C30 45%, #BBAB95 50%, #453C30 55%);
    background-clip: text;
    color: transparent;
  }

  .ja {
    font-size: clamp(16px, 15.029px + 0.259vw, 20px);
    color: var(--color-black);
    padding-bottom: 60px;

    @media (max-width: 768px) {
      padding-bottom: 60px;
    }
  }
}

/*--------------------
header
--------------------*/
header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: rgba(217, 217, 217, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  @media (max-width: 768px) {
    position: relative;
  }

  .hamburger {
    display: none;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 30px;

    .g-nav__logo img {
      height: 51px;
    }

    .g-nav {
      display: flex;
      align-items: center;
      font-size: clamp(14px, 13.515px + 0.129vw, 16px);

      .g-nav_list {
        display: flex;
        gap: 30px;

        li {
          .g-nav_txt {
            transition: all 0.3s ease;

            &:hover {
              opacity: 0.5;
            }
          }
        }
      }

      .common__btn-contact {
        margin-left: 30px;

        a {
          display: inline-block;
          background-color: var(--color-black);
          color: var(--color-white);
          padding: 10px 32px;
          border-radius: 50px;
          position: relative;
          border: 2px solid var(--color-black);
          transition: all 0.3s ease;

          &::before {
            content: "";
            position: absolute;
            inset: 2px;
            border: 1px solid var(--color-white);
            border-radius: 50px;
            pointer-events: none;

          }

          &:hover {
            opacity: .5;
          }
        }
      }
    }
  }

  @media (max-width: 768px) {
    position: fixed;
    background: rgba(217, 217, 217, 0.2);
    height: 70px;
    display: block;

    h1 {
      margin: 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      height: 70px;

      .g-nav__logo img {
        height: 40px;
      }

      .g-nav {
        display: none;
      }
    }

    .hamburger {
      position: absolute;
      right: 20px;
      display: flex;
      overflow: hidden;
      flex-direction: column;
      justify-content: space-between;
      width: 40px;
      height: 40px;
      border: none;
      background: linear-gradient(180deg, #CDBE9C 0%, #A68D71 100%);
      border-radius: 20px;
      padding: 13px 9px;
      z-index: 2000;

      span {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--color-white);
        transition: 0.3s;
      }

      &.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
      }

      &.active span:nth-child(2) {
        opacity: 0;
      }

      &.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
      }
    }
  }
}

.sp-g-nav {
  display: none;
}

@media (max-width: 768px) {
  .sp-g-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: right 0.4s ease;
    z-index: 3000;
    overflow-y: auto;
    padding: 20px;

    .sp-g-nav__inner {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;

      .sp-g-nav__close {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: linear-gradient(135deg, #c4b08b, #a58a5a);
        z-index: 3000;

        &::before,
        &::after {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          width: 18px;
          height: 1px;
          background: var(--color-white);
        }

        &::before {
          transform: translate(-50%, -50%) rotate(45deg);
        }

        &::after {
          transform: translate(-50%, -50%) rotate(-45deg);
        }
      }

      .sp-menu__title {
        text-align: center;
        margin-bottom: 40px;

        img {
          height: 44px;
        }
      }
    }

    .sp-g-nav__box {
      width: 100%;

      .sp-g-nav_list {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;

        li {
          width: calc((100% - 15px) / 2);
          text-align: center;

          a {
            display: inline-block;
            width: 100%;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--color-txt);
            color: var(--color-txt);
            text-decoration: none;
            display: flex;
            align-items: center;

            p {
              font-size: clamp(14px, 13.515px + 0.129vw, 16px);
              text-align: left;
              position: relative;
              width: 100%;
            }

            .arrow {
              display: inline-block;
              width: 24px;
              height: 1px;
              background-color: currentColor;
              position: relative;
              background: var(--color-black);

              &::after {
                content: "";
                position: absolute;
                right: 1px;
                top: -4px;
                width: 8px;
                height: 8px;
                border-top: 1px solid var(--color-black);
                transform: rotate(45deg);
              }
            }
          }
        }
      }

      .access {
        .info {
          margin-bottom: 30px;

          .sub__ttl {
            font-size: clamp(16px, 15.515px + 0.129vw, 18px);
            margin-bottom: 10px;
            position: relative;

            &::after {
              position: absolute;
              content: "";
              bottom: -5px;
              left: 0;
              width: 100%;
              height: 1px;
              background-color: var(--color-txt);
            }
          }

          .access__address {
            font-size: clamp(14px, 13.757px + 0.065vw, 15px);
            margin-top: 5px;
          }

          .access__address-list {
            li {
              margin-top: 5px;
              font-size: clamp(14px, 13.757px + 0.065vw, 15px);
              position: relative;
              padding-left: 20px;

              &::after {
                position: absolute;
                content: "";
                width: 6px;
                height: 6px;
                left: 4px;
                bottom: 8px;
                transform: rotate(45deg);
                flex-shrink: 0;
                background-color: var(--color-gold);
                aspect-ratio: 1/1;
              }
            }
          }
        }

        .time {
          margin-bottom: 30px;

          .sub__ttl {
            font-size: clamp(16px, 15.515px + 0.129vw, 18px);
            margin-bottom: 10px;
            position: relative;

            &::after {
              position: absolute;
              content: "";
              bottom: -5px;
              left: 0;
              width: 100%;
              height: 1px;
              background-color: var(--color-txt);
            }
          }

          .access__time {
            font-size: clamp(14px, 13.757px + 0.065vw, 15px);
            margin-top: 5px;
          }
        }

        .sns-list {
          display: flex;
          flex-wrap: wrap;
          gap: 10px 30px;
          margin-bottom: 80px;

          .sns {
            width: calc((100% - 30px) / 2);
            display: flex;
            align-items: center;

            img {
              width: 25px;
            }

            p {
              margin-left: 10px;
              font-size: clamp(14px, 13.757px + 0.065vw, 15px);
              color: var(--color-txt);
            }
          }

          .mada {
            &:hover {
              opacity: 1;
            }
          }
        }
      }
    }

    &.active {
      right: 0;

      .sp-g-nav__close {
        display: block;
      }
    }
  }
}

.home {
  background-color: #F8F8F8;
  padding-bottom: env(safe-area-inset-bottom);
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  margin: 0;
  scroll-behavior: smooth;

  main {
    position: relative;

    section {
      padding: 0 0 120px 0;

      @media (max-width: 768px) {
        padding: 0 0 70px 0;
      }
    }

    section+section {
      position: relative;

      &::before {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 1px;
        background: var(--color-gold);
        z-index: 10;
      }
    }

    .fv+.menu::before {
      content: none;
    }

    .fv {
      position: relative;
      width: 100%;
      height: 100svh;

      @media (max-width: 768px) {
        position: static;
        padding: 0 0 30px 0;
        height: 100%;
        background: var(--color-back);
      }

      img {
        position: relative;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        z-index: 1;

        @media (max-width: 768px) {
          position: static;
          height: 260px;
          margin-top: 70px;
        }
      }

      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 445px;
        background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.00) 20%,
            rgba(250, 250, 250, 0.90) 70%,
            #F8F8F8 90%);
        pointer-events: none;
        z-index: 2;

        @media (max-width: 768px) {
          content: none;
        }
      }

      .fv--copy {
        position: absolute;
        margin: 0 0 70px 70px;
        bottom: 0;
        z-index: 10;

        @media (max-width: 768px) {
          position: static;
          margin: 0 0 20px 20px;
        }

        .en {
          font-family: "Marcellus";
          font-size: clamp(35px, 31.359px + 0.971vw, 50px);
          background: var(--color-gold-grad);
          background-clip: text;
          color: transparent;
          line-height: 1.2;

          @media (max-width: 768px) {
            margin-top: 15px;
          }
        }

        .ja {
          font-size: clamp(16px, 14.544px + 0.388vw, 22px);
          margin-top: 20px;
        }
      }
    }

    .menu {
      background-color: var(--color-back);
      padding-left: clamp(20px, 7.864px + 3.236vw, 70px);
      padding-right: clamp(20px, 7.864px + 3.236vw, 70px);

      .menu--list+.menu--list {
        margin-top: 120px;

        @media (max-width: 768px) {
          margin-top: 80px;
        }
      }

      .menu--list {
        max-width: 990px;
        margin-left: auto;
        margin-right: auto;

        .sec_ttl {
          display: flex;
          align-items: center;
          height: auto;
          margin-bottom: 30px;

          .sec-common__ttl {
            background: url(../img/menu_txt_back.jpg) no-repeat center;
            width: 30%;
            height: clamp(100px, 89.078px + 2.913vw, 145px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            img {
              max-height: 40px;
              width: 100%;
              position: relative;
            }

            .ja {
              font-size: clamp(18px, 16.058px + 0.518vw, 26px);
            }
          }

          .section-common__image {
            width: 70%;
            height: auto;

            img {
              background: no-repeat no-repeat center;
              width: 100%;
              height: clamp(100px, 89.078px + 2.913vw, 145px);
              object-fit: cover;
            }
          }

          @media (max-width: 768px) {
            .sec-common__ttl {
              width: 50%;
            }

            .section-common__image {
              width: 50%;
            }
          }
        }

        .container {
          .menu__all-list {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;

            .menu__all-item {
              width: calc((100% - 60px) / 3);
              display: flex;
              justify-content: center;
              background-color: #fff;
              border-radius: 4px;
              box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
              height: clamp(80px, 77.573px + 0.647vw, 90px);
              color: var(--color-txt);
              cursor: pointer;
              position: relative;
              padding: 0 5px;
              transition: all 0.3s ease;

              &::after {
                content: "";
                position: absolute;
                right: 10px;
                bottom: 10px;
                width: 15px;
                height: 16px;
                background: url("../img/Lupe.png") no-repeat center;
                background-size: contain;
              }

              &:hover {
                box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05);
                opacity: 0.6;
              }

              button {
                font-size: clamp(14px, 12.544px + 0.388vw, 20px);
                width: 100%;
                height: 100%;
                color: var(--color-txt);
              }
            }

            .mada {
              &::after {
                content: none;
              }

              &:hover {
                box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
                opacity: 1;
                cursor: default;
              }
            }

            .txt_small {
              font-size: clamp(12px, 11.029px + 0.259vw, 16px);
            }

            @media (max-width: 768px) {
              gap: 15px;

              .menu__all-item {
                width: calc((100% - 15px) / 2);
              }
            }
          }
        }
      }
    }

    .case {
      background: linear-gradient(180deg, #F7F5F0 0%, #F8F8F8 50%, #F7F5F0 100%);

      .comingsoon {
        font-size: clamp(24px, 22.058px + 0.518vw, 32px);
        text-align: center;
        font-family: "Marcellus";
        background: var(--color-gold-grad);
        background-clip: text;
        color: transparent;
      }
    }

    .policy {
      background: url(../img/policy_back.jpg);
      overflow: hidden;

      .policy__box {
        padding-left: clamp(20px, 7.864px + 3.236vw, 70px);
        padding-right: clamp(20px, 7.864px + 3.236vw, 70px);

        .policy--wrapper {
          position: relative;
          max-width: 990px;
          margin-left: auto;
          margin-right: auto;
          padding: 40px 0 80px;
          z-index: 1;

          &::after {
            content: "";
            position: absolute;
            top: 0;
            right: -230px;
            width: 870px;
            height: 100%;
            background: url("../img/policy--wrapper_back.png") no-repeat center / cover;
            z-index: -1;
          }

          .copy {
            font-size: clamp(20px, 16.117px + 1.036vw, 36px);
            background: linear-gradient(83deg, #453C30 20%, #BBAB95 35%, #453C30 60%);
            background-clip: text;
            color: transparent;
            padding: 0 0 60px;
            z-index: 100;
            position: relative;

            .br_sp {
              display: none;
            }
          }

          .txt {
            font-size: clamp(14px, 13.757px + 0.065vw, 15px);
            max-width: clamp(335px, 319.223px + 4.207vw, 400px);
            line-height: 1.8;
            color: var(--color-txt);
            z-index: 100;
            position: relative;
          }
        }
      }

      @media (max-width: 768px) {
        .policy__box {
          padding-left: 0;
          padding-right: 0;

          .policy--wrapper {
            padding: 200px 0 0 0;
            z-index: 50;

            &::after {
              content: "";
              position: absolute;
              left: 0;
              width: 100%;
              height: 300px;
              background: url("../img/policy--wrapper_back_sp.png") no-repeat center / cover;
              z-index: 1;
            }

            .copy {
              padding: 0 20px 40px;
              z-index: 100;

              .br_sp {
                display: block;
              }
            }

            .txt {
              font-size: clamp(14px, 13.757px + 0.065vw, 15px);
              max-width: 100%;
              line-height: 1.6;
              padding: 0 20px;
            }
          }
        }
      }
    }

    .news {
      background-color: var(--color-back);

      .news__inner {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        max-width: 990px;
        margin: 0 auto;
        padding: 100px 0 0;

        .news__left {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          width: 30%;
          flex-shrink: 0;

          .ttl {
            text-align: left;
            background: linear-gradient(83deg, #453C30 30%, #BBAB95 40%, #453C30 80%);
            background-clip: text;
            color: transparent;
            padding-top: 0;
          }

          .news__btns-pc {
            display: flex;
            justify-content: flex-start;
            align-items: end;
            gap: 20px;

            .news__btn {
              width: clamp(35px, 33.786px + 0.324vw, 40px);
              height: clamp(35px, 33.786px + 0.324vw, 40px);
              border-radius: 50%;
              border: none;
              background: #fff;
              font-size: 16px;
              color: var(--color-gold);
              box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
              cursor: pointer;
              transition: all 0.3s ease;

              &:hover {
                background-color: var(--color-gold);
                color: #fff;
              }

              &:disabled {
                opacity: 0.3;
                pointer-events: none;
                cursor: default;
              }
            }

            .swiper-button-prev,
            .swiper-rtl .swiper-button-next {

              &::after {
                transform: scaleX(-1);
              }
            }

            .swiper-button-next,
            .swiper-rtl .swiper-button-prev {

              &::after {
                transform: scaleX(-1);
              }
            }

            .swiper-button-next,
            .swiper-button-prev {
              position: initial;

              &::after {
                font-size: 16px;
              }
            }
          }
        }

        .news__slider {
          width: 70%;
          z-index: 10;

          .news__list {
            padding-bottom: 10px;

            .news__item {
              background: var(--color-white);
              padding: 20px 0 20px 20px;
              box-shadow: 0 0 15px 0 rgba(218, 218, 218, 0.50);
              border-radius: 4px;
              overflow-y: auto;
              scrollbar-color: #CBBDAA #F8F8F8;

              .news__content {
                overflow-y: scroll;
                height: 260px;
                scrollbar-color: #CBBDAA #F8F8F8;
                padding-right: 20px;

                .news__date {
                  font-size: clamp(10px, 9.029px + 0.259vw, 14px);
                  color: var(--color-gold);
                  margin-bottom: 5px;
                }

                .news__title {
                  font-size: clamp(16px, 15.515px + 0.129vw, 18px);
                  margin-bottom: 40px;
                  line-height: 1.4;
                  color: #453C30;
                }

                .news__text {
                  font-size: clamp(12px, 11.272px + 0.194vw, 15px);
                  line-height: 1.8;
                  color: var(--color-txt);
                }

                @media (max-width: 768px) {
                  height: 230px;
                }
              }
            }
          }

          .news__btns-sp {
            display: none;
          }
        }

        @media (max-width: 768px) {
          flex-direction: column;
          padding: 50px 0;

          .news__left {
            width: 100%;
            flex-shrink: 0;
            position: relative;

            .ttl {
              text-align: center;
            }

            .news__btns-pc {
              display: none;
            }
          }

          .news__slider {
            order: 3;
            width: 100%;
            position: relative;

            .news__item {
              background: var(--color-white);
              padding: 20px;
              box-shadow: 0 0 15px 0 rgba(218, 218, 218, 0.50);
              width: clamp(275px, 268.932px + 1.618vw, 300px);
              height: clamp(275px, 268.932px + 1.618vw, 300px);
            }

            .news__btns-sp {
              position: absolute;
              display: flex;
              top: 50%;
              transform: translateY(-50%);
              padding: 0 20px;
              justify-content: space-between;
              z-index: 50;
              width: 100%;

              .news__btn {
                width: clamp(35px, 33.786px + 0.324vw, 40px);
                height: clamp(35px, 33.786px + 0.324vw, 40px);
                border-radius: 50%;
                border: none;
                background: #fff;
                font-size: 16px;
                color: var(--color-gold);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                cursor: pointer;
                transition: all 0.3s ease;

                &:hover {
                  background-color: var(--color-gold);
                  color: #fff;
                }

                &:disabled {
                  opacity: 0.3;
                  pointer-events: none;
                  cursor: default;
                }
              }

              .swiper-button-prev,
              .swiper-rtl .swiper-button-next {

                &::after {
                  transform: scaleX(-1);
                }
              }

              .swiper-button-next,
              .swiper-rtl .swiper-button-prev {

                &::after {
                  transform: scaleX(-1);
                }
              }

              .swiper-button-next,
              .swiper-button-prev {
                position: initial;

                &::after {
                  font-size: 16px;
                }
              }
            }
          }
        }
      }

      .news__marquee {
        position: absolute;
        bottom: -45px;
        left: 0;
        width: 100%;
        z-index: 1;
        overflow: hidden;
        white-space: nowrap;
        background: transparent;
        pointer-events: none;

        p {
          display: inline-block;
          font-family: "Marcellus";
          font-weight: 400;
          font-size: clamp(80px, 10vw, 140px);
          color: rgb(255, 255, 255);
          animation: newsMarquee 480s linear infinite;
        }

        @media (max-width: 768px) {
          bottom: -30px;
        }
      }
    }

    .doctor {
      background: url(../img/doctor_back.jpg) no-repeat center / cover;

      .doctor__inner {
        background: rgba(255, 255, 255, 0.70);
        backdrop-filter: blur(10px);
        padding: 40px 0;

        .doctor__body {
          display: flex;
          justify-content: center;
          max-width: 990px;
          margin: 0 auto;

          .doctor__img {
            img {
              max-width: 345px;
              margin-right: 40px;
              margin-top: -70px;
            }
          }

          .doctor__textbox {
            max-width: 605px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .doctor__text {
              font-size: clamp(14px, 13.757px + 0.065vw, 15px);
              line-height: 1.8;
              color: var(--color-txt);
            }

            .name {
              display: flex;
              justify-content: space-between;
              margin-top: 50px;

              img {
                width: 40%;
              }

              .doctor__name {
                width: clamp(135px, 127.958px + 1.878vw, 155px);
                font-size: clamp(20px, 19.029px + 0.259vw, 24px);
                color: var(--color-txt);
                position: relative;

                span {
                  font-size: clamp(14px, 13.757px + 0.065vw, 15px);
                  color: var(--color-gold);
                  margin-right: 20px;
                }

                &::after {
                  position: absolute;
                  content: "";
                  bottom: 5px;
                  left: 0;
                  width: 100%;
                  height: 1px;
                  background-color: var(--color-gold);
                }
              }
            }
          }
        }

        @media (max-width: 768px) {
          background: rgba(255, 255, 255, 0.70);
          backdrop-filter: blur(10px);
          padding: 0;
          margin: 0 20px;
          border-radius: 4px;

          .doctor__body {
            flex-direction: column;
            margin-top: 60px;
            padding: 0;

            .doctor__img {
              margin-left: auto;
              margin-right: auto;
              margin-bottom: 20px;

              img {
                max-width: 205px;
                margin-top: -70px;
                margin-right: 0;
              }
            }

            .doctor__textbox {
              max-width: 605px;
              padding: 0 30px 30px;

              .doctor__text {
                font-size: clamp(14px, 13.757px + 0.065vw, 15px);
                line-height: 1.8;
                color: var(--color-txt);
              }

              .name {
                display: flex;
                justify-content: space-between;
                width: 100%;
                margin-top: 20px;

                img {
                  width: 40%;
                  height: auto;
                }

                .doctor__name {
                  font-size: clamp(20px, 19.029px + 0.259vw, 24px);
                  color: var(--color-txt);
                  position: relative;

                  span {
                    font-size: clamp(14px, 13.757px + 0.065vw, 15px);
                    color: var(--color-gold);
                    margin-right: 20px;
                  }

                  &::after {
                    position: absolute;
                    content: "";
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    background-color: var(--color-gold);
                  }
                }
              }
            }
          }
        }
      }

      .doctor__info {
        display: flex;
        justify-content: center;
        max-width: 990px;
        margin: 55px auto 0;
        gap: 50px;

        .doctor__info-box {
          width: calc((100% - 50px) / 2);
          background-color: var(--color-white);

          .doctor__info-title {
            padding: 5px 0 5px 20px;
            background-color: var(--color-txt);
            color: var(--color-white);
            font-size: clamp(18px, 16.544px + 0.388vw, 24px);
            margin-bottom: 20px;
          }

          .doctor__list {
            font-size: clamp(14px, 13.757px + 0.065vw, 15px);
            color: var(--color-txt);
            padding: 0 20px;
            height: clamp(140px, 123.010px + 4.531vw, 210px);
            overflow-y: scroll;

            scrollbar-color: #CBBDAA #F8F8F8;

            div+div {
              margin-top: 5px;
            }

            div {
              display: flex;
              gap: 5%;

              dt {
                color: var(--color-gold);
                width: 50px;
              }

              dd {
                color: var(--color-txt);
                width: 80%;
              }
            }
          }

          &::after {
            content: "";
            display: block;
            height: 20px;
          }
        }

        @media (max-width: 768px) {
          display: flex;
          flex-direction: column;
          gap: 20px;
          margin: 20px auto 0;
          padding: 0 20px;

          .doctor__info-box {
            width: 100%;
            background-color: var(--color-white);
            border-radius: 4px;

            .doctor__info-title {
              padding: 7px 0 7px 30px;
              background-color: var(--color-txt);
              color: var(--color-white);
              font-size: clamp(18px, 16.544px + 0.388vw, 24px);
              border-radius: 4px 4px 0 0;
            }

            .doctor__list {
              font-size: clamp(14px, 13.757px + 0.065vw, 15px);
              color: var(--color-txt);
              padding: 0 30px;
              overflow-y: scroll;
              scrollbar-gutter: stable;
              height: clamp(140px, 123.010px + 4.531vw, 210px);

              div+div {
                margin-top: 5px;
              }

              div {
                display: flex;
                gap: 5%;

                dt {
                  color: var(--color-gold);
                  width: 80px;
                }

                dd {
                  color: var(--color-txt);
                  width: 80%;
                }
              }
            }

            &::after {
              content: "";
              display: block;
              height: 20px;
            }
          }
        }
      }
    }

    .gallery__wrapper {
      overflow: hidden;
      width: 100%;

      .gallery {
        display: flex;
        width: max-content;
        /* コンテンツ幅に合わせる */
        animation: galleryLoop 40s linear infinite;

        img {
          height: clamp(100px, 87.864px + 3.236vw, 150px);
          flex-shrink: 0;
        }
      }
    }

    .fixed-cta {
      display: none;

      @media (max-width: 768px) {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3000;
        padding: 20px;
        background-color: transparent;
        transition: opacity 0.3s ease, visibility 0.3s ease;

        .fixed-cta__btn {
          display: block;
          width: 100%;
          margin: 0 auto;
          background-color: var(--color-black);
          color: var(--color-white);
          text-align: center;
          font-size: 16px;
          font-weight: 500;
          padding: 15px 0;
          border-radius: 50px;
          border: 2px solid var(--color-black);
          position: relative;

          &::before {
            content: "";
            position: absolute;
            inset: 2px;
            border: 1px solid var(--color-white);
            border-radius: 50px;
            pointer-events: none;
          }
        }

        &.is-hidden {
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
        }
      }
    }



    /* モーダル */
    .modal {
      opacity: 0;
      visibility: hidden;
      position: fixed;
      inset: 0;
      z-index: 3200;
      padding: 70px;
      /* animation: modalFadeOut 0.4s ease forwards; */
      transition: all 2s;

      @media (max-width: 768px) {
        padding: 20px 20px 0 20px;
        bottom: 0;
      }
    }

    .modal.active {
      display: flex;
      animation: modalFadeIn 0.4s ease forwards;
      visibility: visible;

      @media (max-width: 768px) {
        align-items: flex-end;
      }
    }

    .modal.closing {
      animation: modalFadeOut 0.4s ease forwards;
    }

    .modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(248, 248, 248, 0.60);
    }

    .modal__content {
      position: relative;
      width: 880px;
      max-height: 500px;
      margin: auto;
      padding: 50px;
      background: var(--color-white);
      border-radius: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transform: scale(0.95);

      @media (max-width: 768px) {
        width: 100%;
        max-height: 80svh;
        margin: auto 0 0 0;
        padding: 7svh 30px 5svh 30px;
        border-radius: 20px 20px 0 0;
      }

      .modal__close-box {
        position: absolute;
        z-index: 3500;
        top: 10px;
        right: 20px;

        @media (max-width: 768px) {
          right: 5px;
          transform: translateX(-50%);
        }

        .modal__close {
          background: none;
          border: none;
          font-size: 28px;
          color: #A99074;
          cursor: pointer;

          @media (max-width: 768px) {
            font-size: 30px;
          }
        }
      }

      .modal__scroll-area {
        max-height: 400px;
        overflow-y: auto;
        scrollbar-gutter: stable both-edges;
        padding-right: 20px;

        @media (max-width: 768px) {
          padding: 0 10px 0 0;
          max-height: 400px;
        }

        .modal__title {
          font-size: clamp(18px, 17.515px + 0.129vw, 20px);
          text-align: center;
          position: relative;
          margin-bottom: 50px;

          &::after {
            position: absolute;
            content: "";
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(40px, 37.573px + 0.647vw, 50px);
            height: 1px;
            background-color: var(--color-gold);
          }
        }

        .modal__tags {
          display: flex;
          flex-wrap: wrap;
          justify-content: left;
          gap: 5px;
          margin-bottom: 40px;

          span {
            font-size: clamp(14px, 13.757px + 0.065vw, 15px);
            border: 1px solid #EBE4D2;
            padding: 4px 10px;
            font-size: 13px;
            border-radius: 2px;
            color: var(--color-gold);
          }
        }

        .modal__note-wrapper {
          margin-bottom: 40px;

          .modal__note-box+.modal__note-box {
            margin-top: 10px;
          }

          .modal__note-box {

            .modal__note-title {
              position: relative;
              padding-left: 20px;

              &::after {
                position: absolute;
                content: "";
                width: 6px;
                height: 6px;
                left: 4px;
                top: 8px;
                transform: rotate(45deg);
                flex-shrink: 0;
                background-color: var(--color-gold);
                aspect-ratio: 1/1;
              }
            }

            .modal__note-list {
              margin-top: 5px;

              li+li {
                margin-top: 5px;
              }

              li {
                position: relative;
                padding-left: 20px;
                margin-left: 20px;

                &::after {
                  position: absolute;
                  content: "";
                  width: 4px;
                  height: 4px;
                  left: 5px;
                  top: 10px;
                  border-radius: 2px;
                  flex-shrink: 0;
                  background-color: var(--color-gold);
                  aspect-ratio: 1/1;
                }
              }
            }
          }
        }

        .modal__price+.modal__price {
          margin-top: 40px;
        }

        .modal__price {
          margin-bottom: 10px;

          .modal__price-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            margin-bottom: 10px;

            .modal__price-title {
              font-size: clamp(18px, 17.515px + 0.129vw, 20px);
              color: var(--color-gold);
            }

            .modal__price-time {
              font-size: clamp(14px, 13.757px + 0.065vw, 15px);
              color: var(--color-black);
              text-align: end;
            }

            @media (max-width: 768px) {
              flex-direction: column;

              .modal__price-title {
                width: 100%;
                margin-bottom: 5px;
              }

              .modal__price-time {
                width: 100%;
              }
            }
          }

          .modal__price-table-wrap {
            padding: 30px;
            background-color: var(--color-back);

            .modal__price-list {
              width: 100%;
              font-size: clamp(14px, 13.757px + 0.065vw, 15px);

              .modal__price-item+.modal__price-item {
                padding-top: 20px;
              }

              .modal__price-item {
                display: flex;
                justify-content: space-between;
                padding-bottom: 20px;
                border-bottom: 1px solid #D9D9D9;

                .modal__price-plan {
                  color: var(--color-gold);
                  width: 50%;

                  @media (max-width: 768px) {
                    width: 100%;
                    padding-bottom: 10px;
                  }
                }

                .modal__price-detail {
                  display: flex;
                  width: 50%;
                  flex-wrap: wrap;
                  row-gap: 10px;

                  @media (max-width: 768px) {
                    width: 100%;
                  }

                  .modal__price-option {
                    width: 50%;
                    text-align: right;

                    @media (max-width: 768px) {
                      width: 70%;
                    }
                  }

                  .modal__price-value {
                    width: 50%;
                    text-align: right;

                    @media (max-width: 768px) {
                      width: 30%;
                    }
                  }
                }
              }
            }

            @media (max-width: 768px) {
              .modal__price-item {
                flex-direction: column;
                justify-content: center;
              }
            }
          }
        }
      }

      .modal__cta {
        text-align: center;
        margin-top: 40px;

        a {
          display: inline-block;
          background-color: var(--color-black);
          color: var(--color-white);
          padding: 10px 35px;
          border-radius: 50px;
          position: relative;
          border: 2px solid var(--color-black);
          width: 50%;

          &::before {
            content: "";
            position: absolute;
            inset: 2px;
            border: 1px solid var(--color-white);
            border-radius: 50px;
            pointer-events: none;
          }

          @media (max-width: 768px) {
            margin-bottom: 30px;
            width: 100%;
          }
        }
      }
    }
  }

}

footer {
  background: url(../img/footer_back.jpg) no-repeat center / cover;
  padding: 75px 0 0 0;

  .logo {
    margin: 0 0 40px 0;

    img {
      display: block;
      height: 55px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      img {
        height: 40px;
      }
    }
  }

  .info__box {
    display: flex;
    gap: 30px;
    max-width: 880px;
    margin: 0 auto;
    color: var(--color-white);

    .access {
      width: calc((100% - 30px) / 2);
      margin-bottom: 125px;

      .info {
        margin-bottom: 30px;

        .sub__ttl {
          font-size: clamp(16px, 15.515px + 0.129vw, 18px);
          margin-bottom: 10px;
          position: relative;

          &::after {
            position: absolute;
            content: "";
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--color-white);
          }
        }

        .access__address {
          font-size: clamp(14px, 13.757px + 0.065vw, 15px);
          margin-top: 5px;
        }

        .access__address-list {
          li {
            margin-top: 5px;
            font-size: clamp(14px, 13.757px + 0.065vw, 15px);
            position: relative;
            padding-left: 20px;

            &::after {
              position: absolute;
              content: "";
              width: 6px;
              height: 6px;
              left: 4px;
              bottom: 8px;
              transform: rotate(45deg);
              flex-shrink: 0;
              background-color: var(--color-gold);
              aspect-ratio: 1/1;
            }
          }
        }
      }

      .time {
        margin-bottom: 30px;

        .sub__ttl {
          font-size: clamp(16px, 15.515px + 0.129vw, 18px);
          margin-bottom: 10px;
          position: relative;

          &::after {
            position: absolute;
            content: "";
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--color-white);
          }
        }

        .access__time {
          font-size: clamp(14px, 13.757px + 0.065vw, 15px);
          margin-top: 5px;
        }
      }

      .common__btn-contact-sp {
        display: none;
      }

      .sns-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 30px;

        .sns {
          width: calc((100% - 30px) / 2);
          display: flex;
          align-items: center;
          transition: all 0.3s ease;

          img {
            width: 25px;
          }

          p {
            margin-left: 10px;
            font-size: clamp(14px, 13.757px + 0.065vw, 15px);
            color: var(--color-white);
          }

          &:hover {
            opacity: .5;
          }
        }

        .mada {
          &:hover {
            opacity: 1;
          }
        }
      }
    }

    .map {
      width: calc((100% - 30px) / 2);

      .g-map {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        overflow: hidden;

        iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border: 0;
        }
      }

      .g-map-sign {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-top: 10px;
        transition: all 0.3s ease;

        p {
          position: relative;
          color: var(--color-white);
          padding: 0 10px 5px 0;
        }

        .arrow {
          display: inline-block;
          width: 24px;
          height: 1px;
          background-color: currentColor;
          position: relative;
          background: var(--color-white);

          &::after {
            content: "";
            position: absolute;
            right: 1px;
            top: -4px;
            width: 8px;
            height: 8px;
            border-top: 1px solid var(--color-white);
            transform: rotate(45deg);
          }
        }

        &:hover {
          opacity: .5;
        }
      }
    }

    .sns-list_sp {
      display: none;
    }
  }

  .copyright {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 5px 0;
    font-size: clamp(10px, 9.515px + 0.129vw, 12px);
  }

  @media (max-width: 768px) {
    padding: 50px 0 0 0;

    .info__box {
      flex-direction: column;
      align-items: center;
      padding: 0 20px;
      gap: 40px;

      .access {
        margin-bottom: 0;
        width: 100%;

        .info {
          margin-bottom: 40px;
        }

        .time {
          margin-bottom: 0;
        }

        .common__btn-contact-sp {
          display: block;
          width: 100%;
          margin-top: 40px;
          background-color: var(--color-white);
          color: var(--color-black);
          text-align: center;
          font-size: 16px;
          font-weight: 500;
          padding: 15px 0;
          border-radius: 50px;
          border: 2px solid var(--color-white);
          position: relative;

          &::before {
            content: "";
            position: absolute;
            inset: 2px;
            border: 1px solid var(--color-black);
            border-radius: 50px;
            pointer-events: none;
          }
        }

        .sns-list {
          display: none;
        }
      }

      .map {
        width: 100%;
        margin-bottom: 0;

        .g-map {
          position: relative;
          width: 100%;
          overflow: hidden;
          border-radius: 4px;

          iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
          }
        }
      }

      .sns-list_sp {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 30px;
        width: 100%;
        margin-bottom: 60px;

        .sns {
          width: calc((100% - 30px) / 2);
          display: flex;
          align-items: center;

          img {
            width: 25px;
          }

          p {
            margin-left: 10px;
            font-size: clamp(14px, 13.757px + 0.065vw, 15px);
            color: var(--color-white);
          }
        }
      }
    }
  }
}




@keyframes newsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes galleryLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-40%);
  }
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === 通常用スクロールバー === */
.custom-scroll {
  position: relative;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.custom-scroll::-webkit-scrollbar {
  display: none;
}

.custom-scrollbar-track {
  position: absolute;
  width: 1px;
  background: #EBE4D2;
  border-radius: 4px;
  pointer-events: none;
  z-index: 100;
}

.custom-scrollbar-thumb {
  position: absolute;
  right: 0;
  width: 100%;
  background: var(--color-gold);
  border-radius: 4px;
  transition: top 0.1s linear;
}



/* === モーダル用スクロールバー === */
.custom-scroll--modal {
  position: relative;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.custom-scroll--modal::-webkit-scrollbar {
  display: none;
}

/* === レール === */
.custom-scrollbar-track--modal {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 1px;
  background: #EBE4D2;
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
  translate: 0 -50%;
}

/* === つまみ === */
.custom-scrollbar-thumb--modal {
  position: absolute;
  right: 0;
  width: 100%;
  background: var(--color-gold);
  border-radius: 4px;
  transition: top 0.1s linear;
}

/* === 海外の方用 === */
.kaigai-font {
  font-family: "Noto Serif SC" !important;
}

.kaigai-title {
  color: var(--color-gold);
}