@charset "UTF-8";
/* ==============================
  Base
============================== */
* {
  box-sizing: border-box;
}

html {
  /* 375px以下では全体を比例縮小し、狭幅での改行崩れ・文字切れを防ぐ
     （376px以上は従来どおり16px固定） */
  font-size: min(16px, 4.2667vw);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #65807e;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

/* ==============================
  Utility
============================== */
.u-br-sp {
  display: none;
}

.u-br-pc {
  display: inline;
}

@media (max-width: 767px) {
  .u-br-sp {
    display: inline;
  }
  .u-br-pc {
    display: none;
  }
}
/* ==============================
  01 Header
============================== */
.site-header {
  width: 100%;
  background: #ffffff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 93.75rem;
  min-height: 4.5rem;
  margin-inline: auto;
  padding: 0.9rem 5rem;
}

.site-header__heading {
  margin: 0;
  display: contents;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.site-header__logo {
  display: block;
  flex: 0 0 auto;
  width: 8rem;
  height: auto;
}

.site-header__lead {
  display: flex;
  flex-direction: column;
  color: #65807e;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header__lead--sp {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 2.125rem;
  margin-left: 1.5rem;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  min-height: 2.5rem;
  padding: 0.62em 1.6em 0.7em;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  background: #f5478d;
  box-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.12);
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .site-header__cta:hover {
    opacity: 0.85;
  }
}
.site-header__menu-button {
  box-sizing: content-box;
  width: 1.625rem;
  height: 1.125rem;
  /* 当たり判定を広げる（見た目は変えず、負マージンでレイアウトを維持） */
  padding: 0.75rem;
  margin: -0.75rem;
  gap: 0.375rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.site-header__menu-line {
  display: block;
  width: 1.625rem;
  height: 2px;
  border-radius: 999px;
  background: #3a4a4a;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ドロワー表示中は背面のスクロールを止める（iOS対策） */
body.is-menu-open {
  overflow: hidden;
}

.is-menu-open .site-header__menu-line:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}
.is-menu-open .site-header__menu-line:nth-child(2) {
  opacity: 0;
}
.is-menu-open .site-header__menu-line:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .site-header__inner {
    min-height: 4.0625rem;
    /* 右の浮動ハンバーガー分の余白を確保(CTAと重ならないように) */
    padding: 0.6875rem 3.5rem 0.75rem 0.875rem;
  }
  .site-header__brand {
    gap: 0.40625rem;
  }
  .site-header__logo {
    width: 6.125rem;
    height: auto;
  }
  .site-header__lead {
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 0.8rem;
  }
  .site-header__lead--pc {
    display: none;
  }
  .site-header__lead--sp {
    display: flex;
  }
  .site-header__actions {
    gap: 0.875rem;
    margin-left: clamp(0.5rem, 2.9vw, 0.75rem);
  }
  .site-header__cta {
    width: 6.25rem;
    height: 2.5rem;
    min-height: 2.5rem;
    padding: 0.62em 1em 0.7em;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .site-header__menu-button {
    /* SPではハンバーガーだけスクロール追従（浮動固定）。
       初期は枠なしフラット、スクロール後に正円＋薄いボーダーを付ける（JSでis-floating付与） */
    box-sizing: border-box;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    gap: 0.390625rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 60;
  }
  .site-header__menu-button.is-floating {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.12);
  }
  .site-header__menu-line {
    width: 1.59375rem;
    height: 3px;
  }
}
/* ==============================
  Drawer Menu
============================== */
.drawer-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.drawer-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.drawer-menu__inner {
  position: relative;
  box-sizing: border-box;
  width: min(100%, 25.875rem);
  min-height: 44.0625rem;
  margin-inline: auto;
}

.drawer-menu__close {
  position: absolute;
  top: 1.4375rem;
  right: 1.15625rem;
  width: 1.78125rem;
  height: 1.78125rem;
}

.drawer-menu__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.78125rem;
  height: 0.125rem;
  background: #3a4a4a;
  border-radius: 999px;
  transform-origin: center;
}

.drawer-menu__close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-menu__close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-menu__logo {
  position: absolute;
  top: 5rem;
  left: 3.84375rem;
  display: block;
  width: 7.8125rem;
}

.drawer-menu__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.drawer-menu__nav {
  position: absolute;
  top: 9.46875rem;
  left: 50%;
  width: 18.125rem;
  transform: translateX(-50%);
}

.drawer-menu__list {
  position: relative;
  height: 18.4375rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.drawer-menu__item {
  position: absolute;
  left: 0;
}

.drawer-menu__item:nth-child(1) {
  top: 0;
}

.drawer-menu__item:nth-child(2) {
  top: 3.15625rem;
}

.drawer-menu__item:nth-child(3) {
  top: 7.78125rem;
}

.drawer-menu__item:nth-child(4) {
  top: 12.71875rem;
}

.drawer-menu__item:nth-child(5) {
  top: 17.65625rem;
}

.drawer-menu__link {
  display: block;
  color: #444444;
  text-decoration: none;
}

.drawer-menu__item-label {
  display: block;
  color: #2fa26a;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.35;
}

.drawer-menu__item-title {
  display: block;
  margin-top: 0.25rem;
  color: #444444;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.drawer-menu__item:first-child .drawer-menu__item-title,
.drawer-menu__item:nth-child(5) .drawer-menu__item-title {
  margin-top: 0;
}

.drawer-menu__cta {
  position: absolute;
  top: 30.8125rem;
  left: 50%;
  display: grid;
  gap: 0.65625rem;
  width: 18.125rem;
  transform: translateX(-50%);
}

.drawer-menu__button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 4.03125rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 0.25rem 0 #dddddd;
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .drawer-menu__button:hover {
    opacity: 0.85;
  }
}
.drawer-menu__button--pink {
  background: #f5478d;
}

.drawer-menu__button--line {
  background: #4fb902;
}

.drawer-menu__button-text {
  min-width: 0;
}

.drawer-menu__free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.125rem;
  width: 2.125rem;
  height: 2.125rem;
  margin-left: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1;
  background: #ffffff;
  border-radius: 50%;
}

.drawer-menu__button--pink .drawer-menu__free {
  color: #f5478d;
}

.drawer-menu__button--line .drawer-menu__free {
  color: #4fb902;
}

@media (max-width: 767px) {
  .drawer-menu__inner {
    width: min(100%, 25.875rem);
    min-height: 44.0625rem;
  }
  .drawer-menu__close {
    top: 1.4375rem;
    right: 1.15625rem;
    width: 1.78125rem;
    height: 1.78125rem;
  }
  .drawer-menu__close-line {
    width: 1.78125rem;
    height: 0.125rem;
  }
  .drawer-menu__logo {
    top: 5rem;
    left: 3.84375rem;
    width: 7.8125rem;
  }
  .drawer-menu__nav {
    top: 9.46875rem;
    left: 50%;
    width: 18.125rem;
    transform: translateX(-50%);
  }
  .drawer-menu__list {
    height: 18.4375rem;
  }
  .drawer-menu__item:nth-child(2) {
    top: 3.15625rem;
  }
  .drawer-menu__item:nth-child(3) {
    top: 7.78125rem;
  }
  .drawer-menu__item:nth-child(4) {
    top: 12.71875rem;
  }
  .drawer-menu__item:nth-child(5) {
    top: 17.65625rem;
  }
  .drawer-menu__item-label {
    font-size: 0.625rem;
  }
  .drawer-menu__item-title {
    margin-top: 0.25rem;
    font-size: 1rem;
  }
  .drawer-menu__cta {
    top: 30.8125rem;
    left: 50%;
    gap: 0.65625rem;
    width: 18.125rem;
    transform: translateX(-50%);
  }
  .drawer-menu__button {
    min-height: 4.03125rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    box-shadow: 0 0.25rem 0 #dddddd;
  }
  .drawer-menu__free {
    flex-basis: 2.125rem;
    width: 2.125rem;
    height: 2.125rem;
    margin-left: 0.625rem;
    font-size: 0.6875rem;
  }
}
/* ==============================
  02 Main Visual
============================== */
.mainv {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.mainv__picture {
  display: block;
  width: 100%;
}

.mainv__image {
  display: block;
  width: 100%;
  height: auto;
}

/* 実績(9割以上/94%)直下に重ねる注釈
   画像は全幅でスケールするため、文字サイズはvw、左位置は中央からのcalcで追従させる */
.mainv__note {
  position: absolute;
  top: 74%;
  left: calc(50% - 34.5vw);
  margin: 0;
  color: #555555;
  font-size: clamp(0.55rem, 0.9vw, 0.85rem);
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 767px) {
  /* SPも実績(画像下部)に重ねて配置 */
  .mainv__note {
    top: 92%;
    left: calc(50% - 43.5vw);
  }
}
/* ==============================
  03 FV CTA
============================== */
.fv-cta {
  width: 100%;
  margin: 0;
  padding: 2.75rem 1rem 3.125rem;
  background: #ffffff;
}

.fv-cta__inner {
  width: 100%;
  max-width: 93.75rem;
  margin-inline: auto;
  text-align: center;
}

.fv-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: min(100%, 35rem);
  min-height: 4.5rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: #f5478d;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.16);
  transition: opacity 0.2s ease;
}

.fv-cta__button:hover {
  opacity: 0.82;
}

.fv-cta__button-text {
  white-space: nowrap;
}

.fv-cta__button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.125rem;
  min-height: 1.5625rem;
  border-radius: 0.3rem;
  color: #f5478d;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1;
  background: #ffffff;
}

.fv-cta__lead {
  margin: 1.25rem 0 0;
  color: #ed6d96;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.fv-cta__note {
  margin: 0.5625rem 0 0;
  color: #aaaaaa;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767px) {
  .fv-cta {
    margin-top: -1rem;
    padding: 0 clamp(1.5rem, 6.15%, 1.75rem) 2rem;
  }
  .fv-cta__button {
    gap: 0.5rem;
    width: 100%;
    max-width: 22.6875rem;
    height: 3.75rem;
    min-height: 3.75rem;
    font-size: 1rem;
  }
  .fv-cta__button-text {
    font-size: 4vw;
  }
  .fv-cta__button-label {
    width: 3.4375rem;
    min-height: 1.3125rem;
    border-radius: 0.25rem;
    font-size: clamp(0.875rem, 3.8vw, 1.125rem);
  }
  .fv-cta__lead {
    margin-top: 0.8rem;
    font-size: 3.5vw;
    line-height: 1.45;
  }
  .fv-cta__note {
    margin-top: 0.375rem;
    font-size: 0.625rem;
    line-height: 1.4;
  }
}
/* ==============================
  04 Photo Strip
============================== */
.photo-strip {
  width: 100%;
  margin: 0.5rem 0 1.875rem;
  padding-inline: 0;
  overflow: hidden;
}

