*,
*::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: 56rem 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40rem 0;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 32rem;
}
@media screen and (max-width: 767px) {
  .section-heading {
    margin-bottom: 20rem;
  }
}
.section-heading__en {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  color: #49B785;
  font-weight: 700;
  text-align: center;
  font-size: 24rem;
  margin-bottom: 4rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .section-heading__en {
    font-size: 16rem;
    letter-spacing: 0.04em;
  }
}
.section-heading__ja {
  font-size: 40rem;
  color: #0A0A0A;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .section-heading__ja {
    font-size: 26rem;
  }
}
.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;
  padding: 40rem 0 0;
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 0;
  }
}
.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;
  opacity: 0.55;
}
.hero__person {
  position: absolute;
  bottom: 50rem;
  z-index: 1;
  width: 280rem;
}
.hero__person img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__person--left {
  left: 50px;
}
.hero__person--right {
  right: 50px;
  width: 345rem !important;
}
@media screen and (max-width: 767px) {
  .hero__person {
    top: 0;
    bottom: auto;
    width: 160rem;
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding: 20rem 20rem 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__appeal {
  display: block;
  width: min(100%, 820rem);
  margin-bottom: 16rem;
  padding: 10rem 16rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 18rem;
  box-sizing: border-box;
}
.hero__appeal img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .hero__appeal {
    width: 100%;
    margin-bottom: 12rem;
  }
}
.hero__top {
  display: flex;
  align-items: center;
  gap: 24rem;
  background: #FFFFFF;
  border-radius: 12rem;
  padding: 16rem 32rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .hero__top {
    flex-direction: column;
    gap: 12rem;
    padding: 16rem 20rem;
  }
}
.hero__left {
  flex-shrink: 0;
}
.hero__label {
  font-size: 13rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .hero__label {
    text-align: center;
  }
}
.hero__title {
  font-size: 20rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 18rem;
  }
}
.hero__checks {
  list-style: none;
}
.hero__checks li {
  position: relative;
  padding-left: 28rem;
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
  margin-bottom: 4rem;
  font-weight: 500;
}
.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3rem;
  width: 20rem;
  height: 20rem;
  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-area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 24rem;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .hero__price-area {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero__price-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .hero__price-left {
    display: contents;
  }
}
.hero__price-lead {
  font-size: 36rem;
  font-weight: 700;
  color: #49B785;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .hero__price-lead {
    width: 100%;
    font-size: 24rem;
    text-align: center;
  }
  .hero__price-lead br {
    display: none;
  }
}
.hero__price-monthly {
  font-size: 40rem;
  font-weight: 700;
  color: #0A0A0A;
}
@media screen and (max-width: 767px) {
  .hero__price-monthly {
    font-size: 24rem;
  }
}
.hero__price-number span {
  font-size: 160rem;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 0.85;
  color: #1F7A52;
  background: none;
  font-style: italic;
  -webkit-text-fill-color: currentColor;
}
@media screen and (max-width: 767px) {
  .hero__price-number span {
    font-size: 90rem;
  }
}
.hero__price-yen {
  font-size: 52rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: -8rem;
}
@media screen and (max-width: 767px) {
  .hero__price-yen {
    font-size: 28rem;
  }
}
.hero__features {
  display: flex;
  gap: 16rem;
  margin-bottom: 16rem;
  width: 100%;
  max-width: 620rem;
}
@media screen and (max-width: 767px) {
  .hero__features {
    gap: 12rem;
  }
}
.hero__feature {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8rem;
  padding: 20rem 24rem;
  display: flex;
  align-items: center;
  gap: 16rem;
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .hero__feature {
    flex-direction: column;
    text-align: center;
    padding: 8rem 8rem;
    gap: 4rem;
  }
}
.hero__feature-icon-wrap {
  flex-shrink: 0;
  width: 56rem;
  height: 56rem;
  background: #EEF5F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__feature-icon {
  width: 28rem;
  height: 28rem;
  object-fit: contain;
  display: block;
}
.hero__feature-body {
  flex: 1;
}
.hero__feature-title {
  font-size: 16rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.4;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .hero__feature-title {
    font-size: 15rem;
  }
}
.hero__feature-desc {
  font-size: 12rem;
  color: #0A0A0A;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .hero__feature-desc {
    font-size: 8rem;
  }
}
.hero__bottom {
  text-align: center;
  padding-bottom: 40rem;
}
.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;
}

