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

html {
  font-size: 0.0666666667vw;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 0.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16rem;
  line-height: 1.8;
  color: #0A0A0A;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  appearance: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}

.container {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 20rem;
  }
}

.section {
  padding: 80rem 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 60rem 0;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 48rem;
}
.section-heading__en {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  color: #49B785;
  font-weight: 700;
  text-align: center;
  font-size: 80rem;
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .section-heading__en {
    font-size: 32rem;
  }
}
.section-heading__ja {
  font-size: 20rem;
  color: #666666;
  font-weight: 500;
}
.section-heading__bar {
  display: block;
  width: 40rem;
  height: 2rem;
  background-color: #49B785;
  margin: 12rem auto 0;
}
.section-heading__divider {
  display: block;
  width: 100%;
  height: 2rem;
  background-color: #49B785;
  margin: 16rem auto 0;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

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

.text-primary {
  color: #49B785;
}

.text-accent {
  color: #F5A623;
}

.font-bold {
  font-weight: 700;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(20rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 50rem;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
}
.btn--primary {
  background-color: #49B785;
  color: #FFFFFF;
  padding: 16rem 40rem;
  font-size: 16rem;
}
.btn--primary:hover {
  background-color: #3A9A6E;
  transform: translateY(-2rem);
  box-shadow: 0 4rem 16rem rgba(0, 0, 0, 0.08);
}
.btn--primary-lg {
  background-color: #49B785;
  color: #FFFFFF;
  padding: 20rem 48rem;
  font-size: 18rem;
}
.btn--primary-lg:hover {
  background-color: #3A9A6E;
  transform: translateY(-2rem);
  box-shadow: 0 4rem 16rem rgba(0, 0, 0, 0.08);
}
.btn--outline {
  background-color: #FFFFFF;
  color: #49B785;
  border: 2rem solid #49B785;
  padding: 14rem 40rem;
  font-size: 16rem;
}
.btn--outline:hover {
  background-color: #E5F5EE;
  transform: translateY(-2rem);
}
.btn--accent {
  background-color: #F5A623;
  color: #FFFFFF;
  padding: 16rem 40rem;
  font-size: 16rem;
}
.btn--accent:hover {
  opacity: 0.85;
  transform: translateY(-2rem);
  box-shadow: 0 4rem 16rem rgba(0, 0, 0, 0.08);
}
.btn--white {
  background-color: #FFFFFF;
  color: #49B785;
  padding: 16rem 40rem;
  font-size: 16rem;
  font-weight: 700;
}
.btn--white:hover {
  transform: translateY(-2rem);
  box-shadow: 0 4rem 16rem rgba(0, 0, 0, 0.08);
}
.btn--sm {
  padding: 10rem 24rem;
  font-size: 14rem;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn__icon {
  margin-right: 8rem;
  font-size: 1.2em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.06);
}
.header__inner {
  padding: 0 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 60rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 50rem;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    height: 40rem;
  }
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  background: linear-gradient(90deg, #FFA501, #FF2E45);
  color: #FFFFFF;
  font-size: 14rem;
  font-weight: 700;
  padding: 10rem 24rem;
  border-radius: 50rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__cta {
    padding: 8rem 16rem;
    font-size: 12rem;
  }
}
.header__cta:hover {
  opacity: 0.9;
  transform: translateY(-1rem);
}
.header__cta-text {
  white-space: nowrap;
}
.header__cta-icon {
  width: 20rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__cta-icon {
    width: 16rem;
  }
}

.header-spacer {
  height: 70rem;
}
@media screen and (max-width: 767px) {
  .header-spacer {
    height: 60rem;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  height: 772rem;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding: 0 20rem;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.hero__content {
  display: flex;
  gap: 20rem;
  flex: 1;
  min-height: 0;
}
@media screen and (max-width: 767px) {
  .hero__content {
    flex-direction: column;
    gap: 16rem;
  }
}
.hero__panel {
  width: 820rem;
  align-self: flex-end;
  height: 95%;
  background: linear-gradient(180deg, #ECF4F6, #FFFFFF);
  border-radius: 20rem 20rem 0 0;
  padding: 32rem 61rem 0;
  display: flex;
  flex-direction: column;
  margin-left: 120rem;
}
@media screen and (max-width: 767px) {
  .hero__panel {
    flex: auto;
    padding: 24rem 20rem 0;
    border-radius: 16rem 16rem 0 0;
  }
}
.hero__top {
  display: flex;
  gap: 20rem;
  margin-bottom: 20rem;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .hero__top {
    flex-direction: column;
    gap: 16rem;
  }
}
.hero__left {
  flex: 1;
}
.hero__label {
  font-size: 14rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 8rem;
}
.hero__title {
  font-size: 22rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.4;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 20rem;
  }
}
.hero__checks {
  list-style: none;
}
.hero__checks li {
  position: relative;
  padding-left: 26rem;
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
  margin-bottom: 6rem;
}
.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3rem;
  width: 18rem;
  height: 18rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%2349B785'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.hero__price-card {
  flex: 0 0 50%;
  background: #FFFFFF;
  border-radius: 12rem;
  padding: 11rem 15rem;
  text-align: center;
  box-shadow: 0 4rem 16rem rgba(0, 0, 0, 0.08);
  position: relative;
}
.hero__price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44rem;
  height: 44rem;
  background: linear-gradient(135deg, #FF6B9D, #FF2E45);
  color: #FFFFFF;
  font-size: 11rem;
  font-weight: 700;
  border-radius: 50%;
  position: absolute;
  top: -10rem;
  right: -10rem;
}
.hero__price-lead {
  text-align: left;
  font-size: 24rem;
  color: #0A0A0A;
  margin-bottom: 4rem;
  font-weight: 500;
}
.hero__price-number {
  display: flex;
  align-items: flex-end;
  font-size: 16rem;
  color: #0A0A0A;
  font-weight: 700;
  white-space: nowrap;
}
.hero__price-number em {
  font-size: 24rem;
  writing-mode: vertical-rl;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-bottom: 8rem;
}
.hero__price-number span {
  font-size: 110rem;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(180deg, #FF2E45, #FFA501);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .hero__price-number span {
    font-size: 48rem;
  }
}
.hero__price-number small {
  font-size: 44rem;
}
.hero__features {
  display: flex;
  gap: 16rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .hero__features {
    flex-direction: column;
    gap: 12rem;
  }
}
.hero__feature {
  flex: 1;
  background: #FFFFFF;
  border-radius: 12rem;
  padding: 20rem 12rem 16rem;
  text-align: center;
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.06);
}
.hero__feature-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 8rem;
}
.hero__feature-icon {
  width: 56rem;
  height: 56rem;
  object-fit: contain;
  display: block;
}
.hero__feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32rem;
  height: 32rem;
  background: linear-gradient(135deg, #FF6B9D, #FF2E45);
  color: #FFFFFF;
  font-size: 9rem;
  font-weight: 700;
  border-radius: 50%;
  position: absolute;
  bottom: -2rem;
  right: -14rem;
}
.hero__feature-title {
  font-size: 15rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.4;
  margin-bottom: 4rem;
}
.hero__feature-desc {
  font-size: 12rem;
  color: #666666;
  line-height: 1.6;
}
.hero__bottom {
  text-align: center;
  margin-top: 32rem;
}
.hero__bottom .cta__btn {
  margin-bottom: 8rem;
}
.hero__copy {
  font-size: 20rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.4;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .hero__copy {
    font-size: 18rem;
  }
}
.hero__copy span {
  display: block;
  font-size: 36rem;
  font-weight: 700;
  color: #49B785;
}
@media screen and (max-width: 767px) {
  .hero__copy span {
    font-size: 28rem;
  }
}
.hero__sub {
  font-size: 14rem;
  color: #666666;
  margin-bottom: 16rem;
}
.hero__note {
  font-size: 12rem;
  color: #999999;
}
.hero__images {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  min-height: 0;
  width: 400rem;
  margin: 0 46rem;
}
@media screen and (max-width: 767px) {
  .hero__images {
    flex-direction: row;
    height: 200rem;
  }
}
.hero__img-item {
  flex: 1;
  border-radius: 12rem;
  overflow: hidden;
  position: relative;
  min-height: 0;
}
.hero__img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__img-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44rem;
  height: 44rem;
  background: linear-gradient(135deg, #FF6B9D, #FF2E45);
  color: #FFFFFF;
  font-size: 11rem;
  font-weight: 700;
  border-radius: 50%;
  position: absolute;
  top: -6rem;
  left: -6rem;
  z-index: 1;
}
.hero__watermark {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 100rem;
  font-weight: 700;
  color: rgba(73, 183, 133, 0.06);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .hero__watermark {
    font-size: 40rem;
  }
}

.trouble {
  padding: 80rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .trouble {
    padding: 60rem 0;
  }
}
.trouble__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .trouble__inner {
    padding: 0 20rem;
  }
}
.trouble__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  background-color: #E7EFF3;
  border-radius: 20rem;
  padding: 20rem;
  width: 810rem;
  height: 300rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .trouble__list {
    grid-template-columns: 1fr;
  }
}
.trouble__item {
  background-color: #FFFFFF;
  border-radius: 30rem;
  padding: 0 32rem;
  display: flex;
  align-items: center;
  gap: 16rem;
  width: 380rem;
  height: 80rem;
}
@media screen and (max-width: 767px) {
  .trouble__item {
    padding: 20rem;
  }
}
.trouble__item-icon {
  flex-shrink: 0;
  width: 24rem;
  height: 24rem;
  position: relative;
}
.trouble__item-icon::after {
  content: "";
  display: block;
  width: 20rem;
  height: 10rem;
  border-left: 3rem solid #49B785;
  border-bottom: 3rem solid #49B785;
  transform: rotate(-45deg);
  position: absolute;
  top: 3rem;
  left: 2rem;
}
.trouble__item-text {
  flex: 1;
  font-size: 16rem;
  color: #0A0A0A;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .trouble__item-text {
    font-size: 14rem;
  }
}

