@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
}

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

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

section {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

header {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(34, 91, 58, 0.08);
  margin: auto;
  padding: 0.4em 0.6em;
  top: 0;
  z-index: 100;
}
header .logo {
  display: block;
  width: 30%;
  max-width: 120px;
}
header .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  gap: 0.4em;
}
header .actions .action {
  width: 20%;
  max-width: 40px;
  aspect-ratio: 1;
}

.fv {
  width: 100%;
}

.trust {
  position: relative;
  overflow: hidden;
  background: #eaf5d5;
  padding: 3em 0 2em;
}
.trust::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 78%;
  background: #fcfff3;
  border-radius: 0 0 50% 50%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 0;
}
.trust .title {
  position: relative;
  margin-bottom: 1.2em;
}
.trust .title::before, .trust .title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.trust .title::before {
  width: 60%;
  max-width: 200px;
  height: 2px;
  background: #108a4b;
  top: -12px;
}
.trust .title::after {
  width: 10px;
  height: 10px;
  background: #fcfff3;
  border: 2px solid #f2b21b;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #fcfff3;
  top: -18px;
}
.trust h2 {
  position: relative;
  width: fit-content;
  font-size: clamp(2.6rem, 7vw, 2.8rem);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 auto;
}
.trust h2::before, .trust h2::after {
  content: "";
  position: absolute;
  width: 0.8em;
  aspect-ratio: 20/21;
  background: url(../images/title_icon.webp) 0/contain no-repeat;
  top: -5px;
}
.trust h2::before {
  left: -1em;
}
.trust h2::after {
  right: -1em;
  transform: scale(-1, 1);
}
.trust h2 .green {
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 80%, rgb(255, 214, 78) 80%);
  color: #108a4b;
  line-height: 1.2;
}
.trust h2 .main_title {
  font-size: 1.1em;
  letter-spacing: 0.06em;
}

.trust_box {
  position: relative;
  display: flex;
  align-items: center;
  width: 94%;
  background: #fff;
  border: 1px solid #108a4b;
  border-radius: 8px;
  margin: auto;
  padding: 0.8em 0;
}
.trust_box .trust-point {
  position: relative;
  border-right: 1px solid #dadada;
  flex: 1;
}
.trust_box .trust-point::after {
  content: "";
  position: absolute;
  background: #108a4b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}
.trust_box .trust-point:last-child {
  border-right: none;
}
.trust_box .trust-point:last-child::after {
  display: none;
}
.trust_box .trust-point .icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 70%;
  background: #fff2d2;
  border-radius: 50%;
  margin: 0 auto 0.6em;
}
.trust_box .trust-point .icon img {
  width: 86%;
}
.trust_box .trust-point .trust-text {
  font-weight: 800;
  line-height: 1.5;
}
.trust_box .trust-point .trust-text span {
  color: #108a4b;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.cleaning_result {
  position: relative;
  overflow: hidden;
  background: #fffbe6;
  padding: 1.8em 0 0.6em;
}
.cleaning_result::before, .cleaning_result::after, .cleaning_result .bg_mountain {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  pointer-events: none;
}
.cleaning_result::before {
  background: #b7d99a;
  z-index: 0;
}
.cleaning_result::after {
  background: #53c560;
  clip-path: polygon(0 42%, 86% 100%, 100% 100%, 0 100%);
  z-index: 1;
}
.cleaning_result .bg_mountain {
  background: #3d9b40;
  clip-path: polygon(46% 100%, 100% 34%, 100% 100%);
  z-index: 2;
}
.cleaning_result > :not(.bg_mountain) {
  position: relative;
  z-index: 3;
}
.cleaning_result .main_title {
  font-size: clamp(1.2rem, 6.5vw, 2.8rem);
  margin-bottom: 0.6em;
}
.cleaning_result .main_title .ribbon {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-bottom: 1em;
}
.cleaning_result .main_title .ribbon::before, .cleaning_result .main_title .ribbon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 10px;
  border: 20px solid #0d6f3f;
  z-index: 0;
}
.cleaning_result .main_title .ribbon::before {
  left: -35px;
  border-left-color: transparent;
}
.cleaning_result .main_title .ribbon::after {
  right: -35px;
  border-right-color: transparent;
}
.cleaning_result .main_title .ribbon h2 {
  position: relative;
  display: inline-block;
  background: #108a4b;
  color: #fff;
  font-size: 0.8em;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0;
  padding: 0.4em 1.3em;
  z-index: 1;
}
.cleaning_result .main_title .ribbon h2 span {
  color: #ffc94c;
}
.cleaning_result .main_title .ribbon h2::before, .cleaning_result .main_title .ribbon h2::after {
  content: "";
  position: absolute;
  top: 100%;
  border-bottom: 10px solid transparent;
}
.cleaning_result .main_title .ribbon h2::before {
  left: 0;
  border-right: 15px solid #06492f;
}
.cleaning_result .main_title .ribbon h2::after {
  right: 0;
  border-left: 15px solid #06492f;
}
.cleaning_result .main_title h3 {
  position: relative;
  display: inline-block;
  margin: 0;
}
.cleaning_result .main_title h3 .main_text {
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 80%, #ffd64e 80%);
  color: #108a4b;
  font-size: 1.15em;
  line-height: 1.3;
}
.cleaning_result .main_title h3 .main_text::before, .cleaning_result .main_title h3 .main_text::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../images/cleaning_title.png) 0/contain no-repeat;
  top: 50%;
}
.cleaning_result .main_title h3 .main_text::before {
  left: -1.2em;
  transform: translateY(-50%) scale(-1, 1);
}
.cleaning_result .main_title h3 .main_text::after {
  right: -1.1em;
  transform: translateY(-50%);
}

