body {
  padding: 80px 0 0;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #6C747A;
  font-size: 16px;
  line-height: 2em;
  font-feature-settings: "palt";
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 40px;
  }
}
body.active {
  overflow: hidden;
}

.grecaptcha-badge {
  z-index: 9999;
  bottom: 80px !important;
  display: none;
}

img, object, video {
  max-width: 100%;
  height: auto;
}

.lp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
  height: 80px;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  width: 100%;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
  .lp-header {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .lp-header {
    padding: 0 20px;
    position: absolute;
    justify-content: center;
    height: 40px;
  }
}
.lp-header__logo {
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .lp-header__logo > a img {
    width: 159px;
  }
}
@media screen and (max-width: 768px) {
  .lp-header__logo > img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .lp-header__btn {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}

.lp-btn--a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 67px;
  max-width: 320px;
  align-items: center;
  background: #DE7F10;
  box-sizing: border-box;
  padding: 0 32px;
  border-radius: 50px;
  font-size: 24px;
  line-height: 1em;
  font-weight: 900;
  gap: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
  border: none;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .lp-btn--a {
    font-size: 18px;
    line-height: 1em;
    height: 58px;
  }
}
@media (hover: hover) {
  .lp-btn--a:hover {
    background: #FF8A00;
  }
  .lp-btn--a:hover img {
    animation: arrow 0.4s ease-in-out;
  }
}
.lp-btn--a:link, .lp-btn--a:visited {
  text-decoration: none;
  color: #fff;
}
.lp-btn--a:hover, .lp-btn--a:active {
  text-decoration: none;
  color: #fff;
}
.lp-btn--b {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  max-width: 220px;
  align-items: center;
  background: #DE7F10;
  box-sizing: border-box;
  padding: 0 20px;
  border-radius: 50px;
  font-size: 18px;
  line-height: 1em;
  font-weight: 900;
  gap: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .lp-btn--b {
    border-radius: 0;
    max-width: 100%;
    height: 60px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  }
}
@media (hover: hover) {
  .lp-btn--b:hover {
    background: #FF8A00;
  }
  .lp-btn--b:hover img {
    animation: arrow 0.4s ease-in-out;
  }
}
.lp-btn--b:link, .lp-btn--b:visited {
  text-decoration: none;
  color: #fff;
}
.lp-btn--b:hover, .lp-btn--b:active {
  text-decoration: none;
  color: #fff;
}
.lp-btn--c {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 48px;
  max-width: 320px;
  align-items: center;
  background: #DE7F10;
  box-sizing: border-box;
  padding: 0 32px;
  border-radius: 50px;
  font-size: 18px;
  line-height: 1em;
  font-weight: 900;
  gap: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
  border: none;
  color: #fff;
  cursor: pointer;
}
@media (hover: hover) {
  .lp-btn--c:hover {
    background: #FF8A00;
  }
}
.lp-btn--c:link, .lp-btn--c:visited {
  text-decoration: none;
  color: #fff;
}
.lp-btn--c:hover, .lp-btn--c:active {
  text-decoration: none;
  color: #fff;
}

@keyframes arrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(8px);
    opacity: 0;
  }
  51% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.lp-mv {
  position: relative;
  width: 100%;
  height: calc(100svh - 80px);
  min-height: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .lp-mv {
    height: calc(100svh - 40px);
    padding: 0 20px;
    min-height: 480px;
  }
}
.lp-mv__text {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 592px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .lp-mv__text {
    padding: 24px;
    gap: 16px;
    max-width: 480px;
  }
}
.lp-mv__title {
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lp-mv__title__main {
  font-size: 34px;
  line-height: 1em;
  font-weight: 900;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .lp-mv__title__main {
    font-size: 24px;
    line-height: 1em;
    margin-bottom: -8px;
  }
}
.lp-mv__title__logo {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  font-size: 0;
  line-height: 0;
  padding: 24px 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp-mv__title__logo {
    padding: 20px 16px;
  }
}
.lp-mv__desc {
  color: #333;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
}
@media screen and (max-width: 768px) {
  .lp-mv__desc {
    font-size: 14px;
    line-height: 1.8em;
  }
}
.lp-mv__desc p {
  margin: 0;
  padding: 0;
}
.lp-mv__btn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.lp-mv__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  z-index: 1;
  overflow: hidden;
}
.lp-mv__image:before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: rgba(218, 222, 16, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.lp-mv__image:after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: rgba(13, 123, 70, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.lp-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2);
  z-index: 1;
  opacity: 0.1;
  transition: transform 10s, opacity 3s;
  filter: grayscale(100);
}
.lp-mv__image img.active {
  transform: scale(1);
  opacity: 1;
}

