:root {
  /* font */
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "MuseoModerno", sans-serif;

  /* color */
  --accent-color: #FFD400;
  --font-color-base: #000;
}

body {
  @media (768px <= width) {
    min-width: 992px;
  }
}

/* overwrite */
.button.button--primary:link,
.button.button--primary:visited {
  color: var(--white);
}

.navbar__menu-item:link,
.navbar__menu-item:visited {
  color: var(--gray-200);
}

.layout_main {
  font-family: var(--font-family-jp);
  font-size: var(--font-size-md);
  font-weight: 400;
  background: #fff;
  color: var(--font-color-base);
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-feature-settings: 'halt' on;
}

@media (width < 768px) {
  .layout_main {
    font-size: var(--font-size-sm);
  }
}

@media ( 768px < width) {
  section {
    font-size: var(--font-size-md);
  }
}

.layout_main {
  a:focus-visible,
  button:focus-visible {
    outline: revert;
  }

  figure {
    line-height: 0;
  }

  img {
    max-width: 100%;
  }
}

.lp-inner {
  max-width: 75rem;
  margin: 0 auto;
  @media (width < 768px) {
    margin: 0 1.5rem;
  }
}

.lp-section {
  padding: 6rem 1rem 0;
}

.lp-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* カードレイアウト */
.lp-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2%;
}

.lp-card__item {
  display: flex;
  flex-direction: column;
  max-width: 24rem;
  width: 32%;
  padding: 2rem;
  border-radius: .5rem;
}

@media (width < 768px) {
  .lp-section {
    padding: 4rem 0 0;
  }

  .lp-layout {
    gap: 2rem;
  }

  .lp-card {
    flex-direction: column;
    gap: 1rem;
  }

  .lp-card__item {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem 1rem;
  }
}

.lp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 0.5rem;
  box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.15);
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.2;
  padding: .5625rem 0;
  width: 100%;
  max-width: 27.4375rem;
  min-height: 4rem;
  position: relative;
  text-align: center;
  color: var(--font-color-base);
  &::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    background: rgba(0, 0, 0, 0.10);
    opacity: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .3s;
  }
  &::after {
    content: "";
    display: block;
    width: .5rem;
    height: .875rem;
    background: url(../images/icon-chevron-right.svg) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    margin: auto;
  }

  &:link,
  &:visited {
    color: var(--font-color-base);
  }
}

@media (768px <= width) {
  .lp-button {
    &:hover {
      text-decoration: none;
      &::before {
        opacity: 1;
        transform: scale(1, 1);
      }
    }
  }
}
@media (width < 768px) {
  .lp-button {
    max-width: 100%;
    min-height: 3.5rem;
    font-size: 1rem;
    &::after {
      right: 1rem;
    }
  }
}

.lp-link {
  font-weight: 700;
  color: #2375E7;
  text-decoration: underline;
  &:link,
  &:visited {
    color: #2375E7;
  }
}

/* headline */
.lp-headline {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  line-height: 1.4;
}

.lp-section-headline {
  font-size: var(--font-size-5xl);
  font-weight: 600;
  letter-spacing: -0.05rem;
  line-height: 1.4;
  text-align: center;
  & span {
    display: block;
    font-size: var(--font-size-2xl);
    color: var(--bland-color);
  }
}

.lp-section-headline__en {
  font-family: var(--font-family-en);
}

.lp-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  line-height: 1.4;
  color: var(--bland-color);
  text-align: center;
}

@media (width < 768px) {
  .lp-headline {
    font-size: var(--font-size-lg);
  }
  .lp-section-headline {
    font-size: var(--font-size-xl);
    text-align: left;
    letter-spacing: -0.03rem;
    & span {
      margin: 0 0 .5rem;
      font-size: var(--font-size-lg);
    }
  }
  .lp-title {
    font-size: var(--font-size-lg);
  }
}

.note {
  color: #888888;
  font-size: var(--font-size-sm);
}
@media (width < 768px) {
  .note {
    font-size: .8125rem;
  }
}

.lp-dot-list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  & li {
    display: flex;
    gap: .625rem;
    &::before {
      flex-shrink: 0;
      content: "";
      display: block;
      width: .5rem;
      height: .5rem;
      border-radius: 50%;
      background: var(--bland-color);
      margin: .875rem 0 0;
    }
  }
}
@media (width < 768px) {
  .lp-dot-list {
    & li {
      &::before {
        margin: .6875rem 0 0;
      }
    }
  }
}

/*
* parts
*/

/* cta */
.cta {
  background: url(../images/bg-cta-pc.svg) no-repeat center center;
  background-size: cover;
  padding: 4rem 0;
  text-align: center;
}

.cta__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta__lead {
  color: #fff;
  font-size: var(--font-size-xl);
  font-weight: 700;
}