.main_frame {
  position: relative;
  background: url(../images/result_frame.webp) center/100% 100% no-repeat;
  aspect-ratio: 875/558;
}
.main_frame .compare_photos {
  position: absolute;
  inset: 8% 5% 9%;
  display: flex;
  gap: 2%;
  z-index: 1;
}
.main_frame .compare_photos .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 48px;
  aspect-ratio: 1;
  background: #fff;
  clip-path: polygon(0 28%, 55% 28%, 55% 0, 100% 50%, 55% 100%, 55% 72%, 0 72%);
  transform: translate(-50%, -50%);
}
.main_frame .compare_photos .arrow::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: #ffc21f;
  clip-path: inherit;
}
.main_frame .compare_photos figure {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.main_frame .compare_photos figure span {
  width: 40%;
  background: #108a4b;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.4em 0 0.2em;
  line-height: 1;
}
.main_frame .compare_photos figure .photo {
  flex: 1;
  overflow: hidden;
}
.main_frame .compare_photos figure .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_frame .compare_photos figure.before span {
  background: #a1a1a1;
}
.main_frame .compare_photos figure.before .photo {
  border: 2px solid #a1a1a1;
}
.main_frame .compare_photos figure.after span {
  background: #108a4b;
}
.main_frame .compare_photos figure.after .photo {
  border: 2px solid #108a4b;
}

.sub_frame_list {
  width: 94%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 0.8em auto 1em;
  padding-bottom: 0.4em;
  overflow: hidden;
}
.sub_frame_list .sub_frame {
  border-bottom: #ddd dashed 2px;
  padding: 0.6em;
}
.sub_frame_list .sub_frame:last-of-type {
  border-bottom: 0;
}
.sub_frame_list .sub_frame .sub_text {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #108a4b;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.sub_frame_list .sub_frame .sub_text img {
  border: 1px solid #108a4b;
  border-radius: 50%;
  height: 1.8em;
}
.sub_frame_list .sub_frame .compare_photos {
  position: relative;
  display: flex;
  gap: 0.4em;
}
.sub_frame_list .sub_frame .compare_photos figure {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sub_frame_list .sub_frame .compare_photos span {
  width: 40%;
  background: #108a4b;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.3em 0 0.4em;
  line-height: 1;
}
.sub_frame_list .sub_frame .compare_photos .photo {
  flex: 1;
  overflow: hidden;
}
.sub_frame_list .sub_frame .compare_photos .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub_frame_list .sub_frame .compare_photos .before span {
  background: #a1a1a1;
}
.sub_frame_list .sub_frame .compare_photos .before .photo {
  border: 2px solid #a1a1a1;
}
.sub_frame_list .sub_frame .compare_photos .after span {
  background: #108a4b;
}
.sub_frame_list .sub_frame .compare_photos .after .photo {
  border: 2px solid #108a4b;
}
.sub_frame_list .sub_frame .compare_photos .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 38px;
  aspect-ratio: 1;
  background: #fff;
  clip-path: polygon(0 28%, 55% 28%, 55% 0, 100% 50%, 55% 100%, 55% 72%, 0 72%);
  transform: translate(-50%, -50%);
}
.sub_frame_list .sub_frame .compare_photos .arrow::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: #ffc21f;
  clip-path: inherit;
}

.reasons {
  position: relative;
  overflow: hidden;
  background: #d6ffea;
  padding: 3em 0 1em;
}
.reasons::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  top: -80px;
  right: -80px;
  pointer-events: none;
}
.reasons::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  bottom: -60px;
  left: -60px;
  pointer-events: none;
}
.reasons .reasons_head {
  position: relative;
  font-size: clamp(2rem, 6.6vw, 2.8rem);
  margin-bottom: 0.8em;
}
.reasons .reasons_head::before {
  content: "";
  position: absolute;
  width: 70px;
  aspect-ratio: 153/53;
  background: url(../images/reasons_title.webp) 0/contain no-repeat;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
}
.reasons .reasons_head .reasons_sub {
  position: relative;
  width: fit-content;
  background: #fff;
  border: 2px solid #108a4b;
  color: #108a4b;
  font-size: 0.6em;
  font-weight: 700;
  border-radius: 999px;
  margin: 0 auto;
  padding: 0.2em 1.4em;
}
.reasons .reasons_head .reasons_sub::before, .reasons .reasons_head .reasons_sub::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.reasons .reasons_head .reasons_sub::before {
  bottom: -18px;
  border: 9px solid transparent;
  border-top-color: #108a4b;
}
.reasons .reasons_head .reasons_sub::after {
  bottom: -14px;
  border: 7px solid transparent;
  border-top-color: #fff;
}
.reasons .reasons_head h2 {
  font-size: 1em;
  font-weight: 800;
  line-height: 1.5;
}
.reasons .reasons_head h2 .green {
  font-size: 1.3em;
  color: #108a4b;
}
.reasons .reasons_head h2 .line {
  background: linear-gradient(transparent 80%, #ffd64e 80%);
}

.reasons_list {
  list-style: none;
  width: 94%;
  margin: 0 auto;
}
.reasons_list li {
  position: relative;
  background: #fff;
  text-align: left;
  border: 2px solid #108a4b;
  border-radius: 10px;
  margin-bottom: 1.6em;
  padding: 1em;
  box-shadow: 4px 4px 0 #0d6f3f;
}
.reasons_list li .num {
  position: absolute;
  flex-shrink: 0;
  width: 40px;
  top: -8px;
  left: 1em;
}
.reasons_list li .num span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  line-height: 1;
  background: #108a4b;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  padding-bottom: 0.5em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 10px), 0 100%);
}
.reasons_list li .num::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #06492f;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  top: 0;
  left: -8px;
}
.reasons_list .icon {
  width: 50%;
  margin: 0 auto 0.6em;
}
.reasons_list .title {
  width: fit-content;
  line-height: 1.4;
  background: linear-gradient(transparent 80%, #ffd64e 80%);
  color: #108a4b;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 0.6em;
}
.reasons_list .text {
  font-size: 1.4rem;
}

.works {
  background: #fff;
  padding: 1.4em 0;
}
.works .works_head {
  position: relative;
  font-size: clamp(2rem, 8vw, 4rem);
  margin-bottom: 0.6em;
}
.works .works_head::before, .works .works_head::after {
  content: "";
  position: absolute;
  width: 12%;
  top: 50%;
  transform: translateY(-50%);
}
.works .works_head::before {
  aspect-ratio: 77/114;
  left: 0;
  background: url(../images/works_left.webp) 0/contain no-repeat;
}
.works .works_head::after {
  aspect-ratio: 39/42;
  background: url(../images/works_right.webp) 0/contain no-repeat;
  right: 0;
}
.works .works_head .works_sub {
  color: #108a4b;
  font-size: 0.5em;
  font-weight: bold;
}
.works .works_head h2 {
  position: relative;
  display: inline-block;
  color: #0d6f3f;
  font-size: 1em;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: 0.4em;
  padding-bottom: 0.3em;
}
.works .works_head h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #108a4b 0 30%, #cdebd9 30% 100%);
  left: 50%;
  bottom: 0;
  border-radius: 999px;
  transform: translateX(-50%);
}
.works .works_head .works_lead {
  font-size: 0.5em;
}

