@charset "utf-8";
/*=========================
  Common
=========================*/

/* color */
:root {
  --blue: #036eb8;
  --green: #20afbd;
  --pink: #ee2683;
  --pink2: #e85298;
  --yellow: #fff67e;
  --red: #e01212;
}

.font-mplus1 {
  font-family: 'M PLUS 1', sans-serif;
}
.font-noto {
  font-family: 'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
  /* scroll-padding-top: 100px;  */
}
/* @media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 0px;
  }
} */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  position: relative;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
  color: inherit;
  &:hover {
    @media (any-hover: hover) {
      opacity: 0.7;
    }
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  line-height: 1.6;
  text-align: justify;
  @media (max-width: 960px) {
    /* font-size: 1rem; */
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /* line-height: 1; */
  font-size: inherit;
  font-weight: inherit;
}

.pc-only {
  display: initial;
}
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: initial;
  }
}

/* .container {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin-inline: auto;
} */

/*=========================
  header
=========================*/
header {
  border-top: 10px solid #004da0;
  .header__wrapper {
    padding: 35px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media (max-width: 960px) {
      padding: 1rem;
    }
  }
  .header__logo {
    margin-right: 1rem;
    h1 {
      width: 222px;
      @media (max-width: 960px) {
        width: 130px;
      }
    }
  }
  .header__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    @media (max-width: 768px) {
      display: none;
    }
  }
  .header__ctaTel {
    .tel {
      color: #036eb8;
      display: flex;
      align-items: center;
      font-size: 34px;
      font-weight: 600;
    }
    .icon {
      margin-right: 0.5rem;
    }
    .row2 {
      font-size: 11px;
      font-weight: 600;
    }
  }
  .header__ctaContact {
    border-radius: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    background-color: #20afbd;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
    &:hover {
      @media (any-hover: hover) {
        transform: translateY(2px);
        box-shadow: none;
      }
    }
    &::before {
      content: '';
    }
    .text {
      text-align: center;
      text-wrap: balance;
      color: #fff;
      font-weight: 600;
      .row1 {
        font-size: 22px;
      }
      .row2 {
        font-size: 13px;
      }
    }
  }
}

/*=========================
  FV
=========================*/
section.fv {
  background: url(../img/fv-bg.png) no-repeat;
  background-size: cover;
  .fv__inner {
    position: relative;
  }
  .fv__copy {
    width: calc(554 / 1300 * 100vw);
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 5%;
    margin: auto;
    @media (max-width: 768px) {
      width: calc(333 / 375 * 100vw);
      position: static;
      padding-top: 2rem;
    }
  }
  .fv__img {
    width: 50%;
    margin-left: auto;
    padding-top: 3rem;
    @media (max-width: 768px) {
      width: 100%;
      padding-top: 0rem;
    }
  }
}

