@media screen and (max-width: 1439px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 5.75rem;
  }
}

body {
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #111c15;
  background-color: #f5f5e8;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

.hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-fade {
  opacity: 0;
}
.js-fade.is-visible {
  -webkit-animation: fadeUp 0.7s ease forwards;
          animation: fadeUp 0.7s ease forwards;
}

.js-fade-opacity {
  opacity: 0;
}
.js-fade-opacity.is-visible {
  -webkit-animation: fvFade 0.7s ease forwards;
          animation: fvFade 0.7s ease forwards;
}

.js-line-reveal {
  clip-path: inset(0 100% 0 0);
}
.js-line-reveal.is-visible {
  -webkit-animation: fvLineReveal 1s ease forwards;
          animation: fvLineReveal 1s ease forwards;
}

.l-hero {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-hero {
    overflow: visible;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #07913a;
  color: #ffffff;
  border: 1px solid #111c15;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.c-btn:hover {
  background-color: #056b2b;
}

.l-header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.l-header.is-scrolled, .l-header:has(#js-drawer-icon.is-checked) {
  background-color: #f5f5e8;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.625rem 1.5rem;
  max-width: 90rem;
  margin: 0 auto;
}
.l-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
.l-header__logo {
  display: block;
  width: 12.5rem;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  list-style: none;
}
.l-header__nav-list a {
  position: relative;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: #111c15;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.l-header__nav-list a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #07913a;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__nav-list a:hover {
  color: #07913a;
}
.l-header__nav-list a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.l-header__cta {
  padding: 1rem 2rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header__cta {
    display: none;
  }
}
.l-header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 3.75rem;
  height: 2.75rem;
  background-color: #111c15;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-header__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.l-header__hamburger.is-checked span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-checked span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-checked span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.p-fv {
  position: relative;
  overflow: hidden;
  background: #f5f5e8;
  margin-inline: auto;
  max-width: 1440px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-top: 5.75rem;
    isolation: isolate;
    z-index: 1;
    overflow: visible;
  }
}