.works_slider {
  position: relative;
  padding-bottom: 1.8em;
}
.works_slider .swiper {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}
.works_slider .swiper-slide {
  height: auto;
  opacity: 0.32;
  transition: opacity 0.25s ease;
}
.works_slider .swiper-slide-active {
  opacity: 1;
}

.works_card {
  height: 100%;
  border: 2px solid #0d6f3f;
  border-radius: 16px;
  padding: 1em 1.2em 1.4em;
}

.works_card_head {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1em;
}
.works_card_head .works_badge {
  background: linear-gradient(135deg, #0f8b4e, #075335);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 800;
  border-radius: 6px;
  padding: 0.4em 0.8em;
}
.works_card_head .works_badge .num {
  font-size: 1.2em;
  margin-left: 0.2em;
}

.works_area {
  display: flex;
  align-items: center;
  gap: 0.25em;
  color: #111;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  padding-left: 0;
}
.works_area img {
  flex-shrink: 0;
  width: 1.7em;
}

.works_photo {
  border: 1px solid rgba(13, 111, 63, 0.28);
  border-radius: 10px;
  margin-bottom: 1em;
}

.works_comment {
  text-align: left;
  background: #f2fbf5;
  border: 1px solid rgba(16, 138, 75, 0.15);
  border-radius: 8px;
  padding: 0.8em 0.9em;
}
.works_comment .works_comment_label {
  display: inline-block;
  background: #e8f5df;
  border: 1px solid rgba(16, 138, 75, 0.2);
  border-radius: 999px;
  color: #108a4b;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.55em;
  padding: 0.35em 0.9em 0.4em;
}
.works_comment p:not(.works_comment_label) {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
}

.works_pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 13px;
}
.works_pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d2d6d2;
  opacity: 1;
  margin: 0 !important;
}
.works_pagination .swiper-pagination-bullet-active {
  background: #0d6f3f;
}

.works_note {
  display: flex;
  align-items: center;
  gap: 1em;
  width: calc(100% - 2em);
  background: #eff8e8;
  border-radius: 16px;
  margin: 0.6em auto 0;
  padding: 1.1em 1em;
  text-align: left;
}
.works_note .works_note_icon {
  position: relative;
  flex-shrink: 0;
  width: 54px;
  aspect-ratio: 1;
  border: 5px solid #0d6f3f;
  border-radius: 8px;
}
.works_note .works_note_icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 26px;
  height: 4px;
  background: #0d6f3f;
  box-shadow: 0 12px 0 #0d6f3f, 0 24px 0 #0d6f3f;
}
.works_note .works_note_icon::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 7px;
  height: 7px;
  border: 3px solid #0d6f3f;
  background: #eff8e8;
  box-shadow: 0 12px 0 #eff8e8, 0 24px 0 #eff8e8;
}
.works_note h3 {
  color: #0d6f3f;
  font-size: clamp(1.6rem, 4.5vw, 2rem);
  line-height: 1.5;
  margin-bottom: 0.35em;
}
.works_note p {
  font-size: 1.3rem;
  line-height: 1.8;
}

