html * {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #333333;
  font-size: 20px;
  font-size: 1.25rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  html * {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 1260px) {
  body {
    min-width: 1260px;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-width: initial;
  }
}
@media screen and (max-width: 320px) {
  body {
    min-width: 320px;
  }
}

body.is-fixed {
  overflow: hidden;
}

p {
  line-height: 2;
}

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

a {
  transition: all 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

.hide-pc {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .hide-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hide-pc {
    display: block !important;
  }
}

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

.scroll-fadein {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 1s;
}

.scroll-fadein.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.m-btn {
  height: 80px;
  padding: 0 40px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 1260px) {
  .m-btn {
    font-size: 16px;
    font-size: 1rem;
    height: 70px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .m-btn {
    font-size: 14px;
    font-size: 0.875rem;
    height: 60px;
    padding: 0;
    flex: 1;
    line-height: 1.3;
  }
}
.m-btn--primary {
  background-color: #1b8521;
  color: #ffffff;
}
.m-btn--secondary {
  background-color: #ffffff;
  color: #1b8521;
  border: 2px solid #1b8521;
}
.m-btn--accent {
  background-color: #f27730;
  color: #ffffff;
}

.m-h2 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  font-size: 2.875rem;
  color: #1b8521;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .m-h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.m-h3 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 29px;
  font-size: 1.8125rem;
  color: #1b8521;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .m-h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 38px 0;
}
@media screen and (max-width: 1260px) {
  .l-header__inner {
    padding: 20px 28px 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 0;
    display: block;
    position: relative;
  }
}
.l-header__logo {
  max-width: 140px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1260px) {
  .l-header__logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    padding: 20px 0 0 20px;
    position: relative;
    z-index: 100;
  }
}
.l-header__nav {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    background-color: #f0e9df;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s;
    opacity: 0;
    pointer-events: none;
    width: 100%;
  }
  .l-header__nav.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}
.l-header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 25px;
  padding: 10px 30px;
  height: 50px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .l-header__menu {
    gap: 10px;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex: 1;
  }
}
.l-header__menu__link {
  text-decoration: none;
  color: #333333;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 1260px) {
  .l-header__menu__link {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__menu__link {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.l-header__cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/cta_bg.webp) no-repeat center/100% auto;
  width: 120px;
  height: 120px;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.3;
  background-color: transparent;
}
@media screen and (max-width: 1260px) {
  .l-header__cta__link {
    font-size: 20px;
    font-size: 1.25rem;
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__cta__link {
    display: none;
  }
}
.l-header__cta__btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__cta__btn {
    display: block;
    position: absolute;
    top: 14px;
    right: 84px;
    z-index: 100;
  }
}
.l-header__cta__btn__link {
  height: 44px;
  padding: 0 20px;
}
.l-header__hamburger {
  width: 70px;
  height: 70px;
  cursor: pointer;
  background-color: #1b8521;
  border-radius: 0 0 0 20px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
  }
}
.l-header__hamburger__line {
  position: relative;
  width: 28px;
  height: 18px;
  display: block;
}
.l-header__hamburger__line span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ffffff;
  left: 0;
  transition: 0.3s;
}
.l-header__hamburger__line span:nth-child(1) {
  top: 0;
}
.l-header__hamburger__line span:nth-child(2) {
  top: 8px;
}
.l-header__hamburger__line span:nth-child(3) {
  bottom: 0;
}
.l-header__hamburger__text {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  margin-top: 6px;
}
.l-header__hamburger.is-active .l-header__hamburger__line span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.l-header__hamburger.is-active .l-header__hamburger__line span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger__line span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 8px;
}
.l-header__hamburger.is-active .l-header__hamburger__text {
  content: "CLOSE";
}