@-webkit-keyframes fvFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fvFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fvFadeLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fvFadeLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fvSlideRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fvSlideRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fvSlideRightTransform {
  from {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fvSlideRightTransform {
  from {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fvLineReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes fvLineReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
.p-fv__lines {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-fv__lines {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 37.5rem;
    overflow: hidden;
    z-index: -1;
  }
}

.p-fv__line {
  position: absolute;
}
.p-fv__line--1 {
  position: absolute;
  top: -19.3125rem;
  left: 0;
  -webkit-animation: fvLineReveal 1s 0.3s ease both;
          animation: fvLineReveal 1s 0.3s ease both;
}
@media screen and (max-width: 767px) {
  .p-fv__line--1 {
    top: -10.3125rem;
  }
}
.p-fv__line--2 {
  left: 2%;
  top: 4.5625rem;
  -webkit-animation: fvLineReveal 1s 0.5s ease both;
          animation: fvLineReveal 1s 0.5s ease both;
}
@media screen and (max-width: 767px) {
  .p-fv__line--2 {
    left: 0;
    top: 0.5625rem;
  }
}
.p-fv__line--3 {
  top: 0;
  left: 30.1875rem;
  -webkit-animation: fvLineReveal 1s 0.65s ease both;
          animation: fvLineReveal 1s 0.65s ease both;
}
@media screen and (max-width: 767px) {
  .p-fv__line--3 {
    top: -2.4375rem;
    left: 12%;
  }
}
.p-fv__line--4 {
  top: 28.125rem;
  left: 0;
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
  -webkit-animation: fvLineReveal 1s 0.8s ease both;
          animation: fvLineReveal 1s 0.8s ease both;
}

.p-fv__illust {
  position: absolute;
  right: 5.625rem;
  top: 4rem;
  width: 44.5rem;
  height: 40rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-fv__illust {
    position: static;
    top: auto;
    width: 100%;
    height: 25.3125rem;
    margin-bottom: 0;
  }
}

.p-fv__map {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-fv__map {
    display: none;
  }
}

.p-fv__illust-img--pc {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: auto;
  display: block;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__illust-img--pc {
    display: none;
  }
}
.p-fv__illust-img--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fv__illust-img--sp {
    display: block;
    width: 100%;
    height: auto;
  }
}

.fv__line--sp {
  position: relative;
}

.p-fv__body {
  position: relative;
  z-index: 2;
  padding: 0 8.75rem;
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-fv__body {
    padding: 0 1.25rem;
  }
}

.p-fv__copy {
  padding: 3.125rem 0 3.5rem;
  max-width: 36.25rem;
}
@media screen and (max-width: 767px) {
  .p-fv__copy {
    padding: 2rem 0 2.5rem;
    max-width: 100%;
  }
}

.p-fv__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 4.375rem;
  line-height: 1.2;
  color: #111c15;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

.p-fv__desc {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #111c15;
  max-width: 21rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__desc {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.p-fv__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.p-fv__cta:hover .p-fv__cta-label, .p-fv__cta:hover .p-fv__cta-circle {
  background: #056b2b;
}
.p-fv__cta:hover .p-fv__cta-circle {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.p-fv__cta-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2rem;
  background: #07913a;
  color: #ffffff;
  border: 1px solid #111c15;
  border-radius: 62.4375rem;
  margin-right: -0.0625rem;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  white-space: nowrap;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.p-fv__cta-circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: #07913a;
  border: 1px solid #111c15;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, transform 0.2s;
  transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.p-fv__cta-circle img {
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-fv__stats {
  position: relative;
  z-index: 1;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-fv__stats {
    padding-bottom: 2.5rem;
  }
}

.p-fv__stats-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-fv__stats-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 2;
  }
}

.p-fv__stat {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5.625rem;
  padding: 0 1.5rem;
  background: #ffffff;
  border: 1px solid #eae8d5;
  border-radius: 0.5rem;
}
.p-fv__stat--text {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-fv__stat {
    padding: 1.3125rem;
  }
  .p-fv__stat:nth-of-type(1) {
    padding: 1.3125rem 2.1875rem;
  }
}

.p-fv__stat-num {
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #111c15;
  margin-right: 0.5rem;
  white-space: nowrap;
}

.p-fv__stat-label {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #111c15;
  white-space: nowrap;
}

.l-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .l-drawer {
    display: block;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
.l-drawer.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.l-drawer__card {
  position: absolute;
  top: 6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 22.375rem;
  background: #85c023;
  border: 1px solid #111c15;
  border-radius: 1rem;
  padding: 3.75rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 5rem - 1rem);
  max-height: calc(100svh - 5rem - 1rem);
  -webkit-overflow-scrolling: touch;
}

.l-drawer__deco {
  position: absolute;
  pointer-events: none;
}
.l-drawer__deco img {
  position: absolute;
  display: block;
  max-width: none;
}

.l-drawer__deco--1 {
  left: 10.0625rem;
  top: 1.3125rem;
  width: 12.25rem;
  height: 6.875rem;
}
.l-drawer__deco--1 img {
  top: -13.9%;
  left: -55.98%;
  width: 424.05%;
  height: 183.88%;
}

.l-drawer__deco--2 {
  left: -0.0625rem;
  bottom: -0.0625rem;
  width: 11.875rem;
  height: 3.75rem;
}
.l-drawer__deco--2 img {
  top: -57.15%;
  left: -291.43%;
  width: 437.44%;
  height: 337.11%;
}

.l-drawer__nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.l-drawer__nav-list a {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.l-drawer__nav-list a:hover {
  opacity: 0.8;
}

.l-drawer__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.l-drawer__cta .p-fv__cta-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-sns {
  padding: 5rem 0 6.25rem;
  background: #f5f5e8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sns {
    padding: 3rem 0 4rem;
  }
}

.p-sns__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-sns__inner {
    max-width: 90rem;
    padding: 0 8.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sns__inner {
    padding: 0 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sns__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sns__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.p-sns__heading-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sns__heading-wrap {
    grid-column: 1;
    grid-row: 1;
  }
}
.p-sns__heading-wrap::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 0;
  width: 1.9375rem;
  height: 3.3125rem;
  border-top: 4px solid #111c15;
  border-left: 4px solid #111c15;
}
.p-sns__heading-wrap::after {
  content: "";
  position: absolute;
  bottom: 6.25rem;
  right: 7.5rem;
  width: 1.9375rem;
  height: 3.3125rem;
  border-bottom: 4px solid #111c15;
  border-right: 4px solid #111c15;
}
@media screen and (max-width: 767px) {
  .p-sns__heading-wrap::before {
    border-top: 3px solid #111c15;
    border-left: 3px solid #111c15;
    width: 1.25rem;
    height: 2.1875rem;
    top: 1rem;
    left: 0.8125rem;
  }
  .p-sns__heading-wrap::after {
    border-bottom: 3px solid #111c15;
    border-right: 3px solid #111c15;
    width: 1.25rem;
    height: 2.1875rem;
    bottom: 1.875rem;
    right: 2.875rem;
  }
}

.p-sns__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111c15;
}
.p-sns__heading em {
  font-style: normal;
  font-weight: 600;
  color: #07913a;
}
@media screen and (max-width: 767px) {
  .p-sns__heading {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
  }
}

.p-sns__card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-sns__card--1 {
    grid-column: 2;
    grid-row: 1;
  }
  .p-sns__card--2 {
    grid-column: 2;
    grid-row: 2;
  }
  .p-sns__card--3 {
    grid-column: 1;
    grid-row: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-sns__card--2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .p-sns__card--3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-sns__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
  background: #000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-sns__media img,
.p-sns__media iframe,
.p-sns__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}

.p-sns__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-sns__card-body {
    padding: 1.25rem 1rem 1.5rem;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sns__card-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
  }
}
.p-sns__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-sns__author {
    gap: 0.75rem;
  }
}

.p-sns__avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-sns__avatar {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.p-sns__author-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #111c15;
  white-space: nowrap;
}

.p-sns__comment {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #111c15;
}
@media screen and (min-width: 768px) {
  .p-sns__comment {
    max-width: 13.1875rem;
  }
}

.p-feature {
  background: #85c023;
  padding: 5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding: 3.5rem 0 0;
  }
}

.p-feature__inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    padding: 0 1.25rem;
  }
}