@media (width < 768px) {
  .cta {
    padding: 3rem 0;
    text-align: left;
    background-image: url(../images/bg-cta-sp.svg);
  }
  .cta__lead {
    font-size: var(--font-size-md);
  }
}

/* utility */
@media (768px <= width) {
  .for-sp {
    display: none;
  }
}
@media (width < 768px) {
  .for-pc {
    display: none;
  }
}

/* hero */
.hero {
  padding: 5rem 1.5rem 2.32rem;
  background: url(../images/bg-hero-pc-02.svg) no-repeat center 1.625rem, url(../images/bg-hero-pc.svg) no-repeat center center;
  background-size: auto 100%, cover;
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
  }
  &::before {
    width: 29.9167%;
    padding: 13.5833% 0 0;
    background: url(../images/illust-hero-01.png) no-repeat center center;
    background-size: 100% auto;
    left: -2.4167%;
    bottom: -1.375rem;
  }
  &::after {
    width: 12.5%;
    padding: 13.4167% 0 0;
    background: url(../images/illust-hero-02.png) no-repeat center center;
    background-size: 100% auto;
    right: 11.6667%;
    bottom: -1.125rem;
  }
}

.hero__headline {
  font-size: clamp(3.25rem, 4.7222vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.2975rem;
  line-height: 1;
  margin: 0 0 1.75rem;
  position: relative;
}

.hero__headline-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  padding: 0.875rem 1rem 1rem 1rem;
  border-radius: 2rem;
  background: var(--accent-color);
  position: absolute;
  top: -2.44rem;
  right: -6.19rem;
  &::after {
    content: "";
    display: block;
    width: 2rem;
    height: 1.4375rem;
    background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="23" viewBox="0 0 32 23" fill="none"><path d="M31.9925 0C28.8219 28.3521 0 22.5005 0 22.5005C20.8879 17.4286 15.8679 0 15.8679 0H32H31.9925Z" fill="%23FFD400"/></svg>') no-repeat center center;
    position: absolute;
    bottom: -1.12rem;
    right: 2.69rem;
  }
}

.hero__headline-inner {
  display: inline-block;
  padding: .25rem 1rem .625rem;
  background: #296A36;
  border-radius: 0.625rem;
  color: #fff;
  & span {
    letter-spacing: 0.1275rem;
  }
}

.hero__cp-text {
  display: block;
  line-height: 0;
  margin: 0 0 .49rem;
}

.hero__term {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1.12rem;
  & dd {
    font-size: 1.78125rem;
    & span {
      font-family: var(--font-family-en);
      font-size: 3.5625rem;
      letter-spacing: -0.07125rem;
      line-height: 1;
    }
  }
}

.hero__button {
  margin: 0 auto 1rem;
}

.hero__note {
  font-size: .75rem;
  max-width: 45.3333%;
  margin: 0 auto;
}

@media (width < 768px) {
  .hero {
    padding: 3.13rem 0 3rem;
    background: url(../images/bg-hero-sp.svg) no-repeat center center;
    background-size: cover;
    text-align: left;
  }

  .hero__inner {
    align-items: flex-start;
    padding: 0 6.1538%;
    &::before {
      display: none;
    }
    &::after {
      width: 6.1875rem;
      height: 6.6875rem;
      padding: 0;
      right: 6.6667%;
      bottom: 7.9375rem;
    }
  }

  .hero__headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 6.1538vw;
    letter-spacing: -0.015rem;
    margin: 0 0 .81rem;
  }

  .hero__headline-label {
    font-size: var(--font-size-lg);
    padding: 0.375rem 0.5rem 0.5rem 0.5rem;
    border-radius: 0.25rem 0.25rem 0rem 0rem;
    position: static;
    &::after {
      display: none;
    }
  }

  .hero__headline-inner {
    padding: 0.5rem 0.25rem 0.625rem 0.25rem;
    border-radius: 0rem 0.25rem 0.25rem 0.25rem;
    & span {
      letter-spacing: -0.015rem;
    }
  }


  .hero__cp-text {
    width: 100%;
    margin: 0 0 1.75rem;
    & img {
      width: 100%;
    }
  }

  .hero__term {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .56rem;
    margin: 0 0 1.25rem;
    & dd {
      font-size: 1.06119rem;
      & span {
        font-size: 2.12244rem;
      }
    }
  }

  .hero__button {
    margin: 0 auto 1.62rem;
  }

  .hero__note {
    line-height: 1.6;
    max-width: 100%;
  }
}

/* intro */
.intro {
  padding-bottom: 3.75rem;
}

.intro__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 2.5rem;
}