.l-header.is-scrolled .l-header__menu {
  background: #fff;
  border-radius: 60px;
  transition: all 0.3s;
  border: 2px solid #1b8521;
  box-sizing: border-box;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.hero {
  background-image: url(../images/bg_beige.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 780px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .hero {
    background-image: url(../images/bg_beige_sp.webp);
  }
}
.hero__wrap {
  width: 100%;
  height: 780px;
  position: relative;
}
.hero__wrap::before {
  content: "";
  max-width: 223px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/mv_bg_left.webp") no-repeat left center/auto 100%;
  z-index: 0;
}
.hero__wrap::after {
  content: "";
  position: absolute;
  max-width: 367px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: url("../images/mv_bg_right.webp") no-repeat left center/auto 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .hero__wrap::before {
    background: url("../images/mv_bg_top_sp.webp") no-repeat top center/100% auto;
    max-width: initial;
  }
  .hero__wrap::after {
    background: url("../images/mv_bg_bottom_sp.webp") no-repeat bottom center/100% auto;
    bottom: 0;
    left: 0;
    max-width: initial;
  }
}
.hero__content {
  padding-top: 140px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    align-items: center;
    padding: 110px 8%;
  }
}
.hero__content__logo {
  max-width: 350px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .hero__content__logo {
    max-width: 200px;
    width: 100%;
    margin-bottom: 17px;
  }
}
.hero__content__title {
  max-width: 443px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hero__content__title {
    max-width: 244px;
    width: 100%;
    margin-bottom: 10px;
  }
}
.hero__content__text {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .hero__content__text {
    margin-bottom: 17px;
  }
}
.hero__content__btn {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .hero__content__btn {
    gap: 10px;
    margin-bottom: 24px;
  }
}
.hero__content__mv {
  max-width: 548px;
  width: 100%;
  height: auto;
  width: 100%;
  margin-left: -160px;
}
@media screen and (max-width: 768px) {
  .hero__content__mv {
    margin-left: -110px;
    max-width: 344px;
  }
}

.lead {
  position: relative;
  padding-top: 100px;
  margin-top: -100px;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/lead_bg.webp) no-repeat top center/100% auto;
  z-index: -1;
}
.lead__wrap {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .lead__wrap {
    width: 84%;
  }
}
.lead__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lead__title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.lead__text {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .lead__text {
    margin-bottom: 20px;
  }
}
.lead__btn {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .lead__btn {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .lead {
    padding-top: 40px;
    margin-top: -40px;
  }
  .lead::before {
    background: url(../images/lead_bg_sp.webp) no-repeat top center/100% auto;
  }
}

.pain {
  background-image: url(../images/bg_beige.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .pain {
    margin-top: 80px;
    background-image: url(../images/bg_beige_sp.webp);
  }
}
.pain__wrap {
  position: relative;
}
.pain__wrap::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pain_bg_before.webp) no-repeat top center/100% auto;
  z-index: 0;
}
.pain__wrap::after {
  content: "";
  background: url(../images/pain_bg_after.webp) no-repeat bottom 90px center/100% auto;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .pain__wrap::before {
    top: -40px;
    background: url(../images/pain_bg_before_sp.webp) no-repeat top center/100% auto;
  }
  .pain__wrap::after {
    background: url(../images/pain_bg_after_sp.webp) no-repeat bottom 90px center/100% auto;
  }
}
.pain__inner {
  position: relative;
  display: flex;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1116px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 200px;
}
@media screen and (max-width: 768px) {
  .pain__inner {
    padding: 60px 0 100px;
  }
}
.pain__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .pain__title {
    margin-bottom: 36px;
  }
}
.pain__list {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 780px;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pain__list {
    margin-bottom: 20px;
  }
}
.pain__list__item {
  background-color: #ffffff;
  padding: 10px 30px;
  border-radius: 14px;
  min-width: 280px;
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pain__list__item {
    padding: 10px 0;
    min-width: inherit;
    width: 80%;
    text-align: center;
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.pain__list__item::after {
  content: "";
  background: url(../images/pain_item_after.webp) no-repeat bottom center/100% auto;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 38px;
  width: 100%;
  height: 18px;
}
.pain__text {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pain__scroll-area {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
}
.pain__moc {
  display: flex;
  max-width: 680px;
  width: 100%;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pain__moc {
    width: -moz-max-content;
    width: max-content;
    gap: 20px;
    margin-bottom: 10px;
    padding: 0 8%;
  }
}
.pain__moc__item {
  position: relative;
}
.pain__moc__item:first-child::after {
  content: "";
  background: url(../images/pain_moc_img01_after.webp) no-repeat bottom center/100% auto;
  position: absolute;
  top: 52.5%;
  left: -62%;
  width: 78%;
  height: 29%;
}
@media screen and (max-width: 768px) {
  .pain__moc__item {
    max-width: 200px;
    width: 100%;
  }
  .pain__moc__item:first-child::after {
    content: "";
    background: url(../images/pain_moc_img01_after_sp.webp) no-repeat bottom center/100% auto;
    top: 45%;
    left: -6%;
    width: 53.8%;
    height: 29%;
  }
}
.pain__btn {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .pain__btn {
    margin-top: 30px;
    gap: 10px;
    width: 84%;
  }
}

.points {
  background-image: url(../images/bg_green.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .points {
    background-image: url(../images/bg_green_sp.webp);
  }
}
.points__warp {
  position: relative;
  z-index: 0;
}
.points__warp::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/points_bg_before.webp) no-repeat top center/100% auto;
  z-index: 1;
}
.points__warp::after {
  content: "";
  background: url(../images/points_bg_after.webp) no-repeat bottom 90px center/100% auto;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .points__warp::before {
    top: -40px;
    background: url(../images/points_bg_before_sp.webp) no-repeat top center/100% auto;
  }
  .points__warp::after {
    background: url(../images/points_bg_after_sp.webp) no-repeat bottom 90px center/100% auto;
  }
}
.points__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 200px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .points__inner {
    padding: 40px 0 100px;
  }
}
.points__title {
  margin-bottom: 60px;
}
.points__title span {
  font-size: 60px;
  font-size: 3.75rem;
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #f27730;
}
@media screen and (max-width: 768px) {
  .points__title {
    margin-bottom: 30px;
  }
  .points__title span {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.points__list {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .points__list {
    flex-direction: column;
    width: 84%;
    gap: 26px;
    margin-bottom: 30px;
  }
}
.points__list__item {
  background-color: #ffffff;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 16px;
  position: relative;
}
.points__list__num {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  font-size: 1.375rem;
  color: #f27730;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.points__list__num span {
  font-size: 35px;
  font-size: 2.1875rem;
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #f27730;
  padding-left: 4px;
}
@media screen and (max-width: 768px) {
  .points__list__num {
    font-size: 20px;
    font-size: 1.25rem;
    top: -30px;
  }
  .points__list__num span {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.points__list__img {
  max-width: 150px;
  max-height: 150px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .points__list__img {
    max-width: 120px;
    max-height: 120px;
  }
}
.points__list__text {
  text-align: center;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #1b8521;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .points__list__text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.points__btn {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .points__btn {
    gap: 10px;
    width: 84%;
  }
}

.cando {
  position: relative;
  padding-top: 100px;
  margin-top: -100px;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cando::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/lead_bg.webp) no-repeat top center/100% auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .cando {
    padding-top: 40px;
    margin-top: -40px;
  }
  .cando::before {
    background: url(../images/lead_bg_sp.webp) no-repeat top center/100% auto;
  }
}
.cando__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cando__inner {
    padding: 40px 0 60px;
  }
}
.cando__title {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cando__title {
    text-align: center;
  }
}
.cando__list {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .cando__list {
    flex-direction: column;
    width: 84%;
    margin-bottom: 30px;
    gap: 30px;
  }
}
.cando__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cando__list__img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-height: 200px;
  height: 100%;
  width: 100%;
}
.cando__list__img img {
  height: 100%;
}
.cando__list__title {
  margin: 10px 0;
  text-align: center;
}
.cando__list__text {
  text-align: center;
}
.cando__btn {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .cando__btn {
    gap: 10px;
    width: 84%;
  }
}

.guide {
  background-color: #f0e9df;
  max-width: 1360px;
  width: 100%;
  border-radius: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .guide {
    border-radius: 40px;
  }
}
.guide__wrap {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .guide__wrap {
    padding-bottom: 60px;
  }
}
.guide__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  max-width: 313px;
  width: 100%;
  height: 100%;
  background: url(../images/guide_right_deco.webp) no-repeat top center/100% auto;
  z-index: 0;
  border-radius: 0 80px 0 0;
}
.guide__wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 244px;
  width: 100%;
  height: 100%;
  background: url(../images/guide_left_deco.webp) no-repeat bottom center/100% auto;
  z-index: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (max-width: 768px) {
  .guide__wrap::before {
    max-width: 140px;
    border-radius: 0 40px 0 0;
  }
  .guide__wrap::after {
    max-width: 140px;
    border-radius: 0 0 0 40px;
  }
}
.guide__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 50px;
  max-width: 1116px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide__inner {
    padding: 50px 0 40px;
  }
}
.guide__title {
  margin-bottom: 10px;
}
.guide__lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .guide__lead {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .guide__scroll-area {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
}
.guide__step {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .guide__step {
    width: -moz-max-content;
    width: max-content;
    gap: 50px;
    padding: 0 8%;
  }
}
.guide__step__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.guide__step__item::after {
  content: "";
  position: absolute;
  top: calc(50% - 30px);
  right: -44%;
  transform: translate(-50%);
  width: 17.6%;
  height: 14.9%;
  background: url(../images/step_arrow.webp) no-repeat top center/100% auto;
}
.guide__step__item:first-child::before {
  content: "";
  background: url(../images/guide_step01_before.webp) no-repeat bottom center/100% auto;
  position: absolute;
  top: 0;
  left: -10%;
  width: 69%;
  height: 82%;
}
.guide__step__item:nth-child(2)::before {
  content: "";
  background: url(../images/guide_step02_before.webp) no-repeat bottom center/100% auto;
  position: absolute;
  bottom: 26%;
  left: -27%;
  width: 137%;
  height: 28%;
}
.guide__step__item:nth-child(4)::before {
  content: "";
  background: url(../images/guide_step04_before.webp) no-repeat bottom center/100% auto;
  position: absolute;
  bottom: 19%;
  right: -19%;
  width: 67%;
  height: 35%;
}
.guide__step__item:last-child::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .guide__step__item {
    max-width: 200px;
    width: 84%;
  }
  .guide__step__item::after {
    top: 50%;
    right: -25%;
    width: 11.5%;
    height: 10.3%;
  }
  .guide__step__item:first-child::before {
    top: 13%;
    width: 62%;
    height: 74%;
    left: -5%;
  }
  .guide__step__item:nth-child(2)::before {
    width: 122%;
    height: 24%;
    bottom: 24.5%;
    left: -18%;
  }
  .guide__step__item:nth-child(4)::before {
    width: 54%;
    height: 28%;
    bottom: 23%;
    right: -6%;
  }
}
.guide__step__num {
  color: #ffffff;
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../images/step_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  line-height: 1;
  margin-bottom: 20px;
  padding-top: 2px;
}
.guide__step__num span {
  color: #ffffff;
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  padding-top: 2px;
}
.guide__step__text {
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (max-width: 768px) {
  .guide__step__text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.guide__features {
  max-width: 1116px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 70px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide__features {
    width: 84%;
    border-radius: 30px;
    padding: 60px 30px;
    margin: 50px 0 0;
  }
}
.guide__features__title {
  font-size: 40px;
  font-size: 2.5rem;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .guide__features__title {
    top: -24px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.guide__features__list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .guide__features__list {
    flex-direction: column;
  }
}
.guide__features__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.guide__features__list__item__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 118px;
}
@media screen and (max-width: 768px) {
  .guide__features__list__item__top {
    justify-content: flex-start;
    height: auto;
  }
}
.guide__features__list__item--onsei {
  padding-right: 40px;
  border-right: 1px solid #b9ad9b;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .guide__features__list__item--onsei {
    border: none;
    padding-right: 0;
    margin-right: 0;
  }
}
.guide__features__list__img {
  max-width: 200px;
  width: 100%;
}
.guide__features__list__title {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .guide__features__list__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.guide__features__list__title--device {
  background-color: #1b8521;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 36px;
  padding: 0 30px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .guide__features__list__title--device {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 28px;
  }
}
.guide__features__list__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .guide__features__list__text {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
}
.guide__line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guide__line__inner {
  display: flex;
  margin-bottom: 40px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .guide__line__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
  }
}
.guide__line__left-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .guide__line__left-box {
    align-items: center;
    gap: 10px;
  }
}
.guide__line__title {
  max-width: 182px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .guide__line__title {
    max-width: 150px;
  }
}
.guide__line__qr {
  max-width: 160px;
  width: 100%;
  height: 160px;
}
@media screen and (max-width: 768px) {
  .guide__line__qr {
    max-width: 110px;
    height: 110px;
  }
}
.guide__line__right-box {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px;
  max-width: 310px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .guide__line__right-box {
    padding: 20px;
  }
}
.guide__line__copy {
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .guide__line__copy {
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
  }
}
.guide__line__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .guide__line__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.guide__btn {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .guide__btn {
    gap: 10px;
    padding: 0 5%;
  }
}