.p-feature__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-feature__heading {
    font-size: 1.625rem;
    margin-bottom: 2.5rem;
  }
}

.p-feature__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-feature__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-feature__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-perspective: 75rem;
          perspective: 75rem;
  height: 34.8125rem;
}
@media screen and (max-width: 767px) {
  .p-feature__card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 32.5rem;
  }
}

.p-feature__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform;
}

@media screen and (min-width: 768px) {
  .p-feature__card:hover .p-feature__card-inner {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card.is-flipped .p-feature__card-inner {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
.p-feature__front,
.p-feature__back {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.p-feature__front {
  background: #ffffff;
}

.p-feature__back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  overflow: hidden;
}

.p-feature__badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 5rem;
  height: 5rem;
  z-index: 2;
}
.p-feature__badge img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-feature__badge-letter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.p-feature__illust {
  position: absolute;
  top: 7.8125rem;
  left: 2rem;
  width: 19.4375rem;
  height: 21.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-feature__illust {
    top: 7.3125rem;
    width: calc(100% - 4rem);
    height: 20.375rem;
  }
}

.p-feature__illust-inner {
  position: absolute;
  left: 1.5rem;
  top: 0;
  width: 16.4375rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-feature__illust-inner {
    left: 7.72%;
    width: 84.57%;
  }
}

.p-feature__illust-inner--3 {
  left: 1.0625rem;
  top: 50%;
  width: 17.375rem;
  height: 20rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-feature__illust-inner--3 {
    left: 5.47%;
    width: 89.39%;
    height: 91.43%;
  }
}

.p-feature__piece {
  position: absolute;
}
.p-feature__piece img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
}

.p-feature__illust--2 {
  overflow: visible;
}

.p-feature__illust-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16.8125rem;
  height: 13.75rem;
  display: block;
  max-width: none;
}

.p-feature__front-label {
  position: absolute;
  bottom: 1.375rem;
  left: 63%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #111c15;
}