.reason {
  padding: 80rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 60rem 0;
  }
}
.reason__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .reason__inner {
    padding: 0 20rem;
  }
}
.reason__list {
  display: flex;
  flex-direction: column;
  gap: 40rem;
}
.reason__card {
  border: 2rem solid #49B785;
  border-radius: 50rem;
  padding: 40rem 48rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .reason__card {
    padding: 28rem 20rem;
  }
}
.reason__card--with-image {
  display: flex;
  align-items: flex-start;
  gap: 32rem;
}
@media screen and (max-width: 767px) {
  .reason__card--with-image {
    flex-direction: column;
  }
}
.reason__card-body {
  flex: 1;
}
.reason__card-row {
  display: flex;
  align-items: flex-start;
  gap: 32rem;
}
@media screen and (max-width: 767px) {
  .reason__card-row {
    flex-direction: column;
  }
}
.reason__card-row .reason__card-text {
  flex: 1;
  margin-bottom: 0;
}
.reason__card-row .reason__card-side-image {
  flex: 0 0 450rem;
}
.reason__card-side-image {
  flex: 0 0 300rem;
}
@media screen and (max-width: 767px) {
  .reason__card-side-image {
    flex: 0 0 auto;
    width: 180rem;
    margin: 0 auto;
  }
}
.reason__card-side-image img {
  width: 100%;
  height: auto;
}
.reason__card-header {
  display: flex;
  align-items: center;
  gap: 20rem;
  margin-bottom: 20rem;
}
.reason__card-number {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 48rem;
  font-weight: 700;
  color: #49B785;
  line-height: 1;
  opacity: 0.8;
}
.reason__card-title {
  font-size: 24rem;
  font-weight: 700;
  color: #0A0A0A;
}
@media screen and (max-width: 767px) {
  .reason__card-title {
    font-size: 20rem;
  }
}
.reason__card-title-sep {
  color: #49B785;
  margin: 0 4rem;
}
.reason__card-divider {
  width: 100%;
  height: 2rem;
  background-color: #49B785;
  margin-bottom: 20rem;
}
.reason__card-text {
  font-size: 16rem;
  color: #0A0A0A;
  line-height: 1.8;
  margin-bottom: 24rem;
}
@media screen and (max-width: 767px) {
  .reason__card-text {
    font-size: 14rem;
  }
}
.reason__card-visual {
  background-color: #E7EFF3;
  border-radius: 50rem;
  overflow: hidden;
  padding: 32rem;
}
@media screen and (max-width: 767px) {
  .reason__card-visual {
    padding: 20rem;
  }
}
.reason__card-visual > img {
  width: 100%;
  display: block;
}
.reason__card-visual-heading {
  text-align: center;
  font-size: 20rem;
  font-weight: 700;
  color: #3A9A6E;
  margin-bottom: 24rem;
}
.reason__card-visual-placeholder {
  text-align: center;
  padding: 40rem;
  color: #999999;
  font-size: 14rem;
}
.reason__bars {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  margin-bottom: 24rem;
}
.reason__bars-row {
  display: flex;
  align-items: center;
  gap: 12rem;
}
@media screen and (max-width: 767px) {
  .reason__bars-row {
    flex-wrap: wrap;
  }
}
.reason__bars-label {
  flex: 0 0 120rem;
  font-size: 14rem;
  color: #3A9A6E;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .reason__bars-label {
    flex: 0 0 100rem;
    font-size: 12rem;
  }
}
.reason__bars-label-main {
  font-size: 16rem;
}
@media screen and (max-width: 767px) {
  .reason__bars-label-main {
    font-size: 14rem;
  }
}
.reason__bars-label small {
  font-size: 12rem;
  font-weight: 400;
  color: #999999;
}
.reason__bars-bar {
  height: 36rem;
  border-radius: 4rem;
  background-color: #E8927C;
}
.reason__bars-bar--long {
  width: 200rem;
}
@media screen and (max-width: 767px) {
  .reason__bars-bar--long {
    width: 120rem;
  }
}
.reason__bars-bar--short {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .reason__bars-bar--short {
    width: 40rem;
  }
}
.reason__bars-desc {
  flex: 1;
  font-size: 14rem;
  color: #0A0A0A;
}
@media screen and (max-width: 767px) {
  .reason__bars-desc {
    font-size: 12rem;
  }
}
.reason__bars-desc strong {
  font-size: 20rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .reason__bars-desc strong {
    font-size: 18rem;
  }
}
.reason__bars-img {
  flex: 1;
  width: 0;
  height: auto;
  display: block;
}
.reason__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16rem;
}
@media screen and (max-width: 767px) {
  .reason__points {
    grid-template-columns: 1fr;
  }
}
.reason__point {
  background-color: #FFFFFF;
  border: 2rem solid #49B785;
  border-radius: 30rem;
  padding: 24rem 20rem;
  text-align: center;
}
.reason__point-icon {
  width: 48rem;
  height: auto;
  margin: 0 auto 12rem;
  display: block;
}
.reason__point-title {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 14rem;
  font-weight: 700;
  color: #49B785;
  margin-bottom: 12rem;
}
.reason__point-text {
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
  text-align: left;
}