.lp-problem {
  background: url(../img/about-bg.webp) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-problem__header {
  background: #fff;
  padding: 24px;
  position: relative;
  margin: 0 0 60px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .lp-problem__header {
    padding: 20px 0;
  }
}
.lp-problem__header span {
  position: relative;
  z-index: 2;
}
.lp-problem__header:after {
  content: "";
  width: 40px;
  height: 40px;
  background: #fff;
  position: absolute;
  left: calc(50% - 20px);
  bottom: -20px;
  transform: rotate(45deg);
  z-index: 1;
}
.lp-problem__title {
  color: #333;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 48px */
  letter-spacing: -1.44px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .lp-problem__title {
    font-size: 18px;
    line-height: 1.4em;
    letter-spacing: 0;
  }
}
.lp-problem__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 20px 120px;
}
@media screen and (max-width: 768px) {
  .lp-problem__contents {
    gap: 24px;
    padding-bottom: 60px;
  }
}
.lp-problem__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 896px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .lp-problem__list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
.lp-problem__list__item {
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.lp-problem__list__item__image {
  font-size: 0;
  line-height: 0;
}
.lp-problem__list__item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .lp-problem__list__item__text {
    gap: 12px;
  }
}
.lp-problem__list__item__no {
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 40px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
@media screen and (max-width: 768px) {
  .lp-problem__list__item__no {
    font-size: 32px;
  }
}
.lp-problem__list__item__title {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 32px */
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .lp-problem__list__item__title {
    font-size: 18px;
    line-height: 1em;
  }
}
.lp-problem__desc {
  color: #333;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}
@media screen and (max-width: 768px) {
  .lp-problem__desc {
    font-size: 16px;
    line-height: 1.8em;
    text-align: left;
  }
}
.lp-problem__desc p {
  margin: 0;
  padding: 0;
}

.lp-sec {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-sec__inner {
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
  padding: 120px 20px;
}
@media screen and (max-width: 768px) {
  .lp-sec__inner {
    padding: 60px 20px;
  }
}
.lp-sec__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .lp-sec__header {
    gap: 16px;
    max-width: calc(100vw - 40px);
  }
}
.lp-sec__header__en {
  color: #333;
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
}
@media screen and (max-width: 768px) {
  .lp-sec__header__en {
    font-size: 14px;
    line-height: 1em;
  }
}
.lp-sec__header__en--white {
  color: #fff;
}
.lp-sec__header__jp {
  padding: 24px 0;
  margin: 0;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  width: 100%;
  text-align: center;
  color: #333;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lp-sec__header__jp {
    padding: 16px 0;
    font-size: 18px;
    line-height: 1em;
  }
}
.lp-sec__header__jp--white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.lp-sec__header__jp strong {
  font-size: 60px;
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .lp-sec__header__jp strong {
    font-size: 22px;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .lp-sec__header__jp img {
    width: 200px;
  }
}
.lp-sec__btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.lp-frat__list {
  display: flex;
  width: calc(100% - 32px);
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .lp-frat__list {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .lp-frat__list {
    flex-wrap: wrap;
    width: calc(100% + 16px);
    justify-content: center;
    transform: translateX(-8px);
  }
}
.lp-frat__list__item {
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #0D7B46;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
  margin: 0 -16px;
}
@media screen and (max-width: 767px) {
  .lp-frat__list__item {
    width: 50%;
    margin: 0 -8px;
    flex: inherit;
  }
  .lp-frat__list__item:nth-of-type(n + 3) {
    margin-top: -16px;
  }
}
.lp-frat__list__title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #0D7B46;
  width: 100%;
  max-width: 220px;
  margin-bottom: 16px;
  margin-top: auto;
}
@media screen and (max-width: 1080px) {
  .lp-frat__list__title {
    border-bottom: 0;
    margin-bottom: auto;
    padding-bottom: 0;
  }
}
.lp-frat__list__title div {
  color: #0D7B46;
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
@media screen and (max-width: 1080px) {
  .lp-frat__list__title div {
    font-size: 20px;
    line-height: 1em;
  }
}
.lp-frat__list__title h3 {
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
}
.lp-frat__list__desc {
  width: 100%;
  max-width: 220px;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  margin-bottom: auto;
}
@media screen and (max-width: 1080px) {
  .lp-frat__list__desc {
    display: none;
  }
}

.lp-about__desc {
  color: #333;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lp-about__desc {
    font-size: 16px;
    line-height: 1.8em;
    text-align: left;
  }
}
.lp-about__desc p {
  margin: 0;
  padding: 0;
}
.lp-about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 16px;
  margin: 0 0 40px;
}
@media screen and (max-width: 1080px) {
  .lp-about__list {
    grid-template-columns: 1fr;
  }
}
.lp-about__list__item {
  display: flex;
  gap: 20px;
  box-sizing: border-box;
}
.lp-about__list__item__image {
  font-size: 0;
  line-height: 0;
  margin-bottom: auto;
  width: 100%;
  max-width: 200px;
  padding: 8px 0 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .lp-about__list__item__image {
    max-width: 180px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .lp-about__list__item__image {
    max-width: 77px;
  }
}
.lp-about__list__item__image img {
  max-width: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .lp-about__list__item__image img {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .lp-about__list__item__image img {
    width: 77px;
    border: 2px solid #fff;
  }
}
.lp-about__list__item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .lp-about__list__item__text {
    gap: 8px;
  }
}
.lp-about__list__item__title {
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  position: relative;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .lp-about__list__item__title {
    font-size: 18px;
    line-height: 1.4em;
  }
}
.lp-about__list__item__title:after {
  content: "";
  width: calc(100% + 220px);
  height: 100%;
  background: linear-gradient(90deg, #E4F5ED 38%, #E4E5A0 100%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .lp-about__list__item__title:after {
    width: 100vw;
    right: -20px;
  }
}
@media screen and (max-width: 768px) {
  .lp-about__list__item__desc {
    padding-right: 20px;
  }
}

.slick-slider {
  position: relative;
}

.slick-arrow {
  width: 40px;
  height: 40px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: calc(50% - 20px);
  z-index: 100;
  cursor: pointer;
  transition: background 0.3s;
}
@media (hover: hover) {
  .slick-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
  }
}
.slick-arrow:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  display: block;
  position: absolute;
  left: calc(50% - 8px);
  top: calc(50% - 5px);
}
.slick-arrow.slick-prev {
  left: 0;
  transform: scale(-1, 1);
}
.slick-arrow.slick-next {
  right: 0;
}

