:root {
  --colorBlack: #454545;
  --colorDarkOrange: #deb45b;
  --colorGradientGreen: linear-gradient(
  90deg,
  rgba(0, 184, 117, 1) 0%,
  rgba(162, 210, 119, 1) 100%
  );
  --colorGradientGreen180: linear-gradient(
  180deg,
  rgba(0, 184, 117, 1) 0%,
  rgba(162, 210, 119, 1) 100%
  );
  --colorGreen: #008862;
  --colorGreen500: #a2d277;
  --colorGreen900: #53b475;
  --fontAboreto: "Aboreto", system-ui;
  --fontBIZUDPGothic: "BIZ UDPGothic", sans-serif;
  --fontNotoSerifJP: "Noto Serif", serif;
}

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

base

------------------------------------------- */
body {
  color: var(--colorBlack);
  font-family: var(--fontNotoSerifJP);
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.container1100 {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

.headline {
  text-align: center;
}

.headline__title {
  background: var(--colorGradientGreen180);
  -webkit-background-clip: text;
  font-family: var(--fontAboreto);
  font-size: 96px;
  -webkit-text-fill-color: transparent;
}

.headline__lead {
  color: var(--colorBlack);
  font-family: var(--fontNotoSerifJP);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  margin-top: 32px;
}

@media screen and (max-width: 1100px) {
  .container {
    padding: 0 20px;
    width: auto;
  }

  .container1100 {
    padding: 0 20px;
    width: auto;
  }

  .headline__title {
    font-size: 40px;
  }

  .headline__lead {
    font-size: 18px;
    margin-top: 16px;
  }
}

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

Header

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

.lpHeader {
  align-items: center;
  display: flex;
  height: 96px;
  justify-content: flex-start;
  left: 0;
  padding: 0 50px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.lpHeader__logo img {
  max-width: 253px;
  width: 100%;
}

.lpHeader__hamburger {
  background: #008862;
  border: none;
  cursor: pointer;
  height: 96px;
  position: absolute;
  right: 0;
  top: 0;
  width: 96px;
}

.lpHeader__hamburger span {
  background: #fff;
  border-radius: 6px;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: 0.4s ease-in-out;
  width: 48px;
}

.lpHeader__hamburger span:nth-child(1) {
  transform: translate(-50%, calc(-50% + 16px));
}

.lpHeader__hamburger span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.lpHeader__hamburger span:nth-child(3) {
  transform: translate(-50%, calc(-50% - 16px));
}

.open.lpHeader__hamburger span:nth-child(1) {
  transform: translate(-50%,calc(-50% + 0px)) rotate(-30deg);
}

.open.lpHeader__hamburger span:nth-child(2) {
  opacity: 0;
}

.open.lpHeader__hamburger span:nth-child(3) {
  transform: translate(-50%,calc(-50% - 0px)) rotate(30deg);
}

.pageNavBar {
  bottom: 8px;
  display: flex;
  gap: 8px;
  position: fixed;
  right: 8px;
  z-index: 8;
}

.pageNavBar__link {
  display: grid;
  grid-template-columns: 3.5rem auto;
  height: 3.5rem;
}

.pageNavBar__icon {
  align-content: center;
  text-align: center;
}

.pageNavBar__icon img {
  max-width: 2.5rem;
}

.pageNavBar__link--phone .pageNavBar__icon {
  background: #3ba8c3;
}

.pageNavBar__link--phone .pageNavBar__text {
  background: #54b8d0;
}

.pageNavBar__text {
  align-items: center;
  background: #54b8d0;
  display: flex;
  height: 3.5rem;
  justify-content: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.pageNavBar__text p {
  color: #fff;
  font-family: var(--fontAboreto);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.pageNavBar__link--web .pageNavBar__icon {
  background: #21557e;
}

.pageNavBar__link--web .pageNavBar__text {
  background: #1e68a1;
}

.pageNavBar__text::after {
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: "";
  display: block;
  height: 3.5rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 8.75rem;
  z-index: -1;
}

.pageNavBar__link--phone .pageNavBar__text::after {
  background: #3ca8c3;
}

.pageNavBar__link--web .pageNavBar__text::after {
  background: #21557e;
}

.pageNavBar__line {
  display: block;
  height: 3.5rem;
  width: 3.5rem;
}

.pageNavBar__toTop {
  background: #008862;
  border: none;
  cursor: pointer;
  display: block;
  height: 3.5rem;
  position: relative;
  width: 3.5rem;
}

.pageNavBar__toTop::after {
  background: url(../img/lp/icon-chevron_white.png) no-repeat center / cover;
  content: "";
  height: 1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
}

.pageNavBar__text .for-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .lpHeader {
    height: 74px;
    padding: 20px 10px 0;
  }
  .lpHeader__hamburger {
    height: 74px;
    width: 74px;
  }
  .lpHeader__hamburger span {
    width: 37px;
  }
  .lpHeader__hamburger span:nth-child(1) {
    transform: translate(-50%,calc(-50% + 12px));
  }
  .lpHeader__hamburger span:nth-child(3) {
    transform: translate(-50%,calc(-50% - 12px));
  }
  .pageNavBar__text .for-pc {
    display: none;
  }
  .pageNavBar__text .for-sp {
    display: block;
  }
  .pageNavBar__text {
    padding-inline-start: 0.25rem;
  }
  .pageNavBar {
    bottom: 0;
    gap: 0;
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 31% 45% auto auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .pageNavBar__text p {
    font-size: 1.75rem;
  }
  .pageNavBar__text img {
    max-width: 80px;
  }
  .pageNavBar__icon img {
    max-width: 2.25rem;
  }
}

@media screen and (max-width: 550px) {
  .pageNavBar__text:after {
    width: 4.75rem;
  }
  .pageNavBar__text p {
    font-size: 0.9rem;
  }
  .pageNavBar__text img {
    max-width: 107px;
  }
  .pageNavBar__icon img {
    max-width: 1.875rem;
  }
  .pageNavBar__link {
    grid-template-columns: 2.9rem auto;
  }
  .pageNavBar__link,
  .pageNavBar__line {
    /* height: 2.6rem; */
  }
  .pageNavBar__toTop {
    /* height: 2.6rem; */
    width: 2.6rem;
  }
}

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

Sidedrawer

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

.lpSidedrawer {
  background: #416c60;
  height: 100%;
  left: 0;
  padding: 1.56rem;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  width: 100%;
  z-index: 9;
}

.lpSidedrawer.open {
  transform: translateX(0);
}

.lpSidedrawer__inner {
  display: grid;
  grid-template-columns: 57.85% 41.8%;
  height: 100%;
  justify-content: space-between;
  overflow: hidden;
}

.lpSidedrawer__image {
  position: relative;
  z-index: 1;
}

.lpSidedrawer__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lpSidedrawer__imageFilter {
  background: rgba(70, 65, 54, 0.48);
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.lpSidedrawer__contents {
  background: rgba(40, 69, 50, 0.9);
  padding: 3.125rem clamp(2rem, 4.25vw, 3.625rem);
}

.lpSidedrawer__nav {
  display: grid;
  gap: 1.875rem;
  height: fit-content;
}

.lpSidedrawer__link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: fit-content;
}

.lpSidedrawer__enLabel {
  color: #fff;
  font-family: var(--fontAboreto);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.125;
}

.lpSidedrawer__jpLabel {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.11;
}

@media screen and (max-height: 600px) {
  .lpSidedrawer__nav {
    max-height: 600px;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 767px) {
  .lpSidedrawer__inner {
    grid-template-columns: 1fr;
  }
  .lpSidedrawer__image {
    grid-column: 1;
    grid-row: 1;
  }
  .lpSidedrawer__contents {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    place-content: center;
    width: calc(100% - 2rem);
    z-index: 2;
  }
}

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

footer

------------------------------------------- */
.footer {
  background: url("../img/lp/img-footer_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}

.footer__word {
  text-align: center;
}

.footer__word span {
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  padding: 16px;
}

.footer__copyright {
  color: #fff;
  font-size: 13px;
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 105px 0 75px;
  }

  .footer__word span {
    font-size: 15px;
    padding: 8px;
  }

  .footer__copyright {
    font-size: 11px;
    margin-top: 80px;
  }
}

/* cv
------------------------------------------- */
.contactArea {
  background: url("../img/lp/img-contact_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 86px 0 80px;
}

.contactArea__word {
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 36px;
  line-height: 64px;
  text-align: center;
}

.contactArea__column {
  column-gap: 50px;
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.buttonContact {
  background: #fff;
  padding: 26px 0;
  width: 480px;
}

a.buttonContact.for-turquoise {
    border: 10px solid #3CC5A1;
}

.buttonContact.for-orange {
  border: 10px solid var(--colorDarkOrange);
}

.buttonContact.for-green {
  border: 10px solid var(--colorGreen500);
}

.buttonContact__word {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.buttonContact__word span {
  margin-right: 10px;
}

.buttonContact.for-orange .buttonContact__word span {
  color: var(--colorDarkOrange);
}

.buttonContact__inner {
  align-items: center;
  column-gap: 10px;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.buttonContact__inner img {
  height: 56px;
  width: 56px;
}

.buttonContact__text {
  font-family: var(--fontAboreto);
  font-size: 48px;
}

.buttonContact__text span {
  font-family: var(--fontNotoSerifJP);
  font-size: 40px;
}

.buttonContact.for-orange .buttonContact__text {
  color: var(--colorDarkOrange);
}

.buttonContact.for-green .buttonContact__text {
  color: var(--colorGreen500);
}

.contactArea .for-sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .contactArea {
    padding: 48px 0 40px;
  }

  .contactArea__word {
    font-size: 1.4375rem;
    line-height: 2.08;
  }

  .contactArea__column {
    display: grid;
    grid-template-columns: 100%;
    margin-top: 2.875rem;
    row-gap: 1.875rem;
  }

  .buttonContact {
    padding: 26px 0;
    width: 100%;
  }

  .buttonContact.for-orange {
    border: 10px solid var(--colorDarkOrange);
  }

  .buttonContact.for-green {
    border: 10px solid var(--colorGreen500);
  }

  .buttonContact__word {
    font-size: 14px;
  }

  .buttonContact__word span {
    margin-right: 8px;
  }

  .buttonContact__inner {
    margin-top: 8px;
  }

  .buttonContact__inner img {
    height: 40px;
    width: 40px;
  }

  .buttonContact__text {
    font-family: var(--fontAboreto);
    font-size: 32px;
  }

  .buttonContact__text span {
    font-family: var(--fontNotoSerifJP);
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .contactArea .for-sp {
    display: block;
  }
  .buttonContact {
    margin: 0 auto;
    max-width: 28.125rem;
    padding: 1rem 1.25rem;
  }
  .buttonContact__word {
    line-height: 1.6;
    margin: 0 auto;
    text-align: start;
    width: fit-content;
  }
}

/* mv
------------------------------------------- */

.mv {
  align-items: flex-end;
  display: flex;
  height: 56.23vw;
  min-height: 43.75rem;
  padding: 3.51vw 1.46vw;
  position: relative;
  z-index: 1;
}

.mv__bg {
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -2;
}

.mv__filter {
  background: rgba(38, 34, 30, 0.64);
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.mv__title {
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 4.685vw;
  letter-spacing: 0.04em;
  line-height: 1.312;
  position: absolute;
  right: 9.736vw;
  text-align: end;
  top: 4.32vw;
  writing-mode: vertical-rl;
}

.mv__title .highlight {
  font-size: 5.856vw;
  text-shadow: 0 0 12px rgba(252, 255, 188, 1);
}

.mv__title .gap {
  padding-bottom: 1.46vw;
}

.mv__contents {
  margin: 0 auto;
  width: 87.84vw;
}

.mv__text {
  color: #fff;
  font-size: 1.024vw;
  letter-spacing: 0.32em;
  line-height: 1.28;
}

.mv__headingGroup {
  margin-top: 1.76vw;
}

.mv__heading {
  border-bottom: 1px solid #fff;
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 2.34vw;
  letter-spacing: 0.128em;
  line-height: 1.5;
  padding-bottom: 12px;
  width: fit-content;
}

.mv__lead {
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 1.46vw;
  letter-spacing: 0.128em;
  line-height: 2.4;
  margin-top: 1.76vw;
}

.mv__list {
  display: flex;
  margin-top: 5.56vw;
}

.mv__item {
  align-items: center;
  border: 1px solid #fff;
  display: flex;
  gap: 8px;
  height: 5.85vw;
  justify-content: center;
  text-align: center;
  width: 16.1vw;
}

.mv__itemText {
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 1.75vw;
  letter-spacing: 0.16em;
}

.mv__itemText .small {
  font-family: var(--fontAboreto);
  font-size: 1.025vw;
  letter-spacing: 0;
}

.mv__item:last-child {
  border-left: none;
}

.mv__heading .for-sp {
  display: none;
}

@media screen and (max-width: 1366px) {
  .mv__title .gap {
    padding-bottom: clamp(12px, 1.46vw, 20px);
  }
  .mv__title .highlight {
    font-size: clamp(4.4rem, 5.856vw, 5rem);
  }
  .mv__title {
    font-size: clamp(3.24rem, 4.685vw, 4rem);
    right: 20px;
  }
  .mv__itemText {
    font-size: clamp(1.18rem, 1.75vw, 1.5rem);
  }
  .mv__itemText .small,
  .mv__text {
    font-size: clamp(0.6875rem, 1.025vw, 0.875rem);
  }
  .mv__headingGroup {
    margin-top: clamp(0.625rem, 1.76vw, 2.5rem);
  }
  .mv__heading {
    font-size: clamp(1.875rem, 2.34vw, 2rem);
  }
  .mv__lead {
    font-size: clamp(1.125rem, 1.46vw, 1.25rem);
    margin-top: clamp(1rem, 1.76vw, 1.5rem);
  }
  .mv__item {
    height: 80px;
    max-width: 220px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    flex-direction: column;
    gap: 65px;
    height: 100%;
  }
  .mv__heading {
    font-size: clamp(1.775rem,2.34vw,2rem);
    letter-spacing: 0.06em;
  }
  .mv__heading .for-sp {
    display: block;
  }
  .mv__title {
    font-size: clamp(1.94rem, 5.685vw, 4rem);
    letter-spacing: 0.16em;
    position: relative;
    right: 0;
    top: 45px;
  }
  .mv__title .highlight {
    font-size: clamp(2.5rem, 8.856vw, 5rem);
    letter-spacing: 0.04em;
  }
  .mv__lead {
    letter-spacing: 0.04em;
  }
  .mv__lead br {
    display: none;
  }
}

/* about
------------------------------------------- */
.about {
  background: url("../img/lp/img-about_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.about__mask {
  height: auto;
  left: 0;
  opacity: 0.08;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.about__bg {
  background: linear-gradient(to bottom left, rgba(242, 240, 216, 1), rgba(250, 248, 226, 1));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  display: block;
  height: 100%;
  height: 90.1%;
  left: 0;
  opacity: 0.48;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.about__trianglesRight {
  position: absolute;
  right: 0;
  top: 8.33%;
  width: 14vw;
  z-index: -1;
}

.about__trianglesLeft {
  left: 0;
  max-width: 9.73vw;
  position: absolute;
  top: 72.53%;
  width: 100%;
  z-index: -1;
}

.aboutWord {
  color: rgba(162, 210, 119, 0.12);
  font-family: var(--fontAboreto);
  font-size: 140px;
  left: 0;
  position: absolute;
  top: -32px;
  width: 100%;
}

.aboutCatch {
  margin: 0 auto;
  max-width: 858px;
  width: 100%;
}

.aboutCatch__head {
  align-items: center;
  column-gap: 13px;
  display: flex;
  font-family: var(--fontNotoSerifJP);
}

.aboutCatch__head h2 {
  align-items: center;
  display: flex;
  font-size: 42px;
  font-weight: 400;
}

.aboutCatch__head h2 span {
  align-items: center;
  border-bottom: 2px solid var(--colorGreen);
  border-left: 2px solid var(--colorGreen);
  border-top: 2px solid var(--colorGreen);
  color: var(--colorGreen);
  display: flex;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.aboutCatch__head h2 span:last-child {
  border-right: 2px solid var(--colorGreen);
}

.aboutCatch__head h3 {
  font-size: 42px;
  font-weight: 500;
}

.aboutCatch__body {
  align-items: flex-end;
  display: flex;
  font-family: var(--fontNotoSerifJP);
  margin-top: 26px;
}

.aboutCatch__body h4 {
  color: var(--colorBlack);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 6px;
}

.aboutCatch__body h5 {
  background: var(--colorGradientGreen);
  -webkit-background-clip: text;
  font-size: 108px;
  font-weight: 400;
  letter-spacing: 6px;
  position: relative;
  -webkit-text-fill-color: transparent;
  top: 4px;
}

.aboutPoint {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 30px;
  justify-content: center;
  margin-top: 64px;
  position: relative;
}

.aboutPoint__lines,
.aboutPoint__smallTriangle {
  height: auto;
  max-width: 5.18rem;
  position: absolute;
  width: 100%;
}

.aboutPoint__lines--left {
  left: -30px;
  top: -24px;
}

.aboutPoint__lines--right {
  bottom: 8px;
  right: -30px;
  transform: scale(-1);
}

.aboutPoint__smallTriangle {
  max-width: 2.25rem;
}

.aboutPoint__smallTriangle--left {
  bottom: 0;
  left: 0;
}

.aboutPoint__smallTriangle--right {
  right: 0;
  top: 0;
}

.aboutPointBox {
  align-items: center;
  background: url("../img/lp/img-about_point_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 188px;
  justify-content: center;
  width: 345px;
}

.aboutPointBox__word {
  color: var(--colorGreen900);
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
}

.aboutNotes {
  align-items: center;
  background: url("../img/lp/img-about_notes_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  height: 323px;
  justify-content: center;
  margin-top: 88px;
  width: 100%;
}

.aboutNotes__word {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 56px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .about {
    padding: 48px 0;
  }

  .aboutWord {
    font-size: 70px;
    top: -16px;
  }

  .aboutCatch {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .aboutCatch__head {
    column-gap: 6px;
  }

  .aboutCatch__head h2 {
    font-size: 24px;
  }

  .aboutCatch__head h2 span {
    border-bottom: 1px solid var(--colorGreen);
    border-left: 1px solid var(--colorGreen);
    border-top: 1px solid var(--colorGreen);
    height: 32px;
    width: 32px;
  }

  .aboutCatch__head h2 span:last-child {
    border-right: 1px solid var(--colorGreen);
  }

  .aboutCatch__head h3 {
    font-size: 24px;
  }

  .aboutCatch__body {
    margin-top: 24px;
  }

  .aboutCatch__body h4 {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .aboutCatch__body h5 {
    font-size: 44px;
    letter-spacing: 4px;
  }

  .aboutPoint {
    gap: 20px;
    margin-top: 40px;
  }

  .aboutPointBox {
    height: 23vw;
    width: 42vw;
  }

  .aboutPointBox__word {
    font-size: 3vw;
    line-height: 1.6;
  }

  .aboutNotes {
    background-size: cover;
    height: auto;
    margin-top: 40px;
    padding: 20px;
  }

  .aboutNotes__word {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }

  .aboutNotes__word br {
    display: none;
  }

  .aboutPoint__lines--left {
    left: 0;
    top: 0;
  }

  .aboutPoint__lines--right {
    bottom: 0;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .aboutPoint {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
  }
  .aboutPointBox {
    position: relative;
  }
  .aboutPointBox::before {
    content: "";
    height: 2.065rem;
    position: absolute;
    width: 2.44rem;
  }
  .aboutPointBox:nth-child(odd) {
    grid-column: 1 / span 3;
  }
  .aboutPointBox:nth-child(odd)::before {
    background: url(../img/lp/img-triangles_odd.png) no-repeat center / cover;
    right: -26%;
    top: 36%;
  }
  .aboutPointBox:nth-child(even) {
    grid-column: 2 / span 3;
  }
  .aboutPointBox:nth-child(even)::before {
    background: url(../img/lp/img-triangles_even.png) no-repeat center / cover;
    left: -26%;
    top: 36%;
  }
  .aboutCatch {
    width: fit-content;
  }
  .aboutPoint__smallTriangle,
  .aboutPoint__lines--left,
  .about__trianglesRight {
    display: none;
  }
  .about__trianglesLeft {
    bottom: 9.3%;
    max-width: 8.3125rem;
    top: auto;
  }
}

/* service
------------------------------------------- */

.service__top {
  background: linear-gradient(to bottom right, #008862 0%, #5aa875 50%, #5aa875 100%);
  padding: 4rem 1.25rem 0;
  position: relative;
}

.service__top .container {
  padding-bottom: 3.125rem;
}

.service__top .border {
  background: #5aa875;
  bottom: calc(-3.95vw + 5px);
  clip-path: polygon(100% 25%, 50% 100%, 0 25%, 0 0, 100% 0);
  display: block;
  height: 3.95vw;
  margin: 0 -1.25rem;
  min-height: 3.375rem;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.serviceWord {
  height: auto;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
}

.serviceHead__lead {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: var(--fontAboreto);
  font-size: 1.375rem;
  gap: 0.75rem;
  justify-content: center;
}

.serviceHead__lead .line {
  background: #fff;
  display: block;
  height: 1px;
  width: 35px;
}

.serviceHead__title {
  background: linear-gradient(to bottom, #efe951, #feffde);
  -webkit-background-clip: text;
  font-family: var(--fontNotoSerifJP);
  font-size: 88px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 1.5rem;
  text-align: center;
  -webkit-text-fill-color: transparent;
}

.serviceHead__title span {
  background: linear-gradient(to bottom, #efe951, #feffde);
  -webkit-background-clip: text;
          background-clip: text;
  position: relative;
}

.serviceHead__title span::after {
  background: linear-gradient(to bottom, #efe951, #feffde);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.serviceTop__display {
  display: grid;
  gap: clamp(1.25rem, 4.63vw, 3.125rem);
  grid-template-columns: clamp(31.25rem, 40.3vw, 34.375rem) 1fr;
  margin-top: 4.68rem;
}

.serviceTop__left {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 2.675rem;
  position: relative;
  z-index: 1;
}

.serviceTop__left::before,
.serviceTop__left::after {
  content: "";
  height: 10px;
  left: 0;
  opacity: 0.8;
  position: absolute;
  width: 100%;
}

.serviceTop__left::before {
  background: linear-gradient(to right, #a2d277, #00b875);
  top: 0;
}

.serviceTop__left::after {
  background: linear-gradient(to right, #00b875, #a2d277);
  bottom: 0;
}

.serviceTop__leftBG--left,
.serviceTop__leftBG--right {
  display: block;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  width: 50%;
  z-index: -1;
}

.serviceTop__leftBG--left {
  background: linear-gradient(to bottom, #00b875, #a2d277);
  left: 0;
}

.serviceTop__leftBG--right {
  background: linear-gradient(to bottom, #a2d277, #00b875);
  right: 0;
}

.serviceTop__bubble {
  filter: drop-shadow(0px 3px 0px #00b875);
  left: 50%;
  position: absolute;
  top: -2.275rem;
  transform: translateX(-50%);
  z-index: 3;
}

.serviceTop__bubbleText {
  background: #fff;
  clip-path: polygon(5% 0, 95% 0, 100% 15%, 100% 85%, 95% 100%, 5% 100%, 0 85%, 0 15%);
  color: #00b875;
  font-family: var(--fontNotoSerifJP);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 13px 24px;
  word-break: keep-all;
}

.serviceTop__triangle {
  bottom: -14px;
  filter: drop-shadow(0px 1px 0px #00b875) drop-shadow(0px 1px 0px #00b875);
  height: 16px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 18px;
}

.serviceTop__textArea {
  background: #fff;
  height: calc(100% - 20px);
  padding: 54px 40px 40px;
  position: relative;
  width: calc(100% - 20px);
  z-index: 2;
}

.serviceTop__text {
  color: #454545;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 2;
}

.serviceTop__right {
  display: grid;
  grid-template-columns: 54.5% 43.6%;
  justify-content: space-between;
  row-gap: 10px;
}

.serviceTop__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.serviceTop__image--one {
  grid-row: span 2;
  position: relative;
}

.serviceTop__image--one::before {
  background: #00b875;
  content: "";
  height: 1.25rem;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 1.25rem;
}

.serviceTop__image--two {
  grid-column: 2;
  grid-row: 1;
  position: relative;
}

.serviceTop__image--two::before {
  background: #a2d277;
  bottom: 0;
  content: "";
  height: 0.625rem;
  opacity: 0.8;
  position: absolute;
  right: 0;
  width: 0.625rem;
}

.serviceTop__image--three {
  grid-column: 2;
  grid-row: 2;
}

.serviceTop__textAreaTriangle {
  background: linear-gradient(to bottom, #00b875, #a2d277);
  bottom: 0;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  display: block;
  opacity: 0.1;
  position: absolute;
  right: 0;
}

.serviceTop__textAreaTriangle--large {
  height: 73.28%;
  width: 73.8%;
  z-index: 1;
}

.serviceTop__textAreaTriangle--small {
  height: 45.8%;
  width: 45.6%;
  z-index: 2;
}

.service__bottom {
  background: linear-gradient(to bottom right, #fcfcdf 0%, #fcfcdf 50%, #6fc172 100%);
  padding: 9.125rem 1.25rem 6rem;
  position: relative;
  z-index: 1;
}

.service__bottomTriangle {
  background: #00b875;
  bottom: 0;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
  left: 0;
  opacity: 0.08;
  position: absolute;
}

.service__bottomTriangle--large {
  height: 18.9vw;
  width: 50vw;
  z-index: -2;
}

.service__bottomTriangle--small {
  height: 18.9vw;
  width: 25vw;
  z-index: -1;
}

.service__displayList {
  display: grid;
  grid-template-columns: 16.5rem auto;
  row-gap: 1.5rem;
}

.service__displayTitle {
  align-items: center;
  background: #00b875;
  color: #fff;
  display: flex;
  font-family: var(--fontNotoSerifJP);
  font-size: 1.5rem;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.08em;
  position: relative;
  text-align: center;
}

.service__displayTitle::after {
  background: #00b875;
  clip-path: polygon(100% 50%, 0 100%, 0 0);
  content: "";
  height: 14px;
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
}

.service__displayDetails {
  background: #fff;
  color: #454545;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  padding: 0.625rem 1rem 0.625rem 2rem;
  width: fit-content;
}

.service__box {
  margin-top: 4rem;
  position: relative;
}

.service__boxTextarea {
  background: #fff;
  padding: 2rem 1.875rem;
}

.service__boxText {
  color: #34a888;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 auto;
  width: fit-content;
}

.service__border {
  background: #008862;
  display: block;
  position: absolute;
}

.service__border--left,
.service__border--right {
  height: 100%;
  opacity: 0.8;
  top: 0;
  width: 0.625rem;
}

.service__border--left {
  left: 0;
}

.service__border--right {
  right: 0;
}

.service__border--top,
.service__border--bottom {
  height: 10px;
  left: 0;
  opacity: 0.6;
  width: 100%;
}

.service__border--top {
  top: 0;
}

.service__border--bottom {
  bottom: 0;
}

.service__bottomPerson {
  bottom: 0;
  max-width: 27.625rem;
  opacity: 0.64;
  position: absolute;
  right: 0;
  width: 32.36vw;
}

@media screen and (max-width: 1200px) {
  .service__top .border {
    bottom: calc(-3.375rem + 10px);
  }
}

@media screen and (max-width: 1000px) {
  .serviceTop__display {
    grid-template-columns: 1fr;
    margin: 4.68rem auto 0;
    max-width: 550px;
  }
  .serviceTop__left {
    grid-row: 2;
  }
  .serviceTop__right {
    grid-row: 1;
  }
}

@media screen and (max-width: 767px) {
  .serviceHead__title {
    font-size: 2rem;
  }
  .serviceTop__bubbleText {
    font-size: 1.375rem;
    padding: 18px 24px;
  }
  .serviceTop__bubble {
    top: -2.175rem;
  }
  .serviceTop__textArea {
    padding: 50px 20px 30px;
  }
  .service__displayList {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .service__displayTitle:not(:first-child) {
    margin-top: 1.56rem;
  }
  .service__displayTitle::after {
    display: none;
  }
  .service__displayTitle {
    font-size: 1.375rem;
    justify-content: flex-start;
    line-height: 1.3;
    padding: 0.3125rem 1rem;
  }
  .service__displayDetails {
    font-size: 1.25rem;
    padding: 0.625rem 1rem;
    width: 100%;
  }
  .service__bottomPerson {
    bottom: auto;
    right: 50%;
    top: 4.2rem;
    transform: translateX(50%);
    width: 20rem;
    z-index: -1;
  }
  .service__bottom {
    padding-top: 22.5rem;
  }
  .service__boxText {
    font-size: 1rem;
  }
  .service__boxTextarea {
    padding: 1.4rem;
  }
}

/* worries
------------------------------------------- */
.worries {
  background: url("../img/lp/img-worries_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 34.48vw;
  position: relative;
}

.worries::before {
  background: linear-gradient(
  0deg,
  rgba(162, 210, 119, 1) 0%,
  rgba(0, 134, 98, 1) 100%
  );
  bottom: 0;
  content: "";
  height: calc(100% - 1.756vw);
  left: 0;
  margin: auto;
  opacity: 0.12;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 1.756vw);
}

.worries::after {
  border: 10vw solid transparent;
  border-top: 5.8vw solid #f5db4a;
  bottom: -21vw;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  z-index: 100;
}

.worries .container1100 {
  max-width: 100%;
  width: 80.52vw;
}

.worries__column {
  height: 34.48vw;
  position: relative;
}

.worriesComment {
  position: relative;
}

.worriesCommentBox {
  align-items: center;
  background: url("../img/lp/img-about_point_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 12vw;
  justify-content: center;
  position: relative;
  width: 21.96vw;
}

.worriesCommentBox::before {
  content: "";
  height: clamp(1.5rem, 2.415vw, 2.06rem);
  position: absolute;
  width: clamp(1.75rem, 2.85vw, 2.43rem);
}

.worriesCommentBox:nth-child(1):before {
  background: url(../img/lp/icon-worries_triangle1.png) no-repeat center / cover;
  left: 3%;
  top: -6%;
}

.worriesCommentBox:nth-child(2):before {
  background: url(../img/lp/icon-worries_triangle2.png) no-repeat center / cover;
  left: 2%;
  top: -5%;
}

.worriesCommentBox:nth-child(3):before {
  background: url(../img/lp/icon-worries_triangle3.png) no-repeat center / cover;
  bottom: 9%;
  left: -3%;
}

.worriesCommentBox__word {
  color: var(--colorGreen900);
  font-size: 1.464vw;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.worriesCommentBox:nth-of-type(1) {
  left: 0;
  position: absolute;
  top: 5.12vw;
}

.worriesCommentBox:nth-of-type(2) {
  left: 30vw;
  position: absolute;
  top: 6.4vw;
}

.worriesCommentBox:nth-of-type(3) {
  left: 14.64vw;
  position: absolute;
  top: 18vw;
}

.worries__img {
  bottom: 0;
  position: absolute;
  right: 0;
}

.worries__img img {
  height: 32.72vw;
  width: auto;
}

@media screen and (max-width: 1000px) {
  .worries {
    height: 68vw;
  }

  .worries::before {
    height: calc(100% - 16px);
    width: calc(100% - 16px);
  }

  .worries::after {
    border: 10vw solid transparent;
    border-top: 5.8vw solid #f5db4a;
    bottom: -20vw;
    content: "";
    left: 50%;
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    z-index: 100;
  }

  .worries .container1100 {
    padding: 0 20px;
    width: auto;
  }

  .worries__column {
    height: 68vw;
  }

  .worriesCommentBox {
    height: 22vw;
    width: 40vw;
  }

  .worriesCommentBox__word {
    font-size: 3vw;
    line-height: 1.6;
  }

  .worriesCommentBox:nth-of-type(2) {
    left: 44vw;
    top: 10.4vw;
  }

  .worriesCommentBox:nth-of-type(3) {
    left: 14.64vw;
    top: 32vw;
  }

  .worries__img {
    bottom: 0;
    position: absolute;
    right: 0;
  }

  .worries__img img {
    height: 32.72vw;
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .worries {
    padding-top: 3.75rem;
  }
  .worries:before {
    height: calc(100% - 40px);
    width: calc(100% - 40px);
  }
  .worries,
  .worries__column {
    height: 100%;
  }
  .worries__column {
    padding-bottom: 12rem;
    z-index: 1;
  }
  .worriesComment {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    row-gap: 2rem;
  }
  .worriesCommentBox {
    bottom: unset !important;
    grid-column: span 3;
    left: unset !important;
    min-height: 8.125rem;
    min-width: 14.56rem;
    position: relative !important;
    right: unset !important;
    top: unset !important;
  }
  .worriesCommentBox:nth-of-type(2) {
    grid-column: 2 / span 3;
  }
  .worriesCommentBox:nth-child(2):before {
    bottom: 6%;
    left: auto;
    right: -5%;
    top: auto;
    transform: scale(-1);
  }
  .worriesCommentBox:nth-child(3):before {
    bottom: auto;
    left: -1%;
    top: -3%;
    transform: scaleY(-1);
  }
  .worries__img {
    z-index: -1;
  }
  .worries__img img {
    height: auto;
    width: 15rem;
  }
  .worries:after {
    background: #f5db4a;
    border: none;
    bottom: -4rem;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    height: 3.75rem;
    width: 13.3125rem;
  }
}

/* comparison
------------------------------------------- */
.comparison {
  background: linear-gradient(
  90deg,
  rgba(255, 255, 255, 0.9) 0%,
  rgba(225, 244, 209, 0.9) 100%
  );
  padding: 67px 0 64px;
  position: relative;
}

.comparison::before {
  background: url("../img/lp/img-comparison_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 513px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100;
}

.comparisonHead {
  margin: 0 auto;
  max-width: 1015px;
  width: 100%;
}

.comparisonHead__lead {
  color: #00b875;
  font-family: var(--fontAboreto);
  font-size: 32px;
  position: relative;
  right: 32px;
  text-align: right;
}

.comparisonHead__inner {
  align-items: center;
  column-gap: 24px;
  display: flex;
  margin-top: 16px;
}

.comparisonHead__title {
  background: var(--colorGradientGreen180);
  -webkit-background-clip: text;
  font-family: var(--fontNotoSerifJP);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 10px;
  padding: 0 32px;
  position: relative;
  -webkit-text-fill-color: transparent;
}

.comparisonHead__title::before {
  background: url("../img/lp/img-comparisonHead__title_before.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 62px;
  left: 0;
  position: absolute;
  top: 0;
  width: 16px;
}

.comparisonHead__title::after {
  background: url("../img/lp/img-comparisonHead__title_before.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 62px;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(180deg);
  width: 16px;
}

.comparisonHead__word {
  font-family: var(--fontNotoSerifJP);
  font-size: 48px;
  letter-spacing: 12px;
}

.comparisonHead__word span {
  font-size: 56px;
}

.comparison__area {
  margin-top: 64px;
}

.comparisonTable {
  table-layout: fixed;
}

.comparisonTable thead tr td {
  background: #00b875;
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 24px;
  font-weight: 500;
  height: 64px;
  text-align: center;
  width: 25%;
}

.comparisonTable thead tr td:nth-child(odd) {
  background: #008862;
}

.comparisonTable tbody tr td {
  background: #fff;
  border: 1px solid #00b875;
}

.comparisonTable tbody tr td:nth-child(n + 2) {
  font-size: 18px;
  line-height: 1.8;
  padding-left: 24px;
}

.comparisonTable tbody tr td:nth-child(n + 3) {
  font-size: 16px;
}

.comparisonTable tbody tr:nth-child(3) {
  background: #fcfce7;
}

.comparisonData {
  display: none;
  gap: 2.5rem;
}

.comparisonData__header {
  position: relative;
}

.comparisonData__heading {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: var(--fontNotoSerifJP);
  font-size: 1.125rem;
  font-weight: 500;
  height: 2.125rem;
  justify-content: center;
  left: 0.5rem;
  letter-spacing: 0.04em;
  padding: 0 0.75rem;
  position: absolute;
  top: 0.5rem;
  width: fit-content;
}

.comparisonData__heading--light {
  background: #3cc5a1;
}

.comparisonData__heading--dark {
  background: #008862;
}

.comparisonData__header img {
  width: 100%;
}

.comparisonData__detailList {
  display: grid;
  grid-template-columns: 6.5rem auto;
}

.comparisonData__detailTitle {
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 1rem;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.08em;
  place-content: center;
  text-align: center;
}

.comparisonData__detailTitle:nth-of-type(even) {
  background: #008862;
}

.comparisonData__detailText:nth-of-type(even) {
  border-bottom: 1px solid #00b875;
  border-top: 1px solid #00b875;
}

.comparisonData__detailTitle:nth-of-type(odd) {
  background: #00b875;
}

.comparisonData__detailText {
  background: #fff;
  padding: 1.25rem;
}

.comparisonData__article:nth-child(1) .comparisonData__detailText {
  background: #fcfce7;
}

.comparisonData__detailText p,
.comparisonData__detailText li,
.comparisonData__detailText span {
  color: #454545;
  font-size: 0.9375rem;
  line-height: 1.86;
}

.comparisonData__list li {
  display: grid;
  gap: 4px;
  grid-template-columns: 1rem auto;
}

@media screen and (max-width: 1000px) {
  .comparison {
    padding: 48px 0 40px;
  }

  .comparison::before {
    background: url("../img/lp/img-comparison_bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 20%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -100;
  }

  .comparisonHead {
    max-width: 100%;
  }

  .comparisonData__article {
    margin: 0 auto;
    max-width: 32rem;
  }

  .comparisonHead__lead {
    font-size: 20px;
    right: 0;
    text-align: center;
  }

  .comparisonHead__inner {
    display: grid;
    grid-template-columns: 100%;
    margin-top: 16px;
    row-gap: 16px;
  }

  .comparisonHead__title {
    font-size: 40px;
    letter-spacing: 6px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    width: fit-content;
  }

  .comparisonHead__title::before {
    height: 40px;
    width: 16px;
  }

  .comparisonHead__title::after {
    height: 40px;
    width: 16px;
  }

  .comparisonHead__word {
    font-size: 28px;
    letter-spacing: 6px;
    text-align: center;
  }

  .comparisonHead__word span {
    font-size: 36px;
  }

  .comparisonTable {
    display: none;
  }

  .comparisonData {
    display: grid;
  }
}

/* features
------------------------------------------- */
.features {
  background: linear-gradient(
  90deg,
  rgba(234, 252, 234, 1) 0%,
  rgba(231, 239, 226, 1) 100%
  );
  padding-bottom: 72px;
}

.featuresHead {
  align-items: center;
  background: url(../img/lp/img-feature_head_bg.jpg) no-repeat center / cover;
  display: flex;
  height: 17.56vw;
  justify-content: center;
  min-height: 15rem;
  overflow: hidden;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

.featuresHead__topTriangle {
  background: linear-gradient(to right,#5aa875 0%,#5aa875 50%,#008862 100%);
  clip-path: polygon(0 100%, 0 0, 100% 0);
  height: 10.25vw;
  left: 0;
  position: absolute;
  top: 0;
  width: 25vw;
  z-index: -2;
}

.featuresHead__bottomTriangle {
  background: linear-gradient(to right,#008862 0%,#5aa875 65%,#5aa875 100%);
  bottom: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  height: 10.25vw;
  position: absolute;
  right: 0;
  width: 25vw;
  z-index: -2;
}

.featuresHead__container {
  box-sizing: border-box;
  height: 100%;
  margin: 0 auto;
  max-width: 79.125rem;
  place-content: center;
  position: relative;
  width: 100%;
}

.featuresHead__icon {
  bottom: 0;
  height: auto;
  left: 0;
  opacity: 0.48;
  position: absolute;
  width: clamp(6.5rem, 9.44vw, 8.06rem);
  z-index: -1;
}

.featuresHead__title {
  column-gap: 1.3125rem;
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  row-gap: 0.5rem;
  width: fit-content;
}

.featuresHead__title .labeled {
  background: #fff;
  color: #008862;
  font-family: var(--fontNotoSerifJP);
  font-size: 1.5rem;
  grid-column: 1;
  grid-row: 1;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  width: fit-content;
}

.featuresHead__title .regular {
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 3.5rem;
  grid-column: 1;
  grid-row: 2;
  letter-spacing: 0.16em;
  line-height: 1.6;
}

.featuresHead__title .boxed {
  display: flex;
  grid-column: 2;
  grid-row: span 2;
}

.featuresHead__title .boxed .single {
  align-items: center;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  font-family: var(--fontNotoSerifJP);
  font-size: 6rem;
  font-weight: 200;
  height: 8.56rem;
  justify-content: center;
  width: 8.56rem;
}

.featuresHead__title .boxed .single:nth-child(2) {
  border-left: none;
}

.features .container {
  max-width: 1266px;
}

.featuresHead__text {
  height: auto;
  left: 50%;
  position: absolute;
  top: -40%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -2;
}

.itemFeatures {
  background: linear-gradient(
  90deg,
  rgba(250, 255, 254, 1) 0%,
  rgba(214, 239, 199, 1) 100%
  );
  padding: 72px 30px 30px;
  position: relative;
}

.itemFeatures::before {
  background: url("../img/lp/img-features_deco_before.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 168px;
}

.itemFeatures::after {
  background: url("../img/lp/img-features_deco_after.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 250px;
  position: absolute;
  right: 0;
  top: 0;
  width: 340px;
}

.itemFeatures:nth-of-type(n + 2) {
  margin-top: 48px;
}

.itemFeatures__inner {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.itemFeaturesBox {
  background: #fff;
  padding: 80px 38px 50px 50px;
  position: relative;
  z-index: 1;
}

.itemFeaturesBox__title {
  align-items: center;
  color: #008862;
  column-gap: 16px;
  display: flex;
  font-family: var(--fontAboreto);
  font-size: 48px;
  left: 50px;
  position: absolute;
  top: -36px;
}

.itemFeaturesBox__title span {
  align-items: center;
  background: #fff;
  border: 2px solid var(--colorGreen);
  display: flex;
  height: 73px;
  justify-content: center;
  position: relative;
  width: 73px;
}

.itemFeaturesBox__title span::before {
  border-bottom: 4px solid;
  border-image: linear-gradient(
  180deg,
  rgba(0, 136, 98, 1) 0%,
  rgba(90, 168, 117, 1) 100%
  )
  1;
  border-right: 4px solid;
  content: "";
  height: 100%;
  position: absolute;
  right: -6px;
  top: 6px;
  width: 100%;
}

.itemFeaturesBox__word {
  font-family: var(--fontNotoSerifJP);
  font-size: 32px;
  line-height: 48px;
  position: relative;
}

.itemFeaturesBox__word span {
  background: linear-gradient(transparent 70%, #bcf0bc 70%);
  color: var(--colorGreen);
}

.itemFeaturesBox__word::before {
  background: url("../img/lp/img-features_word_before.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 40px;
  left: -50px;
  position: absolute;
  top: 8px;
  width: 16px;
}

.itemFeaturesBox__text {
  font-size: 16px;
  line-height: 2;
  margin-top: 48px;
}

.itemFeatures__thumbnail {
  position: relative;
  z-index: 1;
}

.itemFeatures:nth-of-type(2) .itemFeaturesBox {
  order: 2;
}

.itemFeatures:nth-of-type(2) .itemFeatures__thumbnail {
  order: 1;
}

.features__list {
  margin-top: 3rem;
}

@media screen and (max-width: 1000px) {
  .features {
    padding-bottom: 0;
  }
  .featuresHead__text {
    top: -5rem;
  }
  .featuresHead__title .regular {
    font-size: 3rem;
  }
  .featuresHead__title .boxed .single {
    align-self: flex-end;
    font-size: 5rem;
    height: 7.56rem;
    width: 7.56rem;
  }
  .featuresHead__title .labeled {
    font-size: 1.25rem;
  }
  .itemFeatures__inner {
    grid-template-columns: 1fr;
  }
  .itemFeatures__thumbnail {
    grid-row: 1;
    z-index: 1;
  }
  .itemFeaturesBox {
    grid-row: 2;
    z-index: 2;
  }
  .itemFeatures {
    margin: 0 auto;
    max-width: 32rem;
  }
  .itemFeaturesBox__title {
    left: 50%;
    transform: translateX(-50%);
  }
  .itemFeaturesBox {
    padding: 3.75rem 1.25rem 1.25rem;
  }
  .itemFeaturesBox__word:before {
    display: none;
  }
  .itemFeatures .for-pc {
    display: none;
  }
  .itemFeaturesBox__word {
    font-size: 1.375rem;
  }
  .itemFeaturesBox__text {
    margin-top: 1.75rem;
  }
  .itemFeatures {
    padding: 1.25rem;
  }
  .itemFeatures::before {
    background: url(../img/lp/features_deco_before_sp.png) no-repeat center / cover;
    height: 2.5rem;
    left: 0;
    opacity: 0.48;
    top: 0;
    width: 7.375rem;
  }
  .itemFeatures::after {
    background: url(../img/lp/features_deco_after_sp.png) no-repeat center / cover;
    height: 8.875rem;
    right: 0;
    top: 0;
    width: 12.2rem;
  }
  .itemFeatures:nth-of-type(n+2) {
    margin-top: 0;
  }
  .features__list {
    margin: 0 -1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .featuresHead__title .regular {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .featuresHead__title .boxed .single {
    align-self: flex-end;
    font-size: 3.75rem;
    height: 5.43rem;
    width: 5.43rem;
  }
  .featuresHead__title .labeled {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
  }
  .featuresHead__title {
    column-gap: 0;
  }
  .featuresHead__text {
    max-width: 83.25rem;
    width: 83.25rem;
  }
  .featuresHead__icon {
    display: none;
  }
  .featuresHead__bottomTriangle,
  .featuresHead__topTriangle {
    height: 8.75rem;
    width: 21.31rem;
  }
}


/* flow
------------------------------------------- */
.flow {
  overflow: hidden;
  padding: 84px 0 0;
  position: relative;
}

.flow::before {
  background: url("../img/lp/img-flow_deco_1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 18.22vw;
  left: 0;
  position: absolute;
  top: 0;
  width: 24.89vw;
}

.flow::after {
  background: url("../img/lp/img-flow_deco_2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 15.51vw;
  position: absolute;
  right: 0;
  width: 21.22vw;
}

.flow .container {
  position: relative;
}

.flow .container::before {
  background: linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.9) 0%,
  rgba(248, 255, 240, 1) 100%
  );
  content: "";
  height: 610px;
  left: 50%;
  position: absolute;
  top: -84px;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -100;
}

.flow .container::after {
  background: url("../img/lp/img-flow_head_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 400px;
  left: 50%;
  position: absolute;
  top: -84px;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -200;
}

.itemFlow {
  column-gap: 40px;
  display: flex;
  padding: 56px 0 48px;
  position: relative;
}

.itemFlow::before {
  background: linear-gradient(
  180deg,
  rgba(255, 255, 255, 1) 0%,
  rgba(248, 255, 240, 1) 100%
  );
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -100;
}

.itemFlow:first-of-type::before {
  display: none;
}

.itemFlow:last-of-type {
  padding-bottom: 72px;
}

.itemFlowHead {
  position: relative;
}

.itemFlowHead::before {
  border: 0;
  border-bottom: solid 2px #00b875;
  border-right: solid 2px #00b875;
  bottom: 0;
  content: "";
  height: 24px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  width: 24px;
}

.itemFlowHead__num {
  align-items: center;
  background: linear-gradient(
  0deg,
  rgba(90, 168, 117, 1) 0%,
  rgba(0, 134, 98, 1) 100%
  );
  color: #fff;
  display: flex;
  font-family: var(--fontNotoSerifJP);
  font-size: 65px;
  font-weight: 400;
  height: 96px;
  justify-content: center;
  position: relative;
  width: 96px;
}

.itemFlowHead__num::before {
  background: #3cc5a1;
  content: "";
  height: 100px;
  position: absolute;
  right: -4px;
  top: 2px;
  width: 100px;
  z-index: -100;
}

.itemFlow__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.itemFlowBody {
  padding: 30px 0 0;
}

.itemFlowBody__title {
  color: var(--colorGreen);
  font-family: var(--fontNotoSerifJP);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 40px;
}

.itemFlowBody__list {
  font-size: 16px;
  line-height: 32px;
  margin-top: 30px;
}

.itemFlow__thumbnail {
  position: relative;
}

.itemFlow__thumbnail::before {
  border: 1px solid #00b875;
  content: "";
  height: 100%;
  left: -8px;
  position: absolute;
  top: -8px;
  width: 100%;
}

.itemFlow__thumbnail img {
  width: 410px;
}

.itemFlow:nth-of-type(even) .itemFlow__inner {
  justify-content: flex-start;
}

.itemFlow:nth-of-type(even) .itemFlow__thumbnail {
  margin-left: 8px;
  order: 1;
}

.itemFlow:nth-of-type(even) .itemFlowBody {
  margin-left: 42px;
  order: 2;
}

.itemFlowBody__list li {
  color: #38342b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

@media screen and (max-width: 1000px) {
  .itemFlow {
    margin: 0 auto;
    max-width: 27.5rem;
    position: relative;
  }
  .itemFlowBody {
    order: 2;
  }
  .itemFlowHead {
    height: fit-content;
    left: -1rem;
    position: absolute;
    top: 1rem;
    z-index: 2;
  }
  .itemFlowHead__num {
    font-size: 2.5rem;
    height: 4rem;
    width: 4rem;
  }
  .itemFlowHead__num:before {
    height: calc(100% + 2px);
    width: calc(100% + 2px);
  }
  .itemFlow__inner {
    flex-direction: column;
  }
  .itemFlowBody {
    order: 2;
  }
  .itemFlow__thumbnail {
    order: 1;
    width: fit-content;
  }
  .itemFlow__thumbnail {
    margin-left: auto;
    max-width: 25.625rem;
    width: calc(100% - 2rem);
  }
  .itemFlow__thumbnail img {
    width: 100%;
  }
  .flow__areaBG--sp {
    display: block;
    margin: 0 -1.25rem;
  }
  .flow__areaBG--sp {
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.98) 5%, rgba(248, 255, 240, 1) 100%);
  }
  .flow__areaBG--sp:first-child {
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(248, 255, 240, 1) 100%);
  }
  .flow__area {
    padding-top: 3.125rem;
  }
  .itemFlow::after {
    background: url(../img/lp/icon-chevron_green.png) no-repeat center / cover;
    bottom: 1.5rem;
    content: "";
    height: 1.5rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 3rem;
  }
  .itemFlowBody__title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1000px) {
  .flow__areaBG--sp {
   margin: 0;
  }
}


/* price
------------------------------------------- */
.price {
  background: url("../img/lp/img-price_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 72px 0;
}

.priceList {
  margin: 64px auto 0;
  max-width: 1022px;
  width: 100%;
}

.priceTable {
  align-items: center;
  display: grid;
  font-family: var(--fontNotoSerifJP);
  grid-template-columns: 544px auto;
}

.priceTable:nth-of-type(n + 2) {
  margin-top: 32px;
}

.priceTable__title {
  background: var(--colorGreen);
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  padding: 24px 0;
  text-align: center;
}

.priceTable__word {
  background: #fff;
  color: var(--colorBlack);
  font-size: 22px;
  font-weight: 500;
  padding: 24px 0;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .price {
    background: linear-gradient(to bottom right, #cdedc4, #fffdf5);
    padding: 48px 0;
    position: relative;
    z-index: 1;
  }

  .price::before,
  .price::after {
    clip-path: polygon(100% 0, 0 100%, 0 0);
    content: "";
    left: 0;
    position: absolute;
    top: 0;
  }

  .price::before {
    background: linear-gradient(to bottom, #e9f7e2, #e2f8dc);
    height: 8.3125rem;
    width: 12.1875rem;
    z-index: -1;
  }

  .price::after {
    background: linear-gradient(to bottom, #f3faec, #e2f8dc);
    height: 16.6875rem;
    width: 24.375rem;
    z-index: -2;
  }

  .price .headline__title {
    font-size: 3.75rem;
  }

  .price .headline__lead {
    font-size: 1.5rem;
  }

  .priceList {
    margin: 32px auto 0;
  }

  .priceTable {
    grid-template-columns: 100%;
  }

  .priceTable:nth-of-type(n + 2) {
    margin-top: 16px;
  }

  .priceTable__title {
    font-size: 15px;
    padding: 16px 0;
  }

  .priceTable__word {
    font-size: 15px;
    padding: 16px 0;
  }
}

/* greeting
------------------------------------------- */
.greeting {
  background: linear-gradient(to bottom left, #f8ffeb, #f8ffeb);
  padding: 96px 0 86px;
  position: relative;
  z-index: 1;
}

.greeting::before {
  background: linear-gradient(to bottom, #e2f8dc, #fffdf5);
  bottom: 0;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
  content: "";
  height: 34.33vw;
  left: 0;
  min-height: 16.6875rem;
  min-width: 24.375rem;
  position: absolute;
  width: 50vw;
  z-index: -1;
}

.greeting::after {
  background: linear-gradient(to bottom, #effaec, #fffdf5);
  clip-path: polygon(100% 100%, 100% 0, 0 0);
  content: "";
  height: 34.33vw;
  min-height: 16.6875rem;
  min-width: 24.375rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  z-index: -1;
}

.greeting__sideTriangles {
  height: auto;
  position: absolute;
  right: 0;
  top: 6.4%;
  width: clamp(7.5rem, 14vw, 11.93rem);
}

.greetingMain {
  align-items: flex-end;
  column-gap: 64px;
  display: grid;
  grid-template-columns: 340px auto;
  margin-top: 59px;
}

.greetingMain__img {
  position: relative;
}

.greetingMain__dots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  left: 0.5rem;
  position: absolute;
  top: -0.5rem;
}

.greetingMain__dots .dot {
  display: block;
  height: 0.5rem;
  width: 0.5rem;
}

.greetingMain__dots .dot--dark {
  background: #00b875;
}

.greetingMain__dots .dot--light {
  background: #a2d277;
}

.greetingMainBody__title {
  color: var(--colorBlack);
  font-family: var(--fontNotoSerifJP);
  font-size: 24px;
  position: relative;
  width: fit-content;
}

.greetingMainBody__title::after {
  background: url(../img/lp/img-greeting_triangles.png) no-repeat center / cover;
  content: "";
  height: 2.06rem;
  position: absolute;
  right: -3rem;
  top: -1.5rem;
  width: 2.43rem;
}

.greetingMainBody__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  margin-top: 60px;
}

.greetingHistory {
  align-items: center;
  border-top: 1px solid var(--colorGreen900);
  column-gap: 64px;
  display: grid;
  grid-template-columns: 340px auto;
  margin-top: 64px;
  padding-top: 54px;
  position: relative;
}

.greetingHistory::after {
  background: url(../img/lp/img-greeting_icon.png) no-repeat center / cover;
  content: "";
  height: 1.25rem;
  position: absolute;
  right: 0;
  top: -1.25rem;
  width: 3.125rem;
}

.greetingHistoryHead {
  text-align: center;
}

.greetingHistoryHead__title {
  color: var(--colorGreen900);
  font-family: var(--fontNotoSerifJP);
  font-size: 24px;
}

.greetingHistoryHead__lead {
  font-family: var(--fontAboreto);
  font-size: 14px;
  margin-top: 8px;
}

.greetingHistoryBody {
  border-left: 1px solid var(--colorGreen900);
  column-gap: 40px;
  display: flex;
  padding-left: 64px;
}

.greetingHistoryBody__list {
  font-size: 15px;
  line-height: 30px;
}

@media screen and (max-width: 1000px) {
  .greeting {
    padding: 48px 0 40px;
  }

  .greeting .headline__title {
    font-size: 3.75rem;
  }

  .greeting .headline__lead {
    font-size: 1.5rem;
  }

  .greetingMain__img {
    text-align: center;
  }

  .greetingMain__img img {
    max-width: 25rem;
  }

  .greetingMain {
    grid-template-columns: 100%;
    margin-top: 32px;
    row-gap: 3.125rem;
  }

  .greetingMainBody__title {
    font-size: 20px;
    line-height: 1.7;
  }

  .greetingMainBody__text {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 24px;
  }

  .greetingHistory {
    grid-template-columns: 100%;
    margin-top: 40px;
    padding-top: 32px;
    row-gap: 32px;
  }

  .greetingHistoryHead__title {
    font-size: 20px;
  }

  .greetingHistoryHead__lead {
    font-size: 13px;
    margin-top: 4px;
  }

  .greetingHistoryBody {
    border-left: none;
    column-gap: 40px;
    display: grid;
    grid-template-columns: 100%;
    padding-left: 0;
  }

  .greetingHistoryBody__list {
    font-size: 14px;
    line-height: 2;
  }
  .greetingHistoryBody__list:first-child {
    padding-bottom: 2.1875rem;
  }
  .greetingHistoryBody__list:last-child {
    border-top: 1px solid #00b875;
    padding-top: 2.1875rem;
  }
}

@media screen and (max-width: 767px) {
  .greetingMain__img img {
    max-width: 100%;
  }
  .greetingMainBody__title::after {
    right: 0;
  }
}

/* information
------------------------------------------- */
.information {
  background: linear-gradient(to bottom left, #fafff5, #ebfae7);
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

.information .container1100 {
  padding: 6rem 0;
  position: relative;
}

.information__icon {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 3.125rem;
}

.information__column {
  column-gap: 50px;
  display: grid;
  grid-template-columns: 550px auto;
  margin-top: 60px;
}

.informationScheduleHead {
  background: linear-gradient(
  90deg,
  rgba(0, 184, 117, 1) 0%,
  rgba(18, 206, 137, 1) 100%
  );
  column-gap: 8px;
  display: grid;
  grid-template-columns: 160px auto;
  padding: 16px 0;
}

.informationScheduleHead__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.informationScheduleHead dt {
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 20px;
  text-align: center;
}

.informationScheduleHead dd {
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 20px;
  text-align: center;
}

.informationScheduleBody {
  display: grid;
  grid-template-columns: 160px auto;
  margin-top: 8px;
}

.informationScheduleBody__inner {
  border: 1px solid #14ce88;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-left: 8px;
}

.informationScheduleBody dt {
  background: #12ce89;
  color: #fff;
  font-family: var(--fontNotoSerifJP);
  font-size: 20px;
  padding: 24px 0;
  text-align: center;
}

.informationScheduleBody.for-green dt {
  background: #00b875;
}

.informationScheduleBody dd {
  color: #12ce89;
  font-family: var(--fontNotoSerifJP);
  font-size: 20px;
  padding: 24px 0;
  text-align: center;
}

.informationScheduleBody.for-green dd {
  color: #00b875;
}

.informationScheduleNotes {
  font-size: 16px;
  line-height: 32px;
  margin-top: 24px;
}

.informationScheduleNotes span {
  color: #01b776;
  font-weight: bold;
  margin-right: 10px;
}

.informationOverviewBox {
  border-bottom: 1px solid #00b875;
  display: grid;
  grid-template-columns: 120px auto;
  line-height: 30px;
  padding: 10px 20px;
}

.informationOverviewBox a {
  color: var(--colorBlack);
}

.informationOverviewBox dt {
  color: #00b875;
  font-family: var(--fontNotoSerifJP);
  font-size: 18px;
  font-weight: bold;
}

.informationOverviewBox dd {
  font-size: 16px;
}

.informationMap iframe{
  margin-top: 64px;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.information__triangles {
  position: absolute;
  width: clamp(5.625rem, 14vw, 11.93rem);
  z-index: -1;
}

.information__triangles--left {
  left: 0;
  top: 19.42%;
}

.information__triangles--right {
  right: 0;
  top: 53.72%;
}

@media screen and (max-width: 1100px) {
  .information {
    padding: 0 1.25rem;
  }

  .information .container1100 {
    padding: 3rem 0;
  }

  .information .headline__title {
    font-size: 3rem;
  }

  .information .headline__lead {
    font-size: 1.5rem;
  }

  .information__column {
    grid-template-columns: 100%;
    margin-top: 30px;
    row-gap: 24px;
  }

  .informationScheduleHead {
    column-gap: 8px;
    grid-template-columns: 110px auto;
    padding: 8px 0;
  }

  .informationScheduleHead dt {
    font-size: 16px;
  }

  .informationScheduleHead dd {
    font-size: 16px;
  }

  .informationScheduleBody {
    display: grid;
    grid-template-columns: 110px auto;
    margin-top: 8px;
  }

  .informationScheduleBody__inner {
    margin-left: 8px;
  }

  .informationScheduleBody dt {
    font-size: 16px;
    padding: 8px 0;
  }

  .informationScheduleBody dd {
    font-size: 16px;
    padding: 8px 0;
  }

  .informationScheduleNotes {
    font-size: 13px;
    line-height: 30px;
    margin-top: 16px;
  }

  .informationOverviewBox {
    grid-template-columns: 110px auto;
    line-height: 24px;
    padding: 8px 16px;
  }

  .informationOverviewBox dt {
    font-size: 15px;
  }

  .informationOverviewBox dd {
    font-size: 14px;
  }

  .informationMap {
    margin: 2.5rem 0 0;
  }
  .information__triangles--left {
    top: 15.92%;
  }
  .information__triangles--right {
    top: 66.72%;
  }
}

@media screen and (max-width: 767px) {
  .informationMap iframe {
    height: 350px;
  }
  .informationMap {
    text-align: center;
  }
  .informationMap img {
    max-width: 31.25rem;
    width: 100%;
  }
  .informationOverviewBox {
    gap: 0.875rem;
    grid-template-columns: 1fr;
    padding: 1.25rem 0;
  }
  .informationOverviewBox:first-child {
    padding-top: 0;
  }
}