.support {
  padding: 80rem 0;
  background-color: #F8FCFC;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 60rem 0;
  }
}
.support__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .support__inner {
    padding: 0 20rem;
  }
}
.support__lead {
  text-align: center;
  font-size: 16rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.8;
  margin-bottom: 40rem;
}
.support__lead-alpha {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  color: #49B785;
  font-size: 20rem;
  font-weight: 700;
  line-height: 36rem;
  letter-spacing: 0.4rem;
}
.support__card {
  border: 2rem solid #49B785;
  border-radius: 50rem;
  padding: 40rem 48rem;
  background-color: #FFFFFF;
  margin-bottom: 24rem;
}
@media screen and (max-width: 767px) {
  .support__card {
    padding: 28rem 20rem;
  }
}
.support__card-row {
  display: flex;
  align-items: flex-start;
  gap: 32rem;
}
@media screen and (max-width: 767px) {
  .support__card-row {
    flex-direction: column;
  }
}
.support__card-body {
  flex: 1;
}
.support__card-image {
  flex: 0 0 220rem;
}
@media screen and (max-width: 767px) {
  .support__card-image {
    flex: 0 0 auto;
    width: 160rem;
    margin: 0 auto;
  }
}
.support__card-image img {
  width: 100%;
  height: auto;
}
.support__card-title {
  font-size: 20rem;
  font-weight: 700;
  color: #49B785;
  margin-bottom: 16rem;
}
.support__card-divider {
  width: 100%;
  height: 2rem;
  background-color: #49B785;
  margin-bottom: 20rem;
}
.support__card-subtitle {
  font-size: 16rem;
  color: #0A0A0A;
  line-height: 1.8;
  margin-bottom: 16rem;
}
.support__card-text {
  font-size: 14rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 12rem;
}
.support__card-text:last-child {
  margin-bottom: 0;
}
.support__bottom-text {
  text-align: center;
  font-size: 16rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.8;
  margin-top: 40rem;
}
.support__bottom-highlight {
  color: #49B785;
  text-underline-offset: 4rem;
}