.faq {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1116px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .faq {
    width: 89.3%;
    padding-top: 50px;
  }
}
.faq__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.faq__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .faq__title {
    margin-bottom: 30px;
  }
}
.faq__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .faq__item {
    gap: 20px;
  }
}
.faq__list {
  border-radius: 20px;
  overflow: hidden;
}
.faq__list__question {
  background-color: #1b8521;
  border-radius: 20px;
  cursor: pointer;
  transition: border-radius 0s 0.3s;
}
.faq__list__question__box {
  padding: 25px 30px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .faq__list__question__box {
    padding: 14px;
    gap: 5px;
    align-items: center;
  }
}
.faq__list__question__q-mark {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .faq__list__question__q-mark {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.faq__list__question__q-text {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 1.5rem;
  color: #ffffff;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .faq__list__question__q-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.faq__list__question__toggle-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .faq__list__question__toggle-icon {
    width: 25px;
    height: 25px;
    padding: 25px 0;
  }
}
.faq__list__question__toggle-icon-horizontal {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__list__question__toggle-icon-horizontal {
    width: 25px;
  }
}
.faq__list__question__toggle-icon-vertical {
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #ffffff;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__list__question__toggle-icon-vertical {
    height: 25px;
  }
}
.faq__list.is-open .faq__list__question {
  border-radius: 20px 20px 0 0;
  transition: border-radius 0s;
}
.faq__list.is-open .faq__list__question__toggle-icon-vertical {
  transform: rotate(90deg);
}
.faq__list__answer {
  background-color: #d6ecb8;
  border-radius: 0 0 20px 20px;
  display: none;
}
.faq__list__answer__box {
  padding: 30px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .faq__list__answer__box {
    padding: 14px;
  }
}
.faq__list__answer__a-mark {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 1.5rem;
  color: #f27730;
  line-height: 2;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .faq__list__answer__a-mark {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.faq__list__answer__a-text {
  font-size: 20px;
  font-size: 1.25rem;
  color: #333333;
  line-height: 2;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .faq__list__answer__a-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.faq__list__answer__a-text__link {
  color: #1b8521;
  text-decoration: underline;
}

.corporate {
  background-image: url(../images/bg_beige.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .corporate {
    margin-top: 100px;
  }
}
.corporate__wrap {
  position: relative;
}
.corporate__wrap::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/corporate_bg_before.webp) no-repeat top center/100% auto;
  z-index: 0;
}
.corporate__wrap::after {
  content: "";
  background: url(../images/corporate_bg_after.webp) no-repeat bottom center/100% auto;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .corporate__wrap::before {
    background: url(../images/corporate_bg_before_sp.webp) no-repeat top center/100% auto;
    top: -40px;
  }
  .corporate__wrap::after {
    background: url(../images/corporate_bg_after_sp.webp) no-repeat bottom center/100% auto;
    bottom: -40px;
  }
}
.corporate__inner {
  position: relative;
  display: flex;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1116px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 200px;
}
@media screen and (max-width: 768px) {
  .corporate__inner {
    max-width: inherit;
    width: 84%;
    padding: 40px 0 160px;
  }
}
.corporate__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .corporate__title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.corporate__text {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .corporate__text {
    margin-bottom: 30px;
  }
}
.corporate__block {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .corporate__block {
    flex-direction: column;
    gap: 20px;
  }
}
.corporate__box {
  background-color: #ffffff;
  border-radius: 40px;
  width: 500px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #82ba38;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .corporate__box {
    width: 100%;
    margin-bottom: 0;
    padding: 20px 26px;
  }
}
.corporate__box__title {
  margin-bottom: 16px;
}
.corporate__box__text {
  color: #ffffff;
  background-color: #1b8521;
  border-radius: 40px;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .corporate__box__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.corporate__box__list__item {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .corporate__box__list__item {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }
}
.corporate__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .corporate__list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.corporate__list__item {
  font-size: 24px;
  font-size: 1.5rem;
  color: #ffffff;
  background-color: #1b8521;
  border-radius: 16px;
  padding: 10px 20px;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .corporate__list__item {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.corporate__cta {
  max-width: 730px;
  width: 100%;
}
.corporate__cta__text {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .corporate__cta__text {
    margin-bottom: 10px;
  }
}
.corporate__cta__btn {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ffffff;
  background-color: #f27730;
  height: 105px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .corporate__cta__btn {
    font-size: 20px;
    font-size: 1.25rem;
    height: 80px;
  }
}

.l-footer {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    margin-top: 80px;
  }
}
.l-footer__inner {
  position: relative;
}
.l-footer__copyright {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    top: -160px;
  }
}
.l-footer__cta {
  background-color: #1b8521;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 98;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1260px) {
  .l-footer__cta {
    height: 110px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__cta {
    height: 120px;
  }
}
.l-footer__cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 950px;
  width: 84%;
}
@media screen and (max-width: 768px) {
  .l-footer__cta__inner {
    flex-direction: column;
    width: 100%;
  }
}
.l-footer__cta__text {
  color: #ffffff;
  line-height: 1.4;
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (max-width: 1260px) {
  .l-footer__cta__text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__cta__text {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}
.l-footer__cta__btn {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer__cta__btn {
    gap: 10px;
    width: 84%;
  }
}/*# sourceMappingURL=style.css.map */