.p-feature__back-photo {
  position: absolute;
  inset: 0;
}
.p-feature__back-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-feature__back-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 17.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 157, 64, 0)), color-stop(40%, rgba(9, 101, 44, 0.5)), to(#033717));
  background: linear-gradient(to bottom, rgba(9, 157, 64, 0) 0%, rgba(9, 101, 44, 0.5) 40%, #033717 100%);
}

.p-feature__back-text {
  position: absolute;
  left: 1.875rem;
  top: 27.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19.6875rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.6;
  z-index: 1;
}
.p-feature__back-text--3 {
  top: 26.875rem;
}
@media screen and (max-width: 767px) {
  .p-feature__back-text {
    top: 26.0625rem;
    font-size: 1.0625rem;
    width: calc(100% - 3.75rem);
  }
  .p-feature__back-text--3 {
    top: 25rem;
  }
}

.p-feature__belong {
  position: relative;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__belong {
    margin-top: 3.5rem;
  }
}

.p-feature__belong-upper {
  position: relative;
  height: 69.4375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-upper {
    height: 52.5rem;
  }
}

.p-feature__belong-pill {
  position: absolute;
  top: 2.875rem;
  left: 0;
  right: 0;
  height: 100%;
  background: #fdfcee;
  border-top-right-radius: 270px;
  border-top-left-radius: 270px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill {
    top: 2.5rem;
    height: 100%;
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
  }
}

.p-feature__belong-pill-deco {
  position: absolute;
  pointer-events: none;
}

.p-feature__belong-pill-deco--1 {
  left: 94.31%;
  top: 26%;
  width: 91.69%;
  height: 18.75rem;
}
.p-feature__belong-pill-deco--1 img {
  position: absolute;
  top: -2.87%;
  left: -72.54%;
  width: 525.84%;
  height: 156.13%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill-deco--1 {
    display: none;
  }
}

.p-feature__belong-pill-deco--2 {
  left: 68.18%;
  top: 3%;
  width: 29.86%;
  height: 15rem;
}
.p-feature__belong-pill-deco--2 img {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill-deco--2 {
    display: none;
  }
}

.p-feature__belong-pill-deco--3 {
  left: 3.18%;
  top: 0px;
  width: 80.86%;
  height: 15rem;
}
.p-feature__belong-pill-deco--3 img {
  position: absolute;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill-deco--3 {
    display: none;
  }
}

.p-feature__belong-pill-deco--4 {
  left: 0.18%;
  top: 41%;
  width: 29.86%;
  height: 15rem;
}
.p-feature__belong-pill-deco--4 img {
  position: absolute;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill-deco--4 {
    display: none;
  }
}

.p-feature__belong-pill-sp-deco--1 {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill-sp-deco--1 {
    display: block;
    left: -0.375rem;
    top: 3.6875rem;
    width: 25.5rem;
    height: 24.625rem;
  }
  .p-feature__belong-pill-sp-deco--1 img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
  }
}

.p-feature__belong-pill-sp-deco--2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill-sp-deco--2 {
    display: block;
    left: 9.25rem;
    top: 0.1875rem;
    width: 15.375rem;
    height: 25rem;
  }
  .p-feature__belong-pill-sp-deco--2 img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
  }
}

.p-feature__belong-pill-sp-deco--3 {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill-sp-deco--3 {
    display: block;
    left: 2.875rem;
    top: -0.5rem;
    width: 20.625rem;
    height: 11.25rem;
  }
  .p-feature__belong-pill-sp-deco--3 img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
  }
}

.p-feature__belong-pill-sp-deco--4 {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-pill-sp-deco--4 {
    display: block;
    left: -2.125rem;
    top: 12.75rem;
    width: 26.5rem;
    height: 13.75rem;
  }
  .p-feature__belong-pill-sp-deco--4 img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
  }
}

.p-feature__belong-heading {
  position: relative;
  z-index: 1;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111c15;
  text-align: center;
  margin-top: 13.5rem;
}
.p-feature__belong-heading em {
  font-style: normal;
  font-weight: 600;
  color: #07913a;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-heading {
    margin-top: 10rem;
    font-size: 1.75rem;
    padding: 0 2rem;
  }
}

.p-feature__belong-photo {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}
.p-feature__belong-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-feature__belong-photo--1 {
  width: 7.125rem;
  height: 7.125rem;
  left: 11.46%;
  top: 23.625rem;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-photo--1 {
    width: 4rem;
    height: 4rem;
    left: 1rem;
    top: 19.375rem;
  }
}

.p-feature__belong-photo--2 {
  width: 7.125rem;
  height: 7.125rem;
  left: 72.64%;
  top: 33.9375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-photo--2 {
    width: 4rem;
    height: 4rem;
    right: 1.5rem;
    left: auto;
    top: 25rem;
  }
}