/*=========================
  cta
=========================*/
section.cta {
  position: relative;
  z-index: 2;
  background: linear-gradient(rgba(255, 203, 227, 0.6), rgba(255, 203, 227, 0.6)), url(../img/fv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 4rem;
  .container {
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin-inline: auto;
  }
  .cta__label {
    background: var(--pink);
    color: #fff;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 0;
    margin-bottom: 4rem;
    @media (max-width: 960px) {
      margin-bottom: 3rem;
    }
    span:nth-child(1) {
      font-size: 1.5625rem;
      line-height: 1;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff;
      padding: 3px 0 6px;
      margin-top: 4px;
      margin-right: 0.5rem;
      @media (max-width: 960px) {
        font-size: 1rem;
        margin-right: 0.25rem;
      }
    }
    span:nth-child(4) {
      font-size: 1.5625rem;
      flex-basis: 100%;
      text-align: center;
      margin-bottom: 10px;
      @media (max-width: 960px) {
        font-size: 1rem;
        margin-right: 0.25rem;
      }
    }
    span:nth-child(2) {
      font-size: 1.875rem;
      margin-right: 1rem;
      @media (max-width: 960px) {
        font-size: 1.25rem;
        margin-right: 0.5rem;
      }
    }
    span:nth-child(3) {
      color: var(--yellow);
      font-size: 2.375rem;
      font-weight: 800;
      @media (max-width: 960px) {
        font-size: 1.75rem;
      }
    }
  }

  .flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }
  }
  .tel-wrapper {
    width: 50%;
    @media (max-width: 768px) {
      width: min(90%, 490px);
    }
    .text {
      display: inline-block;
      width: fit-content;
      font-size: 0.875rem;
      margin: 1rem 0 0 5rem;
      @media (max-width: 768px) {
        display: block;
        width: fit-content;
        margin: 1rem auto 0;
      }
    }
  }
  .contact-wrapper {
    width: 50%;
    @media (max-width: 768px) {
      width: min(90%, 490px);
    }
  }
  .cta__button {
    min-height: 100px;
    line-height: 1.3;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
    opacity: 1;
    transition: 0.3s ease;
    @media (any-hover: hover) {
      &:hover {
        transform: scale(1.1, 1.1);
      }
    }
    @media (max-width: 768px) {
      min-height: 78px;
    }
  }
  .cta__button--tel {
    background-color: #fff;
    border-radius: 60px;
    border: 3px solid var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0.75rem 1.5rem;
    .row1 {
      font-size: 1.25rem;
      font-weight: 600;
      @media (max-width: 768px) {
        font-size: 0.875rem;
      }
    }
    .row2 {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2.125rem;
      font-weight: 600;
      color: var(--green);
      @media (max-width: 768px) {
        font-size: 1.5rem;
      }
      .icon {
        margin-right: 10px;
        @media (max-width: 768px) {
          width: 20px;
          margin-right: 5px;
        }
      }
    }
  }
  .cta__button--contact {
    background-color: var(--green);
    border-radius: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1.5rem;
    @media (max-width: 768px) {
      gap: 0.5rem;
    }
    &::before {
      content: '';
    }
    .text {
      text-align: center;
      text-wrap: balance;
      color: #fff;
      font-weight: 600;
      .row1 {
        font-size: 1.875rem;
        @media (max-width: 768px) {
          font-size: 1.25rem;
        }
      }
      .row2 {
        font-size: 1.125rem;
        @media (max-width: 768px) {
          font-size: 0.875rem;
        }
      }
    }
    .icon {
      width: 28px;
      @media (max-width: 768px) {
        width: 20px;
      }
    }
  }
  .cta__button--date {
    background-color: var(--pink2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    @media (max-width: 768px) {
      font-size: 1.25rem;
    }
  }
}

/*=========================
  campaign
=========================*/
section.campaign {
  position: relative;
  background: linear-gradient(to bottom, #fff373 0%, #ffe300 100%);
  padding: 4rem 0;
  @media (max-width: 768px) {
    padding: 3rem 0;
  }
  .illust-container {
    position: relative;
    max-width: 1800px;
    margin-inline: auto;
    /* overflow-x: hidden; */
    .campaign-illust {
      position: absolute;
      z-index: 3;
      top: 0%;
      right: 0;
      translate: 0% -50%;
      width: 400px;
      @media (max-width: 768px) {
        width: 216px;
        translate: 0% -60%;
      }
    }
    .campaign-bg {
      position: absolute;
      z-index: 1;
      top: 0%;
      right: 0;
      translate: 0% -40%;
      opacity: 0.7;
      @media (max-width: 768px) {
        translate: 0% -50%;
      }
    }
  }
  .container {
    position: relative;
    z-index: 4;
    width: calc(100% - 3rem);
    max-width: 1100px;
    margin-inline: auto;
  }
  .section-title {
    margin-bottom: 4rem;
    img {
      margin-inline: auto;
    }
    @media (max-width: 768px) {
      margin-bottom: 3rem;
      img {
        width: 240px;
      }
    }
  }
  .campaign-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      gap: 3rem;
    }
  }
  .campaign-item {
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    padding: 3rem 2rem 2rem;
    width: 50%;
    @media (max-width: 768px) {
      width: 100%;
      padding: 2rem 1rem;
    }
    .item-title {
      position: absolute;
      top: 0%;
      left: 50%;
      translate: -50% -50%;
      border-radius: 40px;
      background-color: var(--pink);
      color: #fff;
      width: max-content;
      margin-inline: auto;
      padding: 0 2rem;
      font-weight: bold;
      font-size: 1.875rem;
      @media (max-width: 768px) {
        font-size: 1.25rem;
      }
    }
    .item-body {
      max-width: 440px;
      margin-inline: auto;
      font-family: 'M PLUS 1', sans-serif;
      .row {
        font-size: 1.625rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 1rem;
        @media (max-width: 768px) {
          font-size: 1.125rem;
        }
        .red {
          color: var(--red);
          font-size: 2.5rem;
          @media (max-width: 768px) {
            font-size: 1.625rem;
          }
        }
      }
      .text {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 0.875rem;
      }
      .link {
        font-family: 'Noto Sans JP', sans-serif;
        color: var(--pink2);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: fit-content;
        margin-left: auto;
        margin-top: 3rem;
        @media (max-width: 768px) {
          margin-top: 1rem;
        }
        .icon {
          width: 20px;
        }
      }
    }
  }
}