.lp-case {
  background: #DADE10;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .lp-case {
    padding: 60px 0;
  }
}
.lp-case__list {
  width: 100%;
  margin-bottom: 40px;
  opacity: 0;
  transition: opacity 0.3s;
}
.lp-case__list.slick-initialized {
  opacity: 1;
}
.lp-case__list__item {
  background: #fff;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item {
    margin: 0 8px;
  }
}
.lp-case__list__item__inner {
  display: flex;
  gap: 36px;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__inner {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 24px;
    padding: 8px;
  }
}
.lp-case__list__item__label {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  background: #0D7B46;
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__label {
    font-size: 24px;
    line-height: 1em;
    width: 64px;
    height: 64px;
    gap: 4px;
    margin-bottom: 0;
    margin-right: 8px;
  }
}
.lp-case__list__item__label:before {
  content: "CASE";
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  width: 100%;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__label:before {
    font-size: 12px;
    line-height: 1em;
  }
}
.lp-case__list__item__title {
  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-top: 6px;
    margin-bottom: 16px;
  }
}
.lp-case__list__item__desc {
  color: #6C747A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__desc {
    font-size: 14px;
    line-height: 1.8em;
    margin-bottom: 16px;
  }
}
.lp-case__list__item__desc p {
  margin: 0;
}
.lp-case__list__item__desc p:not(:last-child) {
  margin-bottom: 1em;
}
.lp-case__list__item__stitle {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  margin: 0 0 8px;
  width: 100%;
}
.lp-case__list__item__assignment {
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__assignment {
    margin-bottom: 16px;
    gap: 4px;
  }
}
.lp-case__list__item__assignment li {
  color: #6C747A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  background: #F2F2F2;
  border-radius: 30px;
  padding: 8px 16px;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__assignment li {
    font-size: 12px;
    line-height: 1em;
    padding: 4px 8px;
  }
}
.lp-case__list__item__solution {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__solution {
    gap: 4px;
  }
}
.lp-case__list__item__solution li {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  background: #0D7B46;
  border-radius: 30px;
  padding: 8px 16px;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__solution li {
    font-size: 12px;
    line-height: 1em;
    padding: 4px 8px;
  }
}
.lp-case__list__item__image {
  flex: 1;
  font-size: 0;
  line-height: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: auto;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__image {
    gap: 8px;
  }
}
.lp-case__list__item__image > div {
  width: calc(50% - 8px);
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__image > div {
    width: calc(50% - 4px);
  }
}
.lp-case__list__item__image > div:first-child {
  width: 100%;
}
.lp-case__list__item__image > div img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.lp-case__list__item__text {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .lp-case__list__item__text {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 0 8px 8px;
  }
}