.p-feature__belong-photo--3 {
  width: 5rem;
  height: 5rem;
  left: 84.58%;
  top: 15.875rem;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-photo--3 {
    width: 3.125rem;
    height: 3.125rem;
    right: 1rem;
    left: auto;
    top: 12.5rem;
  }
}

.p-feature__belong-photo--4 {
  width: 10rem;
  height: 10rem;
  left: 59.03%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-photo--4 {
    width: 5.625rem;
    height: 5.625rem;
    right: 4.5rem;
    left: auto;
    top: -0.75rem;
  }
}

.p-feature__belong-photo--5 {
  width: 12.5rem;
  height: 12.5rem;
  left: 3.33%;
  top: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-photo--5 {
    width: 6.25rem;
    height: 6.25rem;
    left: -1.25rem;
    top: 5rem;
  }
}

.p-feature__belong-line3 {
  position: absolute;
  left: 55.56%;
  top: 25.1875rem;
  width: 44.44%;
  height: 11.875rem;
}
.p-feature__belong-line3 img {
  position: absolute;
  top: -32.42%;
  left: -41%;
  width: 304%;
  height: 246.51%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-line3 {
    display: none;
  }
}

.p-feature__belong-lower {
  position: absolute;
  top: 41.0625rem;
  left: 0;
  right: 0;
  height: 28.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-lower {
    top: 30rem;
    height: 22.5rem;
  }
}

.p-feature__belong-circles {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 28.375rem;
  height: 28.375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-circles {
    width: 17.5rem;
    height: 17.5rem;
  }
}

.p-feature__belong-circle--1,
.p-feature__belong-circle--2 {
  position: absolute;
  inset: 0;
}
.p-feature__belong-circle--1 img,
.p-feature__belong-circle--2 img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-feature__belong-circle--2 {
  mix-blend-mode: color-burn;
}

.p-feature__belong-marquee {
  font-family: "Quicksand", sans-serif;
  position: absolute;
  left: calc(50% - 51.3125rem);
  top: calc(50% - 2.375rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  white-space: nowrap;
  font-weight: 500;
  font-size: 6.25rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px #111c15;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-marquee {
    left: calc(50% - 30.875rem);
    font-size: 3.75rem;
    -webkit-text-stroke: 1px #111c15;
  }
}

.p-solution {
  background: #fdfcee;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-solution {
    padding: 5rem 0 6.25rem;
  }
}

.p-solution__inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-solution__inner {
    padding: 0;
  }
}

.p-solution__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1.4;
  color: #111c15;
  margin-bottom: 5rem;
}
.p-solution__heading em {
  font-style: normal;
  font-weight: 600;
  color: #07913a;
}
@media screen and (max-width: 767px) {
  .p-solution__heading {
    font-size: 2.25rem;
    text-align: left;
    padding: 0 1.875rem;
    margin-bottom: 4rem;
  }
}

.p-solution__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-solution__list {
    gap: 3.75rem;
  }
}

.p-solution__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-solution__block--1 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 2.5rem;
  gap: 13.1875rem;
}
@media screen and (max-width: 767px) {
  .p-solution__block--1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0 1.875rem;
    gap: 2.5rem;
  }
  .p-solution__block--1 .p-solution__img-wrap {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.p-solution__block--2 {
  padding-right: 2.5rem;
  gap: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .p-solution__block--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 1.875rem;
    gap: 2.5rem;
  }
}
.p-solution__block--3 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 2.5rem;
  gap: 10.25rem;
}
@media screen and (max-width: 767px) {
  .p-solution__block--3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0 1.875rem;
    gap: 2.5rem;
  }
  .p-solution__block--3 .p-solution__img-wrap {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.p-solution__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-solution__block--1 .p-solution__content {
    width: 21rem;
  }
  .p-solution__block--2 .p-solution__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
  .p-solution__block--3 .p-solution__content {
    width: 23.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-solution__content {
    width: 100%;
    gap: 0.625rem;
  }
}

.p-solution__num {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 1.4;
  color: transparent;
  -webkit-text-stroke: 1px #111c15;
}
@media screen and (max-width: 767px) {
  .p-solution__num {
    font-size: 2.5rem;
  }
}

.p-solution__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-solution__detail {
    gap: 1.875rem;
  }
}