/*=========================
  weak
=========================*/
section.weak {
  background-color: #f2f8ff;
  padding: 5rem 0 6rem;
  @media (max-width: 768px) {
    padding: 2rem 0 6rem;
  }
  .illust-container {
    position: relative;
    max-width: 1100px;
    margin-inline: auto;
    .illust {
      position: absolute;
      z-index: 1;
      top: 0%;
      right: 0%;
      translate: -50% -50%;
      width: 143px;
      @media (max-width: 768px) {
        width: 107px;
        translate: -15% -5%;
      }
    }
  }
  .section-title {
    margin-bottom: 3.5rem;
    img {
      margin-inline: auto;
    }
    .title-sp {
      display: none;
    }
    @media (max-width: 768px) {
      .title-pc {
        display: none;
      }
      .title-sp {
        display: block;
      }
    }
  }
  .container {
    position: relative;
    z-index: 2;
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin-inline: auto;
  }
  .weak-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    @media (max-width: 768px) {
      flex-direction: column;
      margin-bottom: 2rem;
    }
    .flex-l {
      width: 45%;
      display: flex;
      justify-content: center;
      align-items: center;
      @media (max-width: 768px) {
        width: 100%;
      }
      .textbox {
        width: fit-content;
        background-color: #fff;
        border: 1px solid #333;
        border-radius: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 2rem 4rem;
        font-weight: 300;
        @media (max-width: 768px) {
          padding: 1rem 2rem;
        }
        .pink {
          color: var(--pink);
          font-size: 2.25rem;
          font-weight: 600;
          @media (max-width: 768px) {
            font-size: 1.5rem;
          }
        }
      }
    }
    .flex-r {
      width: 55%;
      @media (max-width: 768px) {
        width: 100%;
        img {
          margin-inline: auto;
        }
      }
    }
  }
  .arrow-below {
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background-color: var(--pink);
    width: 80px;
    height: 24px;
    margin-inline: auto;
    margin-bottom: 2rem;
    @media (max-width: 768px) {
      width: 60px;
      height: 16px;
    }
  }
  .lower-text {
    p {
      font-size: 1.5rem;
      font-weight: 300;
      text-align: center;
      @media (max-width: 768px) {
        font-size: 1.125rem;
      }
    }
    .marked-text {
      margin-inline: auto;
      @media (max-width: 768px) {
        width: 300px;
      }
    }
  }
}