.photo-strip__marquee {
  width: 100%;
  overflow: hidden;
}

.photo-strip__track {
  display: flex;
  width: max-content;
  padding: 0;
  margin: 0;
  list-style: none;
  animation: photo-strip-scroll 40s linear infinite;
}

.photo-strip__item {
  flex: 0 0 auto;
  margin-right: 0.5rem;
}

.photo-strip__item img {
  display: block;
  width: auto;
  height: 13rem;
  border-radius: 0.75rem;
}

@keyframes photo-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    /* 同一セットを2つ並べているので、半分動かすとシームレスにループ */
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .photo-strip__track {
    animation: none;
  }
}
@media (max-width: 767px) {
  .photo-strip {
    margin-bottom: 1.875rem;
  }
  .photo-strip__item {
    margin-right: 0.375rem;
  }
  .photo-strip__item img {
    height: 8rem;
    border-radius: 0.5rem;
  }
}
/* ==============================
  05 Features
============================== */
.features {
  width: 100%;
  margin: 0;
  padding: 0;
}

.features-heading {
  position: relative;
  min-height: 9.0625rem;
  margin-top: 1.875rem;
  overflow: hidden;
  background: #2fa26a;
}

.features-heading__panda {
  position: absolute;
  top: 0;
  left: calc(50% + 12.5rem);
  display: block;
  width: 10rem;
  height: auto;
}

.features-heading__content {
  padding-top: 1.875rem;
  text-align: center;
}

.features-heading__sub {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.features-heading__title {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.features-heading__title-line {
  position: relative;
  display: inline-block;
}

.features-heading__title-line::after {
  position: absolute;
  left: 0;
  bottom: -0.3125rem;
  display: block;
  width: 13.5625rem;
  height: 3px;
  background: #ffffff;
  content: "";
}

.features-cards {
  box-sizing: border-box;
  height: 18.75rem;
  padding: 2.5rem 0 2rem;
  background: #e9f5e2;
}

.features-cards__inner {
  display: grid;
  grid-template-columns: repeat(3, 22.5rem);
  justify-content: center;
  gap: 1.25rem;
  max-width: 71.5rem;
  margin-inline: auto;
}

.features-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 22.5rem;
  height: 12.5rem;
  padding: 1.25rem 1.5rem 1.375rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 3px 3px 4px rgba(137, 153, 126, 0.4);
}

.features-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.features-card__label {
  display: inline-flex;
  flex: 0 0 4.0625rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.0625rem;
  height: 4.0625rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  background: #44a155;
  border-radius: 50%;
}

.features-card__label-text {
  font-size: 0.875rem;
}

.features-card__label-number {
  margin-top: 0.1875rem;
  font-size: 1.5rem;
}

.features-card__title {
  margin: 0 0 1.125rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
}

.features-card__title-green {
  color: #44a155;
}

.features-card__title-pink {
  color: #ed6d96;
}

.features-card__text {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.features-card__text strong {
  color: #ed6d96;
  font-weight: 700;
}

@media (min-width: 768px) {
  .features-card {
    display: grid;
    flex-direction: initial;
    grid-template-columns: 4.0625rem 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 1rem;
    row-gap: 0.875rem;
    padding: 1.375rem 1.5rem;
  }
  .features-card__head {
    display: contents;
  }
  .features-card__label {
    grid-column: 1;
    grid-row: 1;
  }
  .features-card__title {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    align-self: center;
  }
  .features-card__text {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.features-results {
  box-sizing: border-box;
  height: 18.125rem;
  padding: 2.5rem 0 1.875rem;
  background: #ffffff;
}

.features-results__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.75rem;
  width: 100%;
  max-width: 93.75rem;
  height: 100%;
  margin-inline: auto;
}

.features-results__images {
  display: flex;
  align-items: flex-start;
  gap: 1.6875rem;
  margin-top: 2.8rem;
}

.features-results__image {
  display: block;
  width: 15rem;
  height: auto;
}

.features-results__note {
  margin: 0.75rem 0 0;
  color: #aaaaaa;
  font-size: 0.75rem;
  line-height: 1.5;
}

.features-results__panda {
  display: block;
  width: 8.125rem;
  height: auto;
}

@media (max-width: 767px) {
  .features-heading {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 145px;
    min-height: 0;
    margin-top: 1.875rem;
    padding: 0;
  }
  .features-heading__panda {
    display: none;
  }
  .features-heading__content {
    padding-top: 0;
  }
  .features-heading__sub {
    font-size: clamp(1.2rem, 4vw, 2rem);
    line-height: 1.25;
  }
  .features-heading__title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    line-height: 1.25;
  }
  .features-heading__title-line::after {
    bottom: -0.3rem;
    width: 100%;
    max-width: 100%;
    height: 3px;
  }
  .features-cards {
    box-sizing: border-box;
    height: auto;
    padding: 3.75rem clamp(1.625rem, 6.28vw, 3.25rem) 3.5rem;
  }
  .features-cards__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: none;
  }
  .features-card {
    gap: 0;
    width: min(100%, 45rem);
    height: auto;
    min-height: unset;
    padding: clamp(1.25rem, 4.83vw, 2.5rem) clamp(1.5rem, 8.09vw, 4.1875rem) clamp(1.875rem, 7.25vw, 3.75rem) clamp(1.375rem, 5.43vw, 2.8125rem);
    border-radius: 1.25rem;
  }
  .features-card__head {
    display: flex;
    align-items: center;
    column-gap: clamp(1rem, 6.85vw, 4.0625rem);
  }
  .features-card__label {
    flex-basis: clamp(4.0625rem, 15.7vw, 8.125rem);
    width: clamp(4.0625rem, 15.7vw, 8.125rem);
    height: clamp(4.0625rem, 15.7vw, 8.125rem);
  }
  .features-card__label-text {
    font-size: clamp(0.875rem, 3.38vw, 1.75rem);
  }
  .features-card__label-number {
    margin-top: 0.375rem;
    font-size: clamp(1.5rem, 5.8vw, 3rem);
  }
  .features-card__title {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding-top: 0.5rem;
    font-size: clamp(1.375rem, 4.35vw, 2.25rem);
    line-height: 1.25;
  }
  .features-card:nth-child(1) .features-card__title,
  .features-card:nth-child(3) .features-card__title {
    white-space: normal;
  }
  .features-card__text {
    width: 100%;
    margin-top: 0.9rem;
    font-size: clamp(1.1rem, 3.38vw, 1.75rem);
    line-height: 1.55;
  }
  .features-results {
    box-sizing: border-box;
    height: auto;
    min-height: 18.5rem;
    padding: 1.5rem 1rem 0;
    background: #ffffff;
  }
  /* PC同様にstats｜パンダを横並び・中央寄せ。コンテンツ幅を固定して
     画面幅が変わっても位置関係・縮尺を一定に保つ（右へ離れない） */
  .features-results__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 21.5rem;
    height: auto;
    margin-inline: auto;
    padding-bottom: 2.25rem;
  }
  .features-results__stats {
    position: static;
    flex: 0 0 auto;
  }
  .features-results__images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding-left: 0;
  }
  .features-results__image {
    width: 11.25rem;
    max-width: 100%;
  }
  .features-results__note {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    font-size: 0.75rem;
    text-align: left;
  }
  .features-results__panda {
    position: static;
    flex: 0 0 auto;
    width: 8.25rem;
  }
}
/* ==============================
  06 Owners
============================== */
.owners {
  box-sizing: border-box;
  min-height: 42.5625rem;
  padding: 4.5625rem 1.5rem 4.25rem;
  background: #e9f5e2;
}

.owners__inner {
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
}

.owners__heading {
  margin: 1.5rem 0 0;
  color: #444444;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.owners__heading-accent {
  position: relative;
  display: inline-block;
  color: #2fa26a;
}

.owners__heading-accent::after {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  display: block;
  width: 100%;
  height: 3px;
  background: #2fa26a;
  content: "";
}

.owners__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 4.25rem;
}

.owners__item {
  min-width: 0;
}

.owners__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 21.375rem);
  min-height: 3rem;
  margin-inline: auto;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: #2fa26a;
  border-radius: 999px;
}

.owners__catch {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

/* キャッチ画像は全て同サイズ(684x424)のため幅を統一 */
.owners__catch--01,
.owners__catch--02,
.owners__catch--03 {
  width: 21.375rem;
  margin-top: 1.75rem;
}

.owners__voices {
  margin-top: 1.25rem;
}

.owners__voice {
  position: relative;
  padding-left: 1.5rem;
}

.owners__voice + .owners__voice {
  margin-top: 0.4rem;
}

.owners__voice::before {
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: #2fa26a;
  border-radius: 50%;
  content: "";
}

.owners__voice-text {
  margin: 0;
  color: #444444;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
}

.owners__voice-text strong {
  color: #ed6d96;
  font-weight: 700;
}

.owners__voice-meta {
  margin: 0.375rem 0 0;
  color: #666666;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .owners {
    min-height: 0;
    padding: 1.625rem clamp(1.6875rem, 6.52vw, 3.375rem) 2.625rem;
  }
  .owners__heading {
    font-size: clamp(1.2rem, 6.2vw, 2rem);
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
  }
  .owners__heading-accent::after {
    bottom: -0.375rem;
    width: 100%;
    height: 3px;
  }
  .owners__list {
    display: flex;
    flex-direction: column;
    gap: 2.8125rem;
    margin-top: 2.875rem;
  }
  .owners__label {
    width: min(100%, 22.5rem);
    min-height: 2.8125rem;
    padding: 0.375rem 1rem;
    font-size: clamp(1.125rem, 5.31vw, 2.75rem);
  }
  .owners__catch--01,
  .owners__catch--02,
  .owners__catch--03 {
    /* 画像は2x(684px)書き出しのため表示は半分の342px=21.375rem */
    width: 21.375rem;
    max-width: 100%;
    margin-top: 1.625rem;
  }
  .owners__voices {
    margin-top: 1rem;
  }
  .owners__item:nth-child(3) .owners__voices {
    margin-top: 1.375rem;
  }
  .owners__voice {
    padding-left: 1.2rem;
  }
  .owners__voice + .owners__voice {
    margin-top: 1.06rem;
  }
  .owners__voice::before {
    top: 0.25rem;
    width: 0.8125rem;
    height: 0.8125rem;
  }
  .owners__voice-text {
    font-size: clamp(1rem, 4.35vw, 2.25rem);
    line-height: 1.45;
  }
  .owners__voice-meta {
    margin-top: 0.375rem;
    font-size: clamp(0.875rem, 3.86vw, 2rem);
    line-height: 1.4;
  }
}
/* ==============================
  07 Interview
============================== */
.interview {
  box-sizing: border-box;
  min-height: 46.25rem;
  padding: 5rem 0 3.25rem;
  overflow: hidden;
  background: #ffffff;
}