.contact {
  background: #fff8e7;
  padding: calc(1em + 70px) 0 1.6em;
}
.contact .contact_free {
  position: relative;
  margin-bottom: 0.6em;
  z-index: 1;
}
.contact .contact_free .contact_free_badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #fff;
  color: #108a4b;
  font-family: "Oswald", sans-serif;
  font-size: 3.6rem;
  border: 3px solid #f2c94c;
  border-radius: 50%;
  margin: auto;
  left: 50%;
  top: -64px;
  transform: translateX(-50%);
  z-index: -1;
}
.contact .contact_free .contact_free_badge::after {
  content: "";
  position: absolute;
  width: 28px;
  aspect-ratio: 20/21;
  background: url(../images/title_icon.webp) 0/contain no-repeat;
  top: -10px;
  right: -23px;
  transform: scale(-1, 1);
}
.contact .contact_free h2 {
  display: inline-block;
  background: #ffe987;
  color: #004d25;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5em 1.8em;
}
.contact h3 {
  position: relative;
  color: #108a4b;
  font-size: 1.8em;
  font-weight: 900;
  margin-bottom: 1em;
  padding-bottom: 0.1em;
}
.contact h3::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background: #f2c94c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.form_section {
  width: 94%;
  background: #fff;
  border-radius: 12px;
  margin: 0 auto;
  padding: 1.4em 1.2em;
  box-shadow: 0 4px 20px rgba(63, 63, 63, 0.2);
}
.form_section .form_notice {
  display: flex;
  gap: 0.7em;
  background: #e8f4f0;
  border: 1px solid #a8d4c4;
  border-radius: 8px;
  padding: 0.9em 1em;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 1.6em;
}
.form_section .form_notice .form_notice_icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #2a9d72;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  margin-top: 0.1em;
}

.mailform dl {
  margin-bottom: 1em;
}
.mailform dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4em;
}
.mailform dd {
  margin-bottom: 1.2em;
}
.mailform input[type=text], .mailform input[type=tel], .mailform input[type=email] {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.75em 1em;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
}
.mailform input[type=text]:focus, .mailform input[type=tel]:focus, .mailform input[type=email]:focus {
  border-color: #108a4b;
}
.mailform textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.75em 1em;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  resize: vertical;
  outline: none;
}
.mailform textarea:focus {
  border-color: #108a4b;
}
.mailform i {
  background: #ff4848;
  color: #fff;
  font-style: normal;
  font-size: 0.9em;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.1em 0.4em;
}
.mailform .error_blank {
  color: #ff0000;
  font-size: 1.2rem;
}

.select_wrap {
  position: relative;
}
.select_wrap::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  rotate: 45deg;
  pointer-events: none;
}
.select_wrap select {
  width: 100%;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.75em 2.4em 0.75em 1em;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  outline: none;
}
.select_wrap select:focus {
  border-color: #108a4b;
}

.check_group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}
.check_group label {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1.4rem;
  cursor: pointer;
}
.check_group label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #108a4b;
}

.form_submit {
  position: relative;
  margin-bottom: 1em;
}
.form_submit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
}
.form_submit .form_submit_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  width: 100%;
  background: #e85d04;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-radius: 999px;
  padding: 1em;
  box-shadow: 0 4px 0 #a83d00;
  cursor: pointer;
}

.worries {
  position: relative;
  background: #f5f5f5;
  padding: 1.4em 0 1em;
  z-index: 1;
}
.worries .worries_head {
  position: relative;
  width: 80%;
  max-width: 300px;
  font-size: clamp(2.2rem, 8.5vw, 3.2rem);
  margin: 0 auto 14px;
}
.worries .worries_head::before, .worries .worries_head::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../images/nayami_icon.webp) 0/contain no-repeat;
  top: 50%;
  transform: translateY(-50%);
}
.worries .worries_head::before {
  left: 0;
}
.worries .worries_head::after {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
}
.worries .worries_head h2 {
  font-size: 1em;
  color: #108a4b;
  line-height: 1.4;
}
.worries .worries_head .worries_sub {
  font-size: 0.7em;
  font-weight: 700;
  padding-bottom: 0.2em;
}

.worries_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em 0.6em;
  list-style: none;
  width: 94%;
  margin: 0 auto;
}
.worries_list li {
  font-size: clamp(1rem, 3.5vw, 1.6rem);
  font-weight: 700;
}
.worries_list .worries_icon {
  width: 80%;
  background: #fff;
  margin: 0 auto 0.6em;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.solution {
  position: relative;
  background: #d6ffea;
  padding: 3.2em 0 1em;
  z-index: 1;
}
.solution::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  background: #f5f5f5;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.solution .solution_title {
  position: relative;
  width: fit-content;
  font-size: clamp(2rem, 7vw, 2.6rem);
  margin: 0 auto 0.8em;
}
.solution .solution_title::before, .solution .solution_title::after {
  content: "";
  position: absolute;
  height: 2.6em;
  aspect-ratio: 200/554;
  background: url(../images/title_icon.webp) 0/contain no-repeat;
  top: 50%;
  transform: translateY(-50%);
}
.solution .solution_title::before {
  left: -1em;
}
.solution .solution_title::after {
  right: -1em;
  transform: translateY(-50%) scale(-1, 1);
}
.solution .solution_title h2 {
  display: inline-block;
  color: #108a4b;
  font-size: 1em;
  font-weight: 800;
}
.solution .solution_title .solution_sub {
  font-size: 0.8em;
  font-weight: 700;
}

.solution_box {
  position: relative;
  display: flex;
  gap: 0.6em;
  width: 94%;
  margin: 0 auto;
}
.solution_box .solution_item {
  flex: 1;
  background: #ffffff;
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  border: 2px solid #ffbd2d;
  border-radius: 12px;
  padding-bottom: 0.6em;
}
.solution_box .solution_item .icon {
  width: 60%;
  margin: 0 auto 0.2em;
}

