@charset "UTF-8";
/*==================================================
  Main Stylesheet
==================================================*/
/*==================================================
  Reset
==================================================*/
/*==================================================
  Variables
==================================================*/
@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  html {
    font-size: 16px;
  }
  body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(176deg, #CDEEEB 0%, #EBF8EB 100%);
  }
  body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/bg-logo.webp);
    background-size: 181.44px 181.44px;
    background-repeat: repeat;
    background-position: center top;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
  }
  body::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/bg-logo.webp);
    background-size: 181.44px 181.44px;
    background-repeat: repeat;
    background-position: calc(50% + 90.72px) 90.72px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
  }
  main {
    position: relative;
    min-height: 100vh;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
  }
  input,
  textarea,
  select {
    font-family: inherit;
  }
  section,
  footer {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  section > div[class$=__inner],
  footer > div[class$=__inner] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-inline: clamp(1rem, 0.5rem + 2vw, 1.5rem);
  }
  @media (min-width: 430px) {
    section > div[class$=__inner],
    footer > div[class$=__inner] {
      padding-inline: 1.5rem;
    }
  }
}
/*==================================================
  Mixins
==================================================*/
/*==================================================
  FV Section
==================================================*/
.fv {
  padding-top: 0px;
  padding-bottom: 0px;
  line-height: 134%;
}

.fv__inner {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-inline: 0;
}

.fv__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
  background: linear-gradient(98deg, rgb(50, 183, 57) 0%, rgb(30, 108, 90) 100%);
  padding: 8px 10px;
  z-index: 1000;
}

.fv__area {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
  width: 100%;
  line-height: 1.34;
  letter-spacing: -0.03em;
}

.fv__area span {
  letter-spacing: -0.1em;
}

.fv__logo {
  width: 96px;
  height: auto;
  flex-shrink: 0;
}

.fv__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.fv__phone,
.fv__mail {
  display: block;
}

.fv__phone {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #F61515;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  width: 133px;
  border-radius: 8px;
  padding: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.fv__phone:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}
.fv__phone:active {
  transform: scale(0.98);
}

.fv__phone img {
  width: 20px;
  height: 20px;
}

.fv__mail {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.fv__mail:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}
.fv__mail:active {
  transform: scale(0.98);
}

.fv__mail img {
  width: 118px;
  height: 41px;
}

.fv__phone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  text-align: center;
}
.fv__phone-text p {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0%;
  line-height: 8px;
}
.fv__phone-text .fv__phone-number {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  line-height: 13px;
}

.fv__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  margin-top: -87px;
}

.fv__image {
  width: 100%;
  margin-top: 0px;
}

.fv__image img {
  width: 100%;
  height: auto;
}

/*==================================================
  Worries Section
==================================================*/
.worries__inner {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.worries__problem {
  width: 100%;
  position: relative;
  z-index: 2;
}

.worries__problem-image {
  width: 100%;
  height: auto;
  color: rgb(51, 51, 51);
}

.worries__woman {
  width: 100%;
  margin-top: 0px;
  position: relative;
}

.worries__woman-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/*==================================================
  Solution Section
==================================================*/
.solution__inner {
  padding: 0;
}

.solution__top {
  padding-top: 0;
  background-color: #ffffff;
}

/*==================================================
  Reason Section
==================================================*/
.reason__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 0;
  padding-right: 0;
  background-color: #d6f1d7;
}

.reason__header {
  text-align: center;
}

