@charset "UTF-8";

/* ========================================== */
/* variables */
/* ========================================== */

:root {
    --color-base: #fff;
    --color-text: #000;
    --color-text-inverted: #fff;
    --color-primary: #8784d1;
    --color-primary-exlight: #fafafc;
    --color-muted: #777;
    --color-muted-light: #aaa;
    --color-muted-exlight: #f5f5f5;
    --color-accent: #fcd12b;
    --color-highlight: #ff0;
    --color-logo: #947486;
    --color-border: #ccc;
    --color-pink: #ff6a86;
  
    --container-inner-width-4xl: 176rem;
    --container-inner-width-3xl: 164rem;
    --container-inner-width-2xl: 150rem;
    --container-inner-width-xl: 136rem;
    --container-inner-width-lg: 122rem;
    --container-inner-width-md: 110rem;
    --container-inner-width-sm: 88rem;
  
    /* 下記サイトにて計算
    https://min-max-calculator.9elements.com/?33_6,44_8,375,1480
    viewport min:375px - max:1480px
    */
  
    --space-4: clamp(0.24rem, 0.186rem + 0.23vw, 0.4rem);
    --space-8: clamp(0.48rem, 0.371rem + 0.46vw, 0.8rem);
    --space-12: clamp(0.72rem, 0.557rem + 0.7vw, 1.2rem);
    --space-16: clamp(0.96rem, 0.743rem + 0.93vw, 1.6rem);
    --space-20: clamp(1.2rem, 0.929rem + 1.16vw, 2rem);
    --space-24: clamp(1.44rem, 1.114rem + 1.39vw, 2.4rem);
    --space-28: clamp(1.68rem, 1.3rem + 1.62vw, 2.8rem);
    --space-32: clamp(1.92rem, 1.486rem + 1.85vw, 3.2rem);
    --space-36: clamp(2.16rem, 1.671rem + 2.09vw, 3.6rem);
    --space-40: clamp(2.4rem, 1.857rem + 2.32vw, 4rem);
    --space-44: clamp(2.64rem, 2.043rem + 2.55vw, 4.4rem);
    --space-48: clamp(2.88rem, 2.228rem + 2.78vw, 4.8rem);
    --space-52: clamp(3.12rem, 2.414rem + 3.01vw, 5.2rem);
    --space-56: clamp(3.36rem, 2.6rem + 3.24vw, 5.6rem);
    --space-60: clamp(3.6rem, 2.786rem + 3.48vw, 6rem);
    --space-64: clamp(3.84rem, 2.971rem + 3.71vw, 6.4rem);
    --space-68: clamp(4rem, 3.05rem + 4.05vw, 6.8rem);
    --space-72: clamp(4rem, 2.914rem + 4.63vw, 7.2rem);
    --space-76: clamp(4rem, 2.778rem + 5.21vw, 7.6rem);
    --space-80: clamp(4rem, 2.643rem + 5.79vw, 8rem);
    --space-84: clamp(4rem, 2.507rem + 6.37vw, 8.4rem);
    --space-88: clamp(4rem, 2.371rem + 6.95vw, 8.8rem);
    --space-92: clamp(4rem, 2.235rem + 7.53vw, 9.2rem);
    --space-96: clamp(4rem, 2.1rem + 8.11vw, 9.6rem);
    --space-100: clamp(4rem, 1.964rem + 8.69vw, 10rem);
    --space-120: clamp(6rem, 3.964rem + 8.69vw, 12rem);
    --space-140: clamp(8rem, 5.964rem + 8.69vw, 14rem);
    --space-150: clamp(9rem, 6.964rem + 8.69vw, 15rem);
    --space-160: clamp(9rem, 6.624rem + 10.14vw, 16rem);
    --space-170: clamp(10rem, 7.624rem + 10.14vw, 17rem);
    --space-200: clamp(12rem, 9.285rem + 11.58vw, 20rem);
  
    --font-size-12: clamp(1.19rem, 1.187rem + 0.01vw, 1.2rem);
    --font-size-14: clamp(1.3rem, 1.266rem + 0.14vw, 1.4rem);
    --font-size-16: clamp(1.4rem, 1.332rem + 0.29vw, 1.6rem);
    --font-size-18: clamp(1.6rem, 1.532rem + 0.29vw, 1.8rem);
    --font-size-20: clamp(1.7rem, 1.598rem + 0.43vw, 2rem);
    --font-size-22: clamp(1.8rem, 1.664rem + 0.58vw, 2.2rem);
    --font-size-24: clamp(1.9rem, 1.73rem + 0.72vw, 2.4rem);
    --font-size-28: clamp(2.1rem, 1.862rem + 1.01vw, 2.8rem);
    --font-size-32: clamp(2.2rem, 1.861rem + 1.45vw, 3.2rem);
    --font-size-36: clamp(2.3rem, 1.859rem + 1.88vw, 3.6rem);
    --font-size-40: clamp(2.6rem, 2.125rem + 2.03vw, 4rem);
    --font-size-44: clamp(2.7rem, 2.123rem + 2.46vw, 4.4rem);
    --font-size-48: clamp(2.8rem, 2.121rem + 2.9vw, 4.8rem);
    --font-size-52: clamp(2.9rem, 2.119rem + 3.33vw, 5.2rem);
    --font-size-56: clamp(3rem, 2.118rem + 3.76vw, 5.6rem);
    --font-size-60: clamp(3.1rem, 2.116rem + 4.2vw, 6rem);
    --font-size-64: clamp(3.2rem, 2.114rem + 4.63vw, 6.4rem);
  }