.interview__inner {
  width: 100%;
  max-width: 81.25rem;
  margin-inline: auto;
}

.interview__head {
  margin-bottom: 2.5rem;
  text-align: center;
}

.interview__badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.5rem 1.5rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  background: #2fb6a8;
  border-radius: 0.5rem;
}

.interview__badge-accent {
  color: #fff100;
}

.interview__heading {
  margin: 0;
  color: #444444;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.interview__heading-accent {
  color: #444444;
}

.interview__slider {
  position: relative;
  margin-top: 1.875rem;
  padding: 0 0 3.125rem;
  overflow: hidden;
}

.interview__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  width: calc((100% - 2.5rem) / 3);
  opacity: 1;
  transform: none;
  transform-origin: center center;
}

.interview__image-wrap {
  width: 100%;
  max-width: 25.625rem;
  height: 16.375rem;
  overflow: hidden;
}

.interview__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.interview__card {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 23.75rem;
  max-width: calc(100% - 1.875rem);
  min-height: 15rem;
  margin: -1.5625rem auto 0;
  padding: 2rem 1.875rem 1rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.12);
}

.interview__title {
  margin: 0;
  color: #444444;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
}

.interview__text {
  margin: 0.875rem 0 0;
  color: #444444;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.75;
}

.interview__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.25rem;
  min-height: 2.125rem;
  margin: 1.375rem auto 0;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  background: #349363;
  border-radius: 999px;
}

.interview__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.interview__dot {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  margin: 0;
  background: #b7b7b7;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
}

.interview__dot.is-active {
  width: 0.875rem;
  height: 0.875rem;
  background: transparent;
  border: 3px solid #2fa26a;
}

@media (max-width: 767px) {
  .interview {
    min-height: 0;
    padding: 3.5rem 0 2.5rem;
  }
  .interview__head {
    margin-bottom: 2rem;
    padding-inline: 1rem;
  }
  .interview__badge {
    margin-bottom: 1rem;
    padding: 0.4375rem 1rem;
    font-size: clamp(0.875rem, 4vw, 1.125rem);
  }
  .interview__heading {
    color: #444444;
    font-size: clamp(1.5rem, 6.2vw, 2.25rem);
    line-height: 1.3;
  }
  .interview__slider {
    margin-top: 1.75rem;
    padding-bottom: 2rem;
    overflow: visible;
  }
  .interview__slider.swiper {
    overflow: visible;
  }
  .interview__inner {
    overflow: hidden;
  }
  .interview__slider .swiper-wrapper {
    align-items: flex-start;
  }
  .interview__slide {
    width: min(72.46vw, 18.75rem);
    height: auto;
    opacity: 0.55;
    transform: scale(0.8);
    transform-origin: center center;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .interview__slide.swiper-slide-prev {
    opacity: 0.85;
    transform: scale(0.86);
    transform-origin: right center;
  }
  .interview__slide.swiper-slide-next {
    opacity: 0.85;
    transform: scale(0.86);
    transform-origin: left center;
  }
  .interview__slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    transform-origin: center center;
  }
  .interview__image-wrap {
    width: 100%;
    max-width: none;
    height: 12.625rem;
  }
  .interview__image {
    height: 100%;
  }
  .interview__card {
    width: min(92%, 18.125rem);
    min-height: 18.125rem;
    margin: -1.25rem auto 0;
    padding: 1.75rem 1.4375rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.625rem 1.375rem rgba(0, 0, 0, 0.12);
  }
  .interview__title {
    font-size: clamp(1rem, 4.11vw, 2.125rem);
    line-height: 1.65;
  }
  .interview__text {
    margin-top: 1.25rem;
    font-size: clamp(0.9375rem, 3.62vw, 1.875rem);
    line-height: 1.75;
  }
  .interview__button {
    width: 11.25rem;
    min-height: 2.125rem;
    margin-top: 1.625rem;
    font-size: clamp(1rem, 4.11vw, 2.125rem);
  }
  .interview__pagination {
    gap: 0.875rem;
    margin-top: 1.625rem;
  }
  .interview__dot {
    width: 0.5rem;
    height: 0.5rem;
  }
  .interview__dot.is-active {
    width: 0.8125rem;
    height: 0.8125rem;
    border-width: 4px;
  }
}
/* ==============================
  08 CTA
============================== */
.section08-cta {
  position: relative;
  box-sizing: border-box;
  min-height: 23.75rem;
  padding: 5rem 1.5rem 4.75rem;
  overflow: hidden;
  background: #51be00;
}

.section08-cta__circle {
  position: absolute;
  left: 47%;
  top: -3.625rem;
  z-index: 0;
  display: block;
  width: 35.875rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.section08-cta__circle-image {
  display: block;
  width: 100%;
  height: auto;
}

.section08-cta__panda,
.section08-cta__person {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  pointer-events: none;
}

.section08-cta__panda {
  left: calc(50% - 30rem);
  top: 7.8125rem;
  width: 9.5rem;
}

.section08-cta__person {
  right: calc(50% - 38.25rem);
  top: 3rem;
  width: 22.875rem;
}

.section08-cta__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 27.1875rem;
  margin-inline: auto;
  text-align: center;
}

.section08-cta__lead {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.45;
}

.section08-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

.section08-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  box-sizing: border-box;
  width: 100%;
  min-height: 4.875rem;
  padding: 0.75rem 2rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.section08-cta__button:hover {
  opacity: 0.85;
}

.section08-cta__button-text {
  white-space: nowrap;
}

.section08-cta__button--primary {
  color: #ffffff;
  background: #f5478d;
}

.section08-cta__button--secondary {
  color: #51be00;
  background: #ffffff;
}

.section08-cta__button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.125rem;
  min-height: 1.875rem;
  padding: 0 0.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  background: #ffffff;
}

.section08-cta__button--primary .section08-cta__button-label {
  color: #f5478d;
}

.section08-cta__button--secondary .section08-cta__button-label {
  color: #ffffff;
  background: #51be00;
}

@media (max-width: 767px) {
  .section08-cta {
    min-height: 16.25rem;
    padding: 2.25rem clamp(1.5rem, 7.25vw, 1.875rem) 2.5rem;
  }
  .section08-cta__circle {
    top: -6rem;
    left: 36%;
    width: 31.75rem;
  }
  .section08-cta__panda,
  .section08-cta__person {
    display: none;
  }
  .section08-cta__inner {
    max-width: 22.6875rem;
  }
  .section08-cta__lead {
    margin-bottom: 1.25rem;
    /* nowrapのため、狭幅でも要素幅を超えないようvwで縮小（minを下げる） */
    font-size: clamp(0.7rem, 3.9vw, 1.0625rem);
    line-height: 1.45;
    white-space: nowrap;
  }
  .section08-cta__buttons {
    gap: 1.25rem;
  }
  .section08-cta__button {
    gap: 0.75rem;
    min-height: 4.0625rem;
    padding: 0.625rem 1rem;
    font-size: clamp(1rem, 4.4vw, 1.375rem);
  }
  .section08-cta__button-label {
    min-width: 3.5rem;
    min-height: 1.625rem;
    font-size: 1rem;
  }
}
/* ==============================
  09 Reason 1
============================== */
.reason1 {
  width: 100%;
  background: #ffffff;
}

.reason1__header {
  position: relative;
  z-index: 0;
  text-align: center;
}

.reason1__eyecatch {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  padding-top: 2.75rem;
  margin-bottom: -2.625rem;
}

.reason1__eyecatch-img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: 8.5rem;
}

.reason1__eyecatch-text {
  position: relative;
  z-index: 4;
  margin: 0 0 4.125rem;
  color: #2fa26a;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.reason1__banner-wrap {
  position: relative;
  z-index: 3;
  width: 368.4507px;
  height: 80px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  clip-path: none;
}

.reason1__banner-wrap::before,
.reason1__banner-wrap::after {
  content: "";
  position: absolute;
  left: -1.5rem;
  right: -1.5rem;
  z-index: 4;
  height: 1px;
  background: #ffffff;
  pointer-events: none;
}

.reason1__banner-wrap::before {
  top: 0.5rem;
}

.reason1__banner-wrap::after {
  bottom: 0.5rem;
}

.reason1__banner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background: #2fa26a;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 2.5rem) 50%, 100% 100%, 0% 100%, 2.5rem 50%);
}

.reason1__banner-title {
  position: relative;
  z-index: 4;
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.reason1__tabs {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.5rem 1rem;
}

.reason1__tab {
  color: #2fa26a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  min-width: 12.5rem;
  min-height: 4.6rem;
  border: 1.5px solid #2fa26a;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.625rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 通常時は緑、ホバー時に金色 */
.reason1__tab:hover,
.reason1__tab.is-active {
  color: #ffffff;
  background: #bfa25a;
  border-color: #bfa25a;
}

.reason1__body {
  padding: 3.1rem 1.5rem 5rem;
}

.reason1__inner {
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
}

.reason1__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

.reason1__label-text {
  color: #2fa26a;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.reason1__label-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(140.47deg, rgb(84, 179, 116) 0%, rgb(47, 162, 106) 100%);
  border-radius: 6px;
}

.reason1__heading {
  margin: 0 0 1.5rem;
  color: #444444;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.reason1__main {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 1.25rem;
  padding: 0 2.5rem 2rem 0;
  background: #ffffff;
  border-radius: 0.625rem;
}

.reason1__main-image {
  flex: 0 0 42%;
  max-width: 42%;
}

.reason1__main-img {
  display: block;
  width: 100%;
  height: auto;
}

.reason1__main-content {
  flex: 1;
  min-width: 0;
}

.reason1__main-title {
  margin: 0 0 1rem;
  color: #444444;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}

.reason1__text-pink {
  color: #f05f8d;
  font-weight: 700;
}

.reason1__underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.reason1__main-text {
  margin: 0 0 0.75rem;
  color: #444444;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.reason1__main-note {
  margin: 0;
  color: #aaaaaa;
  font-size: 0.75rem;
  line-height: 1.5;
}

.reason1__item-note {
  color: #aaaaaa;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0.5rem 0 0;
}

.reason1__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reason1__item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 1.75rem 2.5rem;
  background: #e9f5e2;
}

.reason1__item-image {
  flex: 0 0 38%;
  max-width: 38%;
  margin: 0;
}

.reason1__item-img {
  display: block;
  width: 100%;
  height: auto;
}

.reason1__item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
  min-width: 0;
}

.reason1__item-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.reason1__item-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(140.47deg, rgb(84, 179, 116) 0%, rgb(47, 162, 106) 100%);
}