.flow {
  position: relative;
  padding: 0.6em 0 30px;
  background: #fcfff3;
}
.flow .flow_head {
  font-size: clamp(2.8rem, 8.7vw, 3.8rem);
  line-height: 1.3;
  margin-bottom: 1em;
}
.flow .flow_head .flow_sub {
  position: relative;
  display: inline-block;
  color: #108a4b;
  font-size: 0.6em;
  font-weight: 700;
}
.flow .flow_head .flow_sub::before, .flow .flow_head .flow_sub::after {
  content: "";
  position: absolute;
  width: 1.2em;
  aspect-ratio: 100/78;
  background: url(../images/nayami_icon.webp) 0/contain no-repeat;
  top: 50%;
}
.flow .flow_head .flow_sub::before {
  left: -1.6em;
  transform: translateY(-50%);
}
.flow .flow_head .flow_sub::after {
  right: -1.6em;
  transform: scale(-1, 1) translateY(-50%);
}
.flow .flow_head h2 {
  font-size: 1em;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.flow .flow_head h2 .green {
  display: inline-block;
  background: linear-gradient(transparent 80%, rgb(255, 214, 78) 80%);
  font-size: 1.15em;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
.flow .flow_head h2 .flow_particle {
  font-size: 0.9em;
}
.flow .flow_head .flow_head_decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9em;
  width: 94%;
  margin: 0 auto;
}
.flow .flow_head .flow_head_decoration i {
  width: 17%;
  height: 2px;
  background: #108a4b;
}
.flow .flow_head .flow_head_decoration b {
  color: #ffc928;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.flow .flow_list {
  list-style: none;
  width: 94%;
  margin: 0 auto;
}
.flow .flow_list li {
  position: relative;
  margin-bottom: 1em;
}
.flow .flow_list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 18px solid #0d6f3f;
  margin: 0.8em auto 0;
}
.flow .flow_card {
  position: relative;
  background: #fff;
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 0.3em 0.3em 0.5em;
}
.flow .flow_img {
  position: relative;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.flow .flow_img img {
  display: block;
  border-radius: 10px 10px 0 0;
}
.flow .flow_img .flow_num {
  position: absolute;
  top: 0;
  left: 0;
  background: #f2c94c;
  clip-path: polygon(0 0, 100% 0, 80% 98%, 0% 100%);
  color: #333;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.2em 0.6em 0.4em 0.4em;
  border-radius: 4px;
  z-index: 2;
}
.flow .flow_img .flow_title {
  position: absolute;
  bottom: -20px;
  background: #108a4b;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-radius: 0 12px 12px 0;
  padding: 0.4em 0.6em;
  left: calc(-0.4em - 5px);
}
.flow .flow_img .flow_title::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #06492f;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  top: -6px;
  left: 0px;
}
.flow .flow_text {
  position: relative;
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.7;
  padding: 1.8em 0.2em 0;
}
.flow .flow_text::after {
  content: "";
  position: absolute;
  width: 1.4em;
  height: 1.4em;
  background: url(../images/title_icon.webp) 0/contain no-repeat;
  right: 0;
  bottom: 0;
}
.flow .flow_wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.flow .flow_wave svg {
  display: block;
  width: 100%;
  height: 50px;
}

.area {
  background: #fff;
  padding-top: 1.8em;
}
.area .area_head {
  margin-bottom: 1.4em;
}
.area .area_head .area_label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #0d6f3f;
  font-size: clamp(2.2rem, 9vw, 3rem);
  font-weight: 800;
  margin: 0 auto 0.3em;
}
.area .area_head .area_label::before, .area .area_head .area_label::after {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  background: url(../images/area_icon.webp) 0/contain no-repeat;
  top: 0em;
}
.area .area_head .area_label::before {
  left: -1em;
  transform: rotate(-23deg);
}
.area .area_head .area_label::after {
  right: -1em;
  transform: scale(-1, 1) rotate(-23deg);
}
.area .area_head .area_label img {
  height: 1em;
}
.area .area_head .area_sub {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.7em;
}
.area .area_head .area_sub .area_green {
  color: #108a4b;
  border-bottom: 2px solid #108a4b;
}
.area .area_map {
  width: 94%;
  border: 2px solid #69d42b;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 1.4em;
}
.area .area_map img {
  display: block;
  width: 100%;
}
.area .area_list_wrap {
  width: 94%;
  margin: 0 auto 1.2em;
}
.area .area_list_wrap .area_list_title {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
.area .area_list_wrap .area_list_title::before, .area .area_list_wrap .area_list_title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #108a4b;
}
.area .area_list_wrap .area_list {
  list-style: none;
}
.area .area_list_wrap .area_list li {
  border-bottom: 1px solid #ddd;
}
.area .area_list_wrap .area_list li:first-child {
  border-top: 1px solid #ddd;
}
.area .area_list_wrap .area_list .area_accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.8em 0.4em;
  cursor: pointer;
  list-style: none;
}
.area .area_list_wrap .area_list .area_accordion summary::-webkit-details-marker {
  display: none;
}
.area .area_list_wrap .area_list .area_accordion summary::after {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid #108a4b;
  border-bottom: 2px solid #108a4b;
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.area .area_list_wrap .area_list .area_accordion[open] summary::after {
  transform: rotate(-135deg);
}
.area .area_list_wrap .area_list .area_accordion .area_detail {
  font-size: 1.3rem;
  color: #555;
  text-align: left;
  padding: 0 0.4em 0.8em;
  line-height: 1.7;
}

.price {
  background: #fff;
  padding: 0.4em 0 1em;
}
.price .price_card {
  width: 94%;
  background: #fff;
  border: 2px solid #108a4b;
  border-radius: 16px;
  margin: 0 auto;
  padding: 1em 0.6em;
}
.price .price_card .head_images {
  width: 80%;
  max-width: 250px;
  margin: 0 auto 0.6em;
}
.price .price_card .price_plan {
  color: #108a4b;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.price .price_card .price_num {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
.price .price_card .price_num b {
  font-size: clamp(4.2rem, 15vw, 5.6rem);
  color: #e85500;
  font-weight: 900;
  line-height: 1;
}
.price .price_card .price_annotation {
  font-size: 1.2rem;
  color: #666;
  text-align: left;
  margin-bottom: 0.8em;
}
.price .price_card .price_includes {
  background: #eefff0;
  border-radius: 10px;
  margin-bottom: 1em;
  padding: 0.6em;
}
.price .price_card .price_includes .price_includes_title {
  display: flex;
  align-items: center;
  width: 80%;
  gap: 0.6em;
  font-weight: 700;
  color: #108a4b;
  margin: 0 auto 0.4em;
}
.price .price_card .price_includes .price_includes_title::before, .price .price_card .price_includes .price_includes_title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #108a4b;
}
.price .price_card .price_includes .price_check_list {
  list-style: none;
  text-align: left;
}
.price .price_card .price_includes .price_check_list li {
  position: relative;
  font-weight: bold;
  padding: 0.2em 0 0.2em 1.4em;
}
.price .price_card .price_includes .price_check_list li::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../images/price_icon.svg) 0/contain no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.price .price_card .price_note {
  position: relative;
  background: #fef7dd;
  font-size: 0.9em;
  font-weight: bold;
  padding: 0.6em 0;
}
.price .price_card .price_note span {
  color: #108a4b;
}
.price .price_card .price_note::before, .price .price_card .price_note::after {
  content: "";
  position: absolute;
  height: 2em;
  aspect-ratio: 128/108;
  background: url(../images/price_icon.webp) 0/contain no-repeat;
  top: 50%;
  transform: translateY(-50%);
}
.price .price_card .price_note::before {
  right: 5px;
  transform: scale(-1, 1) translateY(-50%);
}
.price .price_card .price_note::after {
  left: 5px;
}