.price {
  padding: 80rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 60rem 0;
  }
}
.price__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .price__inner {
    padding: 0 20rem;
  }
}
.price__lead {
  text-align: center;
  font-size: 16rem;
  color: #0A0A0A;
  margin-bottom: 40rem;
}
.price__card {
  background-color: #E7EFF3;
  border-radius: 30rem;
  padding: 20rem;
  margin-bottom: 40rem;
}
@media screen and (max-width: 767px) {
  .price__card {
    padding: 24rem 16rem;
  }
}
.price__card-title {
  text-align: center;
  font-size: 24rem;
  font-weight: 700;
  color: #49B785;
  margin-bottom: 24rem;
}
.price__card-items {
  display: flex;
  gap: 16rem;
}
@media screen and (max-width: 767px) {
  .price__card-items {
    flex-direction: column;
  }
}
.price__card-item {
  flex: 1;
  background-color: #FFFFFF;
  border: 1rem solid #49B785;
  border-radius: 20rem;
  padding: 28rem 24rem;
  text-align: center;
}
.price__card-item--wide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .price__card-item--wide {
    flex-direction: column;
    text-align: center;
  }
}
.price__card-item-range {
  font-size: 14rem;
  color: #666666;
  margin-bottom: 12rem;
}
.price__card-item-price {
  font-size: 16rem;
  color: #0A0A0A;
  margin-bottom: 8rem;
}
.price__card-item-price strong {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 48rem;
  font-weight: 700;
  color: #49B785;
}
.price__card-item-note {
  font-size: 14rem;
  color: #999999;
}
.price__card-item-desc {
  font-size: 14rem;
  color: #666666;
}
.price__concerns {
  background-color: #FAFAFA;
  padding: 80rem 0;
  margin-top: 80rem;
}
@media screen and (max-width: 767px) {
  .price__concerns {
    padding: 60rem 0;
  }
}
.price__concerns-inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .price__concerns-inner {
    padding: 0 20rem;
  }
}
.price__concerns-title {
  text-align: center;
  font-size: 24rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 40rem;
}
.price__concern {
  background-color: #FFFFFF;
  border-radius: 50rem;
  padding: 40rem 48rem;
  margin-bottom: 32rem;
}
@media screen and (max-width: 767px) {
  .price__concern {
    padding: 28rem 20rem;
  }
}
.price__concern-header {
  display: flex;
  align-items: center;
  gap: 16rem;
  margin-bottom: 16rem;
}
.price__concern-label {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 16rem;
  font-weight: 700;
  color: #49B785;
  white-space: nowrap;
}
.price__concern-question {
  font-size: 20rem;
  font-weight: 700;
  color: #0A0A0A;
}
.price__concern-divider {
  width: 100%;
  height: 1rem;
  background-color: #49B785;
  margin-bottom: 24rem;
}
.price__concern-answer {
  text-align: center;
  font-size: 16rem;
  color: #0A0A0A;
  margin-bottom: 16rem;
}
.price__concern-sub {
  text-align: center;
  font-size: 14rem;
  color: #0A0A0A;
  margin-bottom: 24rem;
}
.price__concern-tag {
  display: inline-block;
  border: 1rem solid #B8D0C6;
  border-radius: 7rem;
  padding: 4rem 16rem;
  font-size: 14rem;
  margin: 0 4rem;
}
.price__concern-list {
  margin-bottom: 20rem;
}
.price__concern-list li {
  font-size: 14rem;
  color: #0A0A0A;
  padding: 6rem 0;
  padding-left: 20rem;
  position: relative;
}
.price__concern-list li::before {
  content: "";
  width: 8rem;
  height: 8rem;
  background-color: #49B785;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 14rem;
}
.price__concern-point {
  background-color: #FFFFFF;
  border-radius: 8rem;
}
.price__concern-point-label {
  font-size: 14rem;
  font-weight: 700;
  color: #49B785;
  margin-bottom: 4rem;
}
.price__concern-point-text {
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
}
.price__concern-text {
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
}
.price__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 16rem;
}
.price__steps-note {
  text-align: center;
  font-size: 14rem;
  color: #49B785;
}
.price__step {
  display: flex;
  align-items: center;
  gap: 16rem;
  width: 100%;
  background-color: #FFFFFF;
  border: 1rem solid #49B785;
  border-radius: 20rem;
  padding: 12rem 250rem;
  position: relative;
  margin-bottom: 24rem;
}
@media screen and (max-width: 767px) {
  .price__step {
    width: 100%;
    padding: 10rem 16rem;
  }
}
.price__step::after {
  content: "";
  position: absolute;
  bottom: -20rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 16rem;
  background-color: #49B785;
}
.price__step:last-child {
  margin-bottom: 0;
}
.price__step:last-child::after {
  display: none;
}
.price__step-label {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 14rem;
  font-weight: 700;
  color: #49B785;
  white-space: nowrap;
}
.price__step-text {
  font-size: 14rem;
  color: #0A0A0A;
}