.lp-flow {
  background: #0D7B46;
}
.lp-flow__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 980px) {
  .lp-flow__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .lp-flow__list {
    grid-template-columns: 1fr;
  }
}
.lp-flow__list__item {
  background: #fff;
  box-sizing: border-box;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .lp-flow__list__item {
    flex-direction: inherit;
    flex-wrap: wrap;
    padding: 8px;
    gap: 8px 16px;
  }
}
.lp-flow__list__item__title {
  margin: 0;
  color: #333;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lp-flow__list__item__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.lp-flow__list__item__title span {
  color: #0D7B46;
  text-align: center;
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.lp-flow__list__item__image {
  font-size: 0;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .lp-flow__list__item__image {
    max-width: 80px;
  }
  .lp-flow__list__item__image img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}
.lp-flow__list__item__desc {
  color: #6C747A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  flex: 1;
}
@media screen and (max-width: 768px) {
  .lp-flow__list__item__desc {
    font-size: 14px;
    line-height: 1.8em;
  }
}
.lp-flow__list__item__desc p {
  margin: 0;
}

.lp-faq__list {
  width: 100%;
  max-width: 1012px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.lp-faq__list__sort {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 0 40px;
  border-bottom: 1px dotted rgba(51, 51, 51, 0.2);
}
@media screen and (max-width: 768px) {
  .lp-faq__list__sort {
    gap: 8px;
  }
}
.lp-faq__list__sort__item {
  border: 1px solid #0D7B46;
  color: #0D7B46;
  cursor: pointer;
  box-sizing: border-box;
  padding: 4px 16px;
  font-weight: 500;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .lp-faq__list__sort__item {
    font-size: 14px;
    line-height: 1.5em;
    padding: 8px;
    min-width: calc(50% - 8px);
    text-align: center;
  }
}
@media screen and (max-width: 540px) {
  .lp-faq__list__sort__item {
    min-width: calc(100% - 16px);
  }
}
.lp-faq__list__sort__item.active {
  background: #0D7B46;
  color: #fff;
}
.lp-faq__list__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding-bottom: 40px;
  border-bottom: 1px dotted rgba(51, 51, 51, 0.2);
}
.lp-faq__list__item__title {
  display: flex;
  justify-self: flex-start;
  gap: 24px;
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lp-faq__list__item__title {
    gap: 16px;
    font-size: 18px;
    line-height: 1.5em;
  }
}
.lp-faq__list__item__desc {
  display: flex;
  justify-self: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin: 0;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
}
@media screen and (max-width: 768px) {
  .lp-faq__list__item__desc {
    gap: 16px;
    font-size: 16px;
    line-height: 1.8em;
  }
}
.lp-faq__list__item__desc p {
  margin: 0;
}
.lp-faq__list__item__desc p:not(:last-child) {
  margin-bottom: 1em;
}

.lp-company {
  background: #FAFAFA;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  .lp-company {
    padding-bottom: 60px;
  }
}
.lp-company__logo {
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin: 0 0 40px;
}
.lp-company__desc {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp-company__desc {
    text-align: left;
    width: 100%;
  }
}
.lp-company__desc p {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .lp-company__desc p {
    font-size: 16px;
    line-height: 1.8em;
    margin-bottom: 24px;
    text-align: left;
  }
}
.lp-company__desc table {
  width: 100%;
  max-width: 664px;
  margin: 0 auto 40px;
  border-spacing: 0;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .lp-company__desc table {
    display: block;
    max-width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .lp-company__desc table tbody {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .lp-company__desc table tr {
    display: block;
    width: 100%;
  }
}
.lp-company__desc table tr th {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 0;
  text-align: left;
  font-weight: normal;
  color: #6C747A;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .lp-company__desc table tr th {
    display: block;
    padding: 16px 0 8px;
  }
}
.lp-company__desc table tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 0;
  text-align: left;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 768px) {
  .lp-company__desc table tr td {
    display: block;
    border-top: none;
    padding: 0 0 16px;
  }
}
.lp-company__desc table tr td ul {
  margin-top: 0;
  margin-bottom: 0;
}
.lp-company__desc table tr td a:link, .lp-company__desc table tr td a:visited, .lp-company__desc table tr td a:hover, .lp-company__desc table tr td a:active {
  color: #333;
}

