@charset "utf-8";
:root {
  --lp-color-primary: #006E49;
  --lp-color-red: #FF5900;
  --lp-font-poppins: "Poppins", sans-serif;
}

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

@media screen and (min-width: 780px) {
  section {
    font-size: var(--font-size-md);
  }
}

.layout_main {
  background: #F0F8F1;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-size-md);
  line-height: 1.8;
  font-feature-settings: 'palt' on;
}

.lp-inner {
  max-width: 75rem;
  margin: 0 auto;
}

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

/* components */
.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 1rem;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 1;
  border-radius: .5rem;

  &::after {
    content: "";
    display: block;
    width: 10px;
    height: 17px;
    background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="17" viewBox="0 0 10 17" fill="none"><path d="M1.20019 1.19954L8.40023 8.39958L1.2002 15.5996" stroke="white" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center / 100%;
  }
}

.lp-button--primary {
  display: flex;
  gap: 1rem;
  font-size: var(--font-size-xl);
  background: var(--lp-color-primary);
  color: #fff;
  width: 30.125rem;
  height: 5rem;
}

.lp-button--secondary {
  gap: .5rem;
  background: var(--black);
  color: #fff;
  &::after {
    width: 8px;
    height: 14px;
  }
}

@media ( 768px <= width) {
  .lp-button:hover {
    text-decoration: none;
    opacity: .7;
  }
}

@media (width < 768px) {
  .lp-button {
    display: flex;
    justify-content: space-between;
    line-height: 1.4;
    text-align: left;
  }
  .lp-button--primary {
    width: 100%;
    font-size: var(--font-size-lg);
  }

  .lp-button--secondary {
    width: 100%;
    font-size: var(--font-size-sm);
  }
}

.lp-link {
  color: var(--bland-color);
  text-decoration: underline;

  &[target] {
    &::after {
      content: "";
      display: inline-block;
      width: .9375rem;
      height: .75rem;
      background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="12" viewBox="0 0 15 12" fill="none"><rect width="10.8" height="8.1" fill="%23579E64"/><path d="M13.5998 2.7998V10.8998H2.7998" stroke="%23579E64" stroke-width="2"/></svg>') no-repeat center center / 100%;
      margin: 0 0 0 .5rem;
    }
  }
}

@media ( 768px <= width) {
  .lp-link {
    &:hover {
      text-decoration: none;
    }
  }
}

.lp-list {
  & li {
    position: relative;
    &::before {
      position: absolute;
      left: 0;
    }
  }
}

.lp-list--dot {
  & li {
    padding: 0 0 0 1.25rem;
    &::before {
      content: "・";
      left: .25rem;
    }

    &.attention {
      color: var(--lp-color-red);
      font-weight: 700;
      font-variation-settings: "wght" 700;
    }
  }
}

.lp-list--footnote {
  & li {
    color: #666;
    font-size: var(--font-size-sm);
    padding: 0 0 0 1rem;
    &::before {
      content: "※";
    }
  }
}

.lp-list--arrow {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  & li {
    padding: 0 0 0 1.625rem;
    font-size: var(--font-size-sm);
    &::before {
      content: "";
      display: block;
      width: 1.125rem;
      height: 1.125rem;
      background: url('data:image/svg+xml;charset=utf-8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" rx="9" fill="black"/><path d="M7.61035 12.7798L11.3903 8.99986L7.61035 5.21993" stroke="white"/></svg>') no-repeat center center / 100%;
      flex-shrink: 0;
    }

    & a {
      text-decoration: none;
    }
  }
  @media ( 768px <= width) {
    & li {
      & a {
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
}

/*  */
.hero {
  padding: 3.125rem 1.5rem 2rem;
  background: url(../images/bg-hero-pc.png) no-repeat center top / cover;
  overflow: hidden;
}

.hero__inner {
  max-width: 62.125rem;
}

.hero__headline {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 22px;
  line-height: 1;
  & img {
    max-width: 100%;
  }
}

.hero__lead {
  font-size: var(--font-size-lg);
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 1.8;
  color: var(--white);
  text-align: center;
}

.anchor {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.anchor__item {
  flex: 1;
  border-radius: .5rem;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.15));
  text-align: center;
  position: relative;
}

.anchor__item-link {
  display: block;
  padding: 2rem;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="11" viewBox="0 0 20 11" fill="none"><path d="M19 1L10 10L1 1" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center bottom .75rem / 1.25rem, var(--white);
  border-radius: .5rem;
}

.anchor__item-label {
  position: absolute;
  top: -21px;
  left: -1rem;
}

.anchor__item-title {
  line-height: 0;
}

.hero__note {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--white);
  margin-top: 1.5rem;
}

.hero__note-title {
  font-weight: 600;
  font-variation-settings: "wght" 600;
}

.hero__top {
  & .hero__inner {
    position: relative;
    &::before {
      content: "";
      display: block;
      width: 1305px;
      height: 391px;
      background: url(../images/deco-hero-pc.png) no-repeat center top / contain;
      position: absolute;
      left: calc(50% - 9px);
      top: -1.5635rem;
      transform: translateX(-50%);
    }
  }
}

@media (width < 768px) {
  .hero {
    background: none;
    padding: 0;
  }
  .hero__headline {
    margin-bottom: 1.19rem;
  }
  .hero__lead {
    font-size: var(--font-size-sm);
    margin: 0 1rem;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .anchor {
    flex-direction: column;
    gap: 2.31rem;
    margin: 1.5rem 1rem 0;
  }
  .anchor__item {
    flex: auto;
  }
  .anchor__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 11.25rem;
    padding: 0 0 1.0625rem;
    background-position: center bottom .83rem;
  }
  .hero__note {
    font-size: .8125rem;
    color: var(--black);
    margin-top: 0;
  }
  .hero__top {
    padding: 2rem 0 2.5rem;
    background: url(../images/bg-hero-sp.png) no-repeat center top / cover;
    & .hero__inner {
      margin: 0;
      &::before {
        display: none;
      }
    }
  }
  .hero__bottom {
    padding: 1.5rem 0 1.1875rem;

  }
}

/* section */

.lp-section {
  padding: 8rem 1.5rem 10rem;
  &:first-of-type {
    padding-top: 3rem;
  }

  & + .lp-section {
    border-top: 1px solid var(--bland-color);
  }
}

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

.lp-section-header {
  line-height: 0;

  & img {
    width: 100%;
  }
}

.lp-section-header__footnote {
  display: flex;
  justify-content: center;
  margin-top: .875rem;
  &::before {
    content: "※";
  }

  & a {
    text-decoration: none;
  }
}

.lp-section-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  margin: 0 0 2rem;
}