.simulation {
  padding: 80rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .simulation {
    padding: 60rem 0;
  }
}
.simulation__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .simulation__inner {
    padding: 0 20rem;
  }
}
.simulation__desc {
  text-align: center;
  font-size: 14rem;
  color: #666666;
  margin-bottom: 40rem;
}
.simulation__box {
  max-width: 700rem;
  margin: 0 auto;
  background-color: #EFF8F4;
  border-radius: 12rem;
  padding: 40rem;
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .simulation__box {
    padding: 24rem 16rem;
  }
}
.simulation__form {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}
.simulation__field {
  display: flex;
  align-items: center;
  gap: 16rem;
}
@media screen and (max-width: 767px) {
  .simulation__field {
    flex-direction: column;
    align-items: flex-start;
    gap: 8rem;
  }
}
.simulation__field-label {
  font-size: 14rem;
  font-weight: 700;
  color: #0A0A0A;
  flex: 0 0 160rem;
}
@media screen and (max-width: 767px) {
  .simulation__field-label {
    flex: 0 0 auto;
  }
}
.simulation__field-input {
  flex: 1;
  width: 100%;
}
.simulation__field-input input,
.simulation__field-input select {
  width: 100%;
  padding: 12rem 16rem;
  border: 1rem solid #E0E0E0;
  border-radius: 8rem;
  font-size: 16rem;
  color: #0A0A0A;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
.simulation__field-input input:focus,
.simulation__field-input select:focus {
  border-color: #49B785;
  box-shadow: 0 0 0 3rem rgba(73, 183, 133, 0.1);
}
.simulation__field-input select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16rem center;
  padding-right: 40rem;
}
.simulation__submit {
  text-align: center;
  margin-top: 16rem;
}
.simulation__result {
  margin-top: 32rem;
  padding-top: 32rem;
  border-top: 2rem dashed #E0E0E0;
  display: none;
}
.simulation__result.is-visible {
  display: block;
}
.simulation__result-title {
  text-align: center;
  font-size: 18rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 24rem;
}
.simulation__result-cards {
  display: flex;
  gap: 16rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .simulation__result-cards {
    flex-direction: column;
  }
}
.simulation__result-card {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 8rem;
  padding: 24rem;
  text-align: center;
  border: 1rem solid #EEEEEE;
}
.simulation__result-card-label {
  font-size: 14rem;
  color: #666666;
  margin-bottom: 8rem;
}
.simulation__result-card-value {
  font-size: 24rem;
  font-weight: 700;
  color: #49B785;
}
.simulation__result-card-value small {
  font-size: 14rem;
  font-weight: 400;
}