.reason__title {
  position: relative;
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  margin: 0 0 0;
  background: linear-gradient(to bottom, #32b739 0%, #1e6c5a 100%);
  padding: 16px 0;
  border-radius: 0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.reason__title::before,
.reason__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #C36C12 0%, #EC983E 8%, #FDD778 20%, #FFF3D6 48%, #FDD778 74%, #EC983E 89%, #C36C12 100%);
}

.reason__title::before {
  top: 0;
}

.reason__title::after {
  bottom: 0;
}

.reason__title .gold {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(to top, #EDAC45 9%, #F1B856 34%, #FFD985 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reason__title .gold .mini {
  font-size: 28px;
}

.reason__description {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  line-height: 1.6;
  margin: 32px 0 0;
}

.reason__points {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 1rem + 2vw, 2rem);
  padding-bottom: 40px;
}

.reason__point {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-weight: 500;
  width: 97.5%;
  margin-left: auto;
}

.reason__point:nth-child(2) {
  margin-right: auto;
  margin-left: 0;
}

.reason__point:nth-child(2) .reason__point-header {
  border-radius: 0px 30px 0px 0px;
  gap: 15px;
  padding-left: 20px;
}

.reason__point:nth-child(2) .reason__point-image {
  border-radius: 0px 0px 30px 0px;
}

.reason__point-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: linear-gradient(to bottom, #32b739 0%, #1e6c5a 100%);
  padding-top: 20px;
  border-radius: 30px 0px 0px 0px;
}

.reason__point:first-child .reason__point-header {
  gap: 33px;
  padding-left: 40px;
}

.reason__point:nth-child(3) .reason__point-header {
  gap: 26px;
  padding-left: 28px;
  padding-right: 13px;
}

.reason__header-number {
  width: 92px;
}

.reason__header-title {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  padding-right: 0;
  margin-top: 10px;
}

.reason__point:first-child .reason__header-title {
  margin-top: 0;
}

.reason__point:nth-child(2) .reason__header-title {
  margin-top: 0;
}

.reason__point:first-child .reason__header-title-text {
  margin-right: 32px;
}

.reason__header-title-text {
  font-size: 30px;
}

.reason__header-title-subtext {
  font-size: 24px;
  line-height: 1;
}

.reason__header-title-subtext.yellow {
  font-size: 16px;
  color: #fffb2a;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.011em;
}

.reason__point-title-image {
  width: 92px;
  height: auto;
}

.reason__point-image {
  width: 100%;
  margin-top: 0px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 0px 0px 30px;
  padding-bottom: 21px;
  padding-left: 0px;
}

.reason__point-image img {
  width: 60%;
  height: auto;
  margin-left: auto;
  margin-top: -10px;
  margin-right: 10px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
}

.reason__point:first-child .reason__point-image img {
  margin-top: -32px;
}

.reazon__point-image-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0px;
  padding-right: 10px;
}

.reason__point-image-left {
  width: 32%;
  height: auto;
}

.reason__point-image-right {
  width: 60%;
  height: auto;
}

.reason__point-image-right img,
.reason__point-image-left img {
  width: 100%;
  height: auto;
}

.reason__point-image-right img {
  margin-right: 10px;
}

.reason__point-image-left img {
  box-shadow: none;
}

.reason__header-title-text.payment {
  font-size: 28px;
}

.reason__header-title-subtext.payment {
  font-size: 22px;
}

.reason__point-text {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  margin: 0;
  margin-top: 22px;
  padding-left: 26px;
  width: 94%;
  box-shadow: none;
}

.reason__text-highlight {
  color: #F7931E;
  font-weight: 500;
}

.reason__loan {
  background-color: #ffebee;
  border-radius: 20px;
  width: 90%;
  margin: 22px auto 0;
  border: 3px solid rgb(255, 153, 159);
}

.reason__loan img {
  box-shadow: none;
  width: 100%;
  margin: 0;
}

.reason__loan-title {
  text-align: center;
  margin-bottom: 0;
  background-color: rgb(255, 153, 159);
  border-radius: 10px 10px 0px 0px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.reason__loan-title-text {
  font-size: 16px;
  color: #333;
  font-weight: 900;
  margin: 0;
}

.reason__loan-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 2px 16px 16px;
}

.reason__loan-content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  width: 99px;
}

.reason__loan-image {
  width: clamp(69px, 21.6%, 79px);
}

.reason__loan-image img {
  width: 100%;
  height: auto;
}

.reason__loan-price {
  font-size: 11px;
  color: #000000;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.reason__loan-price .large {
  font-size: 19px;
  font-family: "Oswald", sans-serif;
}

.reason__loan-price .small {
  font-size: 14px;
}

.reason__loan-price .red {
  color: #F61515;
  font-weight: 700;
}

.reason__loan-arrow {
  width: 15px;
  height: auto;
}

.reason__loan-content-center {
  width: clamp(65px, 20%, 77px);
  height: auto;
}

.reason__loan-content-right {
  text-align: start;
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  line-height: 1;
}

.reason__loan-monthly .large {
  font-size: 24px;
  font-family: "Oswald", sans-serif;
}

.reason__loan-monthly .small {
  font-size: 16px;
}

.reason__loan-monthly .red {
  color: #F61515;
  font-weight: 700;
}

/*==================================================
  CTA Section
==================================================*/
.cta > * {
  position: relative;
  z-index: 1;
}