/* ========================================== */
/* 202512After reset リニューアル前のソースコードはそのままで見た目を調整するためのリセット用CSS */
/* ========================================== */

body {
  min-width: 100%;
}
#page-wrap,
.container {
  max-width: 100% !important;
}

a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

sup {
    vertical-align: top;
    font-size: .5em;
}

header .header-box h1 {
    max-width: 100% !important;
}

/* 背景色・文字色のリセット */
.section-lightgray {
  background-color: transparent;
  color: var(--color-text);
}
.section-news-entry {
  background-color: transparent;
}

.section-staff {
  background-color: var(--color-base);
  color: var(--color-text);

  h3::after {
    background-color: var(--color-border);
  }
  h4 {
    color: var(--color-text-inverted);
  }
}
.section-staff h3 > .title-inner {
  background: var(--color-base);
}

.section-privacy {
  h3 {
    font-weight: 700;
  }
}

.wp-pagenavi {
  a {
    text-decoration: none;
  }
}

.category-blog,
.category-cardio,
.category-diet,
.category-training,
.category-yoga {
    .article-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-24);

        @media (width <= 640px) {
            grid-template-columns: repeat(2, 1fr);
        }

        article {
            width: auto;
            margin-right: 0;
            margin-top: 0;
            
            a {
            text-decoration: none;
            }
        }
    }
}

body.category,
body.single {
  header .header-box {
    padding-top: var(--space-170);
    padding-bottom: var(--space-80);
  }
}

.support_end a {
  text-decoration: none;
}

.page-voice .section-voice .section-desc {
  background: none;
  padding-block: var(--space-48);
}
.voice-item-desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;

  @media (width <= 640px) {
    grid-template-columns: 1fr;
  }
}
.section-voice .voice-item-desc .l-block,
.section-voice .voice-item-desc .r-block {
  width: auto;
}

.access-box {
    background-color: var(--color-base);
    /* border: 1px solid var(--color-border); */
    color:var(--color-text);
    padding: var(--space-20);
}
#news-section {
    background: transparent !important;
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
}

#news-section .article-container:nth-child(even) {
    background: transparent !important;
}
#news-section .article-container:nth-child(odd) {
    background-color: var(--color-primary-exlight);
}
#news-section .article-container article {
    color: var(--color-text) !important;
}
#news-section .article-container article .entry .cats {
    color: var(--color-text-inverted) !important;
}
#news-section .article-container a {
    max-width: 100%;
    padding-inline: var(--space-20);
}