.reason1__item-title {
  margin: 0;
  color: #444444;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.reason1__item-text {
  margin: 0;
  color: #444444;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.75;
}

.reason1__item-text strong {
  color: #ed6d96;
  font-weight: 700;
}

@media (max-width: 767px) {
  .reason1__eyecatch {
    gap: 0.5rem;
    padding-top: 1.75rem;
    margin-bottom: -1.4rem;
  }
  .reason1__eyecatch-img {
    height: clamp(5rem, 20vw, 6.75rem);
  }
  .reason1__eyecatch-text {
    margin-bottom: 2.3rem;
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
  .reason1__banner-wrap {
    width: 328.4507px;
    max-width: calc(100% - 1.5rem);
    height: 80px;
  }
  .reason1__banner-wrap::before,
  .reason1__banner-wrap::after {
    left: -0.75rem;
    right: -0.75rem;
    height: 1px;
    z-index: 4;
  }
  .reason1__banner-wrap::before {
    top: 0.5rem;
  }
  .reason1__banner-wrap::after {
    bottom: 0.5rem;
  }
  .reason1__banner {
    height: 100%;
    padding: 0;
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 1.5rem) 50%, 100% 100%, 0% 100%, 1.5rem 50%);
  }
  .reason1__banner-title {
    font-size: clamp(1.05rem, 6vw, 1.5rem);
    line-height: 1;
    white-space: nowrap;
  }
  .reason1__tabs {
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
  }
  .reason1__tab {
    flex: 1;
    min-width: 0;
    min-height: 3.5rem;
    padding: 0.5rem 0.25rem;
    font-size: clamp(0.8125rem, 3.35vw, 1rem);
    white-space: normal;
    word-break: keep-all;
  }
  .reason1__body {
    padding: 1.5rem 1.25rem 3.75rem;
  }
  .reason1__label-text {
    font-size: clamp(0.91rem, 5.2vw, 1.3rem);
  }
  .reason1__heading {
    font-size: clamp(1.5rem, 5.8vw, 2rem);
    margin-bottom: 0.5rem;
  }
  .reason1__main {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
  }
  .reason1__main-image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .reason1__main-title {
    font-size: clamp(1.125rem, 4.35vw, 1.375rem);
  }
  .reason1__main-text {
    font-size: clamp(0.9375rem, 3.62vw, 1rem);
  }
  .reason1__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
  }
  .reason1__item-content {
    display: contents;
  }
  .reason1__item-head {
    align-self: stretch;
    justify-content: flex-start;
    order: 1;
    margin-bottom: 0.875rem;
    text-align: left;
  }
  .reason1__item-image {
    order: 2;
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 1rem;
  }
  .reason1__item-title {
    font-size: clamp(1.125rem, 4.35vw, 1.375rem);
  }
  .reason1__item-text {
    order: 3;
    font-size: clamp(0.9375rem, 3.62vw, 1rem);
  }
  .reason1__item-note {
    order: 4;
  }
}
/* ==============================
  10-1 Support Reason 2
============================== */
.support-reason2 {
  width: 100%;
  margin: 0;
  padding: 0 1.5rem;
  background: #ffffff;
}

.support-reason2__inner {
  width: 100%;
  max-width: 63.5rem;
  min-height: 32.875rem;
  margin-inline: auto;
  margin-top: 5.5rem;
}

.support-reason2__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin-inline: auto;
  color: #2fa26a;
  font-weight: 700;
  line-height: 1;
}

.support-reason2__label-text {
  font-size: 1.6rem;
}

.support-reason2__label-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6875rem;
  height: 2.625rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(140.47deg, rgb(84, 179, 116) 0%, rgb(47, 162, 106) 100%);
  border-radius: 0.375rem;
}

.support-reason2__heading {
  margin: 1rem 0 0;
  color: #444444;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.support-reason2__heading span {
  display: inline;
}

