@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes ratotion {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.m-sp {
  display: none;
}
@media (max-width: 428px) {
  .m-sp {
    display: block;
  }
}

.m-pc {
  display: block;
}
@media (max-width: 428px) {
  .m-pc {
    display: none;
  }
}

.m-pc_inline {
  display: inline;
}
@media (max-width: 428px) {
  .m-pc_inline {
    display: none;
  }
}

.m-strong {
  font-weight: bold;
}

.m-br {
  margin-top: 1em;
  display: block;
  content: "";
}

.m-sup {
  vertical-align: super;
  font-size: 10px;
  display: inline-block;
  transform: scale(0.9);
  transform-origin: left bottom;
}

.m-link {
  text-decoration: none;
  color: inherit;
  transition: 0.3s all;
}

.m-event_none {
  pointer-events: none;
}

.m-inner {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 1160px;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
@media (max-width: 428px) {
  .m-inner {
    width: calc(100% - 50px);
    min-width: 346px;
    padding-left: 0;
    padding-right: 0;
  }
}

.m-fadein {
  opacity: 0;
  transition: 1s;
}
.m-fadein:not(.m-fadein-margin) {
  transform: translateY(40px);
}
.m-fadein:not(.m-fadein-margin).is_show {
  opacity: 1;
  transform: translateY(0);
}
.m-fadein-margin {
  margin-bottom: -40px;
}
.m-fadein-margin.is_show {
  opacity: 1;
  margin-bottom: 0;
}

.m-fadein_delay {
  opacity: 0;
  transition: 1s;
}
.m-fadein_delay:not(.m-fadein_delay-margin) {
  transform: translateY(40px);
}
.is_show .m-fadein_delay:not(.m-fadein_delay-margin) {
  opacity: 1;
  transform: translateY(0);
}
.m-fadein_delay-margin {
  margin-bottom: -40px;
}
.is_show .m-fadein_delay-margin {
  opacity: 1;
  margin-bottom: 0;
}
.m-fadein_delay-01 {
  transition-delay: 0s;
}
.m-fadein_delay-02 {
  transition-delay: 0.15s;
}
.m-fadein_delay-03 {
  transition-delay: 0.3s;
}
.m-fadein_delay-04 {
  transition-delay: 0.45s;
}
.m-fadein_delay-05 {
  transition-delay: 0.6s;
}

.m-navy {
  color: #1a4062;
}

.m-orange {
  color: #ff9914;
}

.m-blue {
  color: #03cbc9;
}

.m-green {
  color: #accd0d;
}

.m-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  letter-spacing: 0.05em;
  width: 446px;
  height: 56px;
  border: 2px solid #222222;
  border-radius: 60px;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: 0.3s all;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  text-align: center;
  line-height: 1.3333333333;
}
@media (max-width: 428px) {
  .m-btn {
    width: 296px;
    height: auto;
    min-height: 56px;
    padding-top: 4px;
    padding-bottom: 4px;
    box-sizing: border-box;
  }
}
.m-btn:after {
  content: "";
  display: block;
  width: 25px;
  aspect-ratio: 25/25;
  background-image: url(../img/icon/icon-circle-arrow.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  transition: 0.3s;
}
@media (max-width: 428px) {
  .m-btn:after {
    right: 12px;
  }
}
.m-btn:hover:after {
  right: 20px;
}
@media (max-width: 428px) {
  .m-btn:hover:after {
    right: 12px;
  }
}

.m-border_bottom {
  position: relative;
}
.m-border_bottom:after {
  content: "";
  display: block;
  background-color: #222222;
  width: 1000px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 428px) {
  .m-border_bottom:after {
    width: 100%;
  }
}

.m-ttl {
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}
@media (max-width: 428px) {
  .m-ttl {
    font-size: 26px;
    line-height: 1.3461538462;
  }
}
.m-ttl:before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  opacity: 0;
  transition: 1s;
  transition-delay: 0.2s;
}
.m-ttl.is_show:before {
  opacity: 1;
}
@media (max-width: 428px) {
  .m-ttl-sp_s {
    font-size: 24px;
    line-height: 1.75;
  }
}
.m-ttl-leaf:before {
  background-image: url(../img/icon/icon-leaf.webp);
  width: 50px;
  aspect-ratio: 100/100;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-leaf:before {
    left: -65px;
  }
}
.m-ttl-pea:before {
  background-image: url(../img/icon/icon-pea.webp);
  width: 50px;
  aspect-ratio: 100/60;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-pea:before {
    right: 0;
    transform: none;
    top: auto;
    bottom: -20px;
  }
}
.m-ttl-radish:before {
  background-image: url(../img/icon/icon-radish.webp);
  width: 100px;
  aspect-ratio: 100/100;
  right: -108px;
  bottom: 0;
}
@media (max-width: 428px) {
  .m-ttl-radish:before {
    width: 70px;
    right: -30px;
    bottom: -80px;
  }
}
.m-ttl-tomato:before {
  background-image: url(../img/icon/icon-tomato.webp);
  width: 43px;
  aspect-ratio: 86/84;
  left: -65px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-tomato:before {
    left: -55px;
  }
}
.m-ttl-broccoli:before {
  background-image: url(../img/icon/icon-broccoli.webp);
  width: 41px;
  aspect-ratio: 82/84;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-broccoli:before {
    left: -55px;
  }
}
.m-ttl-mushroom:before {
  background-image: url(../img/icon/icon-mushroom.webp);
  width: 44px;
  aspect-ratio: 88/96;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-mushroom:before {
    left: -50px;
    top: 15px;
    transform: none;
  }
}
.m-ttl-maize:before {
  background-image: url(../img/icon/icon-maize.webp);
  width: 53px;
  aspect-ratio: 106/112;
  left: -72px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-maize:before {
    left: -60px;
  }
}
.m-ttl-onion2:before {
  background-image: url(../img/icon/icon-onion2.webp);
  width: 41px;
  aspect-ratio: 82/90;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-onion2:before {
    left: -60px;
  }
}
.m-ttl-leaf2:before {
  background-image: url(../img/icon/icon-leaf2.webp);
  width: 38px;
  aspect-ratio: 76/112;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-leaf2:before {
    left: -60px;
  }
}
.m-ttl-radish2:before {
  background-image: url(../img/icon/icon-radish2.webp);
  width: 59px;
  aspect-ratio: 118/110;
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-radish2:before {
    left: -75px;
  }
}
.m-ttl-asparagus:before {
  background-image: url(../img/icon/icon-asparagus.webp);
  width: 48px;
  aspect-ratio: 96/132;
  left: -68px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-asparagus:before {
    left: -45px;
  }
}
.m-ttl-garlic:before {
  background-image: url(../img/icon/icon-garlic.webp);
  width: 48px;
  aspect-ratio: 96/102;
  left: -72px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-garlic:before {
    left: -60px;
  }
}
.m-ttl-pepper2:before {
  background-image: url(../img/icon/icon-pepper2.webp);
  width: 39px;
  aspect-ratio: 78/108;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-pepper2:before {
    left: -50px;
  }
}
.m-ttl-cucumber:before {
  background-image: url(../img/icon/icon-cucumber.webp);
  width: 37px;
  aspect-ratio: 74/124;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-cucumber:before {
    right: -35px;
  }
}
.m-ttl-poteto:before {
  background-image: url(../img/icon/icon-poteto.webp);
  width: 55px;
  aspect-ratio: 138/106;
  left: -70px;
  top: calc(50% + 5px);
  transform: translateY(-50%) scale(-1, 1) rotate(-18deg);
}
@media (max-width: 428px) {
  .m-ttl-poteto:before {
    left: -65px;
  }
}
.m-ttl-pea3:before {
  background-image: url(../img/icon/icon-pea3.webp);
  width: 45px;
  aspect-ratio: 90/100;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-ttl-pea3:before {
    left: -55px;
  }
}
.m-ttl-cucumber2:before {
  background-image: url(../img/icon/icon-cucumber.webp);
  width: 37px;
  aspect-ratio: 74/124;
  left: -55px;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
}
@media (max-width: 428px) {
  .m-ttl-cucumber2:before {
    left: -45px;
  }
}
.m-ttl--sub {
  display: block;
  color: #accd0d;
  font-size: 14px;
  line-height: 1.0714285714;
  text-align: center;
  margin-top: 4px;
}
@media (max-width: 428px) {
  .m-ttl--sub {
    margin-top: 6px;
  }
}

.m-lower_mv {
  aspect-ratio: 1366/380;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
@media (max-width: 428px) {
  .m-lower_mv {
    aspect-ratio: 390/170;
  }
}
.m-lower_mv-about {
  background-image: url(../img/m-lower-mv-about.webp);
}
.m-lower_mv-service {
  background-image: url(../img/m-lower-mv-service.webp);
}
@media (max-width: 428px) {
  .m-lower_mv-service {
    background-image: url(../img/m-lower-mv-service-sp.webp);
  }
}
.m-lower_mv-voice {
  background-image: url(../img/m-lower-mv-voice.webp);
}
.m-lower_mv-contact {
  background-image: url(../img/m-lower-mv-contact.webp);
}
@media (max-width: 428px) {
  .m-lower_mv-contact {
    background-image: url(../img/m-lower-mv-contact-sp.webp);
  }
}
.m-lower_mv--ttl {
  position: absolute;
  bottom: 60px;
  left: 80px;
}
@media (max-width: 428px) {
  .m-lower_mv--ttl {
    height: 42px;
    bottom: 8px;
    left: 10px;
    transform: translateY(20px) !important;
  }
  .m-lower_mv--ttl.is_show {
    transform: none !important;
  }
}
@media (max-width: 428px) {
  .m-lower_mv--img {
    width: auto;
    height: 100%;
  }
}

.m-lower_intro {
  background-color: #f9ffdc;
  padding-top: 80px;
  padding-bottom: 50px;
}
@media (max-width: 428px) {
  .m-lower_intro {
    padding-bottom: 80px;
  }
}
.m-lower_intro-pt_s {
  padding-top: 45px;
}
@media (max-width: 428px) {
  .m-lower_intro-pt_s {
    padding-top: 60px;
  }
}
.m-lower_intro-pb_l {
  padding-bottom: 80px;
}
@media (max-width: 428px) {
  .m-lower_intro-pb_l {
    padding-bottom: 70px;
  }
}
.m-lower_intro--inner {
  position: relative;
}
.m-lower_intro--inner:before, .m-lower_intro--inner:after {
  content: "";
  display: block;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: 1s;
  transition-delay: 0.4s;
}
.m-lower_intro--inner.m-fadein {
  transition-delay: 0.2s;
}
.m-lower_intro--inner.is_show:before, .m-lower_intro--inner.is_show:after {
  opacity: 1;
  transform: none;
}
.m-lower_intro--inner-about:before {
  width: 144px;
  aspect-ratio: 288/300;
  background-image: url(../img/m-lower-intro-inner-about01.webp);
  top: -5px;
  left: 50px;
}
@media (max-width: 428px) {
  .m-lower_intro--inner-about:before {
    width: 72px;
    top: -65px;
    left: -5px;
  }
}
.m-lower_intro--inner-about:after {
  width: 144px;
  aspect-ratio: 288/300;
  background-image: url(../img/m-lower-intro-inner-about02.webp);
  bottom: -15px;
  right: 60px;
}
@media (max-width: 428px) {
  .m-lower_intro--inner-about:after {
    width: 58px;
    bottom: -57px;
    right: 0;
  }
}
.m-lower_intro--inner-service:before {
  width: 106px;
  aspect-ratio: 212/212;
  background-image: url(../img/m-lower-intro-inner-service01.webp);
  top: 60px;
  left: 70px;
}
@media (max-width: 428px) {
  .m-lower_intro--inner-service:before {
    width: 53px;
    top: -48px;
    left: -5px;
  }
}
.m-lower_intro--inner-service:after {
  width: 80px;
  aspect-ratio: 160/250;
  background-image: url(../img/m-lower-intro-inner-service02.webp);
  bottom: -30px;
  right: 90px;
}
@media (max-width: 428px) {
  .m-lower_intro--inner-service:after {
    width: 40px;
    bottom: -60px;
    right: 0;
  }
}
.m-lower_intro--inner-voice:before {
  width: 68px;
  aspect-ratio: 136/158;
  background-image: url(../img/m-lower-intro-inner-voice01.webp);
  top: 60px;
  left: 70px;
}
@media (max-width: 428px) {
  .m-lower_intro--inner-voice:before {
    width: 34px;
    top: -48px;
    left: -5px;
  }
}
.m-lower_intro--inner-voice:after {
  width: 92px;
  aspect-ratio: 184/188;
  background-image: url(../img/m-lower-intro-inner-voice02.webp);
  bottom: -40px;
  right: 70px;
}
@media (max-width: 428px) {
  .m-lower_intro--inner-voice:after {
    width: 45px;
    bottom: -55px;
    right: 0;
  }
}
.m-lower_intro--inner-contact:before {
  width: 89px;
  aspect-ratio: 178/220;
  background-image: url(../img/m-lower-intro-inner-contact01.webp);
  top: 0;
  left: 100px;
}
@media (max-width: 428px) {
  .m-lower_intro--inner-contact:before {
    width: 44px;
    top: -48px;
    left: -5px;
  }
}
.m-lower_intro--inner-contact:after {
  width: 82px;
  aspect-ratio: 164/214;
  background-image: url(../img/m-lower-intro-inner-contact02.webp);
  bottom: 100px;
  right: 105px;
}
@media (max-width: 428px) {
  .m-lower_intro--inner-contact:after {
    width: 41px;
    bottom: -55px;
    right: 0;
  }
}
.m-lower_intro--ttl {
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 428px) {
  .m-lower_intro--ttl {
    font-size: 24px;
    line-height: 1.75;
  }
}
.m-lower_intro--ttl_s {
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
  margin-top: 20px;
  display: block;
}
@media (max-width: 428px) {
  .m-lower_intro--ttl_s {
    font-size: 24px;
    line-height: 1.75;
  }
}
.m-lower_intro--ttl_s:first-of-type {
  margin-top: 0;
}
.m-lower_intro--sub_ttl {
  font-size: 22px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1a4062;
  margin-top: 40px;
}
@media (max-width: 428px) {
  .m-lower_intro--sub_ttl {
    font-size: 20px;
    line-height: 1.75;
    margin-top: 30px;
  }
}
.m-lower_intro--sub_ttl-s {
  font-size: 20px;
  line-height: 1.75;
}
.m-lower_intro--desc {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1.75em;
}
@media (max-width: 428px) {
  .m-lower_intro--desc {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 1.75em;
  }
}
.m-lower_intro--desc-s {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 1.75em;
}
.m-lower_intro--desc:first-of-type {
  margin-top: 40px;
}
@media (max-width: 428px) {
  .m-lower_intro--desc:first-of-type {
    margin-top: 70px;
  }
}

.m-features {
  padding-top: 100px;
  padding-bottom: 170px;
}
@media (max-width: 428px) {
  .m-features {
    padding-top: 70px;
    padding-bottom: 110px;
  }
}

.m-features_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  counter-reset: listnum;
  list-style: none;
  margin-top: 130px;
}
@media (max-width: 428px) {
  .m-features_list {
    margin-top: 120px;
    display: block;
  }
}
.m-features_list-s {
  justify-content: space-between;
}
.m-features_list--item {
  margin-right: 25px;
  width: 340px;
  padding-top: 35px;
  padding-bottom: 35px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 428px) {
  .m-features_list--item {
    margin-right: 0;
    width: 100%;
    margin-top: 98px;
  }
}
.m-features_list--item:before {
  counter-increment: listnum;
  content: counter(listnum);
  position: absolute;
  font-size: 60px;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.0666666667;
  letter-spacing: 0.05em;
}
.m-features_list--item:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
}
.m-features_list--item:first-of-type {
  background-color: #accd0d;
}
@media (max-width: 428px) {
  .m-features_list--item:first-of-type {
    margin-top: 0;
  }
}
.m-features_list--item:first-of-type:before {
  color: #accd0d;
}
.m-features_list--item:first-of-type:after {
  background-image: url(../img/icon/icon-green-pepper.webp);
  width: 51px;
  aspect-ratio: 102/122;
  top: -40px;
  left: 30px;
}
@media (max-width: 428px) {
  .m-features_list--item:first-of-type:after {
    left: auto;
    right: 30px;
  }
}
.m-features_list--item:nth-of-type(2) {
  background-color: #ff9914;
}
.m-features_list--item:nth-of-type(2):before {
  color: #ff9914;
}
.m-features_list--item:nth-of-type(2):after {
  background-image: url(../img/icon/icon-pumpkin.webp);
  width: 80px;
  aspect-ratio: 160/122;
  bottom: -50px;
  right: 24px;
}
@media (max-width: 428px) {
  .m-features_list--item:nth-of-type(2):after {
    bottom: auto;
    top: -40px;
    right: 15px;
  }
}
.m-features_list--item:nth-of-type(3) {
  background-color: #03cbc9;
  margin-right: 0;
}
.m-features_list--item:nth-of-type(3):before {
  color: #03cbc9;
}
.m-features_list--item:nth-of-type(3):after {
  background-image: url(../img/icon/icon-eggplant.webp);
  width: 71px;
  aspect-ratio: 142/102;
  top: -30px;
  right: 18px;
}
@media (max-width: 428px) {
  .m-features_list--item:nth-of-type(3):after {
    top: -30px;
    right: 20px;
  }
}
.m-features_list--item:nth-of-type(4) {
  background-color: #ff7db0;
  margin-top: 140px;
}
@media (max-width: 428px) {
  .m-features_list--item:nth-of-type(4) {
    margin-top: 98px;
  }
}
.m-features_list--item:nth-of-type(4):before {
  color: #ff7db0;
}
.m-features_list--item:nth-of-type(4):after {
  background-image: url(../img/icon/icon-onion.webp);
  width: 51px;
  aspect-ratio: 102/102;
  bottom: -42px;
  right: 40px;
}
@media (max-width: 428px) {
  .m-features_list--item:nth-of-type(4):after {
    bottom: auto;
    top: -34px;
    right: 30px;
  }
}
.m-features_list--item:nth-of-type(5) {
  background-color: #8f82bc;
  margin-right: 0;
  margin-top: 140px;
}
@media (max-width: 428px) {
  .m-features_list--item:nth-of-type(5) {
    margin-top: 98px;
  }
}
.m-features_list--item:nth-of-type(5):before {
  color: #8f82bc;
}
.m-features_list--item:nth-of-type(5):after {
  background-image: url(../img/icon/icon-poteto.webp);
  width: 69px;
  aspect-ratio: 138/106;
  top: -30px;
  right: 35px;
}
@media (max-width: 428px) {
  .m-features_list--item:nth-of-type(5):after {
    top: -27px;
    right: 20px;
  }
}
.m-features_list--item-s {
  width: 248px;
  margin-right: 0 !important;
  margin-top: 0 !important;
}
@media (max-width: 428px) {
  .m-features_list--item-s {
    width: 100%;
    margin-top: 95px !important;
  }
  .m-features_list--item-s:first-of-type {
    margin-top: 0 !important;
  }
}
.m-features_list--txt {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 22px;
  line-height: 1.3636363636;
  letter-spacing: 0.05em;
  text-align: center;
}