/*=========================
  why
=========================*/
section.why {
  position: relative;
  background: url(../img/why-bg.png) no-repeat;
  background-size: 100%;
  @media (max-width: 768px) {
    background-size: 900%;
  }
  .section-title {
    translate: 0% -50%;
    transform: rotate(-12deg);
    background-color: var(--pink2);
    color: #fff;
    width: fit-content;
    font-size: 2.5rem;
    font-weight: 800;
    padding: 0rem 2rem;
    margin-inline: auto;
    margin-bottom: 2rem;
    @media (max-width: 768px) {
      font-size: 1.875rem;
    }
  }
  .container {
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin-inline: auto;
  }
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    @media (max-width: 768px) {
      flex-direction: column;
    }
    .flex-l {
      @media (max-width: 768px) {
        img {
          width: 310px;
          margin-inline: auto;
        }
      }
    }
    .flex-r {
      /* width: 55%; */
    }
  }
  .copy {
    margin-bottom: 3.75rem;
    img {
      margin-inline: auto;
    }
    @media (max-width: 768px) {
      img {
        width: 278px;
      }
    }
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }
  }
  .tel-wrapper {
    width: 50%;
    @media (max-width: 768px) {
      width: min(90%, 490px);
    }
    .text {
      display: inline-block;
      width: fit-content;
      font-size: 0.875rem;
      margin: 1rem 0 0 5rem;
      @media (max-width: 768px) {
        display: block;
        width: fit-content;
        margin: 1rem auto 0;
      }
    }
  }
  .contact-wrapper {
    width: 50%;
    @media (max-width: 768px) {
      width: min(90%, 490px);
    }
  }
  .cta-button {
    min-height: 100px;
    line-height: 1.3;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
    opacity: 1;
    transition: 0.3s ease;
    @media (any-hover: hover) {
      &:hover {
        transform: scale(1.1, 1.1);
      }
    }
    @media (max-width: 768px) {
      min-height: 78px;
    }
  }
  .cta-button--tel {
    background-color: #fff;
    border-radius: 60px;
    border: 3px solid var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0.75rem 1.5rem;
    .row1 {
      font-size: 1.25rem;
      font-weight: 600;
      @media (max-width: 768px) {
        font-size: 0.875rem;
      }
    }
    .row2 {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2.125rem;
      font-weight: 600;
      color: var(--green);
      @media (max-width: 768px) {
        font-size: 1.5rem;
      }
      .icon {
        margin-right: 10px;
        @media (max-width: 768px) {
          width: 20px;
          margin-right: 5px;
        }
      }
    }
  }
  .cta-button--contact {
    background-color: var(--green);
    border-radius: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1.5rem;
    @media (max-width: 768px) {
      gap: 0.5rem;
    }
    &::before {
      content: '';
    }
    .text {
      text-align: center;
      text-wrap: balance;
      color: #fff;
      font-weight: 600;
      .row1 {
        font-size: 1.875rem;
        @media (max-width: 768px) {
          font-size: 1.25rem;
        }
      }
      .row2 {
        font-size: 1.125rem;
        @media (max-width: 768px) {
          font-size: 0.875rem;
        }
      }
    }
    .icon {
      width: 28px;
      @media (max-width: 768px) {
        width: 20px;
      }
    }
  }
}

/*=========================
  be good
=========================*/
section.be_good {
  /* background: url(../img/begood-bg.svg) no-repeat;
  background-position: 50% -160%;
  background-size: calc( 500 / 1300 * 100vw ); */
  background-color: #ffd4e8;
  padding-bottom: 4rem;
  @media (max-width: 768px) {
    padding-bottom: 3rem;
  }
  .label {
    background-color: var(--pink2);
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    @media (max-width: 768px) {
      gap: 0.25rem;
      padding: 0.75rem 0.5rem;
    }
    span:nth-child(1) {
      position: relative;
      z-index: 2;
      font-size: 1.875rem;
      background-color: #fff;
      color: var(--pink2);
      padding: 0 1rem;
      border-radius: 8px;
      @media (max-width: 768px) {
        padding: 0 0.5rem;
        font-size: 1.25rem;
      }
    }
    span:nth-child(2) {
      position: relative;
      z-index: 2;
      font-size: 1.875rem;
      @media (max-width: 768px) {
        font-size: 1.25rem;
      }
    }
    span:nth-child(3) {
      position: relative;
      z-index: 2;
      font-size: 3.125rem;
      margin-top: -4px;
      @media (max-width: 768px) {
        font-size: 1.575rem;
      }
    }
  }
  .title-wrapper {
    max-width: 1400px;
    margin-inline: auto;
    position: relative;
    background: url(../img/begood-bg.svg) no-repeat;
    background-size: 70%;
    background-position: 50% 50%;
    padding: 5rem 0;
    @media (max-width: 768px) {
      max-width: 500px;
      padding: 2rem 0;
    }
    .section-title {
      position: relative;
      z-index: 2;
      img {
        margin-inline: auto;
        @media (max-width: 768px) {
          width: 259px;
        }
      }
    }
    .illust1 {
      position: absolute;
      top: -28%;
      left: 0%;
      width: 394px;
      @media (max-width: 768px) {
        width: 182px;
        top: -8%;
      }
    }
    .illust2 {
      position: absolute;
      top: -17%;
      right: 0%;
      width: 270px;
      @media (max-width: 768px) {
        width: 124px;
        top: -2%;
      }
    }
  }
  .container {
    position: relative;
    z-index: 3;
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin-inline: auto;
  }
  .flex {
    display: flex;
    justify-content: center;
    @media (max-width: 768px) {
      flex-direction: column;
      gap: 1.5rem;
    }
    .flex-l {
      width: 50%;
      @media (max-width: 768px) {
        width: 100%;
      }
      .point {
        width: fit-content;
        margin-inline: auto;
        img {
          width: 454px;
          margin-inline: auto;
          @media (max-width: 768px) {
            width: 100%;
            max-width: 341px;
            translate: -3px 0%;
          }
        }
      }
      .point1 {
        margin-bottom: 1rem;
      }
      .point2 {
        position: relative;
        .girl {
          position: absolute;
          bottom: -5%;
          right: -8%;
          width: 28%;
          @media (max-width: 768px) {
            bottom: -5%;
            right: -2%;
            width: 23%;
          }
        }
      }
    }
    .flex-r {
      width: 50%;
      .point3 {
        .img-pc {
          width: 487px;
        }
        .img-sp {
          display: none;
        }
      }
      @media (max-width: 768px) {
        width: 100%;
        .point3 {
          .img-pc {
            display: none;
          }
          .img-sp {
            width: 340px;
            display: block;
            margin-inline: auto;
          }
        }
      }
    }
  }
}