.trouble {
  padding: 56rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .trouble {
    padding: 40rem 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;
    width: 100%;
    height: auto;
    padding: 16rem;
    gap: 12rem;
  }
}
.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 {
    width: 100%;
    height: auto;
    padding: 16rem;
    border-radius: 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: 56rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 40rem 0;
  }
}
.reason04{
  text-align: center;
}
.reason04 img{
  width: 50% !important;
}
.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 300rem;
}
@media screen and (max-width: 767px) {
  .reason__card-row .reason__card-side-image {
    flex: 0 0 auto;
    width: 220rem;
    margin: 0 auto;
  }
}
.reason__card-side-image {
  flex: 0 0 300rem;
}
@media screen and (max-width: 767px) {
  .reason__card-side-image {
    flex: 0 0 auto;
    width: 100%;
    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;
    font-weight: 500;
  }
}
.reason__card-title-sep {
  color: #49B785;
  margin: 0 4rem;
}
.reason__card-divider {
  width: 100%;
  height: 1rem;
  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;
    border-radius: 30rem;
  }
}
.reason__card-visual > img,
.reason__card-visual > picture img {
  width: 100%;
  display: block;
}
.reason__card-visual-heading {
  text-align: center;
  font-size: 20rem;
  font-weight: 700;
  color: #3A9A6E;
  margin-bottom: 24rem;
}
@media screen and (max-width: 767px) {
  .reason__card-visual-heading {
    display: none;
  }
}
.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-direction: column;
    align-items: stretch;
  }
}
.reason__bars-label {
  flex: 0 0 120rem;
  font-size: 14rem;
  color: #3A9A6E;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .reason__bars-label {
    display: none;
  }
}
.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;
}
@media screen and (max-width: 767px) {
  .reason__bars-img {
    flex: none;
    width: 100%;
  }
}
.reason__bars-img img {
  width: 100%;
  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;
    gap: 9rem;
  }
}
.reason__point {
  background-color: #FFFFFF;
  border: 2rem solid #49B785;
  border-radius: 30rem;
  padding: 24rem 20rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason__point {
    display: flex;
    align-items: center;
    gap: 0;
    text-align: left;
    padding: 16rem 20rem;
    border-radius: 16rem;
  }
}
.reason__point-left {
  display: contents;
}
@media screen and (max-width: 767px) {
  .reason__point-left {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    padding-right: 16rem;
  }
}
.reason__point-icon {
  width: 48rem;
  height: auto;
  margin: 0 auto 12rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .reason__point-icon {
    margin: 0 0 4rem;
    flex-shrink: 0;
    width: 40rem;
  }
}
.reason__point-title {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 14rem;
  font-weight: 700;
  color: #49B785;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .reason__point-title {
    margin-bottom: 0;
    white-space: nowrap;
  }
}
.reason__point-text {
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .reason__point-text {
    font-size: 12rem;
  }
}