.support-reason2__content {
  display: grid;
  grid-template-columns: 23.75rem 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.support-reason2__image-wrap {
  width: 23.75rem;
}

.support-reason2__image {
  display: block;
  width: 100%;
  height: auto;
}

.support-reason2__text-block {
  padding-top: 1.5rem;
}

.support-reason2__lead {
  margin: 0 0 1rem;
  color: #444444;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65;
}

.support-reason2__text {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.support-reason2__pink {
  color: #f05f8d;
  font-weight: 700;
}

.support-reason2__note {
  margin: 0.875rem 0 0;
  color: #aaaaaa;
  font-size: 0.75rem;
  line-height: 1.5;
}

.support-reason2__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.5rem;
  height: 3.5rem;
  margin: 4.25rem auto 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background: #2fb6a8;
  border-radius: 1.75rem;
}

@media (max-width: 767px) {
  .support-reason2 {
    padding-inline: 1rem;
  }
  .support-reason2__inner {
    max-width: 23.125rem;
    min-height: 49.46875rem;
    margin-top: 2.5rem;
  }
  .support-reason2__label {
    gap: 0.375rem;
  }
  .support-reason2__label-text {
    font-size: clamp(0.91rem, 5.2vw, 1.3rem);
  }
  .support-reason2__label-number {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1rem;
    border-radius: 0.3125rem;
  }
  .support-reason2__heading {
    margin-top: 0.8125rem;
    font-size: clamp(1.225rem, 7vw, 1.75rem);
    line-height: 1.25;
  }
  .support-reason2__heading span {
    display: block;
  }
  .support-reason2__content {
    display: block;
    margin-top: 2rem;
  }
  .support-reason2__image-wrap {
    width: 100%;
  }
  .support-reason2__text-block {
    padding-top: 2rem;
  }
  .support-reason2__lead {
    margin-bottom: 1.25rem;
    font-size: clamp(0.896rem, 5.12vw, 1.28rem);
    line-height: 1.65;
  }
  .support-reason2__text {
    font-size: 0.9375rem;
    line-height: 1.85;
  }
  .support-reason2__note {
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
  .support-reason2__button {
    width: min(100%, 22.5rem);
    height: 3.4375rem;
    margin-top: 2.5rem;
    font-size: 1rem;
    border-radius: 1.71875rem;
  }
}
/* ==============================
  10-2 Support Flow
============================== */
.support-flow {
  width: 100%;
  margin: 0;
  padding: 2.7rem 1.5rem 5rem;
  overflow: hidden;
  background: #ffffff;
}

.support-flow__inner {
  position: relative;
  width: 100%;
  max-width: 53rem;
  margin-inline: auto;
}

.support-flow__line {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.support-flow__line--pc {
  width: 0.9375rem;
  height: auto;
  left: 4.5625rem;
}

.support-flow__line--pc-1 {
  top: 10.25rem;
}

.support-flow__line--pc-2 {
  top: 26.875rem;
}

.support-flow__line--pc-3 {
  top: 38.5rem;
}

.support-flow__line--sp {
  display: none;
}

.support-flow__step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 10.125rem 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.support-flow__step + .support-flow__step {
  margin-top: 2.7rem;
}

.support-flow__image-wrap {
  position: relative;
  z-index: 1;
  width: 10.125rem;
}

.support-flow__image {
  display: block;
  width: 100%;
  height: auto;
}

.support-flow__content {
  position: relative;
  z-index: 2;
  padding-top: 0.25rem;
}

.support-flow__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.support-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.875rem;
  width: 2.875rem;
  height: 2.875rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  background: #008f94;
  border-radius: 50%;
}

.support-flow__title {
  margin: 0;
  color: #008f94;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.support-flow__text {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.support-flow__pink {
  color: #f05f8d;
  font-weight: 700;
}

.support-flow__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.support-flow__tags li {
  padding: 0.375rem 0.75rem;
  color: #444444;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  background: #ede1c2;
  border-radius: 0.3125rem;
}

.support-flow__goal {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 5rem;
  padding: 1.125rem 3rem 0.9375rem;
  background: #e9f5e2;
  border-radius: 1rem;
}

.support-flow__goal-content {
  text-align: left;
}

.support-flow__goal-image {
  display: block;
  flex: 0 0 3.75rem;
  width: 3.75rem;
  height: auto;
}

.support-flow__goal-title {
  margin: 0 0 0.5rem;
  color: #7dbd12;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.support-flow__goal-text {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .support-flow {
    padding: 2rem 1rem 3.5rem;
  }
  .support-flow__inner {
    max-width: 23.125rem;
  }
  .support-flow__line--pc {
    display: none;
  }
  .support-flow__line--sp {
    display: block;
    width: min(100%, 17rem);
    height: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .support-flow__line--sp-1 {
    top: 7rem;
    left: 12rem;
  }
  .support-flow__line--sp-2 {
    top: 24rem;
    left: 12rem;
  }
  .support-flow__line--sp-3 {
    top: 43rem;
    left: 7rem;
    width: min(100%, 9rem);
  }
  .support-flow__step {
    grid-template-columns: 8.75rem 1fr;
    gap: 0.5rem 1.8rem;
  }
  .support-flow__step + .support-flow__step {
    margin-top: 2.5rem;
  }
  .support-flow__step--2 {
    grid-template-columns: 1fr 8.75rem;
  }
  .support-flow__step--2 .support-flow__image-wrap {
    grid-column: 2;
    grid-row: 1;
  }
  .support-flow__step--2 .support-flow__content {
    grid-column: 1;
    grid-row: 1;
  }
  .support-flow__image-wrap {
    width: 9.5rem;
  }
  .support-flow__content {
    display: contents;
    padding-top: 0.25rem;
  }
  .support-flow__step--1 .support-flow__head,
  .support-flow__step--1 .support-flow__text,
  .support-flow__step--3 .support-flow__head,
  .support-flow__step--3 .support-flow__text {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
  .support-flow__step--2 .support-flow__head,
  .support-flow__step--2 .support-flow__text {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }
  .support-flow__step--1 .support-flow__text,
  .support-flow__step--2 .support-flow__text,
  .support-flow__step--3 .support-flow__text {
    margin-top: 4rem;
  }
  .support-flow__step--1 .support-flow__tags,
  .support-flow__step--2 .support-flow__tags,
  .support-flow__step--3 .support-flow__tags {
    column-gap: 0.375rem;
    row-gap: 0.5rem;
    width: 100%;
  }
  .support-flow__step--1 .support-flow__tags li,
  .support-flow__step--2 .support-flow__tags li,
  .support-flow__step--3 .support-flow__tags li {
    padding-inline: 0.45rem;
    font-size: 0.6875rem;
    white-space: nowrap;
  }
  .support-flow__head {
    gap: 0.625rem;
    margin-bottom: 0.75rem;
  }
  .support-flow__num {
    flex-basis: 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.125rem;
  }
  .support-flow__title {
    font-size: clamp(0.962rem, 5.5vw, 1.375rem);
  }
  .support-flow__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .support-flow__tags {
    grid-column: 1/-1;
    grid-row: 2;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }
  .support-flow__tags li {
    padding: 0.3125rem 0.625rem;
    font-size: 0.75rem;
  }
  .support-flow__goal {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: min(100%, 22.5rem);
    height: 8.4375rem;
    margin-top: 3.5rem;
    margin-inline: auto;
    padding: 0;
    border-radius: 0.875rem;
  }
  .support-flow__goal-image {
    position: absolute;
    top: 1.375rem;
    left: 2.0625rem;
    flex-basis: auto;
    width: 3.78125rem;
  }
  .support-flow__goal-content {
    position: absolute;
    top: 2rem;
    left: 7.5625rem;
    width: calc(100% - 8.75rem);
  }
  .support-flow__goal-title {
    margin-bottom: 0.25rem;
    font-size: clamp(1.05rem, 6vw, 1.5rem);
  }
  .support-flow__goal-text {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}
/* ==============================
  10-3 After Support
============================== */
.after-support {
  width: 100%;
  margin: 0;
  padding: 3.125rem 1.5rem 6.23rem;
  overflow: hidden;
  background: #f7f5f2;
}

.after-support__inner {
  width: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
}

.after-support__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.5rem;
  min-height: 3.5rem;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: #2fb6a8;
  border-radius: 999px;
}

.after-support__intro {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.5rem;
  align-items: center;
  margin-top: 2.1875rem;
  margin-inline: auto;
  width: fit-content;
  max-width: 100%;
}

.after-support__panda {
  display: block;
  width: 4.625rem;
  height: auto;
}

.after-support__content {
  min-width: 0;
}

.after-support__heading {
  margin: 0;
  color: #008f94;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
}

.after-support__heading-break {
  display: none;
}

.after-support__text {
  width: min(100%, 38.375rem);
  margin: 0.375rem auto 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

.after-support__pink {
  color: #ed6a9a;
  font-weight: 800;
}

.after-support__training-card {
  box-sizing: border-box;
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.75rem rgba(68, 68, 68, 0.12);
}

.after-support__table-scroll {
  width: 100%;
  overflow-x: auto;
}

.after-support__table {
  width: 100%;
  min-width: 59.5rem;
  color: #444444;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
}

.after-support__table th,
.after-support__table td {
  padding: 0.625rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.after-support__table td {
  text-align: left;
}

.after-support__table th {
  color: #ffffff;
  font-weight: 800;
}

.after-support__table th:first-child,
.after-support__table th:nth-child(3) {
  background: #c6b8a3;
}

.after-support__table th:nth-child(2) {
  background: #2fb6a8;
}

.after-support__table th:nth-child(4) {
  background: #568cb8;
}

.after-support__table td:first-child,
.after-support__table td:nth-child(5) {
  background: #f4f2ee;
}

.after-support__table td:nth-child(2),
.after-support__table td:nth-child(3),
.after-support__table td:nth-child(4) {
  background: #e6f4de;
}

/* 集客施策の中央列（3列目）は別色で強調 */
.after-support__table td:nth-child(3) {
  background: #eff7e9;
}

.after-support__table td:nth-child(6) {
  background: #e6eef4;
}

.after-support__balloon {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35rem;
  min-height: 4.6rem;
  margin: 3rem auto 1rem;
  padding: 0.875rem 2rem 0.875rem 6.75rem;
  background: #ffffff;
  border: 0.1875rem solid #9dc235;
  border-radius: 0.625rem;
}

.after-support__balloon-panda {
  position: absolute;
  left: 5rem;
  bottom: -1rem;
  display: block;
  width: 5.125rem;
  height: auto;
}

.after-support__balloon-text {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.after-support__event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.after-support__event-card {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.25rem;
  align-items: center;
  min-height: 10.75rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.75rem rgba(68, 68, 68, 0.12);
}

.after-support__event-image {
  display: block;
  width: 100%;
  height: 7rem;
  object-fit: cover;
}

.after-support__event-text {
  margin: 0;
  color: #444444;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.55;
}

.after-support__topclass {
  margin-top: 3.625rem;
}

.after-support__topclass-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.after-support__topclass-head-panda {
  display: block;
  width: 4.625rem;
  height: auto;
}

.after-support__topclass-title {
  margin: 0;
  color: #008f94;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.3;
}

.after-support__topclass-title-break {
  display: none;
}

.after-support__topclass-text {
  max-width: 44rem;
  margin: 1.625rem auto 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.after-support__topclass-pink {
  color: #ed6a9a;
  font-weight: 800;
}

.after-support__topclass-card {
  box-sizing: border-box;
  width: 100%;
  margin-top: 2.5rem;
  padding: 3rem 5.5rem 3.125rem 5.125rem;
  background: #ffffff;
  border-radius: 0.9375rem;
  box-shadow: 0 0 0.625rem rgba(109, 83, 53, 0.2);
}

.after-support__topclass-main {
  display: grid;
  grid-template-columns: minmax(0, 20.375rem) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.after-support__topclass-main-visual {
  position: relative;
  width: 18.375rem;
  max-width: 100%;
  min-width: 0;
}

.after-support__topclass-main-panda {
  position: absolute;
  bottom: 1rem;
  left: 4rem;
  z-index: 2;
  display: block;
  width: 4.875rem;
  height: auto;
}

.after-support__topclass-main-image {
  display: block;
  width: 100%;
  height: auto;
}

.after-support__topclass-main-phone {
  width: 14rem;
  margin-left: 9rem;
}

.after-support__topclass-main-body {
  min-width: 0;
}

.after-support__topclass-main-title {
  margin: 0 0 0.375rem;
  color: #ed6a9a;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
}

.after-support__topclass-main-text {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
}

.after-support__topclass-main-text span {
  text-decoration: underline;
  text-underline-offset: 0.125em;
}

.after-support__topclass-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.after-support__topclass-sites,
.after-support__topclass-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  min-width: 0;
}

.after-support__topclass-site,
.after-support__topclass-tool {
  min-width: 0;
  text-align: center;
}

.after-support__topclass-site-image,
.after-support__topclass-tool-image {
  display: block;
  width: 100%;
  max-width: 10rem;
  height: auto;
  margin-inline: auto;
}

.after-support__topclass-tool-image {
  max-width: 9rem;
  margin-top: 1rem;
}

.after-support__topclass-site-title,
.after-support__topclass-tool-title {
  margin: 1rem 0 0.25rem;
  color: #444444;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.35;
}

.after-support__topclass-site-text,
.after-support__topclass-tool-text {
  margin: 0;
  color: #444444;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.45;
}

.after-support__text-accent {
  color: #ed6d96;
}

.after-support__topclass-divider {
  width: 1px;
  height: 13.125rem;
  background: #dadada;
}

.after-support__contents,
.after-support__system {
  margin-top: 4.25rem;
}

.after-support__contents-head,
.after-support__system-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.after-support__contents-panda,
.after-support__system-panda {
  display: block;
  width: 4.625rem;
  height: auto;
}

.after-support__contents-title,
.after-support__system-title {
  margin: 0;
  color: #008f94;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.35;
}

.after-support__contents-text,
.after-support__system-text {
  max-width: 54rem;
  margin: 1.625rem auto 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.after-support__contents-pink,
.after-support__system-pink {
  color: #ed6a9a;
  font-weight: 800;
}

.after-support__contents-card,
.after-support__system-card {
  box-sizing: border-box;
  width: 100%;
  margin-top: 2.5rem;
  background: #ffffff;
  border-radius: 0.9375rem;
  box-shadow: 0 0 0.625rem rgba(109, 83, 53, 0.2);
}

.after-support__contents-card {
  display: grid;
  grid-template-columns: minmax(0, 20.3125rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  min-height: 16.875rem;
  padding: 2.5rem 5rem;
}

.after-support__contents-image {
  display: block;
  width: 100%;
  height: auto;
}

.after-support__contents-body {
  min-width: 0;
}

.after-support__contents-body p {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
}

.after-support__contents-body span {
  color: #ed6a9a;
  font-weight: 600;
}

.after-support__system-card {
  display: grid;
  grid-template-columns: minmax(0, 19.0625rem) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  min-height: 16.875rem;
  padding: 2.5rem 5rem;
}

.after-support__system-image {
  display: block;
  width: 100%;
  height: auto;
}

.after-support__system-list {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.after-support__system-item-title {
  position: relative;
  margin: 0 0 0.25rem;
  padding-left: 1rem;
  color: #008f94;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.after-support__system-item-title::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: #a3cb2e;
  content: "";
}

.after-support__system-item-text {
  margin: 0;
  color: #444444;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .after-support {
    padding: 1.5625rem 1rem 2.5rem;
  }
  .after-support__inner {
    max-width: 22.5rem;
  }
  .after-support__pill {
    width: min(100%, 22.5rem);
    min-height: 3.5rem;
    font-size: clamp(1.05rem, 6vw, 1.5rem);
  }
  .after-support__intro {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1.75rem;
    align-items: center;
    margin-top: 2.1875rem;
  }
  .after-support__panda {
    width: 5.2rem;
    margin-left: 0;
  }
  .after-support__heading {
    font-size: clamp(1rem, 5.3vw, 1.5rem);
    line-height: 1.28;
  }
  .after-support__heading-break {
    display: block;
  }
  .after-support__text {
    width: min(100%, 22.5rem);
    margin-top: 1.2rem;
    font-size: 1rem;
    line-height: 1.75;
  }
  .after-support__training-card {
    margin-top: 2rem;
    padding: 0.75rem 1.1875rem 1rem;
  }
  .after-support__table td {
    text-align: left;
  }
  .after-support__table-scroll {
    padding-right: 1.1875rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .after-support__table {
    min-width: 59.5rem;
    font-size: 0.75rem;
  }
  .after-support__table th,
  .after-support__table td {
    padding: 0.5rem 0.375rem;
  }
  .after-support__balloon {
    width: 100%;
    min-height: 6.5rem;
    margin-top: 1rem;
    padding: 1rem 0.75rem 1rem 5.5rem;
  }
  .after-support__balloon-panda {
    left: 1rem;
    top: 0.8rem;
    width: 5rem;
  }
  .after-support__balloon-text {
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
  }
  .after-support__event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.125rem;
    margin-top: 1rem;
  }
  .after-support__event-card {
    display: block;
    min-height: 0;
    padding: 0.5rem 0.5rem 0.75rem;
  }
  .after-support__event-image {
    width: 100%;
    height: 5.75rem;
  }
  .after-support__event-text {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.45;
  }
  .after-support__topclass {
    margin-top: 3.5rem;
  }
  .after-support__topclass-head {
    justify-content: flex-start;
    gap: 1.75rem;
  }
  .after-support__topclass-head-panda {
    width: 4.625rem;
  }
  .after-support__topclass-title {
    font-size: clamp(1rem, 5.3vw, 1.75rem);
    line-height: 1.35;
  }
  .after-support__topclass-title-break {
    display: block;
  }
  .after-support__topclass-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }
  .after-support__topclass-card {
    margin-top: 2rem;
    padding: 1.625rem 1.1875rem 2rem;
    border-radius: 0.9375rem;
    box-shadow: 0 0 0.625rem rgba(109, 83, 53, 0.2);
  }
  .after-support__topclass-main {
    display: block;
  }
  .after-support__topclass-main-visual {
    width: min(100%, 18.375rem);
    margin-inline: auto;
  }
  .after-support__topclass-main-panda {
    bottom: 1.375rem;
    width: 4.5rem;
    left: 1rem;
  }
  .after-support__topclass-main-phone {
    width: min(100%, 14rem);
    margin-left: 5.5rem;
  }
  .after-support__topclass-main-body {
    margin-top: 0.75rem;
    text-align: left;
  }
  .after-support__topclass-main-title {
    font-size: clamp(0.98rem, 5.6vw, 1.4rem);
  }
  .after-support__topclass-main-text {
    font-size: 1rem;
  }
  .after-support__topclass-lower {
    display: block;
    margin-top: 2rem;
  }
  .after-support__topclass-sites,
  .after-support__topclass-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .after-support__topclass-site-image {
    max-width: 10rem;
  }
  .after-support__topclass-tool-image {
    margin-top: 0.5rem;
    max-width: 9.0625rem;
  }
  .after-support__topclass-site-title,
  .after-support__topclass-tool-title {
    margin-top: 0.875rem;
    font-size: 0.9rem;
  }
  .after-support__topclass-site-text,
  .after-support__topclass-tool-text {
    font-size: 0.85rem;
  }
  .after-support__topclass-divider {
    width: 100%;
    height: 2px;
    margin: 2rem 0;
  }
  .after-support__contents,
  .after-support__system {
    margin-top: 3.5rem;
  }
  .after-support__contents-head,
  .after-support__system-head {
    justify-content: flex-start;
    gap: 1rem;
    font-feature-settings: "palt";
  }
  .after-support__contents-panda,
  .after-support__system-panda {
    width: 4.625rem;
  }
  .after-support__contents-title,
  .after-support__system-title {
    min-width: 0;
    font-size: clamp(1rem, 5.3vw, 1.5rem);
    line-height: 1.35;
  }
  .after-support__contents-title {
    font-size: clamp(1rem, 5.3vw, 1.3rem);
  }
  .after-support__contents-text,
  .after-support__system-text {
    margin-top: 1.5rem;
    font-size: clamp(0.8rem, 4vw, 1rem);
    line-height: 1.8;
    text-align: left;
  }
  .after-support__system-text br {
    display: none;
  }
  .after-support__contents-card,
  .after-support__system-card {
    width: 100%;
    margin-top: 2rem;
    border-radius: 0.9375rem;
    box-shadow: 0 0 0.625rem rgba(109, 83, 53, 0.2);
  }
  .after-support__contents-card {
    display: flex;
    flex-direction: column;
    min-height: 20.3125rem;
    padding: 2rem 1.1875rem 1.5rem;
  }
  .after-support__contents-image {
    order: 2;
    width: min(100%, 20.3125rem);
    margin: 0 auto;
  }
  .after-support__contents-body {
    order: 1;
    text-align: center;
  }
  .after-support__contents-body p {
    font-size: clamp(0.78rem, 3.7vw, 0.9375rem);
    line-height: 1.7;
    font-weight: 500;
  }
  .after-support__system-card {
    display: block;
    min-height: 30.3125rem;
    padding: 0.5rem 1.1875rem 2rem;
  }
  .after-support__system-image {
    width: min(100%, 19.0625rem);
    margin-inline: auto;
  }
  .after-support__system-list {
    gap: 1rem;
    margin-top: 2rem;
  }
  .after-support__system-item-title {
    font-size: 0.9375rem;
    line-height: 1.45;
  }
  .after-support__system-item-text {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}
/* ==============================
  11-1 Support Reason 3 Low Cost
============================== */
.support-reason3 {
  width: 100%;
  margin: 0;
  padding: 5rem 1.5rem 4rem;
  background: #ffffff;
}

.support-reason3__inner {
  width: 100%;
  max-width: 52.5rem;
  margin-inline: auto;
}

.support-reason3__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin-inline: auto;
  color: #2fa26a;
  font-weight: 700;
  line-height: 1;
}

.support-reason3__label-text {
  font-size: 1.6rem;
}

.support-reason3__label-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6875rem;
  height: 2.625rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(140.47deg, rgb(84, 179, 116) 0%, rgb(47, 162, 106) 100%);
  border-radius: 0.375rem;
}

.support-reason3__heading {
  margin: 1rem 0 0;
  color: #444444;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.support-reason3__content {
  display: grid;
  grid-template-columns: 23.75rem 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
}

.support-reason3__image-wrap {
  width: 23.75rem;
}

.support-reason3__image {
  display: block;
  width: 100%;
  height: auto;
}

.support-reason3__text-block {
  min-width: 0;
}

.support-reason3__lead {
  margin: 0;
  color: #444444;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.65;
}

.support-reason3__pink {
  color: #ed6d96;
  font-weight: 700;
}

.support-reason3__comparison {
  margin-top: 4rem;
}

.support-reason3__comparison-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1.25rem;
  color: #008f94;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.support-reason3__comparison-title::before {
  display: block;
  flex: 0 0 auto;
  width: 0.875rem;
  height: 0.875rem;
  background: #008f94;
  content: "";
}

.support-reason3__comparison-wrap {
  position: relative;
  width: 100%;
}

.support-reason3__comparison-wrap::after {
  position: absolute;
  top: -0.875rem;
  left: 15.5rem;
  z-index: 3;
  box-sizing: border-box;
  width: 17.5rem;
  height: calc(100% + 0.875rem);
  pointer-events: none;
  border: 0.1875rem solid #f6247f;
  border-radius: 0.625rem;
  content: "";
}

.support-reason3__comparison-grid {
  display: grid;
  grid-template-columns: 15.625rem 17.5rem 18.75rem;
  width: 51.875rem;
  max-width: 100%;
}

.support-reason3__cell {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.5rem 0.75rem;
  color: #444444;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  border-right: 0.25rem solid #ffffff;
  border-bottom: 0.25rem solid #ffffff;
}

.support-reason3__cell--header {
  min-height: 3.5rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
}

.support-reason3__cell--label {
  background: #f7f5f2;
}

.support-reason3__cell--label:not(.support-reason3__cell--header) {
  justify-content: flex-start;
  padding-left: 1.25rem;
  text-align: left;
}

.support-reason3__cell--tms {
  position: relative;
  z-index: 2;
  color: #f6247f;
  background: #fce8ee;
}

.support-reason3__cell--tms.support-reason3__cell--header {
  color: #ffffff;
  background: #f6247f;
  border-radius: 0.625rem 0.625rem 0 0;
}

.support-reason3__cell--tms.support-reason3__cell--header::before {
  position: absolute;
  top: -0.875rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #f6247f;
  border-radius: 0.625rem 0.625rem 0 0;
  content: "";
}

.support-reason3__cell--tms.support-reason3__cell--last {
  border-radius: 0 0 0.625rem 0.625rem;
}

/* 月額費用・会員利用料など実費の数値は黒文字で視認性を上げる */
.support-reason3__cell--tms.support-reason3__cell--dark {
  color: #000000;
}

/* 補足を本体の下に縦並びにする */
.support-reason3__cell--stack {
  flex-direction: column;
}

/* セル内の補足（人数あたり料金など）は小さめで折り返し可 */
.support-reason3__cell-note {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7em;
  font-weight: 700;
  line-height: 1.3;
}

.support-reason3__cell--ibj {
  color: #777777;
  background: #e9f0fa;
}

.support-reason3__cell--ibj.support-reason3__cell--header {
  color: #ffffff;
  background: #7eafe6;
}

.support-reason3__point {
  position: absolute;
  z-index: 5;
  display: block;
  width: 4.625rem;
  height: auto;
  pointer-events: none;
}

.support-reason3__point--first {
  top: 2.5rem;
  left: 29.75rem;
}

.support-reason3__point--second {
  top: 6.6rem;
  left: 29.75rem;
}

.support-reason3__comparison-note {
  color: #aaaaaa;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0.75rem 0 0;
}

.support-reason3__balloon {
  position: relative;
  box-sizing: border-box;
  width: 30rem;
  height: 7.5625rem;
  margin: 0.5rem auto 0;
  padding: 2.8rem 6.75rem 1rem 4.5rem;
  overflow: visible;
  background-image: url("../images/balloon-reason3_pc.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border: 0;
  border-radius: 0;
}

.support-reason3__balloon::before,
.support-reason3__balloon::after {
  content: none;
}

.support-reason3__balloon-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.8;
  text-align: left;
}

.support-reason3__balloon-line {
  display: block;
}

.support-reason3__balloon-underline {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.2em;
}

.support-reason3__balloon-pink {
  display: block;
  color: #ed6d96;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.support-reason3__balloon-panda {
  position: absolute;
  right: 5.4rem;
  bottom: 1.3rem;
  z-index: 2;
  display: block;
  width: 4.25rem;
  height: auto;
}

.section11-revenue {
  position: relative;
  left: 50%;
  width: min(100vw - 3rem, 70rem);
  margin-top: 4.25rem;
  margin-inline: 0;
  transform: translateX(-50%);
}

.section11-revenue__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  color: #008f94;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.section11-revenue__heading::before {
  display: block;
  flex: 0 0 auto;
  width: 0.875rem;
  height: 0.875rem;
  background: #008f94;
  content: "";
}

.section11-revenue__cards {
  display: grid;
  grid-template-columns: repeat(3, 22.25rem);
  gap: 1.625rem;
}

.section11-revenue__card {
  box-sizing: border-box;
  width: 22.25rem;
  height: 40.625rem;
  padding: 0.3rem 1.125rem 1.25rem;
  background: #f5f5f5;
  border-radius: 1.125rem;
}

.section11-revenue__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23.25rem;
}

.section11-revenue__image {
  display: block;
  max-width: 100%;
  height: auto;
}

.section11-revenue__image--first {
  width: 18.125rem;
}

.section11-revenue__image--second {
  width: 15rem;
}

.section11-revenue__image--third {
  width: 17.4375rem;
}

.section11-revenue__table {
  width: 20rem;
  margin-inline: auto;
}

.section11-revenue__row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  align-items: center;
  min-height: 2.8125rem;
  border-bottom: 1px solid #cfcfcf;
}

.section11-revenue__label {
  color: #444444;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
}

.section11-revenue__amount {
  color: #444444;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.section11-revenue__note {
  margin-left: 0.25rem;
  color: #707070;
  font-size: 0.75rem;
  font-weight: 600;
}

.section11-revenue__sales {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 20rem;
  height: 3.75rem;
  margin: 0.9rem auto 0;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
}

.section11-revenue__card--pink .section11-revenue__sales {
  background: #ef7ea2;
}

.section11-revenue__card--blue .section11-revenue__sales {
  background: #568cb8;
}

.section11-revenue__card--green .section11-revenue__sales {
  background: #2fb6a8;
}

.section11-revenue__sales-icon {
  display: block;
  flex-shrink: 0;
  width: 4.25rem;
  height: auto;
  margin-left: 1.375rem;
  transform: translateY(11px);
}

.section11-revenue__sales-body {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 1.25rem;
  text-align: right;
}

.section11-revenue__sales-label {
  display: block;
  flex-shrink: 0;
  margin-left: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.section11-revenue__sales-price {
  display: block;
  flex-shrink: 0;
  margin-top: 0;
  margin-left: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .support-reason3 {
    padding: 2.9375rem 1rem 3.5rem;
  }
  .support-reason3__inner {
    max-width: 23.125rem;
  }
  .support-reason3__label {
    gap: 0.375rem;
  }
  .support-reason3__label-text {
    font-size: clamp(0.91rem, 5.2vw, 1.3rem);
  }
  .support-reason3__label-number {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1rem;
    border-radius: 0.3125rem;
  }
  .support-reason3__heading {
    margin-top: 0.8125rem;
    font-size: clamp(1.225rem, 7vw, 1.75rem);
    line-height: 1.25;
  }
  .support-reason3__content {
    display: block;
    margin-top: 2rem;
  }
  .support-reason3__image-wrap {
    width: 100%;
  }
  .support-reason3__text-block {
    margin-top: 2rem;
  }
  .support-reason3__lead {
    font-size: clamp(0.945rem, 5.4vw, 1.35rem);
    line-height: 1.65;
    text-align: left;
  }
  .support-reason3__comparison {
    margin-top: 2.75rem;
  }
  .support-reason3__comparison-title {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
  }
  .support-reason3__comparison-title::before {
    width: 0.875rem;
    height: 0.875rem;
  }
  .support-reason3__comparison-wrap {
    max-width: 22.5rem;
    margin-inline: auto;
  }
  .support-reason3__comparison-grid {
    grid-template-columns: 7.8125fr 7.34375fr 7.34375fr;
    width: 100%;
    max-width: 22.5rem;
  }
  .support-reason3__comparison-wrap::after {
    top: -1rem;
    left: 34.72%;
    width: 32.64%;
    height: calc(100% + 1.2rem);
  }
  .support-reason3__cell {
    min-height: 3.5rem;
    padding: 0.375rem 0.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
    border-right-width: 0.125rem;
    border-bottom-width: 0.125rem;
  }
  .support-reason3__cell--label:not(.support-reason3__cell--header) {
    padding-left: 0.75rem;
  }
  .support-reason3__cell--header {
    min-height: 2.75rem;
    font-size: 0.875rem;
  }
  .support-reason3__cell--tms.support-reason3__cell--header::before {
    top: -1rem;
  }
  .support-reason3__point {
    width: 3.875rem;
  }
  .support-reason3__point--first {
    top: 1.05rem;
    left: 13.25rem;
  }
  .support-reason3__point--second {
    top: 4.7rem;
    left: 13.25rem;
  }
  .support-reason3__balloon {
    width: min(100%, 22.5rem);
    height: 7.59375rem;
    padding: 2.3rem 5.6rem 1rem 2.3rem;
    background-image: url("../images/balloon-reason3_sp.png");
  }
  .support-reason3__balloon-text {
    font-size: 0.875rem;
    line-height: 2.5;
  }
  .support-reason3__balloon-pink {
    font-size: clamp(0.875rem, 5vw, 1.25rem);
  }
  .support-reason3__balloon-panda {
    right: 1rem;
    bottom: 1.2rem;
    width: 4.25rem;
  }
  .section11-revenue {
    left: auto;
    width: 100%;
    margin-top: 2.78125rem;
    margin-inline: 0;
    transform: none;
  }
  .section11-revenue__heading {
    gap: 0.5rem;
    margin-bottom: 1.3125rem;
    font-size: 1.2rem;
  }
  .section11-revenue__heading::before {
    width: 0.875rem;
    height: 0.875rem;
  }
  .section11-revenue__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
  }
  .section11-revenue__card {
    width: 100%;
    height: 40rem;
    padding: 0rem 1.25rem 1.25rem;
    border-radius: 0.9375rem;
  }
  .section11-revenue__visual {
    height: 23rem;
  }
  .section11-revenue__image--first {
    width: 18.125rem;
  }
  .section11-revenue__image--second {
    width: 15rem;
  }
  .section11-revenue__image--third {
    width: 17.4375rem;
  }
  .section11-revenue__table {
    width: 100%;
  }
  .section11-revenue__row {
    grid-template-columns: 6.5rem 1fr;
    min-height: 2.8125rem;
  }
  .section11-revenue__label {
    font-size: 0.875rem;
  }
  .section11-revenue__amount {
    font-size: 0.9375rem;
  }
  .section11-revenue__note {
    font-size: 0.6875rem;
  }
  .section11-revenue__sales {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 3.75rem;
    margin-top: 1.1875rem;
    padding: 0;
  }
  .section11-revenue__sales-icon {
    flex-shrink: 0;
    width: 4.25rem;
    margin-left: 1.375rem;
    transform: translateY(6px);
  }
  .section11-revenue__sales-body {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 1rem;
    text-align: right;
  }
  .section11-revenue__sales-label {
    flex-shrink: 0;
    margin-left: 0.75rem;
    font-size: 1rem;
    white-space: nowrap;
  }
  .section11-revenue__sales-price {
    flex-shrink: 0;
    margin-top: 0;
    margin-left: 0.75rem;
    font-size: clamp(1.137rem, 6.5vw, 1.625rem);
    white-space: nowrap;
  }
}
/* ==============================
  11-3 Case Studies
============================== */
.section11-case {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 4.25rem 0 -4rem -50vw;
  padding: 3.1875rem 1.5rem 4rem;
  background: #f7f5f2;
}

.section11-case__inner {
  width: 100%;
  max-width: 57.5rem;
  margin-inline: auto;
}

.section11-case__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.5rem;
  height: 3.4375rem;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  background: #c6b8a3;
  border-radius: 999px;
}

.section11-case__cards {
  display: grid;
  grid-template-columns: repeat(2, 27.5rem);
  gap: 2.5rem;
  justify-content: center;
  margin: 2.5rem 0 5rem 0;
}

.section11-case__card {
  box-sizing: border-box;
  width: 27.5rem;
  height: 36rem;
  padding: 2.1875rem 4.125rem 1rem;
  background: #ffffff;
  border-radius: 0.9375rem;
  box-shadow: 0 0 0.3125rem rgba(109, 83, 53, 0.2);
}

.section11-case__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6.5625rem;
  gap: 0.75rem;
  align-items: start;
}

.section11-case__title {
  margin: 0;
  color: #444444;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.55;
}

.section11-case__highlight {
  color: #ed6d96;
}

.section11-case__photo {
  display: block;
  width: 6.5625rem;
  height: 6.5625rem;
}

.section11-case__name {
  margin: 0.875rem 0 0;
  color: #444444;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  transform: translateY(-0.9rem);
}

.section11-case__graph {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.section11-case__graph--br {
  width: 19.25rem;
  margin-top: 2rem;
}

.section11-case__graph--vers {
  width: 18.875rem;
  margin-top: 1.5rem;
}

.section11-case__message {
  position: relative;
  width: 20.8125rem;
  height: 7.875rem;
  margin: 1.25rem auto 0;
}

.section11-case__message-bg {
  display: block;
  width: 100%;
  height: 100%;
}

.section11-case__message-text {
  position: absolute;
  top: 2.25rem;
  left: 1.875rem;
  z-index: 2;
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.65;
}

.section11-case__message-highlight {
  color: #ea5283;
  font-size: 1.2rem;
}

.section11-case__panda {
  position: absolute;
  right: 1.8125rem;
  top: 0.0625rem;
  z-index: 3;
  display: block;
  width: 4.25rem;
  height: auto;
}

@media (max-width: 767px) {
  .section11-case {
    left: auto;
    width: 100vw;
    margin: 3.5rem calc(50% - 50vw) -3.5rem;
    padding: 3.125rem 1rem 3.5rem;
  }
  .section11-case__inner {
    max-width: 22.5rem;
  }
  .section11-case__heading {
    width: min(100%, 22.5rem);
    height: 3.4375rem;
    font-size: clamp(1.05rem, 6vw, 1.5rem);
  }
  .section11-case__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
    margin-top: 2.1875rem;
    margin-bottom: 0.5rem;
  }
  .section11-case__card {
    width: 100%;
    height: auto;
    min-height: 36rem;
    padding: 2.1875rem 1.5625rem 2.5rem;
    border-radius: 0.9375rem;
    box-shadow: 0 0 0.3125rem rgba(109, 83, 53, 0.2);
  }
  .section11-case__head {
    grid-template-columns: minmax(0, 1fr) 6.5625rem;
    gap: 0.75rem;
  }
  .section11-case__title {
    font-size: clamp(0.875rem, 5vw, 1.25rem);
    line-height: 1.55;
  }
  .section11-case__photo {
    width: 6.5625rem;
    height: 6.5625rem;
  }
  .section11-case__name {
    margin-top: 0.875rem;
    font-size: 0.8rem;
    transform: translateY(-1.2rem);
  }
  .section11-case__graph--br {
    width: 19.25rem;
  }
  .section11-case__graph--vers {
    width: 18.875rem;
  }
  .section11-case__message {
    width: min(100%, 20.8125rem);
    height: 7.90625rem;
    margin-top: 1.25rem;
  }
  .section11-case__message-text {
    top: 3rem;
    left: 1.875rem;
    font-size: 0.9375rem;
    line-height: 1.65;
  }
  .section11-case__panda {
    right: 1rem;
    top: 0.0625rem;
    width: 4.25rem;
  }
}
/* ==============================
  11-4 FAQ
============================== */
.section11-faq {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 0 0 -4rem -50vw;
  padding: 7.1875rem 1.5rem 5rem;
  background: linear-gradient(to bottom, #ffffff 0 5rem, #e9f5e2 5rem 100%);
}

.section11-faq__inner {
  position: relative;
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
}

.section11-faq .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.section11-faq__mascot {
  position: absolute;
  top: -4.2rem;
  left: calc(50% + 0.875rem);
  z-index: 2;
  display: block;
  width: 5.625rem;
  height: auto;
  transform: translateX(-50%);
}

.section11-faq__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50rem;
  height: 4.375rem;
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  background: #2fa26a;
}

.section11-faq__list {
  display: grid;
  gap: 0.625rem;
  width: 50rem;
  margin-top: 2.5rem;
}

.section11-faq__item {
  overflow: hidden;
  background: #ffffff;
}

.section11-faq__question {
  color: inherit;
  font: inherit;
  text-align: left;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1rem 1.25rem;
  min-height: 4.375rem;
  cursor: pointer;
  appearance: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3rem;
  align-items: center;
}

.section11-faq__question-main,
.section11-faq__answer-inner {
  display: grid;
  grid-template-columns: 2.0625rem minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: start;
}

.section11-faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.0625rem;
  height: 2.0625rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 50%;
}