.lp-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: var(--font-size-6xl);
  line-height: 1.4;
  text-align: center;
  margin: 0 0 2.5rem;
}

.lp-section-head .lp-section-title {
  margin-bottom: 0;
}

.lp-section-label {
  display: flex;
  padding: 0.375rem 2rem;
  justify-content: center;
  align-items: center;
  background: var(--bland-color);
  border-radius: 2rem;
  font-size: var(--font-size-2xl);
  color: var(--white);
  line-height: 1.4;
}
@media ( 768px <= width) {
  .lp-section-header__footnote {
    & a {
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
@media (width < 768px) {
  .lp-section {
    padding: 0 0 4rem;
    &:first-of-type {
      padding-top: 0;
    }
    & + .lp-section {
      border-top: none;
    }
  }
  .lp-section-header {
    margin: 0 -1.5rem;
    & img {
      width: 100%;
    }
  }

  .lp-section-header__footnote {
    font-size: var(--font-size-sm);
  }

  .lp-section-title {
    font-size: var(--font-size-2xl);
    margin: 0 0 1.5rem;
  }
}

.lp-contents {
  padding: 2rem 3rem;
  background: var(--white);
  border-radius: 1rem;
}

.lp-contents-lead {
  text-align: center;
}

@media (width < 768px) {
  .lp-contents {
    padding: 2rem 1.5rem;
  }

  .lp-contents-lead {
    text-align: left;
  }
}

.usecase {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.usecase__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: .5rem;
  flex: 0 1 calc((100% - 1.5rem) / 2);
  padding: 1.5625rem;
}

.usecase__item-title {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-size: var(--font-size-2xl);
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 1.4;
  & span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--lp-font-poppins);
    font-size: 1rem;
    font-weight: 600;
    font-variation-settings: "wght" 600;
    line-height: 1;
    & em {
      font-size: 2.375rem;
      color: var(--bland-color);
      font-style: normal;
    }
  }
}

.usecase__item-figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 0;
  & figcaption {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #666;

    & a[target] {
      &::after {
        margin: 0 .125rem -.125rem .25rem;
      }
    }
  }

  & img {
    width: 100%;
  }
}

.usecase__item-price {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: var(--colors-primary-200);
  border-radius: 1.5rem;
  line-height: 1.4;
}

@media (width < 768px) {
  .usecase {
    flex-direction: column;
  }
  .usecase__item {
    flex: 1;
    padding: 1.5rem;
  }
  .usecase__item-title {
    font-size: var(--font-size-xl);
  }
}

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

.details__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #ccc;
  &:last-child {
    border-bottom: none;
  }

  & b {
    font-size: var(--font-size-lg);
  }
}

.details__item-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  font-variation-settings: "wght" 700;
  line-height: 1;
  letter-spacing: -0.03rem;
  color: var(--colors-primary-600);
}

.details__table-wrap {
  margin: 0 0 0 1.5rem;
}