.cta {
  background: #d6ffea;
  padding: 2em 0;
}
.cta .cta_card {
  width: 94%;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  margin: 0 auto;
}
.cta .cta_card .cta_head {
  position: relative;
  background: #005227;
  color: #fff;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  padding: 0.6em 0 1em;
}
.cta .cta_card .cta_head::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 140%;
  height: 40px;
  background: #fff;
  border-radius: 50% 50% 0 0;
  left: -20%;
  bottom: -32px;
}
.cta .cta_card .cta_head p {
  display: inline-block;
  background: #fff;
  color: #005227;
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 999px;
  padding: 0.2em 0.8em;
  margin-bottom: 0.4em;
}
.cta .cta_card .cta_head h2 {
  position: relative;
  font-size: 1em;
  font-weight: 800;
}
.cta .cta_card .cta_head span {
  color: #ffd52f;
}
.cta .cta_card .cta_buttons {
  padding: 0.8em 1em 0.4em;
}
.cta .cta_card .cta_button {
  position: relative;
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  margin-bottom: 0.8em;
  padding: 0.4em 1em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 5px 0 var(--button-shadow), 0 8px 12px rgba(0, 0, 0, 0.16);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.cta .cta_card .cta_button img {
  position: absolute;
  width: 14%;
  left: 0.6em;
  top: 50%;
  transform: translateY(-50%);
}
.cta .cta_card .cta_button::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  top: 50%;
  right: 1em;
  transform: rotate(45deg) translateY(-50%);
}
.cta .cta_card .cta_button small {
  display: block;
  font-weight: 400;
  font-size: 0.6em;
}
.cta .cta_card .cta_button:active {
  transform: translateY(3px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 0 var(--button-shadow), 0 4px 7px rgba(0, 0, 0, 0.14);
}
.cta .cta_card .cta_button--tel {
  --button-shadow: #bd2931;
  background: linear-gradient(135deg, #ff5a56, #f53e45);
}
.cta .cta_card .cta_button--line {
  --button-shadow: #006c32;
  background: #06c755;
}
.cta .cta_card .cta_button--mail {
  --button-shadow: #c84f00;
  background: linear-gradient(135deg, #ff8a00, #ff6800);
}

.reviews {
  background: #fff;
  padding: 2em 0 0.8em;
}
.reviews .reviews_head {
  position: relative;
  font-size: clamp(2rem, 7.6vw, 4rem);
  margin-bottom: 0.6em;
}
.reviews .reviews_head::before, .reviews .reviews_head::after {
  content: "";
  position: absolute;
  width: 12%;
  top: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.reviews .reviews_head::before {
  aspect-ratio: 77/114;
  background-image: url(../images/works_left.webp);
  left: 0;
}
.reviews .reviews_head::after {
  aspect-ratio: 78/84;
  background-image: url(../images/works_right.webp);
  right: 0;
}
.reviews .reviews_head .reviews_sub {
  color: #108a4b;
  font-size: 0.5em;
  font-weight: bold;
}
.reviews .reviews_head h2 {
  position: relative;
  display: inline-block;
  color: #073e2a;
  font-size: 1em;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: 0.4em;
  padding-bottom: 0.3em;
}
.reviews .reviews_head h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #108a4b 0 30%, #cdebd9 30% 100%);
  border-radius: 999px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.reviews .review_card {
  position: relative;
  overflow: hidden;
  width: 94%;
  border: 1px solid #dbe7d2;
  border-radius: 18px;
  box-shadow: 0 5px 14px rgba(33, 72, 47, 0.14);
  margin: 0 auto 1.4em;
}
.reviews .review_card .review_dots {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  background: rgba(139, 183, 81, 0.55);
  border-radius: 50%;
  top: 16px;
  right: 42px;
  box-shadow: 14px 0 rgba(139, 183, 81, 0.55), 28px 0 rgba(139, 183, 81, 0.55), 0 14px rgba(139, 183, 81, 0.55), 14px 14px rgba(139, 183, 81, 0.55), 28px 14px rgba(139, 183, 81, 0.55), 0 28px rgba(139, 183, 81, 0.55), 14px 28px rgba(139, 183, 81, 0.55), 28px 28px rgba(139, 183, 81, 0.55);
}
.reviews .review_card .review_profile, .reviews .review_card h3, .reviews .review_card .review_text {
  position: relative;
  z-index: 1;
}
.reviews .review_card .review_profile {
  display: flex;
  align-items: center;
  gap: 0.7em;
  background: #edf4e5;
  margin-bottom: 0.4em;
  padding: 0.6em;
}
.reviews .review_card .review_profile .review_avatar {
  flex-shrink: 0;
  width: 60px;
  padding: 0.2em;
  background: #d5e2c7;
  border: 1px solid #dbe7d2;
  border-radius: 50%;
}
.reviews .review_card .review_profile .review_meta {
  flex: 1;
  text-align: left;
}
.reviews .review_card .review_profile .review_meta > p:first-child {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.reviews .review_card .review_profile .review_stars {
  color: #ffb300;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.reviews .review_card h3 {
  color: #108a4b;
  font-size: 1.6rem;
  text-align: left;
  font-weight: 800;
  margin: 0 0.6em 0.5em;
}
.reviews .review_card .review_text {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  margin: 0 0.6em 0.6em;
}

.usage_flow {
  background: #f3f8e8;
  padding-bottom: 1.4em;
}
.usage_flow .main_title {
  font-size: clamp(1.2rem, 6vw, 2.8rem);
  margin-bottom: 0.6em;
}
.usage_flow .main_title .ribbon {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-bottom: 1em;
}
.usage_flow .main_title .ribbon::before, .usage_flow .main_title .ribbon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 10px;
  border: 20px solid #0d6f3f;
  z-index: 0;
}
.usage_flow .main_title .ribbon::before {
  left: -35px;
  border-left-color: transparent;
}
.usage_flow .main_title .ribbon::after {
  right: -35px;
  border-right-color: transparent;
}
.usage_flow .main_title .ribbon h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  background: #108a4b;
  color: #fff;
  font-size: 0.9em;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 0.4em 1.8em;
  z-index: 1;
}
.usage_flow .main_title .ribbon h2 span {
  color: #ffc94c;
}
.usage_flow .main_title .ribbon h2::before, .usage_flow .main_title .ribbon h2::after {
  content: "";
  position: absolute;
  top: 100%;
  border-bottom: 10px solid transparent;
}
.usage_flow .main_title .ribbon h2::before {
  left: 0;
  border-right: 15px solid #06492f;
}
.usage_flow .main_title .ribbon h2::after {
  right: 0;
  border-left: 15px solid #06492f;
}
.usage_flow .main_title h3 {
  position: relative;
  display: inline-block;
  margin: 0;
}
.usage_flow .main_title h3 .main_text {
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 80%, #ffd64e 80%);
  line-height: 1.3;
  color: #108a4b;
  font-size: 1em;
}
.usage_flow .main_title h3 .main_text::before, .usage_flow .main_title h3 .main_text::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../images/cleaning_title.png) 0/contain no-repeat;
  top: 50%;
}
.usage_flow .main_title h3 .main_text::before {
  left: -1.2em;
  transform: translateY(-50%) scale(-1, 1);
}
.usage_flow .main_title h3 .main_text::after {
  right: -1.1em;
  transform: translateY(-50%);
}
.usage_flow .usage_flow_list {
  display: grid;
  gap: 2.4em;
}
.usage_flow .usage_flow_card {
  position: relative;
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: center;
  gap: 1em;
  width: 94%;
  background: #fff;
  border: 1px solid #dce8c7;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(58, 91, 35, 0.08);
  margin: 0 auto;
  padding: 0.6em;
}
.usage_flow .usage_flow_card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -27px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 11px solid #108a4b;
  transform: translateX(-50%);
}
.usage_flow .usage_flow_num {
  position: absolute;
  z-index: 2;
  top: -0.45em;
  left: -0.45em;
  display: grid;
  place-items: center;
  width: 2.5em;
  padding: 0.6em 0;
  background: #72a928;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.usage_flow .usage_flow_num::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: -4px;
  width: 20px;
  height: 20px;
  background: #72a928;
  clip-path: polygon(0 0, 100% 100%, 0 72%);
}
.usage_flow .usage_flow_content {
  text-align: left;
}
.usage_flow .usage_flow_content h3 {
  color: #108a4b;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.45em;
}
.usage_flow .usage_flow_content p {
  font-size: 1.3rem;
  line-height: 1.7;
}