.support {
  padding: 56rem 0;
  background-color: #F8FCFC;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 40rem 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: 56rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 40rem 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__plan-visual {
  display: block;
  width: min(100%, 980rem);
  margin: 0 auto 56rem;
}
.price__plan-visual img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .price__plan-visual {
    width: 100%;
    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;
  flex-wrap: wrap;
  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: 15px 24rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__card-item {
    border-radius: 24rem;
    padding: 10rem 16rem 0;
  }
}
.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;
    gap: 0;
  }
}
.price__card-item-range {
  font-size: 14rem;
  color: #666666;
  line-height: 1;
}
.price__card-item-price {
  font-size: 16rem;
  color: #0A0A0A;
  margin: 8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .price__card-item-price {
    display: inline;
    margin-bottom: 0;
    font-size: 17rem;
  }
}
.price__card-item-price strong {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 52rem;
  font-weight: 700;
  color: #49B785;
}
@media screen and (max-width: 767px) {
  .price__card-item-price strong {
    font-size: 30rem;
  }
}
.price__card-item-note {
  font-size: 14rem;
  color: #0A0A0A;
}
@media screen and (max-width: 767px) {
  .price__card-item-note {
    display: inline;
    font-size: 12rem;
  }
}
.price__card-item-desc {
  font-size: 14rem;
  color: #0A0A0A;
}
.price__concerns {
  background-color: #FAFAFA;
  padding: 56rem 0;
  margin-top: 48rem;
}
@media screen and (max-width: 767px) {
  .price__concerns {
    padding: 40rem 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;
  text-decoration: underline;
  text-decoration-color: #F17860;
  text-decoration-thickness: 8rem;
  text-underline-offset: -1rem;
}
.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-sub-text {
  margin-bottom: 8rem;
}
.price__concern-tags {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .price__concern-tags {
    gap: 8rem;
  }
}
.price__concern-tag {
  display: inline-block;
  border: 1rem solid #B8D0C6;
  border-radius: 7rem;
  padding: 4rem 16rem;
  font-size: 14rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .price__concern-tag {
    border-radius: 10rem;
    font-size: 12rem;
  }
}
.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;
  font-weight: 500;
}

.simulation {
  padding: 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .simulation {
    padding-left: 20rem;
  }
}
.simulation img {
  width: 100%;
  max-width: 900rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

.casestudies {
  padding: 56rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .casestudies {
    padding: 40rem 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: 56rem 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 40rem 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;
  background-color: #ECF4F6;
  padding-top: 70rem;
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.5;
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 700rem;
  margin: 0 auto 30px;
  background: linear-gradient(180deg, rgba(236, 244, 246, 0.6), rgba(255, 255, 255, 0.6));
  padding: 60rem 70rem;
  border-radius: 30rem;
}
@media screen and (max-width: 767px) {
  .cta {
    padding-top: 40rem;
  }
  .cta__content {
    margin: 0 24rem 30px;
    padding: 40rem 20rem;
    border-radius: 30rem;
  }
}
.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;
}
@media screen and (max-width: 767px) {
  .cta__tel-lead {
    font-size: 13rem;
  }
}
.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: #F5820A;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .cta__tel-number {
    font-size: 28rem;
  }
}
.cta__tel-number a {
  color: #F5820A;
}
.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;
}
@media screen and (max-width: 767px) {
  .cta__form-lead {
    font-size: 13rem;
  }
}
.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;
  box-shadow: 10rem 10rem 20rem rgba(73, 183, 133, 0.27);
}
.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;
  box-shadow: 10rem 10rem 20rem rgba(73, 183, 133, 0.27);
}
.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__license {
  font-size: 14rem;
  color: #0A0A0A;
  line-height: 1.8;
  margin-bottom: 20rem;
}
.footer__link a {
  font-size: 14rem;
  color: #49B785;
  text-decoration: underline;
  text-underline-offset: 4rem;
}
.footer__link a:hover {
  text-decoration: none;
}

/* ========== FB修正: ヘッダーナビ ========== */
.header__nav {
  margin-left: auto;
  margin-right: 24rem;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28rem;
}
.header__nav-link {
  font-size: 14rem;
  font-weight: 500;
  color: #0A0A0A;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #49B785;
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 60rem;
    left: 0;
    width: 100%;
    margin: 0;
    background-color: #FFFFFF;
    box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.08);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .header__nav.is-open {
    transform: translateY(0);
  }
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8rem 20rem;
  }
  .header__nav-link {
    display: block;
    padding: 14rem 0;
    font-size: 14rem;
    border-bottom: 1rem solid #EEEEEE;
  }
  .header__nav-list li:last-child .header__nav-link {
    border-bottom: none;
  }
  .header__hamburger {
    display: block;
    flex-shrink: 0;
    width: 40rem;
    height: 40rem;
    margin-left: 8rem;
    position: relative;
  }
  .header__hamburger span {
    position: absolute;
    left: 50%;
    width: 22rem;
    height: 2rem;
    margin-left: -11rem;
    background-color: #0A0A0A;
    border-radius: 2rem;
    transition: all 0.3s ease;
  }
  .header__hamburger span:nth-child(1) {
    top: 12rem;
  }
  .header__hamburger span:nth-child(2) {
    top: 19rem;
  }
  .header__hamburger span:nth-child(3) {
    top: 26rem;
  }
  .header__hamburger.is-active span:nth-child(1) {
    top: 19rem;
    transform: rotate(45deg);
  }
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-child(3) {
    top: 19rem;
    transform: rotate(-45deg);
  }
}

