@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes ratotion {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pyokon {
  0% {
    transform: translate(0%, 0%);
  }
  50% {
    transform: translate(0%, 0%);
  }
  52% {
    transform: translate(0%, -100%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
.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: 1180px;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
@media (max-width: 428px) {
  .m-inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.m-lower_mv {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  background-size: cover;
  background-position: 50% 50%;
}
@media (max-width: 428px) {
  .m-lower_mv {
    height: 150px;
    font-size: 24px;
  }
}
.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-reason {
  background-image: url(../img/m-lower-mv-reason.webp);
}
.m-lower_mv-flow {
  background-image: url(../img/m-lower-mv-flow.webp);
}
@media (max-width: 428px) {
  .m-lower_mv-flow {
    background-image: url(../img/m-lower-mv-flow-sp.webp);
  }
}
.m-lower_mv-company {
  background-image: url(../img/m-lower-mv-company.webp);
}
@media (max-width: 428px) {
  .m-lower_mv-company {
    background-image: url(../img/m-lower-mv-company-sp.webp);
  }
}
.m-lower_mv-contact {
  background-image: url(../img/m-lower-mv-contact.webp);
}

.m-bread {
  display: flex;
  align-items: center;
}
.m-bread--item {
  display: flex;
  align-items: center;
}
.m-bread--item:after {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 6/10;
  background-image: url(../img/icon/icon-arrow-black2.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-left: 5px;
  margin-right: 5px;
}
@media (max-width: 428px) {
  .m-bread--item:after {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.m-bread--item:last-of-type:after {
  content: none;
}
.m-bread--link {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}
.m-bread--link:hover {
  color: #F49B1F;
}
@media (max-width: 428px) {
  .m-bread--link:hover {
    color: #333;
  }
}
.m-bread--link-current {
  pointer-events: none;
}

.m-input {
  padding: 16px;
  background-color: #F3F3F3;
  border-radius: 2px;
  color: #333;
  display: block;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  min-height: 54px;
}
.m-input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
@media (max-width: 428px) {
  .m-input {
    font-size: 16px;
  }
}
.m-input-half {
  width: calc((100% - 40px) / 2);
}
@media (max-width: 428px) {
  .m-input-half {
    width: 100%;
    margin-top: 8px;
  }
  .m-input-half:first-of-type {
    margin-top: 0;
  }
}

.m-textarea {
  padding: 16px;
  background-color: #F3F3F3;
  border-radius: 2px;
  color: #333;
  display: block;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 428px) {
  .m-textarea {
    font-size: 16px;
  }
}

.m-label {
  cursor: pointer;
  display: inline-block;
}

.m-input_check {
  display: none;
}
.m-input_check:checked + .m-check_txt:after {
  opacity: 1;
}

.m-check_txt {
  font-size: 16px;
  position: relative;
  padding-left: 32px;
  font-weight: 400;
}
@media (max-width: 428px) {
  .m-check_txt {
    padding-left: 32px;
  }
}
.m-check_txt:before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 4px;
}
.m-check_txt:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  opacity: 0;
  width: 5px;
  height: 11px;
  transform: rotate(40deg);
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transition: 0.3s;
}

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

.m-fadein_delay {
  opacity: 0;
  transition: 0.55s;
}
.m-fadein_delay:not(.m-fadein_delay-margin) {
  transform: translateY(60px);
}
.is_show .m-fadein_delay:not(.m-fadein_delay-margin) {
  opacity: 1;
  transform: translateY(0);
}
.m-fadein_delay-margin {
  margin-bottom: -60px;
}
.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-flow {
  background-image: url(../img/icon/icon-dot.svg);
  background-position: 50% 50%;
  padding-top: 80px;
}
@media (max-width: 428px) {
  .m-flow {
    padding-top: 53px;
  }
}

.m-flow_ttl {
  font-size: 35px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 428px) {
  .m-flow_ttl {
    font-size: 32px;
  }
}
.m-flow_ttl--sub {
  color: #317400;
  display: block;
  font-size: 24px;
}
@media (max-width: 428px) {
  .m-flow_ttl--sub {
    font-size: 22px;
  }
}

.m-flow_list {
  margin-top: 40px;
  width: 450px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 428px) {
  .m-flow_list {
    margin-top: 20px;
    width: 100%;
    display: block;
    padding-left: 4px;
    box-sizing: border-box;
  }
}
.m-flow_list--item {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  border: 3px solid #FFCC65;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 428px) {
  .m-flow_list--item {
    width: 100%;
    height: auto;
    border: none;
    font-size: 17px;
    text-align: left;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0px;
    margin-top: 11px;
  }
}
.m-flow_list--item:before {
  content: "";
  display: block;
  width: 88px;
  height: 53px;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 15px;
}
@media (max-width: 428px) {
  .m-flow_list--item:before {
    margin-left: 0;
    margin-right: 14px;
    margin-bottom: 0;
    width: 71px;
    height: 71px;
    border-radius: 50px;
    border: 2px solid #FFCC65;
    background-size: 55px auto;
    background-color: #fff;
  }
}
@media (max-width: 428px) {
  .m-flow_list--item:first-of-type {
    margin-top: 0;
  }
}
.m-flow_list--item:first-of-type:before {
  background-image: url(../img/icon/icon-box.webp);
}
.m-flow_list--item:nth-of-type(2):before {
  background-image: url(../img/icon/icon-truck.webp);
}
.m-flow_list--item:last-of-type:before {
  background-image: url(../img/icon/icon-send.webp);
}
.m-flow_list--strong {
  color: #FBB424;
}
@media (max-width: 428px) {
  .m-flow_list--strong {
    font-size: 21px;
    margin-left: 3px;
  }
}

.m-flow_step {
  margin-top: 70px;
  width: 912px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  .m-flow_step {
    width: 100%;
    margin-top: 56px;
  }
}
.m-flow_step--item {
  margin-top: 64px;
  position: relative;
}
@media (max-width: 428px) {
  .m-flow_step--item {
    margin-top: 40px;
  }
}
.m-flow_step--item:before {
  content: "";
  display: block;
  width: 30px;
  height: 24px;
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFB41C;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 428px) {
  .m-flow_step--item:before {
    width: 25px;
    height: 20px;
    top: -30px;
  }
}
.m-flow_step--item:first-of-type {
  margin-top: 0;
}
.m-flow_step--item:first-of-type:before {
  content: none;
}
.m-flow_step--wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #72A84B;
  background-color: #fff;
}
.m-flow_step--ttl {
  background-color: #99D638;
  color: #fff;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.08em;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 428px) {
  .m-flow_step--ttl {
    height: 55px;
    font-size: 22px;
    letter-spacing: 0.18em;
  }
}
.m-flow_step--num {
  font-size: 40px;
}
@media (max-width: 428px) {
  .m-flow_step--num {
    font-size: 30px;
  }
}
.m-flow_step--desc {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-top: 20px;
  padding-bottom: 40px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
@media (max-width: 428px) {
  .m-flow_step--desc {
    font-size: 16px;
    line-height: 1.55;
    width: 100%;
    padding: 20px 30px;
  }
}

.m-flow_cta {
  background-color: #78C100;
  margin-top: 100px;
  padding-top: 40px;
  padding-bottom: 43px;
  background-image: url(../img/m-flow-cta01.webp), url(../img/m-flow-cta02.webp);
  background-size: auto 100%, auto 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: 0% 0%, 100% 0%;
  position: relative;
}
@media (max-width: 428px) {
  .m-flow_cta {
    margin-top: 61px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/m-flow-cta01-sp.webp), url(../img/m-flow-cta02-sp.webp);
    background-size: auto 149px, auto 149px;
    background-position: 0% 0%, 100% 0%;
  }
}
.m-flow_cta:before {
  content: "";
  display: block;
  width: 167px;
  aspect-ratio: 167/213;
  background-image: url(../img/m-flow-cta03.webp);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-478px);
}
@media (max-width: 428px) {
  .m-flow_cta:before {
    content: none;
  }
}
.m-flow_cta--link {
  background-color: #FFE82D;
  width: 458px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 7px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 428px) {
  .m-flow_cta--link {
    width: 340px;
    height: 60px;
    font-size: 18px;
    border-radius: 5px;
  }
}
.m-flow_cta--link:after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 7/10;
  background-image: url(../img/icon/icon-arrow-black.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-flow_cta--link:after {
    width: 8px;
    right: 25px;
  }
}
.m-flow_cta--link:hover {
  transform: translateY(-4px);
}
@media (max-width: 428px) {
  .m-flow_cta--link:hover {
    transform: translateY(0);
  }
}

.m-product {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 428px) {
  .m-product {
    padding-top: 72px;
    padding-bottom: 58px;
  }
}
.m-product--induction {
  color: #649E07;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  margin-top: 35px;
}
@media (max-width: 428px) {
  .m-product--induction {
    margin-top: 40px;
    font-size: 15px;
  }
}
.m-product--link {
  background-color: #FFE82D;
  width: 458px;
  height: 77px;
  border-radius: 7px;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 428px) {
  .m-product--link {
    width: 100%;
    height: 60px;
    margin-top: 6px;
    font-size: 18px;
  }
}
.m-product--link:after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 7/10;
  background-image: url(../img/icon/icon-arrow-black.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
}
@media (max-width: 428px) {
  .m-product--link:after {
    width: 8px;
    right: 25px;
  }
}
.m-product--link:hover {
  transform: translateY(-4px);
}
@media (max-width: 428px) {
  .m-product--link:hover {
    transform: translateY(0);
  }
}
.m-product--caution {
  font-size: 16px;
  color: #FF0000;
  line-height: 1.5;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 428px) {
  .m-product--caution {
    font-size: 13px;
    width: calc(100% - 10px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}

.m-product_list {
  margin-top: 80px;
}
@media (max-width: 428px) {
  .m-product_list {
    margin-top: 40px;
  }
}
.m-product_list:first-of-type {
  margin-top: 0;
}
.m-product_list--term {
  padding-top: 7px;
  padding-bottom: 8px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 428px) {
  .m-product_list--term {
    padding-top: 11px;
    padding-bottom: 10px;
  }
}
.m-product_list--term-ok {
  background-color: #FFB41C;
}
.m-product_list--term-ng {
  background-color: #444339;
}
.m-product_list--term_txt {
  color: #fff;
  font-size: 38px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 428px) {
  .m-product_list--term_txt {
    font-size: 32px;
  }
}
.m-product_list--term_txt:before {
  content: "";
  display: block;
  aspect-ratio: 42/42;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-right: 5px;
}
@media (max-width: 428px) {
  .m-product_list--term_txt:before {
    margin-right: 8px;
  }
}
.m-product_list--term_txt-ok:before {
  width: 42px;
  background-image: url(../img/icon/icon-ok.webp);
}
@media (max-width: 428px) {
  .m-product_list--term_txt-ok:before {
    width: 32px;
  }
}
.m-product_list--term_txt-ng:before {
  width: 40px;
  background-image: url(../img/icon/icon-ng.webp);
}
@media (max-width: 428px) {
  .m-product_list--term_txt-ng:before {
    width: 32px;
  }
}
.m-product_list--note {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 428px) {
  .m-product_list--note {
    font-size: 16px;
  }
}
.m-product_list--quotation:before {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 10/6;
  background-image: url(../img/icon/icon-quotation.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  vertical-align: 0.6em;
}
.m-product_list--quotation:after {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 10/6;
  background-image: url(../img/icon/icon-quotation.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  vertical-align: 0.6em;
  transform: scale(-1, 1);
}
.m-product_list--desc {
  background-image: url(../img/icon/icon-dot.svg);
  background-position: 50% 50%;
  padding: 47px 30px 52px;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 428px) {
  .m-product_list--desc {
    padding: 32px 17px 30px;
  }
}
.m-product_list--desc-ok {
  border-left: 3px solid #FFB41C;
  border-right: 3px solid #FFB41C;
  border-bottom: 3px solid #FFB41C;
  position: relative;
}
@media (max-width: 428px) {
  .m-product_list--desc-ok {
    border-width: 2px;
  }
}
.m-product_list--desc-ok:before {
  content: "";
  display: block;
  background-image: url(../img/m-product-list-desc-ok.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 178px;
  aspect-ratio: 178/205;
  position: absolute;
  bottom: 0;
  left: 72px;
}
@media (max-width: 428px) {
  .m-product_list--desc-ok:before {
    content: none;
  }
}
.m-product_list--desc-ng {
  border-left: 3px solid #B3D080;
  border-right: 3px solid #B3D080;
  border-bottom: 3px solid #B3D080;
  padding-bottom: 9px;
}
@media (max-width: 428px) {
  .m-product_list--desc-ng {
    border-width: 2px;
    padding-left: 0;
    padding-right: 0;
  }
}

.m-product_category {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.m-product_category--item {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
}
.m-product_category--item:before {
  content: "";
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}
.m-product_category--item:after {
  content: "";
  display: block;
  width: 1px;
  height: 191px;
  border-right: 2px dashed #D9D9D9;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 428px) {
  .m-product_category--item:after {
    height: 120px;
    border-width: 1px;
  }
}
.m-product_category--item-ok {
  width: 330px;
  margin-top: 27px;
}
@media (max-width: 428px) {
  .m-product_category--item-ok {
    width: 50%;
    margin-top: 32px;
  }
}
.m-product_category--item-ok:before {
  height: 153px;
  margin-bottom: 15px;
}
@media (max-width: 428px) {
  .m-product_category--item-ok:before {
    height: 94px;
    margin-bottom: 3px;
  }
}
.m-product_category--item-ok:nth-of-type(3n):after {
  content: none;
}
@media (max-width: 428px) {
  .m-product_category--item-ok:nth-of-type(3n):after {
    content: "";
  }
}
.m-product_category--item-ok:nth-of-type(-n+3) {
  margin-top: 0;
}
@media (max-width: 428px) {
  .m-product_category--item-ok:nth-of-type(-n+3) {
    margin-top: 32px;
  }
}
@media (max-width: 428px) {
  .m-product_category--item-ok:nth-of-type(odd) {
    padding-right: 11px;
  }
}
@media (max-width: 428px) {
  .m-product_category--item-ok:nth-of-type(even) {
    padding-left: 11px;
  }
  .m-product_category--item-ok:nth-of-type(even):after {
    content: none;
  }
}
@media (max-width: 428px) {
  .m-product_category--item-ok:first-of-type {
    margin-top: 0;
  }
}
.m-product_category--item-ok:first-of-type:before {
  background-image: url(../img/m-product-category-item01.webp);
}
@media (max-width: 428px) {
  .m-product_category--item-ok:nth-of-type(2) {
    margin-top: 0;
  }
}
.m-product_category--item-ok:nth-of-type(2):before {
  background-image: url(../img/m-product-category-item02.webp);
}
.m-product_category--item-ok:nth-of-type(3):before {
  background-image: url(../img/m-product-category-item03.webp);
}
.m-product_category--item-ok:nth-of-type(4):before {
  background-image: url(../img/m-product-category-item04.webp);
}
.m-product_category--item-ok:nth-of-type(5):before {
  background-image: url(../img/m-product-category-item05.webp);
}
.m-product_category--item-ok:last-of-type:before {
  background-image: url(../img/m-product-category-item06.webp);
}
.m-product_category--item-ng {
  width: 50%;
}
.m-product_category--item-ng:before {
  height: 105px;
  margin-bottom: 15px;
}
@media (max-width: 428px) {
  .m-product_category--item-ng:before {
    height: 48px;
    margin-bottom: 20px;
  }
}
.m-product_category--item-ng:first-of-type:before {
  background-image: url(../img/m-product-category-item07.webp);
}
.m-product_category--item-ng:first-of-type:after {
  top: -13px;
}
@media (max-width: 428px) {
  .m-product_category--item-ng:first-of-type:after {
    top: -8px;
  }
}
.m-product_category--item-ng:last-of-type:before {
  background-image: url(../img/m-product-category-item08.webp);
}
.m-product_category--item-ng:last-of-type:after {
  content: none;
}
.m-product_category--item_txt {
  font-size: 19px;
  line-height: 1.2;
}
@media (max-width: 428px) {
  .m-product_category--item_txt {
    font-size: 15px;
  }
}
.m-product_category--item_txt-ok {
  padding-left: 76px;
}
@media (max-width: 428px) {
  .m-product_category--item_txt-ok {
    padding-left: 0;
  }
}
.m-product_category--item_txt-ng {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  .m-product_category--item_txt_s {
    font-size: 10px;
  }
}
.m-product_category--note {
  font-size: 13px;
}

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