@charset "UTF-8";
html {
  font-size: calc(16 / 375 * 375px);
  scroll-behavior: smooth;
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  font-style: normal;
  line-height: normal;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #333333;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

img,
svg {
  width: 100%;
  height: 100%;
}

button {
  color: inherit;
  background: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 100%;
  max-width: 500px;
  height: auto;
  background: #fff;
}
@media (min-width: 900px) {
  .l-header {
    display: none;
  }
}

.l-header__inner {
  padding: 1.125rem 1rem;
}

.l-header__logo {
  color: #509700;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 100%;
}

.l-drawer__icon {
  position: fixed;
  z-index: 102;
  top: 1.25rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 500px) {
  .l-drawer__icon {
    right: calc(50% - 230px);
  }
}
@media (min-width: 900px) {
  .l-drawer__icon {
    display: none;
  }
}

.l-drawer__icon--bar {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #509700;
  transition: all 0.5s ease;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.53125rem;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -0.5rem;
}

.l-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  height: 100svh;
  background: #fff;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-drawer.js-show {
  visibility: inherit;
  opacity: 1;
}

.l-drawer__body {
  width: 100%;
  height: fit-content;
  padding: 3.75rem 1.25rem 4.4375rem;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.0625rem;
}
.l-drawer__list li a {
  display: block;
  color: #509700;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  padding-block: 1.25rem;
  border-bottom: 1px solid #E4E4E4;
}

main {
  position: relative;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.l-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-main__container {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  background: #fff;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .l-main__container {
    margin-right: 100px;
    max-width: 375px;
  }
}
@media (min-width: 1150px) {
  .l-main__container {
    margin-right: 480px;
  }
}
@media (min-width: 1300px) {
  .l-main__container {
    margin-right: 580px;
  }
}
@media (min-width: 1600px) {
  .l-main__container {
    margin-right: unset;
    margin-inline: auto;
  }
}

.l-side__title {
  position: fixed;
  top: 30px;
  left: 40px;
  width: 168px;
  height: auto;
  display: none;
  transition: opacity 0.3s ease;
}
.l-side__title img {
  display: block;
}
@media (min-width: 900px) {
  .l-side__title {
    display: block;
  }
}
@media (any-hover: hover) {
  .l-side__title:hover {
    opacity: 0.8;
  }
}

.l-side__menu {
  position: fixed;
  z-index: 1;
  top: 50%;
  translate: -50% -50%;
  left: 0;
  display: none;
}
@media (min-width: 900px) {
  .l-side__menu {
    display: block;
    left: calc((100% - 550px) / 2);
  }
}
@media (min-width: 1150px) {
  .l-side__menu {
    left: calc((100% - 837px) / 2);
  }
}

.l-side__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 20px;
}
.l-side__list li {
  text-align: center;
  list-style: none;
}
.l-side__list li a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}
@media (any-hover: hover) {
  .l-side__list li a:hover {
    opacity: 0.8;
  }
}

.l-side-right {
  position: fixed;
  z-index: 1;
  top: 50%;
  translate: -50% -50%;
  left: 0;
  display: none;
}
@media (min-width: 1150px) {
  .l-side-right {
    display: block;
    left: calc((100% + 680px) / 2);
  }
}
@media (min-width: 1200px) {
  .l-side-right {
    left: calc((100% + 757px) / 2);
  }
}
@media (min-width: 1350px) {
  .l-side-right {
    left: calc((100% + 887px) / 2);
  }
}

.l-side-right__title {
  width: 410px;
  height: auto;
}

.l-side-right__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  margin-inline: auto;
}
.l-side-right__list li {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}
.l-side-right__list li::before {
  content: "";
  background: url(../img/icon_check.svg) no-repeat center center/cover;
  width: 18px;
  height: 18px;
}

.l-side-right__btn {
  margin: 63px auto 0;
  width: 311px;
  display: block;
}