/* ========== FB修正: ヒーロー再構成 ========== */
.hero__person {
  width: 286rem;
}
@media screen and (max-width: 767px) {
  .hero__person {
    width: 169rem;
  }
  .hero__inner {
    /* padding-top: 310rem; */
  }
}
.hero__banner {
  background-color: #FFFFFF;
  border: 2rem solid #0A0A0A;
  border-radius: 8rem;
  padding: 12rem 40rem;
  margin-bottom: 20rem;
}
.hero__banner p {
  font-size: 22rem;
  font-weight: 700;
  color: #0A0A0A;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hero__banner {
    padding: 10rem 20rem;
  }
  .hero__banner p {
    font-size: 16rem;
  }
}
.hero__main {
  text-align: center;
  margin-bottom: 12rem;
}
.hero__owner {
  font-size: 30rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.5;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .hero__owner {
    font-size: 21rem;
  }
}
.hero .hero__title {
  font-size: 56rem;
  font-weight: 700;
  color: #49B785;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero .hero__title {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero__title {
    font-size: 32rem;
  }
}
.hero__area {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1rem solid #49B785;
  border-radius: 12rem;
  padding: 14rem 32rem;
  text-align: center;
  margin-bottom: 24rem;
}
.hero__area-title {
  display: inline-block;
  font-size: 15rem;
  font-weight: 700;
  color: #49B785;
  margin-bottom: 4rem;
}
.hero__area-text {
  font-size: 16rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .hero__area {
    padding: 12rem 16rem;
  }
  .hero__area-text {
    font-size: 13rem;
  }
}

/* ========== FB修正: Reason01 比較図 ========== */
.compare {
  background-color: #ECF2F6;
  border-radius: 16rem;
  padding: 24rem 32rem 32rem;
}
.compare__title {
  font-size: 20rem;
  font-weight: 700;
  color: #2F8A63;
  text-align: center;
  margin-bottom: 20rem;
}
.compare__body {
  background-color: #FFFFFF;
  border-radius: 12rem;
  padding: 32rem 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40rem;
}
.compare__col {
  text-align: center;
}
.compare__name {
  font-size: 14rem;
  font-weight: 500;
  color: #49B785;
  margin-bottom: 8rem;
}
.compare__price {
  font-size: 16rem;
  font-weight: 500;
  color: #333F4D;
  line-height: 1.6;
}
.compare__price strong {
  font-size: 28rem;
  font-weight: 700;
}
.compare__price--rakuman {
  color: #FF2E45;
}
.compare__price--rakuman strong {
  font-size: 36rem;
}
.compare__unit {
  font-size: 14rem;
  color: #FF2E45;
}
.compare__center {
  display: flex;
  align-items: flex-end;
  gap: 16rem;
}
.compare__bar {
  display: block;
  width: 36rem;
  background-color: #49B785;
  border-radius: 2rem;
}
.compare__bar--tall {
  height: 170rem;
}
.compare__bar--short {
  height: 30rem;
}
.compare__saving {
  font-size: 18rem;
  font-weight: 700;
  color: #F2674F;
  text-align: center;
  line-height: 1.6;
  align-self: center;
}
.compare__saving strong {
  font-size: 28rem;
}
@media screen and (max-width: 767px) {
  .compare {
    padding: 20rem 16rem 24rem;
  }
  .compare__title {
    font-size: 17rem;
  }
  .compare__body {
    flex-direction: column;
    gap: 24rem;
    padding: 24rem 20rem;
  }
  .compare__center {
    order: -1;
    width: 100%;
    justify-content: center;
  }
  .compare__bar--tall {
    height: 120rem;
  }
}