.page-comeback {
    #comeback .benefits-wrap ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-24) var(--space-40);

        @media (width <= 640px) {
            grid-template-columns: repeat(1, 1fr);
        }

        li {
            width: auto;
            margin-top: 0;
        }
    }
}
.page-template-page-about-lesson .lesson-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24) var(--space-32);

    @media (width <= 480px) {
        grid-template-columns: repeat(1, 1fr);
    }

    a {
        display: block;
        max-width: 100%;
        width: 100%;
        min-width: 0;
        margin-bottom: 0;
        
        img {
            width: 100%;
        }
    }
}
.page-facility {
    .area_content,
    .anchor_menu {
        a {
            text-decoration: none;
        }
    }
}
.page-program {
    .head_link_schedule,
    .program,
    .p-lesson {
        a {
            text-decoration: none;
        }
    }
    .feature .box-point {
        display: flex;
        flex-direction: column;

        @media (width <= 900px) {
             .point {
                line-height: 1.2;
             }
            h4 {
                position: relative;
                z-index: 100;
            }
        }
        @media (width <= 640px) {
            .point {
                font-size: 38px;
            }
        }
    }
    .p-lesson .box-p-lesson .text .footer a {
        @media (width <= 640px) {
            padding-inline: 20px;
        }
    }
}
.box-program {
    a {
        text-decoration: none;
    }
}
.page-time-price .wrap-time {
    gap: 20px;
}
.page-template-page-bfrlp {
    .section-style, #main-footer {
        min-width: 0;
    }
    .word {
        display: inline-block;
    }
    #priceinfo-section .wrap-price {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-44);

        @media (width <= 900px) {
            grid-template-columns: repeat(1, 1fr);
        }

        > div {
            width: auto;
        }
    }
    #priceinfo-section .pickup-member {
        display: flex;
        flex-direction: column
    }
    #priceinfo-section .pickup-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid #fff;
        padding-bottom: 10px;
    }
    #priceinfo-section .pickup-member-inner {
        position: relative;
    }
    #priceinfo-section .pickup-member-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--space-24);
    }
    #priceinfo-section .member .osusume {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 0;
    }
    #priceinfo-section .member .pickup h4, #priceinfo-section .member .pickup p {
        padding-left: 0;
    }
    #priceinfo-section .pickup-price {
        border-bottom: none;
        padding-bottom: 0;
        text-align: left;
    }
    #about-section .point-list {
        gap: var(--space-24);
    }
    #value-section .point {
        gap: var(--space-24);
    }
    #gym-section .gym-image {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-16) var(--space-32);

        @media (width <= 480px) {
            grid-template-columns: repeat(1, 1fr);
        }

        .gym01, .gym02, .gym03 {
            width: 100%;
        }
    }
    #gym-introduce .place-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-8) var(--space-16);

        @media (width <= 800px) {
            grid-template-columns: repeat(2, 1fr);
        }
        @media (width <= 480px) {
            grid-template-columns: repeat(1, 1fr);
        }

        li {
            width: auto;
            margin-right: 0;
        }
    }
    #others-introduce .facility-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8) var(--space-16);

        @media (width <= 480px) {
            grid-template-columns: repeat(1, 1fr);
        }

        li {
            width: 100%;
        }
    }
    #others-introduce .facility-list li .facility-image {
        width: 100%;
        aspect-ratio: 300 / 180;
        height: auto
    }
    #price-section .enter-button > h3 {
        border-bottom: 2px solid #fff;
        max-width: 720px;
        margin-inline: auto;
    }
    #price-section .enter-button > h3:before {
        display: none;
    }
}

/* ========================================== */
/* base */
/* ========================================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@700&family=Zen+Maru+Gothic:wght@700&display=swap");

html {
  font-size: 62.5%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.03em;
}


/* ========================================== */
/* header */
/* ========================================== */