.lp-modal {
  position: fixed;
  top: 60px;
  left: calc(50% - 340px);
  z-index: 99999;
  background: #fff;
  width: 100%;
  max-width: 680px;
  max-height: calc(100% - 120px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  .lp-modal {
    max-width: calc(100vw - 20px);
    max-height: calc(100% - 20px);
    left: 10px;
    top: 10px;
  }
}
.lp-modal.active {
  opacity: 1;
  pointer-events: inherit;
  transform: translateY(0);
}
.lp-modal .wpcf7 form .wpcf7-form-control {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-modal .wpcf7 form .wpcf7-list-item {
  margin: 0;
}
.lp-modal .wpcf7 form .wpcf7-not-valid-tip {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 4px;
}
.lp-modal .wpcf7 form .wpcf7-spinner {
  position: absolute;
  margin: 0;
  pointer-events: none;
  left: calc(50% - 8px);
  top: calc(50% - 8px);
  background-color: #fff;
  display: none;
}
.lp-modal .wpcf7 form .wpcf7-response-output {
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  width: 100%;
  max-width: 664px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .lp-modal .wpcf7 form .wpcf7-response-output {
    text-align: left;
  }
}
.lp-modal .wpcf7 form.invalid .wpcf7-response-output,
.lp-modal .wpcf7 form.unaccepted .wpcf7-response-output,
.lp-modal .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #c00;
  background-color: rgba(204, 0, 0, 0.1);
  color: #c00;
}
.lp-modal .wpcf7 form.sent .wpcf7-response-output {
  border-color: #0F8C50;
  background-color: rgba(15, 140, 80, 0.1);
  color: #0F8C50;
}
.lp-modal__inner {
  padding: 40px 48px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lp-modal__inner {
    padding: 40px 20px;
  }
}
.lp-modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 20px;
}
.lp-modal__close:before {
  content: "";
  width: 40px;
  height: 1px;
  background: #333;
  display: block;
  position: absolute;
  left: calc(50% - 20px);
  top: 50%;
  transform: rotate(45deg);
}
.lp-modal__close:after {
  content: "";
  width: 40px;
  height: 1px;
  background: #333;
  display: block;
  position: absolute;
  left: calc(50% - 20px);
  top: 50%;
  transform: rotate(-45deg);
}
.lp-modal__logo {
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin: 0 0 16px;
}
.lp-modal__title {
  text-align: center;
  color: #333;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .lp-modal__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.lp-modal__desc {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  text-align: center;
  margin-bottom: 16px;
}
.lp-modal__desc p {
  margin: 0;
}
.lp-modal__desc p:not(:last-child) {
  margin-bottom: 1em;
}
.lp-modal__contents {
  margin: 0 0 30px;
  padding: 0;
}
.lp-modal__contents .required {
  color: #C80000;
  font-weight: bold;
  display: inline-block;
  margin-left: 3px;
}
.lp-modal__contents dt {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 0 0 8px;
}
.lp-modal__contents dt p {
  margin: 0;
}
.lp-modal__contents dt p:not(:last-child) {
  margin-bottom: 1em;
}
.lp-modal__contents > dt {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 24px;
  padding-left: 0;
  padding-right: 8px;
}
.lp-modal__contents dd {
  margin: 0;
  padding: 0;
}
.lp-modal__contents dd:not(:last-child) {
  padding-bottom: 24px;
}
.lp-modal__contents dd input[type=text],
.lp-modal__contents dd input[type=number],
.lp-modal__contents dd input[type=email] {
  box-sizing: border-box;
  padding: 8px;
  width: 100%;
  border: 1px solid rgba(13, 123, 70, 0.2);
  background: #EBF6F1;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.5em;
  -webkit-appearance: none;
  appearance: none;
}
.lp-modal__contents dd input[type=text][name=postcode],
.lp-modal__contents dd input[type=number][name=postcode],
.lp-modal__contents dd input[type=email][name=postcode] {
  max-width: 50%;
}
.lp-modal__contents dd input[type=text].wpcf7-not-valid,
.lp-modal__contents dd input[type=number].wpcf7-not-valid,
.lp-modal__contents dd input[type=email].wpcf7-not-valid {
  border-color: #dc3232;
  background: rgba(204, 0, 0, 0.1);
}
.lp-modal__contents dd .wpcf7-not-valid label {
  border-color: #dc3232;
  background: rgba(204, 0, 0, 0.1);
}
.lp-modal__contents dd select {
  box-sizing: border-box;
  padding: 14px 8px;
  width: 100%;
  border: 1px solid rgba(13, 123, 70, 0.2);
  background: #EBF6F1;
  border-radius: 6px;
  -webkit-appearance: none;
  appearance: none;
}
.lp-modal__contents dd label {
  border: 1px solid rgba(13, 123, 70, 0.2);
  background: #EBF6F1;
  padding: 4px 8px;
  border-radius: 6px;
}
.lp-modal__contents dd label:has(input:checked) {
  border-color: rgba(13, 123, 70, 0.4);
  color: #333;
}
.lp-modal__contents dd dl {
  padding-top: 16px;
  margin: 0;
}
.lp-modal__contents dd dl dt {
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 500;
}
.lp-modal__contents dd dl dd:not(:last-child) {
  padding-bottom: 12px;
}
.lp-modal__contents dd dl dd p {
  margin: 0;
}
.lp-modal__contents dd dl dd p:not(:last-child) {
  margin-bottom: 1em;
}
.lp-modal__contents > dd {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 768px) {
  .lp-modal__contents > dd {
    padding-left: 0;
    padding-right: 0;
  }
}
.lp-modal__btn {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.lp-modal__btn:not(:last-child) {
  margin-bottom: 24px;
}
.lp-modal__btn p {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}
.lp-modal__btn p:not(:last-child) {
  margin-bottom: 1em;
}

.lp-bg {
  background: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lp-bg.active {
  opacity: 1;
  pointer-events: inherit;
}

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

@media screen and (min-width: 769px) {
  .pc-hide {
    display: none;
  }
}