.m-2cols {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 428px) {
  .m-2cols {
    margin-top: 50px;
    display: block;
  }
}
.m-2cols--txt {
  width: 670px;
}
@media (max-width: 428px) {
  .m-2cols--txt {
    width: 100%;
  }
}
.m-2cols--txt-l {
  width: 712px;
}
@media (max-width: 428px) {
  .m-2cols--txt-l {
    width: 100%;
  }
}
.m-2cols--ttl {
  font-size: 24px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media (max-width: 428px) {
  .m-2cols--ttl {
    font-size: 20px;
    line-height: 1.75;
  }
}
.m-2cols--ttl-s {
  font-size: 22px;
  line-height: 1.75;
}
@media (max-width: 428px) {
  .m-2cols--ttl-s {
    font-size: 20px;
    line-height: 1.75;
  }
}
.m-2cols--desc {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 1.75em;
}
@media (max-width: 428px) {
  .m-2cols--desc {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 1.75em;
  }
}
.m-2cols--desc:first-of-type {
  margin-top: 30px;
}
@media (max-width: 428px) {
  .m-2cols--desc:first-of-type {
    margin-top: 50px;
  }
}
@media (max-width: 428px) {
  .m-2cols--desc-sp_s {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 1.75em;
  }
  .m-2cols--desc-sp_s:first-of-type {
    margin-top: 25px;
  }
}
.m-2cols--desc_m {
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 1.75em;
}
@media (max-width: 428px) {
  .m-2cols--desc_m {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 1.75em;
  }
}
.m-2cols--desc_m-mt0 {
  margin-top: 0;
}
.m-2cols--img {
  border-radius: 30px;
  width: 400px;
  aspect-ratio: 400/400;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
@media (max-width: 428px) {
  .m-2cols--img {
    margin-top: 50px;
    width: 100%;
  }
}
.m-2cols--img:before {
  content: "";
  display: block;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
}
.m-2cols--img-greeting {
  background-image: url(../img/m-2cols-img-greeting.webp);
}
.m-2cols--img-greeting:before {
  width: 84px;
  aspect-ratio: 168/158;
  background-image: url(../img/icon/icon-lotus.webp);
  right: -10px;
  bottom: -35px;
}
@media (max-width: 428px) {
  .m-2cols--img-greeting:before {
    right: 15px;
    bottom: -50px;
  }
}
.m-2cols--img-message {
  background-image: url(../img/m-2cols-img-message.webp);
  aspect-ratio: 400/340;
}
.m-2cols--img-message:before {
  width: 63px;
  aspect-ratio: 126/130;
  background-image: url(../img/icon/icon-lemon2.webp);
  right: 30px;
  bottom: -25px;
}
@media (max-width: 428px) {
  .m-2cols--img-message:before {
    right: 15px;
    bottom: -25px;
  }
}
.m-2cols--img-kyb {
  background-image: url(../img/m-2cols-img-kyb.webp);
  width: 360px;
  aspect-ratio: 360/360;
}
.m-2cols--img-kyb:before {
  width: 86px;
  aspect-ratio: 172/170;
  background-image: url(../img/icon/icon-bitter-gourd.webp);
  right: 25px;
  bottom: -30px;
}
@media (max-width: 428px) {
  .m-2cols--img-kyb:before {
    right: 15px;
    bottom: -35px;
  }
}

.m-faq_list {
  margin: 70px auto 0;
  width: 800px;
}
@media (max-width: 428px) {
  .m-faq_list {
    width: 100%;
    margin-top: 55px;
  }
}
.m-faq_list--group {
  margin-top: 35px;
}
@media (max-width: 428px) {
  .m-faq_list--group {
    margin-top: 20px;
  }
}
.m-faq_list--group-service {
  margin-top: 10px;
}
@media (max-width: 428px) {
  .m-faq_list--group-service {
    margin-top: 20px;
  }
}
.m-faq_list--group:first-of-type {
  margin-top: 0;
}
.m-faq_list--term {
  background-color: #f9ffdc;
  border-radius: 20px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 428px) {
  .m-faq_list--term {
    font-size: 18px;
    line-height: 1.75;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.m-faq_list--desc {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-top: 10px;
  padding-left: 2em;
  text-indent: -1.5em;
}
@media (max-width: 428px) {
  .m-faq_list--desc {
    font-size: 16px;
    line-height: 1.75;
    text-indent: 0;
    padding-left: 0;
    width: calc(100% - 50px);
    min-width: 346px;
    margin-left: auto;
    margin-right: auto;
  }
}
.m-faq_list--desc-service {
  text-align: center;
  font-size: 20px;
  line-height: 1.75;
  min-height: 65px;
}
@media (max-width: 428px) {
  .m-faq_list--desc-service {
    font-size: 16px;
    line-height: 1.75;
    text-align: left;
    min-height: 53px;
  }
}

/*# sourceMappingURL=module.css.map */