.site-header {
  background: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-56);
  z-index: 100;
  color: var(--color-text);
  transition: background-color .6s;

  &.sticky {
    background-color: rgba(255, 255, 255, 0.8);
  }

  &::after {
    display: none;
  }

  @media (width <= 800px) {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.site-header-logo {
  padding-left: var(--space-40);
  font-size: inherit;

  @media (width <= 480px) {
    padding-left: var(--space-24);
  }
  img {
    width: 300px;

    @media (width <= 800px) {
      width: 240px;
    }
    @media (width <= 480px) {
      width: 200px;
    }
  }
}
.site-header-actions {
  display: flex;
  align-items: center;
}
.site-header-trial-btn,
.site-header-lesson-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: var(--space-8);
  padding: var(--space-16) var(--space-28);
  border-radius: 9999px;
  font-size: var(--font-size-16);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  line-height: 1.2;

  @media (width <= 1024px) {
    gap: var(--space-4);
    font-size: var(--font-size-16);
  }
  @media (width <= 800px) {
    display: none;
  }

  &:hover {
    transform: scale(1.05);
  }
  &::before {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
  }
}
.site-header-trial-btn-label,
.site-header-lesson-btn-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.site-header-trial-btn {
  background-color: var(--color-accent);

  &::before {
    content: url(../img/header-trial-btn-icon.svg);
  }
}
.site-header-lesson-btn {
  background-color: var(--color-primary);
  margin-left: var(--space-12);
  color: var(--color-text-inverted);

  &::before {
    content: url(../img/header-lesson-btn-icon.svg);
  }
}
.site-header-menu-btn {
  background: url(../img/header-menu-btn.svg) 100% 0% / contain no-repeat;
  display: block;
  width: 10rem;
  aspect-ratio: 1 / 1;
  margin-left: var(--space-32);
  border: none;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
  transition: 0.4s;

  @media (width <= 1024px) {
    margin-left: var(--space-24);
  }
  @media (width <= 800px) {
    background-image: url(../img/header-menu-btn-sp.svg);
    width: 10rem;
    aspect-ratio: 123 / 106;
  }
  @media (width <= 480px) {
    width: 8rem;
  }

  &:hover {
    @media (width > 800px) {
      transform: scale(1.1);
    }
  }
}

.site-modal-overlay {
  background-color: #000;
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-radius: 9999px;
  z-index: -1;
  transition: 0.3s;
  transform: translate(50%, -50%);

  .site-modal.active & {
    z-index: 1000;

    @media (orientation: landscape) {
      width: 300vw;
      height: 300vw;
    }
    @media (orientation: portrait) {
      width: 300vh;
      height: 300vh;
    }
  }
}

.site-modal-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  position: fixed;
  width: 0;
  height: 0;
  z-index: -1;
  
  .site-modal.active & {
      width: 100svw;
      height: 100svh;
      z-index: 1001;
    }
}
.site-modal-wrapper-inner {
    overflow-y: scroll;
}

.site-header-menu-close-btn {
  position: fixed;
  top: 0;
  right: 13px;
  background: url(../img/header-menu-btn-close.svg) 100% 0% / contain no-repeat;
  display: none;
  width: 10rem;
  aspect-ratio: 1 / 1;
  border: none;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;

  .site-modal.active & {
    display: block;
  }

  @media (width <= 800px) {
    right: 0;
    background-image: url(../img/header-menu-btn-close-sp.svg);
    width: 10rem;
    aspect-ratio: 123 / 106;
  }
  @media (width <= 480px) {
    width: 8rem;
  }
}

.site-modal-contents {
    padding: var(--space-100) var(--space-40);
    color: var(--color-text-inverted);
    line-height: 1.4;
}

.site-modal-logo {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1000;

    @media (width <= 640px) {
        img {
            max-width: 70%;
        }
    }
}
.site-modal-menu {
    display: flex;
    flex-direction: column;
    margin-top: var(--space-36);
    width: 100%;

    @media (width <= 1440px) {
        margin-top: var(--space-28);
    }
}
.site-modal-menu-item {
    border-bottom: 1px solid;
}
.site-modal-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-28);
    padding-block: var(--space-28);
    font-size: var(--font-size-18);
    font-weight: 700;
    text-decoration: none;
    
    @media (width <= 1440px) {
        padding-block: var(--space-16);
        font-size: var(--font-size-16);
    }

    &::after {
        content: "";
        display: block;
        width: 2.5rem;
        height: 2.5rem;
        background: url(../img/site-modal-menu-link-icon.svg) 50% 50% / contain no-repeat;
    }
    &:hover {
        color: var(--color-accent);
    }
}
.site-modal-menu-sub {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12) var(--space-40);
    margin-top: var(--space-44);
    max-width: 58rem;

    @media (width <= 1440px) {
        margin-top: var(--space-28);
    }
}