/*=========================
  schedule
=========================*/
section.schedule {
  background-color: #ffd4e8;
  padding: 2rem 0 5rem;
  @media (max-width: 768px) {
    padding: 2rem 0 2rem;
  }
  .container {
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin-inline: auto;
  }
  .section-title {
    margin-bottom: 2rem;
    img {
      margin-inline: auto;
      @media (max-width: 768px) {
        max-width: 210px;
      }
    }
  }
  .accordion-item {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    @media (max-width: 768px) {
      margin-bottom: 1.5rem;
    }
    .accordion-item__title {
      cursor: pointer;
      background-color: var(--pink2);
      color: #fff;
      padding: 0.5rem 1.25rem;
      font-size: 1.5rem;
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      align-items: center;
      @media (max-width: 768px) {
        font-size: 1.25rem;
      }
      .icon {
        width: 30px;
        aspect-ratio: 1/1;
        border-radius: 100vmax;
        border: 2px solid #fff;
        position: relative;
        &::before,
        &::after {
          content: '';
          display: block;
          background-color: #fff;
          width: 15px;
          height: 2px;
          position: absolute;
          top: 50%;
          left: 50%;
          translate: -50% -50%;
        }
        &::after {
          transform: rotate(90deg);
          transition: 0.4s ease;
        }
      }
    }
    .accordion-item__body {
      background-color: #fff;
      .inner {
        max-width: 600px;
        margin-inline: auto;
        padding: 3rem 0;
        @media (max-width: 768px) {
          padding: 2rem 0;
          width: 90%;
        }
      }
      .accordion-item__table {
        margin-bottom: 1.5rem;
        .table-title {
          cursor: pointer;
          font-size: 1.125rem;
          font-weight: 600;
          color: var(--pink2);
          padding: 0.5rem 1rem;
          border: 1px solid var(--pink2);
          display: flex;
          justify-content: space-between;
          align-items: center;
          .icon {
            width: 20px;
            aspect-ratio: 1/1;
            position: relative;
            &::before,
            &::after {
              content: '';
              display: block;
              background-color: var(--pink2);
              width: 15px;
              height: 2px;
              position: absolute;
              top: 50%;
              left: 50%;
              translate: -50% -50%;
            }
            &::after {
              transform: rotate(90deg);
              transition: 0.4s ease;
            }
          }
        }
        .table-body {
          .row {
            padding: 0.5rem 1rem;
            display: grid;
            grid-template-columns: auto 50%;
            grid-column: 1/-1;
            column-gap: 2rem;
            border-bottom: 1px solid var(--pink2);
            @media (max-width: 768px) {
              grid-template-columns: auto 40%;
              font-size: 0.75rem;
            }
          }
          .button {
            margin-top: 1rem;
            background-color: var(--green);
            border-radius: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 200px;
            margin-inline: auto;
            padding: 0.5rem 1.5rem;
            color: #fff;
            font-weight: 600;
            .icon {
              width: 16px;
            }
          }
        }
      }
      .annotation {
        margin-top: 1rem;
        font-size: 0.875rem;
      }
    }
    .accordion-item__body,
    .table-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.4s ease;
    }
    .accordion-item__body.is-open,
    .table-body.is-open {
      max-height: 9000px;
      .accordion-item__title .icon {
        &::after {
          opacity: 0;
        }
      }
    }
    .accordion-item__title.is-active,
    .table-title.is-active {
      .icon {
        &::after {
          transform: rotate(180deg) !important;
          opacity: 0;
        }
      }
    }
  }
}