.intro__list {
  margin: 0 0 6rem;
  position: relative;
  &::after {
    content: "";
    display: block;
    width: 8.5rem;
    height: 3rem;
    background: var(--bland-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4.5rem;
    margin: 0 auto;
  }
  & li {
    gap: 1rem;
    line-height: 1.7;
    background: #F6F6F6;
  }
}

.intro__copy {
  max-width: 62.125rem;
  margin: 0 auto;
  font-size: var(--font-size-3xl);
  font-weight: 600;
  letter-spacing: -0.04rem;
  line-height: 1.4;
  text-align: center;
  position: relative;
  & span {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background: linear-gradient(transparent 70%, #9EE6AB 70%, #9EE6AB 95%, transparent 95%);
    &:first-child {
      font-size: var(--font-size-2xl);
    }
  }

  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
  }

  &::before {
    width: 8.375rem;
    height: 8.9375rem;
    left: -2.81rem;
    bottom: -3.75rem;
    background: url(../images/illust-intro-01.png) no-repeat center center;
    background-size: contain;
  }

  &::after {
    width: 4.5rem;
    height: 6.75rem;
    right: -.12rem;
    bottom: -1.25rem;
    background: url(../images/illust-intro-02.svg) no-repeat center center;
    background-size: contain;
  }
}

@media (width < 768px) {
  .intro {
    padding-bottom: 4rem;
  }

  .intro__title {
    font-size: 1.125rem;
    margin: 0 0 1.5rem;
  }

  .intro__list {
    margin: 0 0 5.5rem;
    & li {
      gap: .5rem;
    }
  }

  .intro__copy {
    font-size: 1.25rem;
    letter-spacing: -0.025rem;
    line-height: 1;
    word-break: keep-all;
    & span {
      line-height: 1.4;
      &:first-child {
        font-size: 1rem;
      }
    }
    &::before {
      width: 5.125rem;
      height: 5.21494rem;
      background: url(../images/illust-intro-sp.png) no-repeat center center;
      background-size: contain;
      left: auto;
      right: -0.75rem;
      top: -3.46rem;
      bottom: auto;
    }
    &::after {
      display: none;
    }
  }
}

/* point */
.point {
  background: #F0F8F1 url(../images/bg-pattern.svg) repeat center center;
  padding: 4.5rem 1rem 6rem;
}

.point__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.point__title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  line-height: 1.4;
}
.point__list {
  & li {
    gap: 1.5rem;
    background: #fff;
  }
}
@media (width < 768px) {
  .point {
    padding: 4rem 0;
  }
  .point__title {
    font-size: var(--font-size-lg);
  }
}

/* details */
.details__layout {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.details__box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem;
  border: solid 2px var(--bland-color);
  border-radius: 1rem;

  & dl {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0 2.5rem;
    border-bottom: solid 1px #ccc;
    &:last-child {
      padding-bottom: 0;
      border: none;
    }
    & dt {
      text-align: left;
    }

    & dd {
      display: flex;
      flex-direction: column;
      gap: .25rem;
    }
  }
}

@media (width < 768px) {
  .details__layout {
    gap: 4rem;
  }
  .details__box {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    & dl {
      gap: 1rem;
      padding: 0 0 1.5rem;
    }
  }
}

/* flow */
.flow {
  padding-bottom: 6rem;
}

.flow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2%;
  margin: 1.625rem 0 1rem;
}

.flow__item {
  display: flex;
  flex-direction: column;
  width: 17.625rem;
  position: relative;
  counter-increment: number;
  padding: 2.37rem 1.5rem 2rem;
  background: #F0F8F1;
  line-height: 1.4;
  flex: 1;
  z-index: 1;
  &::before {
    content: counter(number, decimal-leading-zero);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--bland-color);
    color: #fff;
    font-family: var(--font-family-en);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    letter-spacing: 0.03rem;
    line-height: 1;
    position: absolute;
    top: -1.625rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  &::after {
    content: "";
    display: block;
    width: 8.5106%;
    height: 3rem;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: var(--bland-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
  }
  &:last-child {
    &::after {
      display: none;
    }
  }
}

.flow__item-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.4;
  color: var(--bland-color);
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: solid 1px #ccc;
}

@media (width < 768px) {
  .flow {
    padding-bottom: 4rem;
  }

  .flow__list {
    flex-direction: column;
    gap: 4rem;
  }

  .flow__item {
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    &::after {
      width: 3rem;
      height: 1.5rem;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      top: auto;
      bottom: -1.5rem;
      left: 0;
      right: 0;
      margin: 0 auto;
    }
  }

  .flow__item-jp {
    font-size: 1.375rem;
  }

  .flow__item-title {
    min-height: inherit;
    font-size: var(--font-size-md);
    letter-spacing: -0.02rem;
  }

}

/* faq */
.faq {
  padding-bottom: 6rem;
}