.site-modal-menu-sub-link {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    text-decoration: none;

    @media (width <= 1024px) {
        padding-block: var(--space-8);
    }

    &::before {
        content: ">";
        font-size: var(--font-size-14);
        font-weight: 700;
    }
    
    &:hover {
        color: var(--color-accent);
    }
}
.site-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-12) var(--space-64);
    margin-top: var(--space-72);
    
    @media (width <= 1440px) {
        gap: var(--space-12) var(--space-32);
        margin-top: var(--space-40);
    }
}
.site-modal-actions-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-32);
    font-size: var(--font-size-20);
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: 0.3s;
    object-position: 50% 0;

    @media (width <= 1440px) {
        padding: var(--space-24);
    }
    @media (width > 480px) {
        min-width: 35rem;
    }
    @media (width <= 480px) {
        width: 100%;
    }
 
    &:hover {
        transform: scale(1.05);
    }
    &::after {
        position: absolute;
        right: var(--space-32);
        background: 50% 50% /contain no-repeat;
        content: "";
        display: block;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
    }
}
.site-modal-actions-btn-trial {
    background-color: var(--color-accent);
    color: var(--color-text);

    &::after {
        background-image: url(../img/site-modal-actions-btn-trial-icon.svg);
    }
}
.site-modal-actions-btn-membership {
    background-color: var(--color-logo);
    color: var(--color-text-inverted);

    &::after {
        background-image: url(../img/site-modal-actions-btn-membership-icon.svg);
    }
}

/* ========================================== */
/* footer */
/* ========================================== */

.site-footer {
    position: relative;
  background-color: var(--color-base);
  padding-inline: var(--space-40);
  padding-block: var(--space-96);
  border-top: 1px solid var(--color-border);

  @media (width <= 480px) {
    padding-inline: var(--space-28);
    padding-bottom: var(--space-170);
  }
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 678fr 576fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "block01 map"
    "block02 map"
    "banner banner";
  column-gap: var(--space-64);
  max-width: var(--container-inner-width-xl);
  margin-inline: auto;

  @media (width <= 640px) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "block01"
      "map"
      "end-sp";
    row-gap: var(--space-40);
  }
  @media (width <= 480px) {
    row-gap: var(--space-24);
  }
}
.site-footer-block01 {
  grid-area: block01;
}
.site-footer-logo {
    img {
        width: 400px;

        max-width: 70%;
    }
}
.site-footer-block02 {
  grid-area: block02;
  padding-top: var(--space-72);

  @media (width <= 640px) {
    display: contents;
  }
}
.site-footer-info {
  margin-top: var(--space-48);
  font-size: var(--font-size-16);
  line-height: 1.9;
}
.site-footer-map {
  grid-area: map;

  iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;

    @media (width <= 640px) {
      height: 240px;
    }
  }
}

#menu-fnav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12) var(--space-24);

  @media (width <= 1380px) {
    gap: var(--space-12) var(--space-12);
  }

  @media (width <= 640px) {
    justify-content: center;
  }

  li {
    line-height: 1;

    &:not(:last-child) {
      padding-right: var(--space-24);
      border-right: 1px solid var(--color-logo);

      @media (width <= 1380px) {
        padding-right: var(--space-12);
      }
    }

    a {
        display: inline-block;
      font-size: var(--font-size-16);
      color: var(--color-logo);
      text-decoration: none;

      @media (width <= 1024px) {
        padding-block: var(--space-8);
      }

      @media (width <= 1380px) {
        font-size: var(--font-size-14);
      }
    }
  }
}
.site-footer-end {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-16) var(--space-28);
  margin-top: var(--space-32);

  @media (width <= 640px) {
    flex-direction: column;
    align-items: center;
    order: 3;
  }
}
.site-footer-copyright {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: var(--font-size-12);
  
  @media (width <= 480px) {
    font-size: 9px;
  }
}
.site-footer-sns {
    display: flex;
    gap: var(--space-12);

    @media (width <= 640px) {
        position: absolute;
        right: var(--space-28);
        top: var(--space-96);
        transform: translateY(-17%);

        img {
            width: 30px;
        }
    }
}
.site-footer-banner {
  grid-area: banner;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-48);
  padding-top: var(--space-72);

  @media (width <= 640px) {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-12);
    padding-top: var(--space-48);
    order: 2;
  }

  img {
    width: 100%;
    height: auto;
  }
}