/*=========================
  cta lower
=========================*/
section.cta_lower {
  background: linear-gradient(to bottom, #ffeb46 0%, #fff17f 100%);
  position: relative;
  padding: 4rem 0;
  @media (max-width: 768px) {
    padding: 0 0 4rem;
  }
  .illust-container {
    position: absolute;
    inset: 0;
    max-width: 1800px;
    background: url(../img/ctaLower-img.svg) no-repeat;
    background-position: 100% -70%;
    @media (max-width: 768px) {
      background: none;
      position: relative;
    }
    .img-sp {
      display: none;
      @media (max-width: 768px) {
        display: block;
        width: 100%;
        margin-inline: auto;
      }
    }
  }
  .container {
    position: relative;
    z-index: 2;
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin-inline: auto;
  }
  .label {
    background-color: var(--pink);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 3rem;
    padding: 0.5rem 1.5rem;
    @media (max-width: 768px) {
      font-size: 1rem;
      margin-bottom: 1rem;
    }
  }
  .section-title {
    margin-bottom: 3rem;
    @media (max-width: 768px) {
      margin-bottom: 2rem;
    }
    img {
      margin-inline: auto;
      @media (max-width: 768px) {
        width: 288px;
      }
    }
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  }
  .tel-wrapper {
    width: 50%;
    @media (max-width: 768px) {
      width: min(90%, 490px);
    }
    .text {
      display: inline-block;
      width: fit-content;
      font-size: 0.875rem;
      margin: 1rem 0 0 5rem;
      @media (max-width: 768px) {
        display: block;
        width: fit-content;
        margin: 1rem auto 0;
      }
    }
  }
  .contact-wrapper {
    width: 50%;
    @media (max-width: 768px) {
      width: min(90%, 490px);
    }
  }
  .cta-button {
    min-height: 100px;
    line-height: 1.3;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
    opacity: 1;
    transition: 0.3s ease;
    @media (any-hover: hover) {
      &:hover {
        transform: scale(1.1, 1.1);
      }
    }
    @media (max-width: 768px) {
      min-height: 78px;
    }
  }
  .cta-button--tel {
    background-color: #fff;
    border-radius: 60px;
    border: 3px solid var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0.75rem 1.5rem;
    .row1 {
      font-size: 1.25rem;
      font-weight: 600;
      @media (max-width: 768px) {
        font-size: 0.875rem;
      }
    }
    .row2 {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2.125rem;
      font-weight: 600;
      color: var(--green);
      @media (max-width: 768px) {
        font-size: 1.5rem;
      }
      .icon {
        margin-right: 10px;
        @media (max-width: 768px) {
          width: 20px;
          margin-right: 5px;
        }
      }
    }
  }
  .cta-button--contact {
    background-color: var(--green);
    border-radius: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1.5rem;
    @media (max-width: 768px) {
      gap: 0.5rem;
    }
    &::before {
      content: '';
    }
    .text {
      text-align: center;
      text-wrap: balance;
      color: #fff;
      font-weight: 600;
      .row1 {
        font-size: 1.875rem;
        @media (max-width: 768px) {
          font-size: 1.25rem;
        }
      }
      .row2 {
        font-size: 1.125rem;
        @media (max-width: 768px) {
          font-size: 0.875rem;
        }
      }
    }
    .icon {
      width: 28px;
      @media (max-width: 768px) {
        width: 20px;
      }
    }
  }
}

/*=========================
  footer
=========================*/
footer {
  background-color: #fff;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  @media (max-width: 768px) {
    padding: 1.5rem 0;
  }
  .footer__wrapper {
    width: calc(100% - 2rem);
    max-width: 1000px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media (max-width: 768px) {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    .footer__link {
      font-size: 0.875rem;
      line-height: 1.2;
      border-bottom: 1px solid #333;
      @media (max-width: 768px) {
        font-size: 0.75rem;
      }
    }
  }
  .footer__copyright {
    font-size: 0.75rem;
  }
}