/* ========== FB修正: 中間CTA ========== */
.mid-cta {
  background-color: #F2F9F6;
  padding: 48rem 20rem;
}
.mid-cta__inner {
  max-width: 760rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40rem;
}
.mid-cta__image {
  flex-shrink: 0;
  width: 180rem;
  background-color: #FFFFFF;
  border-radius: 16rem;
  overflow: hidden;
  box-shadow: 0 4rem 12rem rgba(0, 0, 0, 0.06);
}
.mid-cta__image img {
  display: block;
  width: 100%;
  height: auto;
}
.mid-cta__body {
  text-align: center;
}
.mid-cta__lead {
  font-size: 22rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.6;
  margin-bottom: 16rem;
}
.mid-cta__body .cta__btn {
  margin-bottom: 8rem;
}
.mid-cta__note {
  font-size: 12rem;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .mid-cta {
    padding: 40rem 20rem;
  }
  .mid-cta__inner {
    flex-direction: column;
    gap: 24rem;
  }
  .mid-cta__image {
    width: 140rem;
  }
  .mid-cta__lead {
    font-size: 18rem;
  }
}

/* ========== FB修正: 料金プラン配置 ========== */
.price__card-item--featured {
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .price__card-items .price__card-item:not(.price__card-item--featured) {
    flex: 1 1 calc(50% - 8rem);
  }
}

/* ========== FB修正: 電話受付時間 ========== */
.cta__tel-hours {
  font-size: 14rem;
  font-weight: 500;
  color: #0A0A0A;
  margin-bottom: 8rem;
}

/* ========== FB4修正: 料金プラン 660円をHero価格と同色(濃い緑)で強調 ========== */
.price__card-item--featured .price__card-item-price strong {
  color: #1F7A52;
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* ========== FB4修正: CTA近傍の安心表記・電話番号(オレンジ) ========== */
.cta-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12rem;
  margin-top: 4rem;
}
.cta-trust--center {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8rem 16rem;
  margin: 0 auto 24rem;
}
.cta-trust__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8rem 16rem;
}
.cta-trust__badge {
  position: relative;
  padding-left: 22rem;
  font-size: 14rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.4;
}
.cta-trust__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16rem;
  height: 16rem;
  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;
}
.cta-trust--center .cta-trust__badge {
  font-size: 15rem;
}
.cta-trust__tel {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 24rem;
  font-weight: 700;
  color: #F5820A;
  line-height: 1;
}
.cta-trust__tel img {
  width: 20rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .cta-trust__badge {
    font-size: 12rem;
  }
  .cta-trust__tel {
    font-size: 20rem;
  }
}

/* ========== FB4修正: フォーム上部の安心表記 ========== */
.cta__form-notes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6rem 16rem;
  margin-bottom: 12rem;
}
.cta__form-notes span {
  position: relative;
  padding-left: 18rem;
  font-size: 13rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.6;
}
.cta__form-notes span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13rem;
  height: 13rem;
  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;
}
@media screen and (max-width: 767px) {
  .cta__form-notes span {
    font-size: 11rem;
  }
}