.section11-faq__icon--q {
  background: #2fa26a;
}

.section11-faq__icon--a {
  background: #ed6d96;
}

.section11-faq__question-text {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 800;
  line-height: 2.0625;
}

.section11-faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.section11-faq__toggle-icon {
  position: relative;
  width: 1.25rem;
  height: 0.75rem;
  transform: none;
  transition: transform 0.3s ease;
  display: block;
  justify-self: center;
}

.section11-faq__toggle-icon::before,
.section11-faq__toggle-icon::after {
  position: absolute;
  top: 0.25rem;
  display: block;
  width: 0.8125rem;
  height: 0.1875rem;
  background: #2fa26a;
  border-radius: 999px;
  content: "";
}

.section11-faq__toggle-icon::before {
  left: 0;
  transform: rotate(45deg);
  transform-origin: center;
}

.section11-faq__toggle-icon::after {
  right: 0;
  transform: rotate(-45deg);
  transform-origin: center;
}

.section11-faq__item.is-open .section11-faq__toggle-icon {
  transform: rotate(180deg);
}

.section11-faq__answer {
  overflow: hidden;
  transition: grid-template-rows 0.32s ease;
  display: grid;
  grid-template-rows: 0fr;
}

.section11-faq__item.is-open .section11-faq__answer {
  grid-template-rows: 1fr;
}