.details__table {
  table-layout: fixed;
  border-collapse: collapse;
  & thead {
    & th {
      padding: 0.875rem;
      font-size: var(--font-size-md);
      font-weight: 400;
      font-variation-settings: "wght" 400;
      line-height: 1.6;
      border: 1px solid #ccc;
      background: #F6F6F6;
      &:first-child {
        width: 31.25rem;
        text-align: left;
      }
    }
  }
  & td {
    padding: 0.875rem;
    border: 1px solid #ccc;
    background: var(--white);
    line-height: 1.6;
    text-align: center;
    vertical-align: middle;
    &.attention {
      background: #FFF5EF;
      color: var(--lp-color-red);
      font-weight: 600;
      font-variation-settings: "wght" 600;
    }
    &:first-child {
      text-align: left;
    }
  }
}

.details__table-note {
  margin: 0 0 0 1.5rem;
}

@media (width < 768px) {
  .details__item {
    &:last-child {
      padding-bottom: 0;
    }
  }
  .details__table-wrap {
    overflow: auto;
    margin: 0 -2.75rem;
  }
  .details__table {
    width: 447px;
    margin: 0 2.75rem 0 4rem;
    & thead {
      & th {
        font-size: var(--font-size-xs);
        padding: .875rem .75rem;
        &:first-child {
          width: 12.3125rem;
          font-size: .8125rem;
        }
      }
    }
    & td {
      font-size: .8125rem;
      padding: .875rem .75rem;
    }
  }
}

.coupon {
  border: 4px solid var(--bland-color);
  text-align: center;
}

.coupon__title {
  margin-bottom: 1.5rem;
}

.coupon__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 0 2.5rem;
}

.coupon__form-agreement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  & input[type="checkbox"] {
    display: none;
  }

  & label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-variation-settings: "wght" 700;
    line-height: 1;
    position: relative;
    &::before,
    &::after {
      flex-shrink: 0;
      content: "";
      display: block;
    }

    &::before {
      width: 1.375rem;
      height: 1.375rem;
      border: solid 2px #ccc;
    }

    &::after {
      width: .875rem;
      height: .6375rem;
      border-bottom: solid 2px var(--lp-color-primary);
      border-left: solid 2px var(--lp-color-primary);
      transform: rotate(-45deg);
      position: absolute;
      left: .25rem;
      top: -.25rem;
      bottom: 0;
      margin: auto;
      display: none;
    }

    &:has(input:checked) {
      &::after {
        display: block;
      }
    }
  }
}

.coupon__form-code {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.coupon__button {
  border: none;
  &::after {
    transform: rotate(90deg);
  }
  &:disabled {
    background: #ccc;
  }
  &[aria-expanded="true"] {
    &::after {
      transform: rotate(-90deg);
    }
  }
}

.coupon__result {
  width: 100%;
  padding: 2.5rem 1rem;
  background: #F0F8F1;
  border-radius: .5rem;
}

.coupon__result-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.coupon__result-title {
  font-size: var(--scale-lg);
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 1;
}

.coupon__result-text {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--font-size-5xl);
  font-weight: 700;
  font-variation-settings: "wght" 700;
  line-height: 1;
  color: #FF3700;
}

.coupon__copy-button {
  border: none;
  background: none;
}

.coupon__usage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid #ccc;
}

.coupon__usage-title {
  font-size: var(--font-size-2xl);
  color: var(--colors-primary-600);
  line-height: 1;
  letter-spacing: -0.03rem;
}

.coupon__usage-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

@media (width < 768px) {
  .coupon {
    text-align: left;
  }

  .coupon__form-agreement {
    & label {
      line-height: 1.4;
    }
  }

  .coupon__result-text {
    font-size: var(--font-size-2xl);
  }

  .coupon__usage {
    text-align: center;
  }

  .coupon__usage-buttons {
    flex-direction: column;
    align-items: stretch;

    & a {
      display: flex;
      justify-content: space-between;
      text-align: left;
      line-height: 1.4;
      height: 3.5rem;
    }
  }
}

.tips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  & dl {
    padding: 0 0 .875rem;
    border-bottom: 1px solid #ccc;
    & dt {
      font-size: var(--font-size-xl);
      font-weight: 600;
      font-variation-settings: "wght" 600;
      line-height: 1.4;
      padding: 0 0 .5rem;
      border-bottom: solid 1px #ccc;
      margin: 0 0 .875rem;
    }

    & dd {
      line-height: 1.7;
    }

    & + dl {
      margin-top: 1rem;
    }
  }
}

.tips__title {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 1.4;
  margin: 0 0 1rem;
}

.tips__button {
  margin-top: 1.5rem;
}

@media (width < 768px) {
  .tips__title {
    font-size: var(--font-size-2xl);
  }
}

/* 特典02 */
.benefit02-details {
  border: 4px solid var(--bland-color);
  text-align: center;
}

.detals__apply {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ccc;
}

.detals__apply-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  font-variation-settings: "wght" 600;
}

@media (width < 768px) {
  .detals__apply-title {
    text-align: left;
    line-height: 1.4;
  }
}