.site-footer-end-sp {
    display: contents;
    grid-area: end-sp;

    @media (width <= 640px) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


/* ========================================== */
/* fixed menu */
/* ========================================== */

.fixed-actions {
    
    @media (width > 800px) {
        display: none;
    }
    @media (width <= 800px) {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 100;
  }
}

.fixed-trial-btn,
.fixed-tel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-20) var(--space-12);
    font-size: var(--font-size-16);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}
.fixed-trial-btn {
  background-color: var(--color-accent);
  color: var(--color-text-text);

  &::before {
    content: url(../img/header-trial-btn-icon.svg);
    width: 1.6rem;
    height: 1.6rem;
    object-fit: contain;
  }
}
.fixed-tel-btn {
    background-color: var(--color-primary);
    color: var(--color-text-inverted);
    
    &::before {
      background: url(../img/fixed-tel-btn-icon.svg) 50% 50% /contain no-repeat;
      content: "";
      width: 1.8rem;
      height: 1.8rem;
    }
}

/* ========================================== */
/* page-header */
/* ========================================== */

.page-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-170);
  padding-inline: var(--space-28);
  padding-bottom: var(--space-32);

  @media (width <= 640px) {
    padding-bottom: 0;
  }

  &::before {
    background: url(../img/page-header-bg.svg) 50% 0 / contain no-repeat;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1920 / 698;
    z-index: -1;
  }
}

.page-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-12);
  letter-spacing: 0.3em;
}

.page-heading-en {
  color: var(--color-muted);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: var(--font-size-20);
  text-transform: uppercase;
}

.page-heading-ja {
  font-weight: 700;
  font-size: var(--font-size-48);
  line-height: 1.2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-28);
  font-size: var(--font-size-12);

  li:nth-child(n + 2) {
    &::before {
      content: ">";
      margin-inline: 0.75em;
    }
  }
}


/* ========================================== */
/* btn */
/* ========================================== */

.primary-btn,
.accent-btn {
    display: flex;
    min-width: 27.5rem;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-12) var(--space-12) var(--space-12) var(--space-28);
    font-size: var(--font-size-16);
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: 0.3s;
    object-position: 50% 0;
    
    &:hover {
        transform: scale(1.05);
    }
    &::after {
        content: "";
        display: block;
        width: 5rem;
        height: 5rem;
        border-radius: 50%;
    }
}
.primary-btn {
    background-color: var(--color-text);
    color: var(--color-text-inverted);
    
    &::after {
        background: var(--color-text-inverted) url(../img/primary-btn-icon.svg) 50% 50% / 1.1rem 1.1rem no-repeat;
    }
}
.accent-btn {
    background-color: var(--color-accent);
    color: var(--color-text);

    &::after {
        background: var(--color-text) url(../img/accent-btn-icon.svg) 50% 50% / 1.1rem 1.1rem no-repeat;
    }
}

/* ========================================== */
/* section bg */
/* ========================================== */

.section-bg05 {
  position: relative;
  overflow: hidden;
}
.section-bg05-item {
  position: absolute;
  max-width: calc(30% + 20vw);
  width: 800px;
  z-index: 1;
}
.section-bg05-item01 {
  left: 0;
  top: 0;
}
.section-bg05-item02 {
    right: 0;
    top: 0;
}
.section-bg05-item03 {
  left: 0;
  bottom: 0;
}
.section-bg05-item04 {
  right: 0;
  bottom: 0;
}

/* ========================================== */
/* accordion */
/* ========================================== */

.faq-item {
    border-radius: 20px;
    overflow: hidden;
}
.faq-item-summary {
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
    padding: var(--space-16) var(--space-24);
    color: var(--color-text-inverted);
    font-size: var(--font-size-18);
    font-weight: bold;
    cursor: pointer;

    &::after {
        content: "+";
        font-size: var(--font-size-24);
    }
    .faq-item[open] &::after {
        content: "-";
    }
}
.faq-item-content {
    background-color: var(--color-muted-exlight);
    padding: var(--space-20) var(--space-24);
    font-size: var(--font-size-16);
}