.section11-faq__answer-inner {
  min-height: 0;
  padding: 0 4rem 0 1.25rem;
  overflow: hidden;
}

.section11-faq__answer-text {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  padding-bottom: 1.75rem;
}

/* 番号付きリスト（1.〜）。list-style outsideでぶら下げインデント */
.section11-faq__answer-list {
  grid-column: 2;
  margin: 0;
  padding-left: 1.5em;
  padding-bottom: 1.75rem;
  color: #444444;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  list-style: decimal outside;
}

/* リストがある場合、導入文の下余白は詰める */
.section11-faq__answer-inner:has(.section11-faq__answer-list) .section11-faq__answer-text {
  padding-bottom: 0.25rem;
}

@media (max-width: 767px) {
  .section11-faq {
    left: auto;
    width: 100vw;
    margin: 3rem calc(50% - 50vw) -3.5rem;
    padding: 6.15625rem 1rem 3.75rem;
    background: linear-gradient(to bottom, #ffffff 0 5.15625rem, #e9f5e2 5.15625rem 100%);
  }
  .section11-faq__inner {
    max-width: 23.125rem;
  }
  .section11-faq__mascot {
    top: -4.1rem;
    left: calc(50% + 1.125rem);
    width: 5.53125rem;
  }
  .section11-faq__heading {
    width: min(100%, 23.125rem);
    height: 5rem;
    font-size: clamp(1.225rem, 7vw, 1.75rem);
  }
  .section11-faq__list {
    gap: 0.9375rem;
    width: min(100%, 23.125rem);
    margin-top: 1.875rem;
  }
  .section11-faq__question {
    grid-template-columns: minmax(0, 1fr) 2.25rem;
    min-height: 5rem;
    padding: 1.25rem 1.1875rem;
  }
  .section11-faq__question-main,
  .section11-faq__answer-inner {
    grid-template-columns: 2rem minmax(0, 1fr);
    column-gap: 0.6875rem;
  }
  .section11-faq__icon {
    width: 2rem;
    height: 2rem;
    font-size: 1.125rem;
  }
  .section11-faq__question-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  .section11-faq__toggle {
    width: 2.25rem;
    height: 2.25rem;
  }
  .section11-faq__toggle-icon {
    width: 1.28125rem;
    height: 0.78125rem;
  }
  .section11-faq__answer-inner {
    padding: 0 1.1875rem 0;
  }
  .section11-faq__answer-text {
    font-size: 0.875rem;
    line-height: 1.75;
    padding-bottom: 1.5rem;
  }
  .section11-faq__answer-list {
    font-size: 0.875rem;
    line-height: 1.75;
    padding-bottom: 1.5rem;
  }
}
/* ==============================
  Footer
============================== */
.footer {
  box-sizing: border-box;
  width: 100%;
  min-height: 29.75rem;
  padding: 3.8125rem 1.5rem 7.75rem;
  text-align: center;
  background: #ffffff;
}

.footer__inner {
  width: 100%;
  max-width: 37.5rem;
  margin-inline: auto;
}

.footer__logo {
  width: 10rem;
  margin-inline: auto;
}

.footer__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.footer__office {
  margin: 0.6875rem 0 0;
  color: #5e7069;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.footer__contact {
  margin-top: 3rem;
}

.footer__contact-label {
  margin: 0;
  color: #444444;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.footer__tel {
  display: inline-block;
  margin-top: 0.4375rem;
  color: #2fa26a;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.footer__hours {
  margin: 0.5rem 0 0;
  color: #2fa26a;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 2rem;
}

.footer__nav-link {
  color: #444444;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer__copy {
  margin: 1rem 0 0;
  color: #b3b3b3;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .footer {
    min-height: 31.25rem;
    padding: 3.625rem 1rem 4.5rem;
  }
  .footer__inner {
    max-width: 22.5rem;
  }
  .footer__logo {
    width: 10rem;
  }
  .footer__office {
    margin-top: 0.6875rem;
    font-size: 0.875rem;
  }
  .footer__contact {
    margin-top: 3.0625rem;
  }
  .footer__contact-label {
    font-size: 1.0625rem;
  }
  .footer__tel {
    margin-top: 0.5rem;
    font-size: clamp(1.313rem, 7.5vw, 1.875rem);
  }
  .footer__hours {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
  }
  .footer__nav {
    flex-direction: column;
    gap: 0;
    margin-top: 1.875rem;
  }
  .footer__nav-link {
    font-size: 0.8125rem;
  }
  .footer__nav-link + .footer__nav-link {
    margin-top: 1.125rem;
  }
  .footer__copy {
    margin-top: 2.6875rem;
    font-size: 0.8125rem;
  }
}
/* ==============================
  SP 固定 予約CTA
============================== */
.sp-fixed-cta {
  display: none;
}