.p-solution__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.p-solution__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.4;
  color: #111c15;
}
@media screen and (max-width: 767px) {
  .p-solution__title {
    font-size: 1.875rem;
  }
}

.p-solution__desc {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #111c15;
}
@media screen and (max-width: 767px) {
  .p-solution__desc {
    font-size: 0.875rem;
    max-width: 21rem;
  }
}

.p-solution__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-solution__actions {
    gap: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-solution__cta .p-fv__cta-label {
    padding: 1rem;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
  }
}

.p-solution__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #07913a;
  text-decoration: underline;
  text-decoration-color: #07913a;
  text-underline-offset: 2px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-solution__link:hover {
  opacity: 0.8;
}

.p-solution__link-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.p-solution__img-wrap {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  width: 35.6875rem;
  height: 35.6875rem;
}
@media screen and (max-width: 767px) {
  .p-solution__img-wrap {
    width: 20.625rem;
    height: 20.625rem;
  }
}

.p-solution__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.p-step {
  background: #f5f5e8;
  padding: 3.75rem 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-step {
    padding: 5rem 0.625rem 0;
  }
}

.p-step__card {
  background: #e3edd1;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-step__card {
    min-height: 46rem;
  }
}
@media screen and (max-width: 767px) {
  .p-step__card {
    border-radius: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-step__content {
    padding: 8.625rem 0 5rem 7.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-step__content {
    padding: 3.75rem 2.5rem 0;
  }
}

.p-step__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #111c15;
  text-align: right;
}
.p-step__heading em {
  font-style: normal;
  color: #85c023;
}
@media screen and (min-width: 768px) {
  .p-step__heading {
    position: absolute;
    top: 7.5625rem;
    right: 7.3125rem;
    font-size: 4.375rem;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .p-step__heading {
    text-align: left;
    font-size: 2.25rem;
    line-height: 1.4;
    margin-bottom: 3rem;
  }
}

.p-step__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-step__list {
    width: 19.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-step__list {
    gap: 2.5rem;
    width: 100%;
  }
}

.p-step__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.p-step__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.25rem 0.5rem;
  background: #85c023;
  border-radius: 0.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-step__label {
    font-size: 0.875rem;
  }
}

.p-step__text {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #111c15;
}
@media screen and (max-width: 767px) {
  .p-step__text {
    font-size: 1.25rem;
  }
}

.p-step__picture {
  display: block;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .p-step__picture {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-step__picture {
    margin-top: 3.75rem;
    padding: 0 1.0625rem;
  }
}
.p-step__picture img {
  display: block;
  width: 100%;
  height: auto;
}

.p-voice {
  background: #f5f5e8;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding: 5rem 1.5rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding: 3.75rem 1.25rem 5rem;
  }
}

.p-voice__line {
  position: absolute;
  pointer-events: none;
}
.p-voice__line img {
  position: absolute;
  display: block;
  max-width: none;
}

.p-voice__line--1 {
  left: 0;
  top: 48.25rem;
  width: 16.25rem;
  height: 8.125rem;
}
.p-voice__line--1 img {
  top: -142.13%;
  left: -591.12%;
  width: 901.16%;
  height: 242.13%;
}
@media screen and (max-width: 767px) {
  .p-voice__line--1 {
    display: none;
  }
}

.p-voice__line--2 {
  left: 0;
  top: 21.1875rem;
  width: 100%;
  height: 32.5rem;
}
.p-voice__line--2 img {
  top: 0;
  left: -27.88%;
  width: 148.96%;
  height: 100.48%;
}
@media screen and (max-width: 767px) {
  .p-voice__line--2 {
    display: none;
  }
}

.p-voice__line--3 {
  left: 71.25rem;
  top: 1.5625rem;
  width: 18.75rem;
  height: 10rem;
}
.p-voice__line--3 img {
  top: -107.35%;
  left: -183%;
  width: 781.01%;
  height: 207.35%;
}
@media screen and (max-width: 767px) {
  .p-voice__line--3 {
    display: none;
  }
}

.p-voice__line--sp-1 {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13.125rem;
}
.p-voice__line--sp-1 img {
  top: -51.79%;
  left: -394.08%;
  width: 600.78%;
  height: 151.79%;
}
@media screen and (min-width: 768px) {
  .p-voice__line--sp-1 {
    display: none;
  }
}

.p-voice__line--sp-2 {
  left: 0;
  top: 28.1875rem;
  width: 100%;
  height: 17.5rem;
}
.p-voice__line--sp-2 img {
  top: -0.89%;
  left: -160.38%;
  width: 550%;
  height: 181.78%;
}
@media screen and (min-width: 768px) {
  .p-voice__line--sp-2 {
    display: none;
  }
}

.p-voice__line--sp-3 {
  left: 8.125rem;
  top: 1rem;
  width: 16.25rem;
  height: 7.6875rem;
}
.p-voice__line--sp-3 img {
  top: -159.16%;
  left: -198.46%;
  width: 901.16%;
  height: 259.16%;
}
@media screen and (min-width: 768px) {
  .p-voice__line--sp-3 {
    display: none;
  }
}

.p-voice__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #111c15;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-voice__heading {
    font-size: 3.75rem;
    padding-left: 7.3125rem;
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__heading {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3.75rem;
  }
}