.faq__wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.6875rem 2.6875rem;
  border-radius: 1rem;
  border: 2px solid var(--bland-color);
  & dt {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bland-color);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    letter-spacing: -0.03rem;
    line-height: 1.5;
    &::before {
      content: "Q";
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      background: var(--bland-color);
      border-radius: 50%;
      font-family: var(--font-family-en);
      line-height: 1.4;
      letter-spacing: 0;
      color: #fff;
    }
  }
}
@media (768px <= width) {
  .faq__layout {
    gap: 3rem;
  }
}

@media (width < 768px) {
  .faq {
    padding-bottom: 4rem;
  }

  .faq__wrap {
    gap: 1rem;
  }

  .faq__item {
    padding: 1.625rem 1.125rem;
    & dt {
      align-items: flex-start;
      gap: .5rem;
      font-size: var(--font-size-lg);
      font-weight: 600;
      letter-spacing: -0.0225rem;
      line-height: 1.4;
      &::before {
        font-size: var(--font-size-2xl);
      }
    }
  }
}

/* form */

.form {
  scroll-margin-top: 88px;
  padding: 4rem 1rem 4.5rem;
  background: url(../images/bg-cloud-01.svg) no-repeat center top, url(../images/bg-cloud-02.svg) no-repeat center bottom ,url(../images/bg-noise.svg) repeat-y center top;
  background-size: 100% auto;
  color: #fff;
}

.form__layout {
  gap: 2rem;
}

.form__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem;
  color: #000;
}

.form {
  strong {
    font-weight: 600;
  }

  .mktoForm {
    width: 100% !important;
  }
  .mktoForm .mktoFieldWrap {
    float: none;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .mktoForm .mktoFormCol {
    float: none;
    margin-bottom: 1.5rem !important;
  }
  .mktoForm .mktoLabel {
    flex-shrink: 0;
    width: 260px !important;
    padding: 0;
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .mktoForm .mktoRequiredField label.mktoLabel {
    font-weight: 600;
  }

  .mktoForm .mktoClear {
    display: none;
  }

  .mktoForm input[type=text],
  .mktoForm input[type=url],
  .mktoForm input[type=email],
  .mktoForm input[type=tel],
  .mktoForm input[type=number],
  .mktoForm input[type=date],
  .mktoForm textarea.mktoField,
  .mktoForm select.mktoField {
    float: none !important;
    width: 100% !important;
    height: 40px;
    padding: .5rem;
    font-size: 1rem;
  }

  .mktoForm textarea.mktoField {
    height: 100px;
  }

  .mktoForm.mktoLayoutAbove .mktoRadioList,
  .mktoForm.mktoLayoutAbove .mktoCheckboxList {
    display: grid;
    grid-template-columns: .9375rem 1fr;
    gap: 1rem .5rem;
  }

  .mktoForm .mktoRadioList > label,
  .mktoForm .mktoCheckboxList > label {
    font-size: .9375rem;
    margin: 0;
  }

  .mktoForm .mktoHtmlText {
    width: 100% !important;
  }

  .agreementArea .agreementArea_inner h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    text-align: left;
  }

  .mktoButtonRow {
    display: flex;
    justify-content: center;
  }

  .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton {
    min-height: 3rem;
    font-family: var(--font-family-jp);
    background: var(--accent-color);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.15);
    font-size: var(--font-size-lg);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    &::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: .5rem;
      background: rgba(0, 0, 0, 0.10);
      opacity: 0;
      transform: scale(0, 1);
      transform-origin: left top;
      transition: .3s;
    }
  }

  .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton:hover {
    background: var(--accent-color);
    box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.15);
    &::before {
      opacity: 1;
      transform: scale(1, 1);
    }
  }
}
@media (width < 768px) {
  .form {
    scroll-margin-top: 56px;
    padding: 4rem 0;
  }

  .form__wrap {
    padding: 1rem 1rem 2rem;
  }

  .form {
    .mktoForm .mktoLabel {
      width: 100% !important;
    }
    .mktoForm .mktoFieldWrap {
      flex-direction: column;
      align-items: flex-start;
      gap: .5rem;
    }
    .mktoForm, .mktoForm * {
      padding: 0;
    }

    .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton {
      font-size: 1rem;
    }
  }
}

/* 完了画面 */
.complete {
  padding: 3rem 1rem;
}

.complete__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.complete__headline {
  font-size: 2rem;
  letter-spacing: -0.04rem;
  line-height: 1.4;
}

.complete__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.complete__button {
  padding: 1rem;
  font-weight: 700;
}

@media (width < 768px) {
  .complete {
    padding: 2.5rem 0;
  }
  .complete__headline {
    font-size: 1.5rem;
    word-break: keep-all;
  }
}