.casestudies {
  padding: 80rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .casestudies {
    padding: 60rem 0;
  }
}
.casestudies__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .casestudies__inner {
    padding: 0 20rem;
  }
}
.casestudies__list {
  display: flex;
  gap: 32rem;
}
@media screen and (max-width: 767px) {
  .casestudies__list {
    flex-direction: column;
    gap: 20rem;
  }
}
.casestudies__item {
  flex: 1;
  background-color: #FFFFFF;
  border: 2rem solid #49B785;
  border-radius: 30rem;
  padding: 29rem 30rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .casestudies__item {
    padding: 24rem 20rem;
  }
}
.casestudies__item-text {
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
}
.casestudies__item-info {
  text-align: right;
  font-size: 14rem;
  color: #49B785;
  font-weight: 400;
}

.faq {
  padding: 80rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 60rem 0;
  }
}
.faq__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    padding: 0 20rem;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}
.faq__item {
  border: 2rem solid #49B785;
  border-radius: 20rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__item.is-open .faq__question-toggle::after {
  display: none;
}
.faq__item.is-open .faq__answer {
  max-height: 500rem;
  padding: 0 24rem 24rem;
  opacity: 1;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 16rem;
  width: 100%;
  padding: 20rem 24rem;
  font-size: 16rem;
  font-weight: 700;
  color: #0A0A0A;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 16rem;
    font-size: 14rem;
  }
}
.faq__question-icon {
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 18rem;
  font-weight: 700;
  color: #49B785;
}
.faq__question-text {
  flex: 1;
}
.faq__question-toggle {
  flex-shrink: 0;
  width: 24rem;
  height: 24rem;
  position: relative;
}
.faq__question-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 2rem;
  background-color: #49B785;
}
.faq__question-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 16rem;
  background-color: #49B785;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24rem;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 0 16rem;
  }
}
.faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16rem;
  padding-left: 4rem;
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .faq__answer-inner {
    padding-left: 0;
  }
}
.faq__answer-icon {
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 18rem;
  font-weight: 700;
  color: #49B785;
}
.faq__answer-text {
  flex: 1;
}