.p-voice__num {
  color: #07913a;
}

.p-voice__br--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-voice__br--sp {
    display: block;
  }
}

.p-voice__cards {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-voice__cards {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.p-voice__card {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-voice__card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__card {
    gap: 3.75rem;
  }
}

.p-voice__card-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-voice__card-author {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__card-author {
    gap: 1rem;
  }
}

.p-voice__card-avatar {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-voice__card-avatar {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__card-avatar {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.p-voice__card-name {
  font-weight: 400;
  line-height: 1.6;
  color: #111c15;
}
@media screen and (min-width: 768px) {
  .p-voice__card-name {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__card-name {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }
}

.p-voice__card-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #111c15;
}

.p-cta {
  position: relative;
  overflow: hidden;
  background: #003b16;
}
@media screen and (min-width: 768px) {
  .p-cta {
    height: 39.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    height: 34.5rem;
  }
}

.p-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.p-cta__bg-img {
  display: block;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-cta__bg-img {
    left: 0.1875rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 36rem;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__bg-img {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 110%;
    height: auto;
  }
}

.p-cta__bg-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
}
@media screen and (min-width: 768px) {
  .p-cta__bg-overlay {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.3)), color-stop(50%, rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__bg-overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(153, 153, 153, 0)));
    background: linear-gradient(to bottom, #ffffff 0%, rgba(153, 153, 153, 0) 100%);
  }
}

.p-cta__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-cta__inner {
    width: 60.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    padding-top: 6rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.p-cta__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.p-cta__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__heading {
    font-size: 2.25rem;
  }
}

.p-cta__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__desc {
    font-size: 0.8125rem;
  }
}

.p-cta__cta .p-fv__cta-label {
  border-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-cta__cta .p-fv__cta-label {
    font-size: 0.875rem;
  }
}
.p-cta__cta .p-fv__cta-circle {
  border-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .l-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__photo {
  position: relative;
  overflow: hidden;
  background: #111c15;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__photo {
    width: 52rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__photo {
    width: 100%;
    height: 23.6875rem;
  }
}

.l-footer__photo-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-footer__container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f5f5e8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 23.875rem;
    padding-bottom: 2.75rem;
  }
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    gap: 2.5rem;
    padding: 5rem 6.875rem 0 4.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
  }
}

.l-footer__logo {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 18.75rem;
  }
}
.l-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-footer__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    gap: 1.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.l-footer__nav-row {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-row li {
    width: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-row li {
    width: 6.25rem;
  }
}
.l-footer__nav-row a {
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #111c15;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-row a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-row a {
    font-size: 0.8125rem;
  }
}
.l-footer__nav-row a:hover {
  color: #07913a;
}

.l-footer__legal {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__legal {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.l-footer__legal a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #666;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.l-footer__legal a:hover {
  opacity: 0.7;
}

.l-footer__copyright {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #111c15;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    position: absolute;
    bottom: 3rem;
    left: 5.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: auto;
  }
}

.p-feature__belong-subtitle {
  position: absolute;
  left: calc(50% - 16.8125rem);
  top: 18.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #111c15;
  line-height: 1.8;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-feature__belong-subtitle {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 13.25rem;
    font-size: 0.875rem;
    white-space: normal;
    text-align: center;
    width: calc(100% - 3rem);
  }
}/*# sourceMappingURL=style.css.map */