.cta__inner {
  padding-left: 0;
  padding-right: 0;
}

.cta__title {
  width: 100%;
  background: linear-gradient(-7deg, #583506 0%, #51370A 98%);
  padding: 16px 0;
  color: #ffffff;
}

.cta__heading {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding: 0 0 20px;
  background-color: #fffb2a;
}
.cta__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/5cta-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.cta__content > * {
  position: relative;
  z-index: 1;
}

.cta__image {
  width: 86%;
  height: auto;
  margin: -11px auto 0;
}

.cta__image img {
  width: 100%;
}

.cta__button-area {
  width: clamp(335px, 90%, 387px);
  padding: 16px 0;
  background-color: #ffffff;
  margin: -97px auto 0;
}

.cta__button-area > img {
  width: 176px;
  height: auto;
  margin: 0 auto;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.cta__phone,
.cta__mail {
  display: block;
  width: clamp(295px, 88%, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.cta__phone:hover,
.cta__mail:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}
.cta__phone:active,
.cta__mail:active {
  transform: scale(0.98);
}
.cta__phone::before,
.cta__mail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #C36C12 0%, #EC983E 8%, #FDD778 20%, #FFF3D6 48%, #FDD778 74%, #EC983E 89%, #C36C12 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -10;
}
.cta__phone::after,
.cta__mail::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: inherit;
  border-radius: inherit;
  pointer-events: none;
  z-index: -10;
}

.cta__phone {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 12%, transparent 22%), linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 50%, rgba(236, 19, 19, 0.5) 50%), #F61515;
  position: relative;
  z-index: 1;
  gap: 18px;
  padding: 11px 20px 11px 13px;
}
.cta__phone::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 12%, transparent 22%), linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 50%, rgba(236, 19, 19, 0.5) 50%), #F61515;
}

.cta__phone-image {
  width: 40px;
  height: auto;
}

.cta__phone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: #ffffff;
  text-align: center;
}

.cta__phone-text-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.011em;
}

.cta__phone-text-number {
  margin: -2px 0 0;
  font-size: 26px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #333;
  text-align: center;
  line-height: 1.5;
  text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff, 0 0 10px #ffffff;
}

.cta__mail {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 12%, transparent 22%), linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 50%, rgba(192, 189, 19, 0.15) 50%), #F7931E;
  position: relative;
  z-index: 1;
  gap: 22px;
  padding: 20px 33px;
}
.cta__mail::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 12%, transparent 22%), linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 50%, rgba(192, 189, 19, 0.15) 50%), #F7931E;
}

.cta__mail-image {
  width: 40px;
  height: auto;
}

.cta__mail-text {
  color: #000000;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.011em;
  line-height: 1.5;
  text-shadow: 0 0 10px #ffffff, 0 0 10px #ffffff;
}

.cta__mail-text-title {
  margin: 0;
}