/* ========== FB4修正: 実績・免許セクション(Trouble→Reason間) ========== */
.achievement {
  background-color: #F2F9F6;
  padding: 40rem 0;
}
@media screen and (max-width: 767px) {
  .achievement {
    padding: 32rem 0;
  }
}
.achievement__inner {
  max-width: 900rem;
  margin: 0 auto;
  padding: 0 20rem;
}
.achievement__license {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16rem;
  margin-bottom: 28rem;
}
@media screen and (max-width: 767px) {
  .achievement__license {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 20rem;
  }
}
.achievement__logo {
  height: 48rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .achievement__logo {
    height: 40rem;
  }
}
.achievement__license-text {
  font-size: 16rem;
  font-weight: 700;
  color: #0A0A0A;
}
@media screen and (max-width: 767px) {
  .achievement__license-text {
    font-size: 14rem;
    text-align: center;
  }
}
.achievement__card {
  display: flex;
  align-items: stretch;
  background-color: #FFFFFF;
  border: 1rem solid #D4E8DE;
  border-radius: 24rem;
  padding: 28rem 20rem;
  box-shadow: 0 8rem 24rem rgba(47, 138, 99, 0.06);
}
@media screen and (max-width: 767px) {
  .achievement__card {
    flex-direction: column;
    padding: 8rem 16rem;
    border-radius: 20rem;
  }
}
.achievement__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10rem;
  padding: 12rem 16rem;
}
@media screen and (max-width: 767px) {
  .achievement__stat {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 14rem;
    padding: 14rem 4rem;
  }
}
.achievement__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #E9F7F0, #D6EFE2);
  color: #2F8A63;
  flex-shrink: 0;
}
.achievement__stat-icon svg {
  width: 26rem;
  height: 26rem;
}
.achievement__stat-text {
  font-size: 15rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .achievement__stat-text {
    font-size: 14rem;
  }
  .achievement__stat-text br {
    display: none;
  }
}
.achievement__stat--num {
  gap: 2rem;
}
.achievement__stat-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .achievement__stat--num {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .achievement__stat-big {
    justify-content: flex-start;
  }
}
.achievement__num {
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 64rem;
  font-weight: 700;
  color: #2FA06A;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .achievement__num {
    font-size: 48rem;
  }
}
.achievement__unit {
  display: inline-flex;
  align-items: baseline;
  font-size: 22rem;
  font-weight: 700;
  color: #0A0A0A;
}
.achievement__unit-sub {
  font-size: 14rem;
  font-weight: 700;
  margin-left: 2rem;
}
.achievement__sep {
  flex-shrink: 0;
  width: 1rem;
  align-self: center;
  height: 72rem;
  background-color: #E3EEE8;
}
@media screen and (max-width: 767px) {
  .achievement__sep {
    width: 100%;
    height: 1rem;
    align-self: stretch;
  }
}

/* ========== FB4修正: Support 6項目グリッド ========== */
.support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20rem;
}
@media screen and (max-width: 767px) {
  .support__grid {
    grid-template-columns: 1fr;
    gap: 12rem;
  }
}
.support__grid-item {
  position: relative;
  background-color: #FFFFFF;
  border: 1rem solid #E3EEE8;
  border-radius: 20rem;
  padding: 32rem 28rem 30rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.support__grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background: linear-gradient(90deg, #49B785, #7FD0AA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.support__grid-item:hover {
  transform: translateY(-4rem);
  border-color: #BFE3D3;
  box-shadow: 0 14rem 30rem rgba(47, 138, 99, 0.1);
}
.support__grid-item:hover::before {
  transform: scaleX(1);
}
@media screen and (max-width: 767px) {
  .support__grid-item {
    padding: 24rem 22rem;
  }
}
.support__grid-no {
  position: absolute;
  top: 22rem;
  right: 26rem;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 22rem;
  font-weight: 700;
  color: #C7E6D8;
  line-height: 1;
  letter-spacing: 0.02em;
}
.support__grid-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60rem;
  height: 60rem;
  border-radius: 18rem;
  background: linear-gradient(135deg, #E9F7F0, #D3EDDF);
  color: #2F8A63;
  margin-bottom: 20rem;
}
.support__grid-icon svg {
  width: 30rem;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .support__grid-icon {
    width: 52rem;
    height: 52rem;
    border-radius: 16rem;
    margin-bottom: 14rem;
  }
  .support__grid-icon svg {
    width: 26rem;
    height: 26rem;
  }
}
.support__grid-title {
  position: relative;
  font-size: 19rem;
  font-weight: 700;
  color: #0A0A0A;
  padding-bottom: 12rem;
  margin-bottom: 12rem;
}
.support__grid-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32rem;
  height: 3rem;
  border-radius: 2rem;
  background-color: #49B785;
}
.support__grid-text {
  font-size: 14rem;
  color: #555555;
  line-height: 1.85;
}