.faq {
  background: #fff;
  padding: 1.4em 1em;
}
.faq .faq_head {
  margin-bottom: 1.5em;
}
.faq .faq_head .faq_en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  color: #3f7f4f;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.2em;
}
.faq .faq_head .faq_en::before, .faq .faq_head .faq_en::after {
  content: "";
  width: 2.8em;
  height: 1px;
  background: #84aa82;
}
.faq .faq_head h2 {
  color: #108a4b;
  font-size: clamp(2.8rem, 9vw, 4.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.faq .faq_head .faq_lead {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  background: #eff6e9;
  color: #367b48;
  border-radius: 999px;
  margin-top: 1.2em;
  padding: 0.6em 1em;
}
.faq .faq_list {
  display: grid;
  gap: 0.9em;
}
.faq .faq_item {
  overflow: hidden;
  border: 1px solid #b9d4ae;
  border-radius: 10px;
}
.faq .faq_item summary {
  display: grid;
  grid-template-columns: 2em 1fr 2em;
  align-items: center;
  gap: 0.7em;
  color: #108a4b;
  font-weight: 700;
  text-align: left;
  list-style: none;
  padding: 0.8em 0.4em 0.8em 0.6em;
  cursor: pointer;
}
.faq .faq_item summary::-webkit-details-marker {
  display: none;
}
.faq .faq_item[open] summary {
  background: #f3f8ed;
}
.faq .faq_item .faq_q, .faq .faq_item .faq_a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2em;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  aspect-ratio: 1;
  border: 1px solid;
  border-radius: 50%;
}
.faq .faq_item .faq_q {
  background: #176b38;
}
.faq .faq_item .faq_a {
  background: #9a7a00;
}
.faq .faq_item .faq_toggle {
  position: relative;
  width: 1.4em;
  aspect-ratio: 1;
  border: 1px solid #238442;
  border-radius: 50%;
}
.faq .faq_item .faq_toggle::before, .faq .faq_item .faq_toggle::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background: #238442;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq .faq_item .faq_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq .faq_item[open] .faq_toggle::after {
  display: none;
}
.faq .faq_item .faq_answer {
  display: grid;
  grid-template-columns: 2.2em 1fr;
  align-items: start;
  gap: 0.7em;
  border-top: 1px solid #b9d4ae;
  padding: 0.8em 0.6em;
}
.faq .faq_item .faq_answer p {
  font-size: 1.4rem;
  line-height: 1.9;
  text-align: left;
}