/*==================================================
  Product Section
==================================================*/
.product__inner {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.product__title {
  font-size: 28px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(to bottom, #32b739 0%, #1e6c5a 100%);
  padding: 24px 0;
  margin: 0;
}

.product__brands {
  display: flex;
  flex-direction: column;
}

.product__brand {
  display: flex;
  flex-direction: column;
}

.product__brand-header {
  background: linear-gradient(to right, #DEB457 0%, #FFFDBD 23%, #D6AB47 41%, #AE8225 59%, #CF9E25 77%, #B48A2D 100%);
  padding: 10px;
  text-align: center;
}

.product__brand-name {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  text-shadow: 0 0 10px #ffffff;
}

.product__brand-name.corona {
  color: #223097;
}

.product__brand-name.daikin {
  color: #2A9AE2;
}

.product__brand-name.mitsubishi {
  color: #C20B2A;
}

.product__brand-name.hitachi {
  color: #1E1E1E;
}

.product__brand-name.panasonic {
  color: #2A9AE2;
}

.swiper {
  width: 100%;
  background-color: #ECECEC;
  padding: 16px 0 0 8px;
}

.swiper.panasonic {
  padding-left: 0;
}

.swiper.panasonic .swiper-wrapper {
  display: block;
}

.swiper.panasonic .swiper-slide {
  margin: 0 auto 16px;
}

.swiper-slide.product__card {
  width: clamp(325px, 86.7vw, 373px);
  padding-bottom: 20px;
  position: relative;
  background-color: #FFF4E1;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
  margin-bottom: 16px;
  margin: 0 8px 16px;
}

.product__badge {
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 1;
  width: 76px;
}

.product__badge img {
  width: 100%;
  height: auto;
}

.product__card-content {
  display: flex;
  flex-direction: column;
}

.product__card-title {
  display: flex;
  flex-direction: column;
  margin: 16px 0 0 108px;
  letter-spacing: -0.011em;
  line-height: 1;
}

.product__card-title .title__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.product__card-title .title__top .brand {
  font-size: 20px;
  font-weight: 900;
}

.corona .product__card-title .title__top .brand {
  color: #223097;
}

.daikin .product__card-title .title__top .brand {
  color: #2A9AE2;
}

.mitsubishi .product__card-title .title__top .brand {
  color: #C20B2A;
}

.hitachi .product__card-title .title__top .brand {
  color: #1E1E1E;
}

.panasonic .product__card-title .title__top .brand {
  color: #2A9AE2;
}

.product__card-title .title__top .description {
  font-size: 16px;
  font-weight: 800;
  color: #563100;
  font-family: "Shippori Mincho B1", serif;
}

.product__card-title .title__bottom {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #000000;
}

.product__card-image {
  width: 100%;
  margin-top: -10px;
  position: relative;
  z-index: -1;
}

.product__card-image img {
  width: 100%;
  height: auto;
}

.product__card-price {
  display: flex;
  flex-direction: column;
  margin-top: -20px;
}

.product__price-original {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-left: 30px;
  margin: 0 auto;
}

.product__price-original img {
  width: 186px;
  height: auto;
}

.product__price-discount {
  color: #ffffff;
  background: url(../images/6product-discount.webp) center/cover no-repeat;
  padding: 10px;
  width: 72px;
  height: 72px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.011em;
  font-weight: bold;
  line-height: 1;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.product__price-discount .number {
  font-size: 32px;
}

.product__price-discount .percent {
  font-size: 14px;
}

.product__price-discount .off {
  font-size: 16px;
}

.product__price-actual {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.product__price-label-image {
  width: 48px;
  height: auto;
  margin-right: 4px;
  margin-bottom: -8px;
}

.product__price-amount {
  color: #F61515;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.product__price-number {
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.05em;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
}

.product__price-number .large {
  font-size: 48px;
  position: relative;
}

.product__price-number .large[data-text]::before {
  content: attr(data-text);
  position: absolute;
  top: 12px;
  left: 0px;
  -webkit-text-stroke: 6px #ffffff;
  color: transparent;
  z-index: -1;
}

.product__price-number .large[data-text]::after {
  content: attr(data-text);
  position: absolute;
  top: 13px;
  left: 0px;
  -webkit-text-stroke: 10px #F61515;
  color: transparent;
  z-index: -2;
}

.product__price-number .small {
  font-size: 40px;
  position: relative;
}

.product__price-number .small[data-text]::before {
  content: attr(data-text);
  position: absolute;
  top: 10px;
  left: 0px;
  -webkit-text-stroke: 6px #ffffff;
  color: transparent;
  z-index: -1;
}

.product__price-number .small[data-text]::after {
  content: attr(data-text);
  position: absolute;
  top: 10px;
  left: 0px;
  -webkit-text-stroke: 10px #F61515;
  color: transparent;
  z-index: -2;
}

.product__price-units {
  margin: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-style: italic;
  line-height: 1;
  justify-content: flex-end;
}

.product__price-units .tax {
  font-size: 11px;
}

.product__price-units .yen {
  font-size: 16px;
}

.product__price-plus {
  width: 11.5px;
  height: auto;
}

.product__price-disposal {
  width: 57px;
  height: auto;
}

.product__button {
  display: block;
  width: 292px;
  height: auto;
  margin: 16px auto 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.product__button:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}
.product__button:active {
  transform: scale(0.98);
}

.product__button img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.product__other {
  background-color: #ECECEC;
  padding-bottom: 16px;
}

.product__other img {
  width: 89.3%;
  height: auto;
  margin: 0 auto;
}

.swiper-button-prev,
.swiper-button-next {
  width: 36px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

/*==================================================
  Cost Section
==================================================*/
.cost__inner {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.cost__header {
  background: linear-gradient(to bottom, #32b739 0%, #1e6c5a 100%);
}

.cost__title {
  font-size: 32px;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  padding: 24px 0;
  margin: 0;
  position: relative;
  letter-spacing: 0.12em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.cost__title::before,
.cost__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #C36C12 0%, #EC983E 8%, #FDD778 20%, #FFF3D6 48%, #FDD778 74%, #EC983E 89%, #C36C12 100%);
}

.cost__title::before {
  top: 0;
}

.cost__title::after {
  bottom: 0;
}

.cost__content {
  background-color: #ECECEC;
  padding: 0 20px 20px;
}

.cost__description {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  font-weight: 700;
  margin: 16px 0 0;
}

.cost__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.cost__table thead {
  background-color: #FF737C;
}

.cost__table th {
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  padding: 8px;
  text-align: center;
  letter-spacing: 0.1em;
  border: 1px solid #808080;
}

.cost__table-tax {
  font-size: 16px;
}

.cost__table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.cost__table tbody {
  background-color: #ffffff;
}

.cost__table td {
  padding: 16px 10px;
  border: 1px solid #808080;
}

.cost__table td:first-child {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.cost__table td:last-child {
  text-align: right;
  font-weight: bold;
  background-color: #FFDBE1;
  width: 51.3%;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  color: #F61515;
  padding-right: 7px;
}

.cost__table-unit {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.cost__table-range {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}

.cost__note {
  font-size: 16px;
  color: #333;
  line-height: 1.3;
  font-weight: 700;
  margin: 36px 0 0;
}

/*==================================================
  Compensation Section
==================================================*/
.compensation__inner {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.compensation__header {
  background: linear-gradient(to bottom, #32b739 0%, #1e6c5a 100%);
}

.compensation__title {
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 24px 0;
  margin: 0;
  position: relative;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.compensation__title::before,
.compensation__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #C36C12 0%, #EC983E 8%, #FDD778 20%, #FFF3D6 48%, #FDD778 74%, #EC983E 89%, #C36C12 100%);
}

.compensation__title::before {
  top: 0;
}

.compensation__title::after {
  bottom: 0;
}

.compensation__content {
  background-color: #FFF6E1;
  padding: 20px 9px;
}

.compensation__description {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.compensation__highlight {
  color: #F61515;
}

.compensation__warranty {
  margin-top: 30px;
}

/*==================================================
  Review Section
==================================================*/
.review__inner {
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: #ffffff;
}

.review__title {
  font-size: 32px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  background-image: url(../images/9review-14faq-title-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0;
  margin: 0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.12em;
}

.review__items {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 20px 24px;
}

.review__item {
  background-color: #ffffff;
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.review__item-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed #999999;
}

.review__item-avatar {
  flex-shrink: 0;
  width: 93px;
  height: auto;
  margin-bottom: 8px;
}

.review__item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review__item-quote {
  flex: 1;
}

.review__item-quote-text {
  font-size: 18px;
  color: #28922E;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}

.review__highlight {
  background-color: #fffb2a;
  line-height: 1;
}

.review__item-author {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  letter-spacing: -0.011em;
  text-align: right;
  margin-top: 0;
  margin-bottom: 8px;
}

.review__item-full {
  font-size: 14px;
  color: #1E1E1E;
  line-height: 1.5;
  margin-top: 17px;
}

/*==================================================
  Comparison Section
==================================================*/
.comparison__inner {
  padding: 0;
  background-color: #ffffff;
}

.comparison__title {
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  background: url(../images/9review-14faq-title-bg.webp) center/cover no-repeat;
  padding: 20px 0;
  margin: 0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.12em;
}

/*==================================================
  Flow Section
==================================================*/
.flow__inner {
  padding: 0;
  background: url(../images/11flow-bg.webp) center/cover no-repeat;
}

.flow__title {
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  background: url(../images/9review-14faq-title-bg.webp) center/cover no-repeat;
  padding: 20px 0;
  margin: 0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.12em;
}

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 40px 16.5px 36px;
}

.flow__step {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  padding: 20px 16px;
  position: relative;
}

.flow__step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow__step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F7931E;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  line-height: 1.5;
  letter-spacing: -0.011em;
  margin: 4px 0 4px 8px;
  flex-shrink: 0;
}

.flow__step-title {
  font-size: 24px;
  color: #F7931E;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.flow__step-title span {
  display: inline-block;
}

.flow__step-image {
  width: 100%;
  margin: 12px 0 0;
}

.flow__step-image img {
  width: 100%;
  height: auto;
}

.flow__step-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  text-align: left;
}

.flow__step-list {
  text-align: left;
  font-size: 16px;
  color: #F7931E;
  line-height: 1.5;
  margin: 12px 0 0;
  padding-left: 20px;
}

.flow__step-list li {
  list-style: none;
}

.flow__step-arrow {
  width: 71px;
  height: auto;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.flow__step-arrow img {
  width: 100%;
  height: auto;
}

/*==================================================
  Contact Section
==================================================*/
.contact__inner {
  padding: 20px 25px 30px;
  background: linear-gradient(to bottom, #32b739 0%, #1e6c5a 100%);
}

.contact__title {
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.12em;
  margin: 0;
}

.contact__content {
  width: 100%;
}

.contact__form {
  display: flex;
  flex-direction: column;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 32px;
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__label-text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.0011em;
}

.contact__required {
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
  background: #F61515;
  line-height: 1.5;
  padding: 1.5px 10px;
  border-radius: 4px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 11.5px 9px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #F1F1F1;
}
.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #999999;
}

.contact__textarea {
  min-height: 148px;
  resize: vertical;
}

.contact__privacy-text {
  background-color: #ffffff;
  margin-top: 20px;
  padding: 20px 21px 20px 20px;
  height: 212px;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 4px solid #ffffff;
  /* スクロール時に下にはみ出したコンテンツを隠す */
  /* スクロールバーのカスタマイズ（必要なら） */
  scrollbar-width: auto;
  /* Chrome, Edge, Safari の場合 */
}
.contact__privacy-text::-webkit-scrollbar {
  width: 8px;
  background: #ffffff;
}
.contact__privacy-text::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 6px;
}

.contact__privacy-title {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.contact__privacy-content {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  margin-top: 13px;
}

.contact__privacy {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  justify-content: center;
  margin-top: 15px;
}

.contact__checkbox {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.contact__checkbox:checked {
  background-color: transparent;
}
.contact__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact__checkbox-label {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
  width: 238px;
}

.contact__submit {
  width: 100%;
}

.contact__submit-button {
  width: 205px;
  height: 71px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 50%, rgba(247, 147, 30, 0.15) 50%), #F7931E;
  color: #ffffff;
  border-radius: 10px;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  position: relative;
  box-sizing: border-box;
  z-index: 1;
  margin: 15px auto 0;
}
.contact__submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.contact__submit-button:hover:not(:disabled) {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}
.contact__submit-button:active:not(:disabled) {
  transform: scale(0.98);
}
.contact__submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #C36C12 0%, #EC983E 8%, #FDD778 20%, #FFF3D6 48%, #FDD778 74%, #EC983E 89%, #C36C12 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -10;
}
.contact__submit-button::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: inherit;
  border-radius: inherit;
  pointer-events: none;
  z-index: -10;
}
@media (prefers-reduced-motion: reduce) {
  .contact__submit-button {
    transition: none;
  }
}

.contact__submit-text {
  margin: 0;
}

.contact__submit-icon {
  margin: 0;
  font-size: 15px;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #F7931E;
  padding-top: 1.5px;
  padding-left: 2px;
}

/*==================================================
  Area Section
==================================================*/
.area__inner {
  padding: 0;
}

.area__inner img {
  width: 100%;
  height: auto;
}

/*==================================================
  FAQ Section
==================================================*/
.faq__inner {
  padding: 0;
}

.faq__title {
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  background-image: url(../images/9review-14faq-title-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 23px 0;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.faq__items {
  padding: 16px 21.5px 40px;
  display: flex;
  flex-direction: column;
  background-image: url(../images/11flow-bg.webp);
  gap: 16px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  background-color: #ffffff;
  transition: gap 0.6s ease;
}

.faq__item.active {
  gap: 4px;
}

.faq__question {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.faq__question-icon,
.faq__answer-icon {
  width: 48px;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.011em;
  font-family: "Oswald", sans-serif;
  background-color: #28922E;
  text-align: center;
  align-self: stretch;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__question-text {
  font-size: 15px;
  color: #000000;
  font-weight: bold;
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.011em;
  background-color: #ffffff;
  padding-left: 20px;
  padding-right: 72px;
  flex: 1;
  height: 56px;
  display: flex;
  align-items: center;
  position: relative;
}

.faq__arrow {
  position: absolute;
  right: 20px;
  width: 16px;
  height: auto;
  transition: transform 0.6s ease;
}

.faq__arrow img {
  width: 100%;
  height: auto;
  display: block;
}

.faq__item.active .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.faq__answer-text {
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  background-color: #d6f1d7;
  padding: 4px 16px 4px 17px;
  flex: 1;
  margin: 0;
}

.faq__answer-text.third {
  min-height: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/*==================================================
  Footer Section
==================================================*/
.footer__inner {
  padding: 40px 0;
  background-color: #1E6C5A;
}

.footer__header {
  text-align: center;
}

.footer__logo-text {
  margin: 0;
  font-size: 18px;
  color: #1E6C5A;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.011em;
  text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff, 0 -2px 0 #ffffff, 2px 0 0 #ffffff, 0 2px 0 #ffffff, -2px 0 0 #ffffff;
}

.footer__logo-large {
  font-size: 22px;
}

.footer__logo-small {
  font-size: 16px;
}

.footer__subtitle {
  font-size: 18px;
  color: #ffffff;
  margin: 20px 0 0;
  font-weight: bold;
}

.footer__content {
  width: 204px;
  margin: 0 auto;
}

.footer__info {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.footer__info-term {
  display: inline-block;
  width: 60px;
  background-color: #ffffff;
  color: #1E6C5A;
  margin-right: 28px;
  margin-top: 16px;
}

.footer__info-desc {
  display: inline-block;
  width: 112px;
  color: #ffffff;
  margin: 0;
  text-align: left;
}

/*==================================================
  Sticky CTA Section
==================================================*/
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #1E6C5A;
  padding: 10px;
  max-width: 430px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.sticky-cta__inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.sticky-cta__mail,
.sticky-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
  text-decoration: none;
  height: 80px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.sticky-cta__mail:hover,
.sticky-cta__phone:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}
.sticky-cta__mail:active,
.sticky-cta__phone:active {
  transform: scale(0.98);
}
.sticky-cta__mail::before,
.sticky-cta__phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: inherit;
  pointer-events: none;
  z-index: -10;
}
.sticky-cta__mail::after,
.sticky-cta__phone::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: inherit;
  border-radius: inherit;
  pointer-events: none;
  z-index: -10;
}

.sticky-cta__mail {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 12%, transparent 22%), linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 50%, rgba(192, 189, 19, 0.15) 50%), #fffb2a;
  z-index: 1;
  gap: 3px;
  padding: 10px;
  width: 32.7%;
}
.sticky-cta__mail::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 12%, transparent 22%), linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 50%, rgba(192, 189, 19, 0.15) 50%), #fffb2a;
}

.sticky-cta__mail-image {
  width: 33px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.4;
}

.sticky-cta__mail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sticky-cta__mail-text {
  color: #1F1F1F;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.011em;
  line-height: 1.5;
}

.sticky-cta__phone {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 12%, transparent 22%), linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 50%, rgba(236, 19, 19, 0.5) 50%), #F61515;
  z-index: 1;
  gap: -4px;
  padding: 8px 17px 8px 10px;
  width: 64.8%;
}
.sticky-cta__phone::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 12%, transparent 22%), linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 50%, rgba(236, 19, 19, 0.5) 50%), #F61515;
}

.sticky-cta__phone-image {
  width: 33px;
  height: auto;
  flex-shrink: 0;
}

.sticky-cta__phone-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sticky-cta__phone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -3px;
  color: #ffffff;
  text-align: center;
}

.sticky-cta__phone-text-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.011em;
  text-shadow: 0 2px 2px #D38A2E;
}

.sticky-cta__phone-text-number {
  margin: -2px 0 0;
  font-size: 26px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

/*==================================================
  Thanks Section
==================================================*/
.thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.thanks__title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.thanks__section {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: #EBF8EB;
  padding: 40px 20px 30px;
}

.thanks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}

.thanks__image {
  width: 226px;
  text-align: center;
}
.thanks__image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.thanks__content {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  margin-top: -180px;
  line-height: 1.28;
  font-size: 15px;
}

.thanks__text:first-of-type {
  margin-top: 0;
}

.thanks__list {
  list-style: none;
  padding: 0;
}

.thanks__list-item {
  color: #F7931E;
  font-weight: 500;
  padding-left: 0;
}
.thanks__list-item::before {
  content: "";
  display: none;
}
.thanks__list-item:last-child {
  margin-bottom: 0;
}

.thanks__contact {
  margin-bottom: 0;
}