.l-inner {
  position: relative;
  width: 100%;
  height: inherit;
  margin: auto;
  padding: 0 1rem;
  max-width: 375px;
}
@media screen and (max-width: 374px) {
  .l-inner {
    width: 100%;
    max-width: 100%;
  }
}

.l-inner__narrow {
  max-width: 55rem;
}
@media screen and (max-width: 374px) {
  .l-inner__narrow {
    padding: 0 3.125rem;
    max-width: 100%;
  }
}

.l-footer {
  position: relative;
  padding: 1.875rem 0.625rem 0.625rem;
  background: linear-gradient(90deg, #1E6C16 0%, #509700 100%);
  color: #fff;
  text-align: center;
  font-family: "Alata", sans-serif;
  font-size: 0.625rem;
}

.l-section {
  padding-block: 3.75rem;
}

.c-btn, .c-btn--tel {
  position: relative;
  width: 19.4375rem;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
}
@media (any-hover: hover) {
  .c-btn:hover, .c-btn--tel:hover {
    opacity: 0.8;
  }
}

.c-btn__sub {
  position: absolute;
  top: -0.8125rem;
  left: 50%;
  translate: -50%;
  padding: 0.375rem 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid #EF8904;
  background: #fff;
  color: #EF8904;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  text-shadow: unset;
}

.c-btn__main {
  padding: 1.5rem 2rem 1.5rem 5.625rem;
  padding: 20px 28px 21px 89px;
  background: linear-gradient(90deg, #EF8904 0%, #f0c516 100%);
  border-radius: 0.625rem;
  border: 2px solid #fff;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.c-btn__main svg {
  width: 0.875rem;
  height: 0.875rem;
}

.c-btn--tel {
  width: 20.6875rem;
}
.c-btn--tel .c-btn__main {
  padding: 1.25rem 2.1875rem 1.25rem 1.25rem;
  font-family: "Alata", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.004em;
  gap: 1.25rem;
}
.c-btn--tel .c-btn__main svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.c-btn__green {
  width: 100%;
  padding: 1.25rem;
  border-radius: 3.125rem;
  background: linear-gradient(90deg, #1E6C16 0%, #509700 100%);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn__green:hover {
    opacity: 0.8;
  }
}

.js-fixed {
  position: fixed;
  bottom: 0.625rem;
  left: 50%;
  translate: -50%;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 900px) {
  .js-fixed {
    display: none;
  }
}

.js-fixed.js-show {
  opacity: 1;
  pointer-events: auto;
}
@media (any-hover: hover) {
  .js-fixed.js-show:hover {
    opacity: 0.8;
  }
}

/* アニメーション前の初期状態 */
.animated__fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* アニメーション後の表示状態 */
.animated__fadeIn.js-show {
  opacity: 1;
  transform: translateY(0);
}

.animated__clipView {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s ease;
}
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.animated__inView {
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
}
.animated__inView.js-fadeIn {
  opacity: 1;
  filter: blur(0);
}

.c-title, .c-title--160, .c-title--150 {
  color: #1E6C16;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.c-title::after, .c-title--160::after, .c-title--150::after {
  content: "";
  background: url(../img/ttl_deco.png) no-repeat center center/cover;
  width: 3.5625rem;
  height: 1rem;
}
.c-title--150 {
  line-height: 150%;
  gap: 0.3125rem;
}
.c-title--160 {
  line-height: 160%;
}

.c-cta {
  background: url(../img/bg_sec_cta.jpg) no-repeat top center/cover;
  padding-block: 2.5rem 6.0625rem;
}

.c-cta__head {
  width: 20.9375rem;
  height: auto;
  margin-inline: auto;
  margin-bottom: 3.25rem;
}

.c-cta__wrap {
  background: url(../img/bg_cta.png) no-repeat top center/contain;
  padding: 1.5625rem 1rem 4.875rem;
  position: relative;
}

.c-cta__title {
  width: 19.5rem;
  height: auto;
  position: absolute;
  top: -0.75rem;
  left: 50%;
  translate: -50%;
}

.c-cta__text {
  width: 20rem;
  height: auto;
}

.c-cta__list {
  margin-top: 0.5rem;
}
.c-cta__list li {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}
.c-cta__list li::before {
  content: "";
  background: url(../img/icon_check.svg) no-repeat center center/cover;
  width: 18px;
  height: 18px;
}
.c-cta__list li + li {
  margin-top: 0.625rem;
}

.c-cta__btn {
  position: absolute;
  bottom: -2.3125rem;
  left: 50%;
  translate: -50%;
  width: 20.6875rem;
}

.p-fv {
  background: url(../img/FV.jpg) no-repeat center center/cover;
  padding-block: 5.625rem 0;
}
@media (min-width: 900px) {
  .p-fv {
    padding-block: 1.875rem 0;
  }
}

.p-fv__text {
  padding: 0.5625rem 0.625rem;
  border: 1px solid #ffe875;
  width: fit-content;
  color: #ffe875;
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
}

.p-fv__title {
  margin: 0.125rem 0 0 -0.6875rem;
  width: 21.5625rem;
  height: auto;
}

.p-fv__list {
  margin-top: 0.1875rem;
}
.p-fv__list li {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.p-fv__list li::before {
  content: "";
  background: url(../img/icon_check-orange.svg) no-repeat center center/cover;
  width: 1.125rem;
  height: 1.125rem;
}
.p-fv__list li + li {
  margin-top: 0.625rem;
}

.p-fv__wrap {
  margin-top: 0.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.p-fv__bottom {
  margin-top: -3.6875rem;
  background: url(../img/bg_sec_fv-bottom.png) no-repeat top center/cover;
  padding-block: 5.25rem;
}

.p-simulation {
  padding-block: 2.5rem 6.625rem;
  position: relative;
}

.p-simulation__deco {
  position: absolute;
  top: -2.0625rem;
  left: 2.375rem;
  width: 6.375rem;
  height: auto;
}

.simulator-container {
  margin-top: 4.1875rem;
  background: #fff;
  padding: 3.5rem 1.25rem;
  border-radius: 1.25rem;
  scroll-margin-top: 20px;
  border: 4px solid #509700;
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #E4E4E4;
  border-radius: 2.5rem;
  overflow: hidden;
}

.progress {
  width: 0%;
  height: 100%;
  background: #1E6C16;
  transition: width 0.3s ease;
}

.step-num {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  translate: -50%;
  width: 5.875rem;
  height: 5.875rem;
  background: #509700;
  border-radius: 50%;
  color: #fff;
  font-family: "Alata", sans-serif;
  font-size: 1rem;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.step-num span {
  display: block;
  font-size: 2.5rem;
  line-height: 100%;
}

.step-title {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  color: #1E6C16;
}

.service-grid {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.875rem;
}

.service-item {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  line-height: 100%;
}
@media (any-hover: hover) {
  .service-item:hover {
    opacity: 0.7;
  }
}
.service-item img {
  width: 6.25rem;
  height: auto;
  aspect-ratio: 1;
}
.service-item p {
  margin-top: 1.25rem;
  font-size: 1rem;
}
.service-item .price {
  margin-top: 0.875rem;
  font-size: 1.5rem;
}

.input-group {
  position: relative;
}

#sizeLabel {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}

.input-group input {
  margin-top: 0.625rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid #509700;
  border-radius: 0.3125rem;
  background: #fff;
  font-size: 0.875rem;
  box-sizing: border-box;
}

.input-group .unit {
  position: absolute;
  right: 1.25rem;
  bottom: 1.0625rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
}

.size-helper {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 160%;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.back-btn {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
  gap: 0.75rem;
}
.back-btn::before {
  content: "";
  background: url(../img/icon_back-btn.svg) no-repeat center center/cover;
  width: 1.75rem;
  height: 1.75rem;
}
@media (any-hover: hover) {
  .back-btn:hover {
    opacity: 0.8;
  }
}

.selected-service,
.price-breakdown {
  display: none;
}

.estimate-header {
  text-align: center;
}

.estimate-detail {
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #1E6C16 0%, #509700 100%);
  padding: 1.25rem;
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
}

.total-price {
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}
.total-price .price {
  margin-top: 0.625rem;
  font-size: 1.5rem;
}

.note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  position: relative;
}
.note span {
  position: relative;
  z-index: 2;
}
.note::before {
  content: "";
  position: absolute;
  width: 8.75rem;
  height: 2.5625rem;
  background: rgba(80, 151, 0, 0.3);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 0;
}

.benefits {
  margin-top: 1.25rem;
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid #509700;
}
.benefits li {
  font-size: 0.875rem;
  color: #509700;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.benefits li::before {
  content: "";
  background: url(../img/icon_check-square.svg) no-repeat center center/cover;
  width: 1.125rem;
  height: 1.125rem;
}
.benefits li + li {
  margin-top: 0.625rem;
}

.contact-form {
  margin-top: 1.5rem;
}
.contact-form h3 {
  text-align: center;
  color: #1E6C16;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}

.submit-btn {
  border: none;
}

.or {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 160%;
}

.contact-btn {
  margin-top: 1rem;
  width: 18.4375rem;
}
.contact-btn .c-btn__main {
  font-size: 1.5rem;
}

.formBox {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formGroup {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.formGroup label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
}
.formGroup .required {
  margin-left: 0.625rem;
  border-radius: 0.25rem;
  background: #509700;
  color: #fff;
  padding: 0.1875rem 0.5rem;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 100%;
}
.formGroup input,
.formGroup textarea {
  padding: 0.875rem 1.25rem;
  border-radius: 0.3125rem;
  border: 1px solid #509700;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 0.875rem;
  max-height: 5rem;
}
.formGroup input::placeholder,
.formGroup textarea::placeholder {
  color: #989898;
  font-size: 0.875rem;
}

.form-radio {
  box-sizing: border-box;
  line-height: 1.4375;
}

.form-radio + .form-radio {
  margin-left: 1.25rem;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.form-radio__input:checked ~ .form-radio__text::after {
  opacity: 1;
}

.form-radio__text {
  font-weight: 700;
  padding-left: 1.875rem;
  position: relative;
}

.form-radio__text::before,
.form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.form-radio__text::before {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #509700;
  left: 0;
}

.form-radio__text::after {
  width: 0.75rem;
  height: 0.75rem;
  background: #509700;
  left: 0.25rem;
  opacity: 0;
}

.form-privacy {
  text-align: center;
  width: 100%;
}

.form-privacy label {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 0.875rem;
}

.form-privacy input[type=checkbox] {
  width: 0.9375rem;
  height: 0.9375rem;
  accent-color: #509700;
  margin: 0;
}

.form-privacy a {
  margin-left: 1rem;
  color: #0075C2;
  text-decoration: underline;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .form-privacy a:hover {
    opacity: 0.8;
  }
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-content {
  position: relative;
  background-color: #fff;
  padding: 1.5625rem 1.25rem;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: #509700;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: background-color 0.3s;
}
.modal-close:hover {
  background-color: #1E6C16;
}

.modal h1 {
  color: #509700;
  text-align: center;
  margin-bottom: 1.875rem;
  font-size: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #509700;
}

.modal h2 {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  padding-left: 0.625rem;
  border-left: 4px solid #509700;
}

.modal p {
  margin: 0.9375rem 0;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.modal ul {
  padding-left: 0.3125rem;
}

.modal li {
  margin: 0.3125rem 0;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.p-service {
  background: url(../img/bg_sec.jpg) no-repeat center center/cover;
  position: relative;
  padding-block: 8.75rem 3.75rem;
}

.p-service__top {
  position: absolute;
  top: -4.6875rem;
  left: 50%;
  translate: -50%;
  width: 100%;
  max-width: 375px;
  height: auto;
}

.p-service__wrap {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.p-service__img {
  aspect-ratio: 343/200;
  border-radius: 0.625rem;
  position: relative;
}
.p-service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-service__title {
  color: #509700;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.1em;
  padding: 0.3125rem;
  border-radius: 0.375rem;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(46, 51, 48, 0.2);
  writing-mode: vertical-rl;
  width: 2.125rem;
  position: absolute;
  top: -0.625rem;
  left: 1.5rem;
}

.p-service__list {
  width: 18.875rem;
  margin: -1.875rem -1rem 0 auto;
  border-radius: 0.625rem;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(46, 51, 48, 0.2);
  padding: 1.25rem 0.75rem 1.125rem 1.25rem;
  position: relative;
  z-index: 5;
}
.p-service__list li {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: start;
  gap: 0.4375rem;
}
.p-service__list li::before {
  content: "";
  background: url(../img/icon_check-green.svg) no-repeat center center/cover;
  width: 1.5rem;
  height: 1.5rem;
}
.p-service__list li + li {
  margin-top: 0.625rem;
}

.p-service__item:nth-of-type(2n) .p-service__title {
  left: unset;
  right: 1.5rem;
}
.p-service__item:nth-of-type(2n) .p-service__list {
  margin: -1.875rem auto 0 -1rem;
}

.p-service__message {
  margin: 1.6875rem auto 0;
  width: 16.5rem;
  height: auto;
  position: relative;
}
.p-service__message img {
  position: relative;
  z-index: 3;
}
.p-service__message::before {
  content: "";
  position: absolute;
  width: 8.75rem;
  height: 2.5625rem;
  background: rgba(80, 151, 0, 0.3);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-service__other {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
}

.p-service__price {
  margin-top: 0.625rem;
  width: 100%;
  border-radius: 5rem 0;
  background: linear-gradient(90deg, #509700 0%, #7DD409 100%);
  padding: 0.9375rem 1.25rem 0.8125rem 1.25rem;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}
.p-service__price span {
  font-size: 2rem;
  margin: 0 0.125rem;
}

.p-range__list {
  margin-top: 1.75rem;
}
.p-range__list .p-range__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-range__list .p-range__row li {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 100%;
  background: linear-gradient(90deg, #509700 0%, #7DD409 100%);
  padding: 0.625rem 0.5625rem;
  border-radius: 0.5rem;
}
.p-range__list .p-range__row--top {
  gap: 0.4375rem;
  margin-bottom: 0.625rem;
}
.p-range__list .p-range__row--bottom {
  gap: 0.4375rem;
}

.p-movie {
  background: url(../img/bg_sec_movie.jpg) no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding-block: 3rem 3.75rem;
}

.p-movie__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.p-movie__title::before, .p-movie__title::after {
  content: "";
  width: 1px;
  height: 6.8125rem;
  background: #fff;
}
.p-movie__title::before {
  rotate: -16deg;
}
.p-movie__title::after {
  rotate: 16deg;
}

.p-movie__video {
  margin: 0.625rem auto 0;
  aspect-ratio: 296/160;
  background: #E4E4E4;
  max-width: 18.5rem;
}

.p-movie__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 160%;
}

.p-worries {
  background: url(../img/bg_sec_nayami.jpg) no-repeat bottom center/cover;
  padding-block: 6.0625rem 5rem;
  position: relative;
}
.p-worries::before {
  content: "";
  position: absolute;
  background: url(../img/sec_ttl_deco.png) no-repeat center left/contain;
  width: 18.4375rem;
  height: 8.375rem;
  top: -3.3125rem;
  left: 0;
}

.p-worries__title {
  width: 16.5rem;
  height: auto;
  margin-inline: auto;
}

.p-worries__text {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  line-height: 160%;
  text-align: center;
}

.p-worries__wrap {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.p-worries__item {
  background: url(../img/icon_sec_onayami.png) no-repeat center center/contain;
  padding: 3.5rem 3.0625rem 2.875rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 160%;
  width: fit-content;
}
.p-worries__item:nth-of-type(2) {
  margin-left: auto;
}

.p-reason {
  background: url(../img/bg_sec.jpg) no-repeat center center/cover;
}

.p-reason__wrap {
  margin-top: 2.875rem;
  display: flex;
  flex-direction: column;
  gap: 2.875rem;
  justify-content: center;
}

.p-reason__head {
  width: 18.4375rem;
  height: auto;
  margin-inline: auto;
  position: relative;
}

.p-reason__num {
  position: absolute;
  top: -0.375rem;
  left: 0;
  background: url(../img/dec_rreason.png) no-repeat center center/cover;
  padding: 1.9375rem 2.0625rem 1.25rem 2.1875rem;
  text-align: center;
  color: #fff;
  font-family: "Alata", sans-serif;
  font-size: 0.875rem;
  line-height: 0.6428571429;
  letter-spacing: 0.004em;
}
.p-reason__num span {
  margin-top: 0.125rem;
  font-size: 2rem;
  line-height: 100%;
  display: block;
}

.p-reason__body {
  margin-top: 1.25rem;
}

.p-reason__title {
  color: #509700;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}

.p-reason__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 160%;
}

.p-comparison {
  position: relative;
}

.p-comparison__top {
  position: absolute;
  top: -1.0625rem;
  left: 50%;
  translate: -50%;
  white-space: nowrap;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  padding: 0.625rem 1.25rem;
  border-radius: 1.25rem 0;
  background: #509700;
}

.p-comparison__table {
  margin: 2.5rem auto 0;
}

.p-step {
  background: url(../img/bg_sec_flow.jpg) no-repeat center center/cover;
}

.p-step__wrap {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 6.0625rem;
  justify-content: center;
}

.p-step__item {
  padding: 1.875rem 2.625rem 1.6875rem 1.875rem;
  border-radius: 0.625rem;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(46, 51, 48, 0.2);
  position: relative;
}
.p-step__item::after {
  content: "";
  position: absolute;
  background: url(../img/icon_step-arrow.svg) no-repeat center center/cover;
  width: 3.75rem;
  height: 1.125rem;
  left: 50%;
  translate: -50%;
  bottom: -3.5rem;
}
.p-step__item:last-of-type::after {
  display: none;
}

.p-step__num {
  position: absolute;
  right: 0;
  top: -0.875rem;
  color: #509700;
  font-family: "Alata", sans-serif;
  line-height: 100%;
  font-size: 1.5rem;
}
.p-step__num span {
  font-size: 2rem;
}

.p-step__title {
  color: #509700;
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
}

.p-step__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 160%;
}

.p-voice {
  position: relative;
  padding-block: 3.25rem 3.3125rem;
}
.p-voice::before {
  content: "";
  position: absolute;
  background: url(../img/dec_rreason.png) no-repeat center center/cover;
  width: 2.9375rem;
  height: 2.5rem;
  top: -1.25rem;
  left: 50%;
  translate: -50%;
}

.p-voice__wrap {
  margin-top: 2.5rem;
  padding-bottom: 2.0625rem;
  width: 100vw;
  margin-left: calc((100vw - 100%) / 2 * -1);
}

.p-voice__swiper-container,
.p-voice__swiper,
.p-voice__swiper-wrapper,
.p-voice__swiper-slide {
  position: relative;
}

/* 位置のreset */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.p-voice__swiper-slide {
  max-width: 20.5rem;
  position: relative;
  padding: 2rem;
  border-radius: 1.25rem;
  background: #ebf1e3;
  z-index: 1;
}
.p-voice__swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #1E6C16 0%, #509700 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.p-voice__swiper-head {
  display: flex;
  justify-content: center;
  gap: 1rem;
  justify-content: start;
}
.p-voice__swiper-head img {
  width: 5rem;
  height: auto;
}

.p-voice__swiper-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-voice__swiper-info {
  padding: 0.5rem 0.625rem;
  border-radius: 0.375rem;
  background: linear-gradient(90deg, #1E6C16 0%, #509700 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  width: fit-content;
}

.p-voice__swiper-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
  background: linear-gradient(90deg, #1E6C16 0%, #509700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-voice__swiper-body {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 160%;
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

/* それぞれのページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 0.5rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ebf1e3;
  border: 1px solid #509700;
  margin-inline: 0.5rem;
}

/* activeな部分 */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #509700;
}

.p-region {
  position: relative;
}

.p-region__deco {
  position: absolute;
  right: 0;
  top: -3.25rem;
  width: 12.125rem;
  height: auto;
}

.p-region__img {
  margin: 2.5rem auto 0;
  width: 17.125rem;
  height: auto;
  display: block;
}

.p-region__wrap {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.p-region__head {
  padding: 1.25rem 1.875rem;
  border-radius: 0.625rem;
  background: linear-gradient(90deg, #1E6C16 0%, #509700 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.p-region__head::after {
  content: "";
  background: url(../img/icon_region-head.svg) no-repeat center center/contain;
  width: 0.9375rem;
  height: 0.375rem;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-region__head:hover {
    opacity: 0.8;
  }
}

.is-open > .p-region__head::after {
  transform: rotate(0);
}

.p-region__body {
  margin: 1.25rem auto 0;
  max-width: 17.1875rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 160%;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.p-faq {
  background: url(../img/bg_sec.jpg) no-repeat center center/cover;
}

.p-faq__wrap {
  margin-top: 2.5rem;
}

/* ===================
  アコーディオン details/summary
  ====================== */
/* アコーディオン全体 */
.p-faq__details {
  position: relative;
  border-radius: 0.625rem;
  z-index: 5;
}

/* アコーディオンの間隔 */
.p-faq__details + .p-faq__details {
  margin-top: 1.5rem;
}

/* 三角アイコン削除（Safari） */
summary::-webkit-details-marker {
  display: none;
}

/* タイトル */
.p-faq__summary {
  cursor: pointer;
  padding: 1rem 3rem 1rem 1rem;
  display: flex;
  gap: 1rem;
  /* アイコンのはみ出し防止 */
  overflow: hidden;
  border-radius: 0.625rem;
  background: #fff;
  color: #509700;
  position: relative;
  z-index: 5;
  transition: opacity 0.3s ease;
}
.p-faq__summary h3 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 160%;
}
.p-faq__summary span {
  font-family: "Alata", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
}
@media (any-hover: hover) {
  .p-faq__summary:hover {
    opacity: 0.8;
  }
}

/* アイコン共通 */
.p-faq__summary::before,
.p-faq__summary::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  translate: 0 -50%;
  width: 1rem;
  border-bottom: 2px solid #509700;
}

/* アイコン（クローズ時） */
.p-faq__summary::before {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

/* アイコン（オープン時） */
.is-open > .p-faq__summary::before {
  transform: rotate(0deg);
}

/* コンテンツ */
.p-faq__details-content {
  box-sizing: content-box;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: padding 0.2s ease 0.1s, max-height 0.3s, opacity 0.7s;
  padding: 1rem 1.5625rem 1rem 1rem;
  background: #fff;
  border-radius: 0.625rem;
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 160%;
  position: relative;
  z-index: 5;
}
.p-faq__details-content span {
  color: #509700;
  font-family: "Alata", sans-serif;
  font-size: 1rem;
  line-height: 140%;
}
.p-faq__details-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 19.4375rem;
  height: 1px;
  background: #509700;
}

/* コンテンツ（オープン時） */
.is-open > .p-faq__details-content {
  padding-block: 1em;
  opacity: 1;
  transition: padding 0.3s, max-height 0.3s, opacity 0.7s;
}

.p-thanks {
  background: url(../img/bg_sec.jpg) no-repeat center center/cover;
  height: 100vh;
  height: 100svh;
  padding-block: 5.625rem 0;
  text-align: center;
}
.p-thanks h2 {
  line-height: 140%;
}
.p-thanks p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 900px) {
  .p-thanks {
    padding-block: 1.875rem 0;
  }
}

.p-thanks__btn {
  margin-top: 2.5rem;
}

@media (min-width: 375px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 374px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Alata", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 374px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 375px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 374px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 375px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 374px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 375px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 374px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 375px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 374px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 375px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}