.contact-bottom {
  background: #108a4b;
  padding: 1.6em 1em;
}
.contact-bottom .main {
  position: relative;
  color: #fff;
  font-size: clamp(1.6rem, 8vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 5px;
}
.contact-bottom .main::before {
  content: "";
  position: absolute;
  width: 0.8em;
  aspect-ratio: 20/21;
  background: url(../images/title_icon.webp) 0/contain no-repeat;
  top: -5px;
  right: 5px;
  transform: scale(-1, 1);
}
.contact-bottom .contact_lead {
  color: #fff;
  font-size: clamp(1.3rem, 3.8vw, 1.6rem);
  font-weight: bold;
  margin-bottom: 1.2em;
}

.site_footer {
  max-width: 500px;
  background: linear-gradient(145deg, #00633f, #00472f);
  color: #fff;
  margin: 0 auto;
  padding: 2.2em 1.6em calc(1.2em + 100px);
}
.site_footer .site_footer_logo {
  display: block;
  width: 44%;
  max-width: 220px;
  background: #fff;
  border-radius: 8px;
  margin: 0 auto 1em;
  padding: 0.4em;
}
.site_footer .site_footer_logo img {
  display: block;
  width: 100%;
}
.site_footer .site_footer_service {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.8em;
}
.site_footer .site_footer_info {
  width: 90%;
  border-top: 1px dotted rgba(255, 255, 255, 0.55);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.55);
  margin: 0 auto 1.4em;
  padding: 1em 0;
  text-align: left;
}
.site_footer .site_footer_info_title {
  color: #fff3c4;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.7em;
}
.site_footer dl {
  display: grid;
  gap: 0.65em;
  font-size: 1.4rem;
}
.site_footer dl div {
  display: grid;
  grid-template-columns: 5.6em 1fr;
}
.site_footer dl dt {
  font-weight: 700;
}
.site_footer dl dt::after {
  content: "：";
}
.site_footer .site_footer_copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00472f;
  z-index: 200;
  padding: 0.4em 0.6em 0.8em;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}
.sticky-cta .sticky-cta-text {
  color: #fff;
  font-size: clamp(1.1rem, 4.6vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}

.sticky-btns {
  display: flex;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
}
.sticky-btns .sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  font-weight: 700;
  border-radius: 6px;
  padding: 0.4em 0;
}
.sticky-btns .sticky-btn img {
  width: 22px;
}
.sticky-btns .sticky-btn-tel {
  background: #e63329;
}
.sticky-btns .sticky-btn-mail {
  background: #FF6B35;
}
.sticky-btns .sticky-btn-line {
  background: #06C755;
}
@media (min-width: 768px) {
  .sticky-btns .sticky-btn img {
    width: 30px;
  }
}

.thanks {
  max-width: 500px;
  padding: 3.6em 1.6em 3em;
}
.thanks .thanks_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
.thanks .thanks_title {
  font-size: clamp(2rem, 6.4vw, 2.6rem);
  font-weight: 800;
  color: #108a4b;
  margin-bottom: 1em;
}
.thanks .thanks_text {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 2em;
}
.thanks .thanks_button {
  display: inline-block;
  background: #108a4b;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.9em 2.4em;
  box-shadow: 0 5px 0 #0b5c33, 0 8px 12px rgba(0, 0, 0, 0.16);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.thanks .thanks_button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #0b5c33, 0 4px 7px rgba(0, 0, 0, 0.14);
}