:root {
  --space-side: calc((100% - 1200px) / 2);
  --space-side-under1300: clamp(1.25rem, 0.6119rem + 2.6178vw, 3.125rem);
  --border: 1px solid #dad8df;
  --120-60: clamp(3.75rem, 2.4738rem + 5.2356vw, 7.5rem);
  --80-40: clamp(2.5rem, 1.6492rem + 3.4904vw, 5rem);
  --60-30: clamp(1.875rem, 1.2369rem + 2.6178vw, 3.75rem);
  --50-20: clamp(1.25rem, 0.6119rem + 2.6178vw, 3.125rem);
  --40-28: clamp(1.75rem, 1.4948rem + 1.0471vw, 2.5rem);
  --40-20: clamp(1.25rem, 0.8246rem + 1.7452vw, 2.5rem);
  --20-18: clamp(1.125rem, 1.0825rem + 0.1745vw, 1.25rem);
  --20-14: clamp(0.875rem, 0.7474rem + 0.5236vw, 1.25rem);
  --16-14: clamp(0.875rem, 0.8325rem + 0.1745vw, 1rem);
}

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

ヘッダー

------------------------------*/
.header {
  margin-top: clamp(1.875rem, 1.3007rem + 2.356vw, 3.5625rem);
  margin-left: clamp(1.25rem, -0.0262rem + 5.2356vw, 5rem);
  width: fit-content;
  transition: all 0.3s;
}
.logo {
  height: clamp(1.25rem, 1.0373rem + 0.8726vw, 1.875rem);
  margin-bottom: 10px;
  @media screen and (max-width: 768px) {
    margin-bottom: 8px;
  }
  img {
    height: 100%;
  }
}
.logo-desc {
  font-size: clamp(0.5625rem, 0.4774rem + 0.349vw, 0.8125rem);
}

.header:hover {
  opacity: 0.7;
}

.nav {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: calc(-100vw + 100%);
  z-index: 999;
  ul {
    padding: 14px 30px;
    justify-content: end;

    li {
      a,
      span {
        display: inline-block;
        padding: 20px;
        font-size: var(--16-14);
        line-height: 1.75;
        color: #555;
        transition: all 0.3s;
        cursor: pointer;
      }
      a:hover,
      span:hover {
        color: #a2a1b5;
      }

      .under-nav {
        visibility: hidden;
        position: absolute;
        left: 50%;
        top: 100px;
        translate: -50%;
        background-color: #fff;
        transition: all 0.4s;
        opacity: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 40px;
        li {
          width: fit-content;
          a {
            text-wrap: nowrap;
            padding:0 0 0 21px;
            position: relative;
          }
          a::before {
            content: "";
            width: 6px;
            height: 1px;
            background-color: #A2A1B5;
            position: absolute;
            border-radius: 100px;
            top: 48%;
            left: 0;
          }
        }
      }
    }
    .nav-il {
      position: relative;
      transition: all 0.3s;
    }
    li.nav-il:hover .under-nav {
      visibility: visible;
      opacity: 1;
    }
  }
}
.nav.fixed {

}

@media screen and (max-width: 1200px) {
  nav {
    display: none;
  }
}

#hamburger-menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  cursor: pointer;
  z-index: 999;
  @media screen and (max-width: 1200px) {
    display: block;
  }
  .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 60px;
    width: 80px;
    position: relative;
    z-index: 999;
    background-color: #fff;

    span {
      display: block;
      height: 1px;
      border-radius: 100px;
      width: 26px;
      background: #555;
      transition: 0.2s all ease-in-out;
    }
  }
}

#hamburger-menu-btn.active {
  span:nth-child(1) {
    transform: rotate(20deg);
    translate: 0 4.5px;
  }

  span:nth-child(2) {
    transform: rotate(-20deg);
    translate: 0 -4.5px;
  }
}

/* spメニュー */

#sp-menu {
  opacity: 0;
  display: none;
  width: 100%;
  height: 900px;
  background-color: #f6f4f5;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -999;
  transition: 0.3s all;
  padding: 20px;


  .sp-menu-logo {
    margin-bottom: 50px;
    margin-top: 10px;
    width: fit-content;
  }

  nav.flex {
    justify-content: start;
    gap: 50px;
    border-bottom: var(--border);
    padding-bottom: 20px;
    margin-bottom: 40px;

    .sp-menu-list {
      flex: 1;
      li {
        margin-bottom: 20px;
        a,
        div {
          padding: 10px 0;
          display: flex;
          flex-direction: column;
          gap: 10px;
          transition: all 0.3s;

          .en {
            font-size: 24px;
            line-height: 0.5;
            color: #555;
          }

          .jp-m {
            font-size: 11px;
            color: #a2a1b5;
          }
        }
        a:hover {
          opacity: 0.6;
        }

        .wrap {
          display: flex;
          flex-direction: column;
          margin-top: -5px;
          gap: 10px;
          a {
            padding: 0;
            font-size: 14px;
            color: #555;
          }
        }
      }
      li:last-child{
        margin-bottom: 0;
      }
    }
  }
  .sp-sns-area {
    display: flex;
    gap: 15px 25px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 300px;
    a {
      font-size: 14px;
      color: #a2a1b5;
    }
    a:hover {
      opacity: 0.7;
    }
  }
}