.cta {
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  z-index: 0;
}
.cta__bg-item {
  overflow: hidden;
}
.cta__bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 700rem;
  margin: 70rem auto 0;
  background: linear-gradient(180deg, #ECF4F6, #FFFFFF);
  padding: 60rem 70rem;
  border-radius: 30rem 30rem 0 0;
}
@media screen and (max-width: 767px) {
  .cta__content {
    margin: 0 20rem;
    padding: 40rem 20rem;
  }
}
.cta__header {
  text-align: center;
  margin-bottom: 48rem;
}
.cta__title {
  font-size: 20rem;
  font-weight: 500;
  color: #0A0A0A;
  margin-bottom: 24rem;
  line-height: 1.8;
}
.cta__title-highlight {
  color: #49B785;
  font-size: 22rem;
  text-underline-offset: 4rem;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  background: linear-gradient(90deg, #FFA501, #FF2E45);
  color: #FFFFFF;
  font-size: 16rem;
  font-weight: 700;
  padding: 14rem 40rem;
  border-radius: 50rem;
  margin-bottom: 32rem;
  transition: all 0.3s ease;
}
.cta__btn:hover {
  opacity: 0.9;
  transform: translateY(-1rem);
}
.cta__btn img {
  width: 20rem;
  height: auto;
}
.cta__tel-lead {
  font-size: 16rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.8;
  margin-bottom: 8rem;
}
.cta__tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 36rem;
  font-weight: 700;
  color: #49B785;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .cta__tel-number {
    font-size: 28rem;
  }
}
.cta__tel-number a {
  color: #49B785;
}
.cta__tel-icon {
  width: 24rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .cta__tel-icon {
    width: 24rem;
  }
}
.cta__tel-notes p {
  font-size: 12rem;
  color: #666666;
  line-height: 1.8;
}
.cta__form-area {
  text-align: center;
}
.cta__form-title {
  font-size: 24rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 16rem;
}
.cta__form-lead {
  font-size: 14rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.8;
  margin-bottom: 8rem;
}
.cta__form-required {
  font-size: 12rem;
  color: #999999;
  margin-bottom: 32rem;
}
.cta__form {
  text-align: left;
}
.cta__form-row {
  display: flex;
  align-items: flex-start;
  gap: 16rem;
  margin-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .cta__form-row {
    flex-direction: column;
    gap: 8rem;
  }
}
.cta__form-label {
  flex: 0 0 160rem;
  font-size: 14rem;
  font-weight: 400;
  color: #0A0A0A;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .cta__form-label {
    flex: 0 0 auto;
    padding-top: 0;
  }
}
.cta__form-asterisk {
  color: #49B785;
  font-weight: 700;
}
.cta__form-input, .cta__form-textarea {
  flex: 1;
  width: 100%;
  padding: 10rem 16rem;
  border: 1rem solid #E0E0E0;
  border-radius: 4rem;
  font-size: 14rem;
  color: #0A0A0A;
  background-color: #FFFFFF;
  font-family: inherit;
}
.cta__form-input::placeholder, .cta__form-textarea::placeholder {
  color: #999999;
}
.cta__form-input:focus, .cta__form-textarea:focus {
  border-color: #49B785;
  outline: none;
}
.cta__form-textarea {
  resize: vertical;
}
.cta__form-policy {
  flex: 1;
}
.cta__form-policy-box {
  border: 1rem solid #E0E0E0;
  border-radius: 4rem;
  padding: 12rem 16rem;
  font-size: 12rem;
  color: #0A0A0A;
  line-height: 1.8;
  max-height: 100rem;
  overflow-y: auto;
  margin-bottom: 12rem;
}
.cta__form-checkbox {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 14rem;
  color: #0A0A0A;
  cursor: pointer;
}
.cta__form-checkbox input[type=checkbox] {
  width: 18rem;
  height: 18rem;
  accent-color: #49B785;
  appearance: auto;
}
.cta__form-submit {
  text-align: center;
  margin-top: 32rem;
}
.cta__form-submit-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FFA501, #FF2E45);
  color: #FFFFFF;
  font-size: 16rem;
  font-weight: 700;
  padding: 14rem 80rem;
  border-radius: 50rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta__form-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1rem);
}
.cta .wpcf7 {
  width: 100%;
}
.cta .wpcf7-form .cta__form-row {
  display: flex;
  align-items: flex-start;
  gap: 16rem;
  margin-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .cta .wpcf7-form .cta__form-row {
    flex-direction: column;
    gap: 8rem;
  }
}
.cta .wpcf7-form .wpcf7-form-control-wrap {
  flex: 1;
  width: 100%;
}
.cta .wpcf7-form input[type=text],
.cta .wpcf7-form input[type=email],
.cta .wpcf7-form input[type=tel],
.cta .wpcf7-form textarea {
  width: 100%;
  padding: 10rem 16rem;
  border: 1rem solid #E0E0E0;
  border-radius: 4rem;
  font-size: 14rem;
  color: #0A0A0A;
  background-color: #FFFFFF;
  font-family: inherit;
}
.cta .wpcf7-form input[type=text]::placeholder,
.cta .wpcf7-form input[type=email]::placeholder,
.cta .wpcf7-form input[type=tel]::placeholder,
.cta .wpcf7-form textarea::placeholder {
  color: #999999;
}
.cta .wpcf7-form input[type=text]:focus,
.cta .wpcf7-form input[type=email]:focus,
.cta .wpcf7-form input[type=tel]:focus,
.cta .wpcf7-form textarea:focus {
  border-color: #49B785;
  outline: none;
}
.cta .wpcf7-form input[type=submit] {
  display: inline-block;
  background: linear-gradient(90deg, #FFA501, #FF2E45);
  color: #FFFFFF;
  font-size: 16rem;
  font-weight: 700;
  padding: 14rem 80rem;
  border-radius: 50rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.cta .wpcf7-form input[type=submit]:hover {
  opacity: 0.9;
  transform: translateY(-1rem);
}
.cta .wpcf7-form .wpcf7-list-item {
  margin: 0;
}
.cta .wpcf7-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 14rem;
  color: #0A0A0A;
  cursor: pointer;
}
.cta .wpcf7-form .wpcf7-not-valid-tip {
  color: #FF2E45;
  font-size: 12rem;
  margin-top: 4rem;
}
.cta .wpcf7-form .wpcf7-response-output {
  text-align: center;
  font-size: 14rem;
  margin-top: 16rem;
  padding: 12rem;
  border-radius: 4rem;
}

.footer {
  background-color: #FFFFFF;
  padding: 60rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40rem 0;
  }
}
.footer__inner {
  padding: 0 250rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 20rem;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__logo {
  margin-bottom: 24rem;
}
.footer__logo img {
  height: 80rem;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    height: 60rem;
  }
}
.footer__company {
  font-size: 16rem;
  color: #0A0A0A;
  font-weight: 400;
  margin-bottom: 20rem;
}
.footer__address {
  margin-bottom: 20rem;
}
.footer__address p {
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
}
.footer__link a {
  font-size: 14rem;
  color: #49B785;
  text-decoration: underline;
  text-underline-offset: 4rem;
}
.footer__link a:hover {
  text-decoration: none;
}