@media (max-width: 767px) {
  .sp-fixed-cta {
    width: 100%;
    padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
    pointer-events: none;
    display: flex;
    justify-content: center;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  .sp-fixed-cta__button {
    gap: 0.5rem;
    width: 100%;
    max-width: 22.6875rem;
    min-height: 3.5rem;
    color: #ffffff;
    font-size: 4.2vw;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    background: #f5478d;
    border-radius: 999px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .sp-fixed-cta__text {
    white-space: nowrap;
  }
  .sp-fixed-cta__badge {
    width: 3.4375rem;
    min-height: 1.5rem;
    color: #f5478d;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    background: #ffffff;
    border-radius: 0.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  /* 固定CTA分の余白を確保し、フッターが隠れないようにする */
  .footer {
    padding-bottom: 6rem;
  }
}
/* ==============================
  セミナーバナー（FVボタン下）
============================== */
.seminarBan1 {
  margin: 2.5rem auto 3rem;
  text-align: center;
}

.seminarBan1 h2 {
  margin: 0 0 0.3125rem;
}

.seminarBan1 h2 span {
  position: relative;
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
}

.seminarBan1 h2 span::before,
.seminarBan1 h2 span::after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: -0.6em;
  width: 2px;
  height: 1em;
  background: #000000;
  transform: rotate(-15deg);
}

.seminarBan1 h2 span::after {
  right: -0.6em;
  left: inherit;
  transform: rotate(15deg);
}

.seminarBan1 a {
  display: block;
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
}

.seminarBan1 a img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.seminarBan1 a:hover img {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .seminarBan1 {
    margin: 2rem 6vw 2.5rem;
  }
  .seminarBan1 h2 {
    font-size: 4vw;
    line-height: 1.3;
    margin: 0 0 4vw;
  }
  .seminarBan1 h2 span {
    font-size: 4vw;
  }
  .seminarBan1 h2 span::before,
  .seminarBan1 h2 span::after {
    top: 0.15em;
    left: -16vw;
    width: 2px;
    height: 3em;
    transform: rotate(-20deg);
  }
  .seminarBan1 h2 span::after {
    right: -3.5vw;
    left: inherit;
    transform: rotate(20deg);
  }
  .seminarBan1 a {
    width: 100%;
    margin: 0;
  }
  .seminarBan1 a img {
    border-radius: 2.7vw;
  }
}