#sp-menu.active {
  opacity: 1;
  z-index: 888;
  display: block;
}

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

予約・スケジュール固定ボタン

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

a.box-btn.fixed {
  position: fixed;
  bottom: 40px;
  right: calc(-100vw + 100% + 50px);
  z-index: 999;
}
a.box-btn.fixed:hover {
  background-color: #fff;

  span {
    color: #a2a1b5;
  }
  .icon {
    svg {
      path {
        fill: #a2a1b5;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  a.box-btn.fixed {
    padding: 15px 25px;
    justify-content: space-between;
    bottom: 0px;
    right: 0px;
    width: 100%;
  }
}

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

トップページ-メインビジュアル

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

.mv {
  padding: var(--60-30) 20px clamp(3.125rem, 2.4869rem + 2.6178vw, 5rem) 0;
  .flex {
    justify-content: start;
    align-items: center;
    gap: 60px;
    margin-left: 0;
    margin-right: auto;

    .l-cont {
      position: relative;
      max-width: 1200px;
      min-width: 320px;
      width: 100%;
      .mv-swiper {
        position: relative;
        z-index: 1;
        width: 100%;
        .swiper-wrapper {
          width: 100%;
          overflow: hidden;
          .swiper-slide {
            overflow: hidden;
            img {
              width: 100%;
              object-fit: cover;
            }
          }
        }
      }
      .mv-deco-text.en {
        position: absolute;
        bottom: -0.7em;
        left: 50px;
        z-index: 2;
        font-size: clamp(4.0625rem, -3.75rem + 13.0208vw, 8.75rem);
        color: #fff;
      }
    }
    .r-cont {
      min-width: 400px;
      .title {
        font-size: var(--40-28);
        line-height: 1.75;
        margin-bottom: var(--40-20);
      }
      .desc {
        font-size: var(--16-14);
        max-width: 380px;
      }
    }
  }
}

@media screen and (max-width: 960px) {
  .mv {
    padding-right: 0;
    .flex {
      align-items: start;
      flex-direction: column;

      .l-cont {
        width: calc(100% - 70px);
        .mv-deco-text.en {
          font-size: clamp(3.125rem, 0.5592rem + 10.5263vw, 6.875rem);
          left: clamp(0.625rem, -1.0855rem + 7.0175vw, 3.125rem);
        }
      }
      .r-cont {
        min-width: auto;
        margin-left: var(--50-20);
        margin-right: var(--50-20);
      }
    }
  }
}

.about {
  padding: clamp(3.125rem, 2.0615rem + 4.363vw, 6.25rem) 0;
  padding-left: 50px;
  .flex {
    width: 100%;
    position: relative;
    gap: var(--80-40);
    padding-left: var(--space-side);
    .about-deco-text.en {
      position: absolute;
      top: 0;
      left: 0;
      font-size: var(--120-60);
      color: #f0edef;
    }

    .l-cont {
      width: 55%;
      .title {
        font-size: var(--40-28);
        line-height: 1.75;
        margin-bottom: 60px;
        margin-top: 60px;
      }
      .desc {
        font-size: var(--16-14);
        margin-bottom: var(--40-20);
      }
      .desc.il {
        margin-bottom: 60px;
      }
    }
    .r-cont {
      flex: 1;
    }
  }
}

@media screen and (max-width: 768px) {
  .about {
    padding-left: var(--50-20);
    .flex {
      flex-direction: column;
      .about-deco-text.en {
        left: -10px;
      }

      .l-cont {
        width: 100%;
        padding-right: var(--50-20);

        .title {
          margin-bottom: 30px;
          margin-top: 30px;
        }
        .desc.il {
          margin-bottom: 30px;
        }
      }
      .r-cont {
        width: 80%;
        margin-right: 0;
        margin-left: auto;
      }
    }
  }
}

.menu {
  padding: clamp(3.125rem, 2.4869rem + 2.6178vw, 5rem) 0 var(--60-30) 0;
  .bg-box {
    background-color: #fff;
    padding: var(--80-40);
    position: relative;
    margin-left: var(--space-side);

    .menu-deco-text {
      position: absolute;
      top: -0.6em;
      font-size: var(--120-60);
      right: var(--space-side);
    }

    .menu-lists {
      display: flex;
      flex-direction: column;
      gap: var(--60-30);

      .flex {
        justify-content: start;
        align-items: center;
        gap: var(--80-40);

        .l-cont {
          width: 440px;
          height: 320px;
        }

        .r-cont {
          max-width: 600px;
          .sub-title.en {
            display: inline-block;
            font-size: var(--16-14);
            margin-bottom: 10px;
          }
          .title {
            font-size: var(--40-28);
            margin-bottom: 25px;
          }
          .desc {
            font-size: var(--16-14);
            margin-bottom: var(--40-20);
          }
          .under-line-link {
            margin-right: auto;
            margin-left: 0;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 1300px) {
  .menu {
    .bg-box {
      margin-left: clamp(1.25rem, -0.0329rem + 5.2632vw, 3.125rem);
      .menu-deco-text {
        right: clamp(1.25rem, -0.0329rem + 5.2632vw, 3.125rem);
      }
      .menu-lists {
        .flex {
          .l-cont {
            width: 40%;
            display: grid;
            place-items: center;
            img {
              width: 100%;
              object-fit: cover;
              vertical-align: center;
            }
          }

          .r-cont {
            width: 60%;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .menu {
    .bg-box {
      margin-left: clamp(1.25rem, -0.0329rem + 5.2632vw, 3.125rem);
      .menu-deco-text {
        right: clamp(1.25rem, -0.0329rem + 5.2632vw, 3.125rem);
      }
      .menu-lists {
        .flex {
          flex-direction: column;
          align-items: start;
          .l-cont {
            width: 100%;
            height: auto;
            img {
              width: 100%;
            }
          }
          .r-cont {
            width: 100%;
          }

          .r-cont {
            width: 100%;
          }
        }
      }
    }
  }
}

.topics {
  padding: var(--60-30) 0;
  .flex {
    align-items: end;
    margin-bottom: 30px;
    .topics-deco-text {
      font-size: var(--120-60);
    }
    .under-line-link {
      margin-bottom: 30px;
    }
  }

  .topics-lists {
    display: flex;
    flex-direction: column;
    li {
      width: 100%;
      border-top: var(--border);
      transition: all 0.3s;
      a {
        .flex {
          align-items: center;
          padding: 40px 0;
          margin-bottom: 0;
          .l-cont {
            .sub-area {
              display: flex;
              gap: 20px;
              align-items: center;
              margin-bottom: 20px;

              time {
                font-size: var(--16-14);
                line-height: 2;
              }

              .category {
                display: inline-block;
                font-size: 13px;
                padding: 5px 10px;
                background-color: #fff;
              }
            }
            .title {
              font-size: 18px;
            }
          }
          .r-cont {
            padding-right: 40px;
          }
        }
      }
    }
    li:last-child {
      border-bottom: var(--border);
    }
    li:hover {
      opacity: 0.7;
    }
  }
}

@media screen and (max-width: 768px) {
  .topics {
    .inner1 {
      display: flex;
      flex-direction: column;
    }
    .flex.il {
      display: contents;
      .topics-deco-text {
        font-size: 60px;
        margin-bottom: 20px;
      }
      .under-line-link {
        order: 3;
        margin-bottom: 30px;
        gap: 10px;
        span {
          font-size: 18px;
        }
        .icon {
          height: 9px;
          img {
            height: 100%;
            translate: 0 -3px;
          }
        }
      }
    }

    .topics-lists {
      order: 2;
      margin-bottom: 30px;
      li {
        a {
          .flex {
            padding: 20px 0;
            margin-bottom: 0;
            .l-cont {
              .sub-area {
                gap: 10px;
                margin-bottom: 7px;

                time {
                  font-size: 14px;
                }

                .category {
                  font-size: 11px;
                }
              }
              .title {
                font-size: 16px;
              }
            }
            .r-cont {
              display: none;
            }
          }
        }
      }
      li:hover {
        opacity: 0.7;
      }
    }
  }
}
.access {
  padding: var(--60-30) 0 60px 0;
  .flex {
    align-items: end;
    margin-bottom: 30px;
    .access-deco-text {
      font-size: var(--120-60);
    }
    .under-line-link {
      margin-bottom: 30px;
    }
  }
  .map {
    width: 100%;
    height: 427px;
    iframe {
      width: 100%;
      height: 100%;
    }
  }
}
@media screen and (max-width: 768px) {
  .access {
    display: flex;
    flex-direction: column;

    .inner1 {
      display: contents;
      .flex {
        display: contents;
        .access-deco-text {
          font-size: 60px;
          padding: 0 20px;
          margin-bottom: 10px;
        }
        .under-line-link {
          margin-bottom: 30px;
          order: 3;
          margin-right: 20px;
        }
      }
    }
    .map {
      order: 2;
      width: 100%;
      height: 427px;
      padding-bottom: 30px;
      iframe {
        width: 100%;
        height: 100%;
      }
    }
  }
}

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

フッター

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

footer {
  .footer {
    background-color: rgb(240, 237, 239, 0.6);
    padding: var(--80-40) 0;

    .flex {
      .r-cont {
        text-align: end;
        .add {
          margin-bottom: 20px;
          font-size: var(--16-14);
        }
        a {
          font-size: var(--16-14);
          transition: all 0.3s;
        }
        a:hover {
          opacity: 0.7;
        }
      }
    }
    .sns-icon-area {
      display: flex;
      gap: 20px;
      align-items: center;
      margin-bottom: 60px;
      li {
        a {
          display: block;
          width: 29px;
          height: 29px;
          transition: all 0.3s;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
        a.ameba-icon {
          height: 27px;
          width: auto;
          img{
            height: 100%;
          }
        }

        a:hover {
          opacity: 0.7;
        }
      }
    }
    small {
      display: block;
      font-size: 12px;
      color: #555;
      text-align: center;
    }
  }
}
@media screen and (max-width: 768px) {
  footer {
    .footer {
      .inner1 {
        display: flex;
        flex-direction: column;
      }
      .flex {
        display: contents;
        .r-cont {
          order: 3;
          text-align: start;
          margin-bottom: 30px;
          .add {
            margin-bottom: 0px;
          }
        }
        .l-cont {
          order: 1;
          margin-bottom: 20px;
        }
      }
      .sns-icon-area {
        order: 2;
        margin-bottom: 40px;
        gap: 15px;
        li {
          
          a {
            display: block;
            width: 22px;
            height: 22px;
            transition: all 0.3s;
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
          }
          a.ameba-icon {
            height: 22px;
            width: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            img{
              height: 100%;
              width: auto;
              object-fit: contain;

            }
          }
        }
      }
      small {
        order: 4;
        display: block;
        font-size: 12px;
        color: #555;
        text-align: center;
        padding-bottom: 50px;
      }
    }
  }
}

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

下層ページ

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

.under-mv {
  padding: clamp(3.75rem, 1.623rem + 8.726vw, 10rem) 0
    clamp(3.75rem, 2.4738rem + 5.2356vw, 7.5rem) 0;
  border-bottom: var(--border);
  margin-bottom: clamp(3.75rem, 2.4738rem + 5.2356vw, 7.5rem);

  .under-mv-title {
    flex-direction: column;

    span:nth-child(1) {
      display: inline-block;
      font-size: var(--120-60);
      margin-bottom: 10px;
      color: #a2a1b5;
      line-height: 1.5;
    }
    span:nth-child(2) {
      display: inline-block;
      font-size: var(--20-14);
      color: #a2a1b5;
    }
  }
}

@media screen and (max-width: 768px) {
  .under-mv {
    .under-mv-title {
      flex-direction: column;

      span:nth-child(1) {
        margin-bottom: 0px;
      }
      .jp-sb.il {
        font-size: 36px;
        margin-bottom: 20px;
      }
    }
  }
}

.under.profile {
  padding: var(--60-30) 0;
  .flex {
    margin-left: var(--space-side);
    @media screen and (max-width: 1300px) {
      margin-left: var(--space-side-under1300);
    }
    gap: var(--80-40);
    margin-bottom: var(--80-40);

    .l-cont {
      flex: 1;
      .name-wrap {
        display: flex;
        align-items: center;
        margin-bottom: var(--60-30);
        .name {
          font-size: var(--40-28);
          margin-right: var(--40-20);
        }
        span.en {
          font-size: var(--16-14);
          margin-top: 10px;
        }
      }
      .title {
        font-size: 20px;
        line-height: 2;
        margin-bottom: var(--40-20);
      }
      .desc {
        font-size: var(--16-14);
        margin-bottom: var(--40-20);
      }
      .desc:last-child {
        margin-bottom: 0px;
      }
    }
    .r-cont {
      flex: 1;
    }
  }
  .flex.il {
    margin-right: var(--space-side);
    margin-left: 0;
    @media screen and (max-width: 1300px) {
      margin-right: var(--space-side-under1300);
    }

    ul.r-cont {
      display: flex;
      flex-direction: column;
      li {
        padding: clamp(0.625rem, 0.4123rem + 0.8726vw, 1.25rem)
          clamp(1.25rem, 0.8246rem + 1.7452vw, 2.5rem);
        border-bottom: var(--border);
        display: flex;
        flex-direction: column;
        gap: 10px;

        .m-l {
          margin-left: clamp(0.625rem, 0.4123rem + 0.8726vw, 1.25rem);
        }
      }
      li:first-child {
        padding-top: 0;
      }
    }
  }
}

.under.concept {
  padding: var(--60-30) 0;
  .concept-deco-text {
    font-size: var(--120-60);
    display: inline-block;
    margin-bottom: var(--80-40);
  }
  .flex {
    margin-left: var(--space-side);
    @media screen and (max-width: 1300px) {
      margin-left: var(--space-side-under1300);
    }
    gap: var(--80-40);
    margin-right: 0;
    .l-cont {
      width: 50%;
      .desc {
        margin-bottom: var(--40-20);
        font-size: var(--16-14);
      }
      .under-line-link {
        width: 100%;
        max-width: 330px;
        margin-left: 0;
        justify-content: space-between;
        margin-bottom: 20px;
        span {
          font-size: var(--16-14);
        }
      }
    }
    .r-cont {
      width: 50%;
    }
  }
}
.under.book {
  padding: var(--60-30) 0;

  .flex {
    gap: var(--80-40);
    width: 100%;

    .l-cont{
      max-width: 368px;
      box-shadow: 0px 0px 20px 0px rgba(162, 161, 181, 0.08);
    img{
      width: 100%;
    }
    }
    .r-cont {
      .book-deco-text {
        font-size: var(--120-60);
        display: inline-block;
        margin-bottom: var(--40-20);
      }
      .desc {
        margin-bottom: 20px;
        font-size: var(--16-14);
      }

      .desc.il {
        margin-bottom: var(--40-20);
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .under.profile {
    .flex {
      flex-direction: column;
      .l-cont {
        padding-right: var(--50-20);
        .title {
          font-size: 20px;
        }
      }
      .r-cont {
        width: 80%;
        margin-right: 0;
        margin-left: auto;
      }
    }
    .flex.il {
      margin-bottom: 0;
      ul.r-cont {
        order: 1;
        margin-right: auto;
        margin-left: var(--50-20);
        width: 100%;
        padding-right: var(--50-20);
      }
      .l-cont {
        order: 2;
        width: 80%;
      }
    }
  }

  .under.concept {
    .flex {
      flex-direction: column;
      .l-cont {
        width: 100%;
        padding-right: var(--50-20);
        .desc {
          margin-bottom: var(--40-20);
          font-size: var(--16-14);
        }
        .under-line-link {
          .icon {
            height: 9px;
            img {
              height: 100%;
            }
          }
        }
      }
      .r-cont {
        width: 80%;
        margin-right: 0;
        margin-left: auto;
      }
    }
  }
  .under.book {
    .flex {
      flex-direction: column;
      align-items: start;
      .l-cont {
        order: 2;
        width: 70%;
      }
      .r-cont {
        order: 1;
        .desc {
          margin-bottom: 10px;
        }
      }
    }
  }
}

.under.counseling {
  padding-bottom: var(--60-30);
  .flex {
    margin-left: var(--space-side);
    @media screen and (max-width: 1300px) {
      margin-left: var(--space-side-under1300);
    }
    gap: var(--80-40);
    .l-cont {
      max-width: 652px;
      width: 50%;
      .title {
        margin-bottom: var(--60-30);
        font-size: 20px;
        line-height: 2;
      }
      .desc {
        margin-bottom: var(--40-20);
      }
      .box-w {
        padding: 15px 40px;
        background-color: rgb(255, 255, 255, 0.7);
        font-size: var(--16-14);
        width: fit-content;
        color: #8C8B9F;
      }
    }
    .r-cont {
      flex: 1;
    }
  }
}
.under.reserve {
  padding-top: var(--120-60);
  padding-bottom: var(--60-30);

  .box {
    background-color: #fff;
    width: 100%;
    max-width: 1360px;
    padding: 90px 80px 80px 80px;
    margin: 0 auto;
    position: relative;
    @media screen and (max-width: 1460px) {
      max-width: calc(100vw - 100px);
      padding: 50px 40px 40px 40px;
    }
    .reserve-deco-text {
      font-size: var(--120-60);
      position: absolute;
      top: -0.7em;
      left: 80px;
      @media screen and (max-width: 1460px) {
        left: 40px;
      }
    }
    .inner1 {
      @media screen and (max-width: 1300px) {
        display: contents;
      }
    }

    .desc {
      margin-bottom: var(--40-20);
      font-size: var(--16-14);
      a {
        text-decoration: underline;
        transition: all 0.3s;
      }
      a:hover {
        opacity: 0.7;
      }
    }
    .flex {
      gap: var(--60-30);
      justify-content: start;
      .reserve-btn {
        transition: all 0.3s;
        .img {
          max-width: 488px;
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.04);
          img {
            width: 100%;
          }
        }
      }
      .reserve-btn:hover {
        opacity: 0.7;
      }
    }
  }
}

.under.price {
  padding: var(--60-30) 0;
  .price-deco-text {
    font-size: var(--120-60);
    margin-bottom: var(--60-30);
    display: inline-block;
  }
  .flex {
    gap: var(--80-40);
    margin-left: var(--space-side);
    @media screen and (max-width: 1300px) {
      margin-left: var(--space-side-under1300);
    }
    .l-cont {
      flex: 1;
      .service-list {
        margin-bottom: var(--60-30);
        .title {
          font-size: var(--40-28);
          margin-bottom: 20px;
        }
        .desc {
          font-size: var(--16-14);
          margin-bottom: var(--40-20);
        }
        ul {
          display: flex;
          flex-direction: column;
          gap: 15px;
          li.flex {
            margin-left: 0;
            padding: 20px 40px;
            border-bottom: var(--border);
            background-color: #fff;
            span {
              font-size: 20px;
            }
            .t-xs {
              font-size: var(--16-14);
            }
          }
        }
        .annotation {
          display: inline-block;
          font-size: 14px;
          padding-top: 15px;
        }
      }
    }
    .r-cont {
      width: 45%;
      height: 800px;
    }
  }
}

.voice-banner {
  width: 100%;
  height: 283px;
  max-width: 1200px;
  margin: 60px auto 120px auto;
  display: block;
  padding: var(--60-30) 80px;
  position: relative;
  background-image: url(../img/banner1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  .wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    .title {
      font-size: var(--60-30);
      margin-bottom: 20px;
      color: #fff;
    }
    .desc {
      font-size: var(--16-14);
      color: #fff;
    }
  }
  .under-line-link {
    position: absolute;
    bottom: -20px;
    right: 0px;
    width: fit-content;
    font-size: var(--16-14);
    color: #fff;
    border-bottom: #fff 1px solid;
    span {
      color: #fff;
    }
  }
}
.voice-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #a2a1b5;
  opacity: 0.7;
  transition: all 0.3s;
}
.voice-banner:hover::before {
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  .under.counseling {
    .flex {
      flex-direction: column;

      .l-cont {
        max-width: auto;
        width: 100%;
        padding-right: var(--50-20);
        .box-w {
          padding: 5px 20px;
        }
      }
      .r-cont {
        width: 80%;
        margin-right: 0;
        margin-left: auto;
      }
    }
  }
  .under.reserve {
    .box {
      width: 100%;
      max-width: 100%;
      .flex {
        flex-direction: column;
        gap: 10px;
        .reserve-btn {
          transition: all 0.3s;
        }
      }
    }
  }
  .under.price {
    .flex {
      flex-direction: column;
      .l-cont {
        padding-right: var(--50-20);
        .service-list {
          ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
            li.flex {
              flex-direction: row;
              margin-left: 0;
              padding: 20px 40px;
            }
          }
          .annotation {
            font-size: 11px;
          }
        }
      }
      .r-cont {
        width: 80%;
        height: auto;
        margin-right: 0;
        margin-left: auto;
      }
    }
  }
  .voice-banner {
    height: 260px;
    margin: 30px auto 60px auto;
    padding: var(--60-30) 20px;
    .wrapper {
      .title {
        margin-bottom: 10px;
      }
    }
  }
}

.under.school {
  padding-bottom: var(--60-30);
  .flex {
    margin-left: var(--space-side);
    @media screen and (max-width: 1300px) {
      margin-left: var(--space-side-under1300);
    }
    gap: var(--80-40);
    .desc {
      font-size: var(--16-14);
      margin-bottom: var(--40-20);
    }

    .l-cont {
      flex: 1;
    }

    .r-cont {
      width: 45%;
    }
  }
}

.under.event {
  padding: var(--60-30) 0;

  .flex {
    align-items: center;

    .event-deco-text {
      font-size: var(--120-60);
      margin-bottom: var(--40-20);
    }
    .desc {
      font-size: var(--16-14);
    }
  }

  .event-lists {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--60-30);
    li {
      border-bottom: var(--border);
      padding: clamp(1.25rem, 0.8246rem + 1.7452vw, 2.5rem) 0;
      a.flex {
        width: 100%;
        justify-content: space-between;
        align-items: center;

        .l-cont {
          time {
            margin-bottom: 23px;
            font-size: var(--16-14);
            display: inline-block;
          }
          .title {
            font-size: 18px;
          }
        }
        .r-cont{
          padding-right: 40px;
        }
      }
    }

    li:first-child {
      border-top: var(--border);
    }
  }
  .under-line-link {
    font-size: var(--16-14);
  }
}

.under.member {
  padding-top: var(--60-30);
  padding-bottom: 120px;

  .member-deco-text {
    font-size: var(--120-60);
    display: inline-block;
    margin-bottom: var(--40-20);
  }

  .flex.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;

    li.flex {
      width: calc(50% - 20px);
      background-color: #fff;
      padding: var(--40-20);
      gap: var(--40-20);
      align-items: center;
      @media screen and (max-width: 1300px) {
        flex-direction: column;
      }
      .l-cont {
        width: 210px;
        height: 210px;
        overflow: hidden;
        clip-path: circle(50% at 50% 50%);

        img{
          width: 100%;
          height: 100%;
object-fit: cover;
        }
      }
      .r-cont {
        flex: 1;
        .name {
          font-size: var(--20-18);
          margin-bottom: 30px;
        }
        .desc {
          margin-bottom: 30px;
        }
        .under-line-link {
          span {
            font-size: var(--16-14);
          }
          .icon {
            height: 10px;
            img {
              height: 100%;
            }
          }
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .under.school {
    .flex {
      flex-direction: column;
      .l-cont {
        padding-right: var(--50-20);
      }
      .r-cont {
        width: 80%;
        margin-right: 0;
        margin-left: auto;
      }
    }
  }

  .under.event {
    .flex {
      align-items: start;
      flex-direction: column;
      margin-bottom: 20px;
      .event-deco-text {
        margin-bottom: 0;
      }
    }

    .event-lists {
      li {
        a.flex {
          align-items: start;
          margin-bottom: 0;
          .l-cont {
            time {
              margin-bottom: 10px;
            }
            .title {
              font-size: 16px;
            }
          }
          .r-cont {
            display: none;
          }
        }
      }
    }
  }

  .under.member {
    padding-bottom: 60px;

    .flex.cards {
      gap: 20px;

      li.flex {
        width: 100%;
        .r-cont {
          flex: 1;
          .name {
            margin-bottom: 15px;
          }
          .desc {
            margin-bottom: 15px;
          }
        }
      }
    }
  }
}

.voice {
  ul.flex.cards {
    display: flex;
    gap: var(--40-20);
    flex-wrap: wrap;
    margin-bottom: 120px;
    li.card {
      height: 480px;
      width: calc(50% - 20px);
      background-color: #fff;
      padding: var(--40-20);
      display: flex;
      flex-direction: column;
      justify-content: space-between;

      .title {
        font-size: var(--20-18);
        margin-bottom: 30px;
        line-height: 2;
        height: calc(2em * 2); /* 行の高さ×行数 */
      }

      .desc {
        width: 100%;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 7;
        overflow: hidden;
        line-height: 2;
        flex-grow: 1;
        font-size: var(--16-14);
        margin-bottom: 30px;
        max-height: calc(2em * 7); /* 行の高さ×行数 */
      }
      .under-line-link {
        margin-top: auto;
      }

      .en {
        font-size: var(--16-14);
      }
      .icon {
        height: 9px;
        img {
          height: 100%;
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .voice {
    ul.flex.cards {
      margin-bottom: 60px;
      li.card {
        height: auto;
        width: 100%;
        .title {
          font-size: 20px;
          margin-bottom: 30px;
          line-height: 2;
          height: auto;
        }
      }
    }
  }
}

.under.access {
  .inner1 {
    display: block;
  }
  .map {
    margin-bottom: var(--80-40);
  }
  .flex {
    gap: var(--80-40);
    align-items: start;
    .title {
      font-size: clamp(1.25rem, 0.9948rem + 1.0471vw, 2rem);
      margin-bottom: var(--60-30);
    }
    .desc {
      font-size: var(--16-14);
    }
  }
  .access-car {
    flex: 1;
  }
  .access-subway {
    flex: 1;
    .box {
      padding: 20px 40px;
      background-color: #fff;
    }
  }
}

@media screen and (max-width: 768px) {
  .under.access {
    padding-bottom: 30px;
    .inner1 {
      display: block;
    }
    .map {
      margin-bottom: 0;
      height: 300px;
    }
    .flex {
      display: flex;
      flex-direction: column;
      .title {
        font-size: clamp(1.25rem, 0.9948rem + 1.0471vw, 2rem);
        margin-bottom: var(--60-30);
      }
      .desc {
        font-size: var(--16-14);
      }
    }
    .access-car {
      flex: 1;
    }
    .access-subway {
      width: 100%;
      flex: 1;
      .box {
        width: 100%;
        max-width: 500px;
        flex-direction: row;
        padding: 20px 20px;
      }
    }
  }
}

.under.archive,
.event {
  .topics-area {
    ul.flex {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: start;

      li.card {
        width: calc((100% - 120px) / 3);
        transition: all 0.3s;

        a.flex {
          width: 100%;
          height: 100%;
          overflow: hidden;
          padding-bottom: 30px;
          display: flex;
          flex-direction: column;
          flex: 1;

          .img {
            width: 100%;
            background-color: #fff;
            margin-bottom: 25px;
            overflow: hidden;
            aspect-ratio: 7 / 4.5;

            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              transition: all 0.3s;
            }
          }
          .sub-area{
            display: flex;
            gap: 20px;
            time{
              font-size: var(--16-14);
            }
            .category{
              display: block;
              padding: 5px 10px;
              background-color: #fff;
              font-size: 13px;
              margin-bottom: 20px;
            }

          }
          h3.title{
font-size: 18px;
line-height: 2;
          }
          
        }
      }
      li:hover {
        opacity: 0.8;

        img {
          scale: 1.05;
        }
      }
    }
  }
}

@media screen and (max-width: 1200px) {
  .under.archive,
  .event {
    .topics-area {
      ul.flex {
        gap: 30px;
        li.card {
          width: calc((100% - 30px) / 2);
          a.flex {
            .img {
              margin-bottom: 15px;
            }
            .sub-area{
              gap: 10px;
              .category{
                font-size: 9px;
                margin-bottom: 10px;
              }
  
            }
            h3.title{
  font-size: 16px;
            }
            
          }
        }
      }
    }
  }
}

@media screen and (max-width: 500px) {
  .under.archive,
  .event {
    .topics-area {
      ul.flex {
        gap: 20px;
        li.card {
          width: 100%;
        }
      }
    }
  }
}

.under.contact {
  .desc {
    margin-bottom: var(--40-20);
    font-size: var(--16-14);
    a {
      text-decoration: underline;
      transition: all 0.3s;
    }
    a:hover {
      opacity: 0.7;
    }
  }
  .flex {
    gap: var(--60-30);
    justify-content: start;
    .reserve-btn {
      transition: all 0.3s;
      margin-bottom: 60px;
      .img {
        max-width: 488px;
        box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.04);
        img {
          width: 100%;
        }
      }
    }
    .reserve-btn:hover {
      opacity: 0.7;
    }
  }
  .btn-privacy-policy {
    padding-left: 16px;
    position: relative;
    transition: all 0.3s;
    display: inline-block;
    margin-bottom: 120px;
  }
  .btn-privacy-policy:hover {
    opacity: 0.7;
  }

  .btn-privacy-policy::before {
    content: "";
    width: 6px;
    height: 1px;
    background-color: #A2A1B5;
    position: absolute;
    border-radius: 100px;
    top: 50%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .under.contact {
    .flex {
      flex-direction: column;
      .reserve-btn {
        transition: all 0.3s;
        margin-bottom: 0px;
        .img {
          max-width: 488px;
          img {
            width: 100%;
          }
        }
      }
      .reserve-btn:last-child {
        margin-bottom: 40px;
        .img {
          max-width: 488px;
          
          img {
            width: 100%;
          }
        }
      }
      .reserve-btn:hover {
        opacity: 0.7;
      }
    }
    .btn-privacy-policy {
      padding-left: 20px;
      margin-bottom: 60px;
    }
  }
}

/* ブログ記事ページ */

#under_blog {
  padding: 0 0 80px 0;
  .to-archive {
    font-size: 14px;
    display: block;
    padding: 20px 0;
    color: #3f3f3f;
    width: fit-content;
    transition: all 0.3s;
  }
  .to-archive:hover {
    opacity: 0.6;
  }

  .blog-contents-area {
    width: 100%;
    text-align: left;
    background-color: rgb(255, 255, 255, 0.8);
    padding: 40px 80px 200px 80px;

    .inner1 {
      width: 100%;
    }
  }

  .blog-dates {
    margin-bottom: var(--40-20);
    color: #5c5575;
    font-size: 14px;
  }
  .blog-page-title {
    padding: 20px 0;
    font-size: 24px;
    font-weight: normal;
  }
  .blog-content {
    padding: 40px 0;
  }
  .company-info {
    display: flex;
    flex-direction: column;

    h4 {
      font-size: 24px;
      font-weight: normal;
    }
    p.sub-title {
      font-size: 20px;
    }

    p {
      font-size: var(--16-14);
    }
    a {
      text-decoration: none;
      font-size: var(--16-14);
    }
    a.contact {
      text-decoration: none;
      font-size: var(--16-14);
      color: #3f3f3f;
    }
  }
}

@media screen and (max-width: 677px) {
  #under_blog {
    padding: 0 0 40px 0;
    .inner2 {
      width: calc(100% - 20px);
    }
    .blog-contents-area {
      padding: 20px 20px 200px 20px;
      .inner1 {
        width: 100%;
      }
    }

    .blog-dates {
      font-size: 10px;
      margin-bottom: 20px;
    }
    .blog-page-title {
      font-size: 18px;
      padding: 0;
      margin-bottom: 10px;
    }
  }
}

/* リキャプチャ 非表示 */

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 1201px) {
  .nav-area {
    display: none;
  }

  #hamburger-menu-btn {
    display: block;
  }
}

#privacy-policy {
  padding: 0 0 80px 0;
  .inner2 {
    max-width: 1200px;
  }
  .policy-contents-area {
    background-color: rgb(255, 255, 255, 0.8);
    padding: 40px 80px;
  }

  h3 {
    font-weight: normal;
    margin: 30px 0 10px 0;
    font-size: var(--16-14);
  }

  .title {
    text-align: center;
    margin-bottom: var(--40-20);
    padding: 40 0px;
  }
  p,
  li {
    font-size: 14px;
  }

  .policy-info {
    margin: 40px 0;
  }
}

@media screen and (max-width: 677px) {
  #privacy-policy {
    padding: 0 0 40px 0;
    .inner2 {
      width: calc(100% - 20px);
    }
    .policy-contents-area {
      padding: 20px;
    }

    h3 {
      font-weight: normal;
      margin: 30px 0 10px 0;
    }

    .title {
      margin-bottom: 20px;
      padding: 0px;
    }

    .policy-info {
      margin: 40px 0;
    }
  }
}
