/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --color-main: #8B1E24;
  --color-text: #2B2B2B;
  --color-cta: #F5EA99;
  --color-bg: #FAF8F5;
  --color-bg-sub: #FAF4E8;
  --color-accent: #C9A063;

  --font-mincho: 'Shippori Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-zen: 'Zen Old Mincho', serif;
  --max-width: 1280px;
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* SP専用改行 */
.sp-only { display: none; }

/* FVバッジ浮き上がりアニメーション */
@keyframes fvBadgeFloat {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 108px;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 70px;
  height: 100%;
}

.header__logo img {
  width: 108px;
  height: 80px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.header__tel-icon {
  font-size: 28px;
  color: var(--color-main);
  display: flex;
  align-items: center;
}

.header__tel-number {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  white-space: nowrap;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 12px 24px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header__cta:hover {
  opacity: 0.85;
}

/* ==========================================================================
   FV
   ========================================================================== */
.fv {
  position: relative;
  width: 100%;
  height: 960px;
  overflow: hidden;
  background-color: var(--color-bg);
}

/* --- 背景 --- */
.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fv__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-bg-sub) 0%,
    var(--color-bg) 22%,
    rgba(250, 248, 245, 0.88) 38%,
    rgba(250, 248, 245, 0.45) 52%,
    rgba(255, 255, 255, 0) 66%
  );
}

/* --- Inner / Content --- */
.fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0 70px;
}

.fv__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 1200px;
  padding-bottom: 25px;
  gap: 63px;
}

/* --- キャッチコピー --- */
.fv__catchcopy {
  position: relative;
  display: inline-block;
  padding-top: 102px;
}

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

.fv__h1-sub {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 48px;
  color: var(--color-main);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-left: 11px;
}

.fv__h1-main {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 64px;
  color: var(--color-main);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* --- バッジ（初期費用0円） --- */
.fv__badge {
  position: absolute;
  top: 0;
  left: 394px;
  width: 218px;
  height: 218px;
  border-radius: 50%;
  background-color: var(--color-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.fv__badge-label {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.fv__badge-price {
  display: flex;
  align-items: flex-end;
}

.fv__badge-zero {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 96px;
  color: #fff;
  line-height: 1;
}

.fv__badge-yen {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  margin-left: 4px;
}

/* --- 下部エリア --- */
.fv__bottom {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* --- 実績 + リード文 --- */
.fv__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fv__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 437px;
  height: 81px;
  padding: 0 17px;
  background: linear-gradient(
    90deg,
    rgba(230, 196, 94, 0.9) 0%,
    rgba(246, 230, 147, 0.9) 23%,
    rgba(230, 196, 94, 0.9) 50%,
    rgba(245, 227, 142, 0.9) 77%,
    rgba(230, 196, 94, 0.9) 100%
  );
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.fv__stats-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv__stats-label {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-main);
  white-space: nowrap;
  line-height: 1;
}

.fv__stats-note {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text);
  white-space: nowrap;
  line-height: 1;
}

.fv__stats-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.fv__stats-value {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 56px;
  color: var(--color-main);
  line-height: 1;
}

.fv__stats-unit {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-main);
  line-height: 1;
}

.fv__lead {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 40px;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* --- 特徴アイコン --- */
.fv__features {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.fv__feature-circle {
  width: 187px;
  height: 187px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(201, 160, 99, 0.45);
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
  gap: 6px;
}

.fv__feature-icon {
  font-size: 52px;
  color: var(--color-main);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fv__feature-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-main);
  text-align: center;
  line-height: 1.4;
}

.fv__feature-text--lg {
  font-size: 20px;
}

.fv__feature-num {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-main);
  line-height: 1;
  text-align: center;
}

.fv__feature-unit {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-main);
}

/* --- FVロゴ（写真エリア右下） --- */
.fv__logo {
  position: absolute;
  bottom: 39px;
  right: 40px;
  z-index: 1;
  pointer-events: none;
}

.fv__logo img {
  width: 199px;
  height: auto;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  background-color: var(--color-bg);
  padding: 100px 0;
}

.cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.cta__card {
  display: flex;
  align-items: center;
  gap: 67px;
  padding: 45px 41px 45px;
  background-color: var(--color-cta);
  border: 1px solid #D8D3CC;
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
}

/* --- 左：テキスト --- */
.cta__left {
  flex: 0 0 530px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta__lead {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: normal;
}

.cta__title {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-main);
  letter-spacing: 0.05em;
  line-height: normal;
}

/* --- 右：アクション --- */
.cta__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

/* ボタン */
.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 94px;
  padding: 11px 24px;
  background: linear-gradient(to top, var(--color-main), #6b1014);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cta__btn:hover {
  opacity: 0.88;
}

.cta__btn-icon {
  font-size: 48px;
  flex-shrink: 0;
  display: flex;
}

.cta__btn-label {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cta__btn-arrow {
  font-size: 72px;
  flex-shrink: 0;
  display: flex;
}

/* 電話番号 */
.cta__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 6px;
}

.cta__tel-icon {
  font-size: 40px;
  color: var(--color-text);
  flex-shrink: 0;
  display: flex;
}

.cta__tel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta__tel-number {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 40px;
  color: var(--color-text);
  line-height: 1;
  white-space: nowrap;
}

.cta__tel-hours {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  line-height: normal;
}

/* 注釈 */
.cta__note {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text);
  text-align: center;
  width: 100%;
  overflow-wrap: break-word;
  white-space: nowrap;
}

/* ==========================================================================
   Service Section
   ========================================================================== */

.service {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.service__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ---- 見出し ---- */
.service__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service__heading-text {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 40px;
  color: var(--color-text);
  line-height: normal;
}

.service__heading-line {
  width: 120px;
  height: 2px;
  background-color: var(--color-main);
}

/* ---- メインビジュアル ---- */
.service__main {
  background: linear-gradient(to left, transparent 0%, rgba(250, 244, 232, 0.85) 100%);
  border-radius: 10px;
  padding: 85px 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service__main-upper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* PC用まとめ写真 */
.service__photos--pc {
  flex-shrink: 0;
  width: 550px;
  height: auto;
  display: block;
}

.service__main-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service__main-desc {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-text);
  line-height: 1.8;
  text-wrap: pretty;
}

.service__accent {
  color: var(--color-main);
}

/* SP用まとめ写真（PCでは非表示） */
.service__photos--sp {
  display: none;
  width: 100%;
  height: auto;
}

/* PC用バッジ（SPでは非表示） */
.service__badges--sp {
  display: none;
  width: 100%;
  height: auto;
}

/* 写真グリッド */
.service__photos {
  display: grid;
  grid-template-columns: 240px 310px;
  grid-template-rows: 140px 365px;
  row-gap: 3px;
  flex-shrink: 0;
}

.service__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #fff;
  display: block;
}

.service__photo--tl { grid-column: 1; grid-row: 1; }
.service__photo--bl { grid-column: 1; grid-row: 2; }
.service__photo--r  { grid-column: 2; grid-row: 1 / 3; }

/* ---- バッジ行 ---- */
.service__badges {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.service__badge {
  width: 175px;
  height: 176px;
  background: #fff;
  border: 1px solid var(--color-main);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 8px 8px;
}

.service__badge-label {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
  white-space: nowrap;
  flex-shrink: 0;
}

.service__badge-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2px;
}

.service__badge-thumb {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  object-fit: cover;
}

.service__badge-rakuten {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-main);
  line-height: 1;
}

.service__badge-score {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 48px;
  color: #000;
  line-height: 1;
}

.service__badge-stars {
  font-size: 13px;
  color: #FFA500;
  letter-spacing: 1px;
  line-height: 1;
}

.service__badge-since {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  color: #000;
  text-align: center;
  line-height: 1;
}

.service__badge-award {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.service__badge-caption {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 12px;
  color: #000;
  text-align: center;
  line-height: 1.3;
}

.service__badge-big {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 56px;
  color: var(--color-main);
  line-height: 1;
  text-align: center;
}

.service__badge-decimal { font-size: 24px; }

.service__badge-sub {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  text-align: center;
  line-height: 1.2;
}

.service__badge-per { font-size: 16px; }

/* ---- さらに！セクション（画像） ---- */
.service__extra {
  width: 100%;
}

.service__extra-img--pc {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.service__extra-sp {
  display: none; /* PCでは非表示 */
}

.service__extra-img--sp {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- 催事販売 ---- */
.service__saiji {
  background: var(--color-bg-sub);
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  padding: 46px 93px 46px 115px;
}

.service__saiji-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service__saiji-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service__saiji-ttl {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-text);
  line-height: normal;
}

.service__saiji-desc p {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  line-height: normal;
}

.service__saiji-icon {
  font-size: 130px;
  color: var(--color-accent);
  display: flex;
  flex-shrink: 0;
}

/* ==========================================================================
   Voice Section
   ========================================================================== */

.voice {
  padding: 100px 0;
  background-color: var(--color-bg-sub);
}

.voice__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ---- 見出し＋リード ---- */
.voice__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.voice__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice__heading-text {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 40px;
  color: var(--color-text);
  line-height: normal;
}

.voice__heading-line {
  width: 120px;
  height: 2px;
  background-color: var(--color-main);
}

.voice__lead {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: normal;
}

/* ---- 本文エリア ---- */
.voice__body {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ---- アバター ---- */
.voice__avatar {
  width: 183px;
  height: 183px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.voice__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- 吹き出し共通 ---- */
.voice__bubble-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice__bubble {
  background: var(--color-main);
  border-radius: 20px;
  padding: 24px 32px;
  position: relative;
}

.voice__bubble::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 36px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 18px solid var(--color-main);
}

.voice__bubble-text {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.03em;
  overflow-wrap: break-word;
  word-break: normal;
}

.voice__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.7;
}

/* ---- レビューカード共通 ---- */
.voice__review {
  background: #fff;
  border-radius: 10px;
  padding: 22px 28px;
}

.voice__review p {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.85;
  letter-spacing: 0.05em;
}

/* ---- フィーチャードボイス ---- */
.voice__featured {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.voice__featured-top {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.voice__review--lg {
  padding: 32px 40px;
}

.voice__review--lg p {
  font-size: 20px;
  line-height: 1.8;
}

/* ---- 4枚カード ---- */
.voice__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
  list-style: none;
}

.voice__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice__card-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.voice__avatar--card {
  width: 183px;
  height: 183px;
}

/* ==========================================================================
   Pain Section
   ========================================================================== */

.pain {
  background: linear-gradient(to bottom, #f4f4f4, var(--color-bg));
  padding: 100px 0;
}

.pain__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* ---- 見出し ---- */
.pain__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pain__heading-text {
  font-family: var(--font-mincho);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.pain__heading-sm { font-size: 40px; }

.pain__heading-lg {
  font-size: 48px;
  position: relative;
}

/* 「お悩み」の文字幅に均等に並べる */
.pain__heading-deco {
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
}

.pain__heading-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-main);
}

/* ---- メインボディ ---- */
.pain__body {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
}

/* ---- お悩みカード（上段） ---- */
.pain__top-cards {
  display: flex;
  gap: 63px;
  list-style: none;
  width: 100%;
}

.pain__top-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 189px;
  padding: 14px 21px 40px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}


.pain__top-card--a { background: #d9d9d9; }
.pain__top-card--b { background: #ebedee; }

.pain__top-card-icon {
  width: 45px;
  height: 59px;
  object-fit: contain;
  display: block;
}

.pain__top-card-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

/* ---- 解決テキスト＋矢印 ---- */
.pain__resolve {
  display: flex;
  justify-content: center;
  width: 100%;
}

.pain__resolve-picture {
  display: block;
  width: 100%;
}

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

/* ---- ソリューションカード（下段） ---- */
.pain__bottom-cards {
  display: flex;
  gap: 71px;
  list-style: none;
  width: 100%;
}

.pain__bottom-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain__bottom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.pain__bottom-card-img {
  height: 180px;
  flex-shrink: 0;
}

.pain__bottom-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pain__bottom-card-title {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: 24px;
  color: var(--color-main);
  text-align: center;
  padding: 29px 16px 16px;
  white-space: nowrap;
  line-height: normal;
}

.pain__bottom-card-desc {
  padding: 0 16px 28px;
  text-align: center;
}

.pain__bottom-card-desc p {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  line-height: 25px;
  letter-spacing: 0.05em;
}

/* ---- フッターテキスト ---- */
.pain__footer {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-main);
  text-align: center;
  line-height: normal;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */

.flow {
  padding: 100px 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}

.flow__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ---- 見出し ---- */
.flow__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow__heading-text {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 40px;
  color: var(--color-text);
  line-height: normal;
}

.flow__heading-line {
  width: 120px;
  height: 2px;
  background-color: var(--color-main);
}

/* ---- フローステップ ---- */
.flow__steps {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 各行 */
.flow__row {
  width: 100%;
}

.flow__row--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.flow__row--split {
  display: flex;
  flex-direction: row;
  gap: 100px;
  justify-content: center;
}

/* カード共通 */
.flow__card {
  height: 100px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
}

.flow__row--center .flow__card {
  width: 600px;
  max-width: 100%;
}

.flow__row--split .flow__card {
  flex: 1;
  max-width: 500px;
}

/* カード種別 */
.flow__card--white    { background: #fff; }
.flow__card--beige    { background: var(--color-bg-sub); }

/* 資料請求・電話ボタン：クリックしたくなるエフェクト */
a.flow__card--beige {
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--color-accent);
  box-shadow: 0 4px 12px rgba(139, 30, 36, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
a.flow__card--beige:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(139, 30, 36, 0.18);
  background-color: #f5edd8;
}
a.flow__card--beige:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(139, 30, 36, 0.10);
}

.flow__card--bordered {
  background: var(--color-bg-sub);
  border: 1px solid var(--color-main);
}
.flow__card--red      { background: var(--color-main); }

/* カードテキスト */
.flow__card-label {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
  white-space: nowrap;
}

.flow__card-label--white { color: #fff; }

.flow__card-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
  margin-top: 4px;
}

/* or 区切り（PCでは非表示・SPのみ） */
.flow__split-or {
  display: none;
}

/* 矢印（下向き三角） */
.flow__arrow-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.flow__arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 22px solid var(--color-accent);
}

/* 注釈テキスト */
.flow__note {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.faq__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

/* ---- 見出し ---- */
.faq__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__heading-text {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 40px;
  color: var(--color-text);
  line-height: normal;
}

.faq__heading-line {
  width: 120px;
  height: 2px;
  background-color: var(--color-main);
}

/* ---- リスト ---- */
.faq__list {
  width: 100%;
  max-width: 990px;
  display: flex;
  flex-direction: column;
}

/* ---- 各アイテム ---- */
.faq__item {
  display: flex;
  flex-direction: column;
  padding: 28px 0;
}

/* ---- Q行 ---- */
.faq__q {
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  user-select: none;
}

/* ---- アイコン共通 ---- */
.faq__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
}

.faq__icon--q {
  background: var(--color-main);
  color: #fff;
}

.faq__icon--a {
  border: 2px solid var(--color-main);
  color: var(--color-main);
  background: transparent;
}

/* ---- Q テキスト ---- */
.faq__q-text {
  flex: 1;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.7;
}

/* ---- トグルアイコン ---- */
.faq__toggle {
  font-size: 20px;
  color: var(--color-text);
  flex-shrink: 0;
  line-height: 1;
  display: inline-block;
  transform: rotate(180deg); /* 閉じた状態は ∨ */
  transition: transform 0.35s ease;
}

.faq__item.is-open .faq__toggle {
  transform: rotate(0deg); /* 開いた状態は ∧ */
}

/* ---- A行 ---- */
.faq__a {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.faq__item.is-open .faq__a {
  max-height: 200px;
  margin-top: 12px;
}

.faq__a-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  padding-top: 14px;
}

/* ---- 区切り線 ---- */
.faq__divider {
  border: none;
  border-top: 1px solid #d0c8bc;
  margin: 0;
  width: 100%;
}

/* ==========================================================================
   Feature Section
   ========================================================================== */

.feature {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.feature__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
}

/* ---- 見出し ---- */
.feature__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature__heading-text {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 40px;
  color: var(--color-text);
  line-height: normal;
}

.feature__heading-line {
  width: 120px;
  height: 2px;
  background-color: var(--color-main);
}

/* ---- 3枚カード ---- */
.feature__cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  list-style: none;
  padding-left: 30px; /* バッジのはみ出し分 */
}

.feature__card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 40px 60px 40px 120px; /* badge(left:-20px, w:92px) 右端=72px より十分右へ */
  gap: 40px;
  min-height: 312px;
}

/* ---- カード番号バッジ（ゴールドの▼ペナント） ---- */
.feature__card-badge {
  position: absolute;
  left: -20px;
  top: 0;
  width: 92px;
  height: 158px;
  background: var(--color-accent);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  display: flex;
  justify-content: center;
  padding-top: 12px;
  z-index: 0;
}

.feature__card-num {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}

/* ---- カード内容（テキスト＋画像） ---- */
.feature__card-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature__card-title {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-main);
  line-height: normal;
}

.feature__card-desc {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.feature__card-thumb {
  flex: 0 0 230px;
  height: 166px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.feature__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- さらに ---- */
.feature__more {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.feature__more-badge {
  position: relative;
  background: var(--color-main);
  border-radius: 10px;
  width: 237px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.feature__more-badge::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 22px solid var(--color-main);
}

.feature__more-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

/* ---- サポートカード ---- */
.feature__support {
  display: flex;
  gap: 41px;
  width: 100%;
  justify-content: center;
}

.feature__support-card {
  background: #fff;
  border: 1px solid var(--color-main);
  flex: 0 0 550px;
  min-height: 485px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 31px 33px;
  gap: 28px;
}

.feature__support-ttl {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.feature__support-icon {
  width: 162px;
  height: 134px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ---- 研修ステップ ---- */
.feature__steps {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.feature__step {
  background: var(--color-bg);
  border-radius: 10px;
  width: 150px;
  min-height: 175px;
  padding: 20px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature__step--goal {
  width: 88px;
  min-height: 88px;
  justify-content: center;
  gap: 0;
}

.feature__step-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  line-height: normal;
  text-align: center;
}

.feature__step-label--goal {
  color: var(--color-main);
  font-size: 22px;
}

.feature__step-desc {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.feature__step-arrow {
  font-size: 22px;
  color: var(--color-text);
  flex-shrink: 0;
}

/* ---- ミーティング ---- */
.feature__meeting {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature__meeting-ttl {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
  white-space: nowrap;
}

.feature__meeting-num {
  font-size: 32px;
  font-weight: 700;
}

.feature__meeting-desc p {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ---- オプション ---- */
.feature__options {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 12px 20px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature__options-ttl {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
  margin-bottom: 6px;
}

.feature__options-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature__options-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  line-height: normal;
}

.feature__options-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

/* ==========================================================================
   Conditions Section
   ========================================================================== */

.conditions {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.conditions__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ---- 見出し ---- */
.conditions__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conditions__heading-text {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 40px;
  color: var(--color-text);
  line-height: normal;
}

.conditions__heading-line {
  width: 120px;
  height: 2px;
  background-color: var(--color-main);
}

/* ---- 条件表画像 ---- */
.conditions__picture {
  display: block;
  width: 100%;
}

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

/* ---- テーブルエリア（旧） ---- */
/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer {
  background-color: var(--color-main);
  padding: 60px 0 40px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ---- ロゴ ---- */
.footer__logo {
  width: 160px;
}

.footer__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

/* ---- 企業情報 ---- */
.footer__company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer__company-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__info-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.footer__info-label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  min-width: 50px;
  text-align: right;
}

.footer__info-value {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- コピーライト ---- */
.footer__copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ==========================================================================
   Tablet (iPad: 769px〜1100px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1100px) {

  /* ---- 共通インナー ---- */
  .pain__inner,
  .service__inner,
  .feature__inner,
  .voice__inner,
  .flow__inner,
  .faq__inner,
  .conditions__inner,
  .cta__inner,
  .footer__inner {
    padding: 0 40px;
  }

  /* ---- Header ---- */
  .header__tel-number { font-size: 18px; }
  .header__cta { font-size: 15px; padding: 10px 20px; }

  /* ---- FV ---- */
  .fv { height: auto; min-height: 600px; }
  .fv__h1-main { font-size: 48px; }
  .fv__h1-sub { font-size: 24px; }
  .fv__stats-value { font-size: 52px; }
  .fv__lead { font-size: 26px; }
  /* アイコンを3+2の2段表示（1列5個だと画面幅を超えるため） */
  .fv__features { gap: 16px; flex-wrap: wrap; max-width: 456px; }
  .fv__feature { flex: 0 0 140px; }
  .fv__feature-circle {
    width: 140px;
    height: 140px;
    padding-top: 20px;
    gap: 5px;
  }
  .fv__feature-icon { font-size: 36px; }
  .fv__feature-text { font-size: 12px; }
  .fv__feature-num { font-size: 26px; }
  /* ロゴをアイコンと重ならないよう縮小 */
  .fv__logo img { width: 160px; height: auto; }
  /* バッジをテキスト右に収める（left固定値だとタブレット幅ではみ出すため） */
  .fv__catchcopy { padding-right: 175px; }
  .fv__badge { left: auto; right: 0; width: 165px; height: 165px; }
  .fv__badge-label { font-size: 22px; }
  .fv__badge-zero { font-size: 72px; }
  .fv__badge-yen { font-size: 22px; margin-bottom: 8px; }

  /* ---- CTA ---- */
  /* 縦積みに変更（横並びだと530px+gapが769px幅に入りきらないため） */
  .cta__card {
    flex-direction: column;
    gap: 24px;
    padding: 36px 40px;
    align-items: stretch;
  }
  .cta__left { flex: unset; align-items: center; text-align: center; }
  .cta__title { font-size: 26px; }
  .cta__lead { font-size: 18px; }
  .cta__btn { height: 78px; }
  .cta__btn-label { font-size: 22px; }
  .cta__btn-icon { font-size: 36px; }
  .cta__btn-arrow { font-size: 52px; }
  .cta__tel-number { font-size: 30px; }

  /* ---- Pain ---- */
  .pain { padding: 80px 0; }
  .pain__top-cards { gap: 32px; }
  .pain__bottom-cards { gap: 40px; }
  .pain__bottom-card-title { font-size: 18px; }

  /* ---- Service ---- */
  .service { padding: 80px 0; }
  .service__main { padding: 60px 48px; }
  .service__main-desc { font-size: 18px; }
  .service__heading-text { font-size: 32px; }
  /* 縦積み＋中央寄せ（写真550px+テキストが593px幅に収まらないため） */
  .service__main-upper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  /* バッジを3+3の2行表示（1行6個だと幅を超えるため） */
  .service__badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* ---- Feature ---- */
  .feature { padding: 80px 0; }
  .feature__card {
    padding: 32px 40px 32px 100px;
    min-height: 260px;
    gap: 24px;
  }
  .feature__card-title { font-size: 20px; }
  .feature__card-desc { font-size: 14px; }
  .feature__more-badge { font-size: 24px; width: 180px; height: 56px; }
  .feature__more-title { font-size: 22px; }
  /* 縦積みに変更（550px×2枚=1100pxがタブレット幅を大幅超過するため） */
  .feature__support {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .feature__support-card {
    flex: unset;
    width: 100%;
    min-height: unset;
  }

  /* ---- Voice ---- */
  .voice { padding: 80px 0; }
  .voice__avatar { width: 140px; height: 140px; }
  .voice__avatar--card { width: 120px; height: 120px; }
  .voice__bubble-text { font-size: 17px; }
  .voice__name { font-size: 16px; }

  /* ---- Flow ---- */
  .flow { padding: 80px 0; }
  .flow__row--split { gap: 40px; }
  .flow__row--center .flow__card { width: 480px; }
  .flow__card-label { font-size: 22px; }
  .flow__card { height: 88px; }

  /* ---- FAQ ---- */
  .faq { padding: 80px 0; }

  /* ---- Conditions ---- */
  .conditions { padding: 80px 0; }

}

/* ==========================================================================
   Responsive (SP: 768px以下)
   ========================================================================== */
@media (max-width: 768px) {

  /* ---- Header ---- */
  .header {
    height: auto;
    min-height: 64px;
  }

  .header__inner {
    padding: 12px 20px;
  }

  .header__logo img {
    width: 50px;
    height: auto;
  }

  .header__tel {
    display: none;
  }

  .header__cta {
    font-size: 14px;
    padding: 8px 16px;
  }

  /* ---- FV ---- */
  .fv {
    height: auto;
    min-height: unset;
  }

  .fv__bg-img {
    object-position: 70% center;
  }

  .fv__bg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(250, 248, 245, 0.92) 0%,
      rgba(250, 248, 245, 0.78) 55%,
      rgba(250, 248, 245, 0.55) 100%
    );
  }

  .fv__inner {
    padding: 0 24px;
  }

  .fv__content {
    justify-content: flex-start;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 40px;
    min-height: unset;
  }

  .fv__catchcopy {
    display: block;
    padding-top: 0;
    padding-right: 112px;
  }

  .fv__h1-sub {
    font-size: 22px;
    margin-left: 0;
  }

  .fv__h1-main {
    font-size: 28px;
  }

  .fv__badge {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 100px;
    height: 100px;
    margin: 0;
    align-self: unset;
    gap: 0;
  }

  .fv__badge-label {
    font-size: 13px;
  }

  .fv__badge-zero {
    font-size: 44px;
  }

  .fv__badge-yen {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .fv__stats {
    width: 100%;
    height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 4px 0;
  }

  .fv__stats-label {
    font-size: 22px;
  }

  .fv__stats-value {
    font-size: 40px;
  }

  .fv__stats-unit {
    font-size: 18px;
  }

  .fv__lead {
    font-size: 22px;
  }

  /* アイコン：flex wrap 3+2段レイアウト */
  .fv__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .fv__feature {
    flex: 0 0 calc((100% - 20px) / 3);
  }

  /* 5番目のリセット */
  .fv__feature:nth-child(5) {
    grid-column: unset;
    display: block;
    justify-content: unset;
  }

  .fv__feature:nth-child(5) .fv__feature-circle {
    width: 100%;
    max-width: unset;
  }

  .fv__feature-circle {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    padding-top: 18%;
    gap: 5px;
    border: 2px solid rgba(201, 160, 99, 0.75);
    box-shadow: 0 4px 16px rgba(139, 30, 36, 0.1), 0 0 0 4px rgba(201, 160, 99, 0.08);
    background-color: rgba(255, 255, 255, 0.97);
    /* 浮き上がりアニメーション */
    animation: fvBadgeFloat 0.8s ease both;
    opacity: 0;
  }

  .fv__feature:nth-child(1) .fv__feature-circle { animation-delay: 0.3s; }
  .fv__feature:nth-child(2) .fv__feature-circle { animation-delay: 0.55s; }
  .fv__feature:nth-child(3) .fv__feature-circle { animation-delay: 0.8s; }
  .fv__feature:nth-child(4) .fv__feature-circle { animation-delay: 1.05s; }
  .fv__feature:nth-child(5) .fv__feature-circle { animation-delay: 1.3s; }

  .fv__feature-icon {
    font-size: 26px;
  }

  .fv__feature-text {
    font-size: 10px;
  }

  .fv__feature-text--lg {
    font-size: 12px;
  }

  .fv__feature-num {
    font-size: 22px;
  }

  .fv__feature-unit {
    font-size: 10px;
  }

  .fv__logo {
    display: none;
  }

  /* ---- CTA ---- */
  .cta {
    padding: 60px 0;
  }

  .cta__inner {
    padding: 0 24px;
  }

  .cta__card {
    flex-direction: column;
    gap: 28px;
    padding: 32px 24px;
    align-items: stretch;
  }

  .cta__left {
    flex: unset;
    align-items: center;
    text-align: center;
  }

  .cta__lead {
    font-size: 13px;
  }

  .cta__title {
    font-size: 18px;
  }

  .cta__btn {
    height: auto;
    padding: 16px 20px;
    gap: 8px;
    justify-content: center;
  }

  .cta__btn-icon {
    font-size: 28px;
  }

  .cta__btn-label {
    font-size: 18px;
    flex: unset;
  }

  .cta__btn-arrow {
    font-size: 36px;
  }

  .cta__tel {
    justify-content: center;
    padding: 8px 0 4px;
  }

  .cta__tel-number {
    font-size: 28px;
  }

  .cta__tel-hours {
    font-size: 14px;
  }

  .cta__note {
    font-size: 12px;
  }

  /* ---- Service ---- */
  .service {
    padding: 60px 0;
  }

  .service__inner {
    padding: 0 24px;
    gap: 60px;
  }

  .service__heading-text { font-size: 28px; }

  .service__main {
    padding: 40px 24px;
    gap: 32px;
  }

  .service__main-upper {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 24px;
  }

  .service__main-desc {
    font-size: 16px;
    text-align: justify;
  }

  /* SP：PC用3枚グリッドを非表示、SP用まとめ画像を表示 */
  .service__photos--pc { display: none; }
  .service__photos--sp { display: block; }

  /* SP：PC用バッジを非表示、SP用アイコン画像を表示 */
  .service__badges--pc { display: none; }
  .service__badges--sp { display: block; }

  /* SP：さらに！は縦積み3枚画像 */
  .service__extra-img--pc { display: none; }
  .service__extra-sp {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .service__saiji {
    padding: 24px 20px;
  }

  .service__saiji-inner {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }

  .service__saiji-text {
    flex: 1;
  }

  .service__saiji-ttl {
    font-size: 16px;
  }

  .service__saiji-desc p {
    font-size: 12px;
  }

  .service__saiji-icon {
    font-size: 64px;
    align-self: center;
    flex-shrink: 0;
  }

  /* ---- Voice ---- */
  .voice {
    padding: 60px 0;
  }

  .voice__inner {
    padding: 0 24px;
    gap: 48px;
  }

  .voice__heading-text { font-size: 28px; }

  .voice__lead {
    font-size: 16px;
  }

  /* フィーチャード：縦積み */
  .voice__featured-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .voice__avatar {
    width: 110px;
    height: 110px;
  }

  .voice__bubble-wrap {
    width: 100%;
    gap: 12px;
  }

  .voice__bubble {
    padding: 18px 20px;
    margin-top: 14px; /* しっぽの分だけ上にスペース */
  }

  /* featured voice（縦並び）：上向きのしっぽ */
  .voice__featured .voice__bubble::before {
    display: block;
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 16px solid var(--color-main);
    border-top: none;
  }

  /* small cards（横並び）：左向きのしっぽを復活 */
  .voice__card .voice__bubble::before {
    display: block;
    left: -14px;
    top: 24px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 14px solid var(--color-main);
    border-left: none;
  }

  .voice__bubble-text {
    font-size: 16px;
  }

  .voice__name {
    font-size: 15px;
  }

  .voice__review {
    padding: 18px 20px;
  }

  .voice__review p {
    font-size: 14px;
  }

  .voice__review--lg {
    padding: 20px;
  }

  .voice__review--lg p {
    font-size: 15px;
  }

  /* 4枚カード：1列 */
  .voice__cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* カード：photo＋吹き出し横並び維持、サイズ縮小 */
  .voice__card-top {
    gap: 14px;
  }

  .voice__avatar--card {
    width: 90px;
    height: 90px;
  }

  /* ---- Flow ---- */
  .flow {
    padding: 60px 0;
  }

  .flow__inner {
    padding: 0 24px;
    gap: 48px;
  }

  .flow__heading-text { font-size: 28px; }

  /* 2択行を縦積みに */
  .flow__row--split {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .flow__row--split .flow__card {
    width: 100%;
    max-width: 100%;
  }

  /* SP：or を表示 */
  .flow__split-or {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    padding: 6px 0;
  }

  .flow__row--center .flow__card {
    width: 100%;
  }

  .flow__card { height: auto; min-height: 72px; padding: 16px 20px; }
  .flow__card-label  { font-size: 18px; white-space: normal; }
  /* 長いテキストのカードは文字を小さく */
  .flow__card--bordered .flow__card-label { font-size: 16px; }
  .flow__card-sub    { font-size: 14px; }
  .flow__note        { font-size: 14px; }
  .flow__arrow-wrap  { padding: 14px 0; }

  /* ---- FAQ ---- */
  .faq {
    padding: 60px 0;
  }

  .faq__inner {
    padding: 0 24px;
    gap: 40px;
  }

  .faq__heading-text { font-size: 28px; }

  .faq__item {
    padding: 20px 0;
    gap: 6px;
  }

  .faq__q,
  .faq__a {
    gap: 14px;
  }

  .faq__icon {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .faq__q-text {
    font-size: 15px;
  }

  .faq__toggle {
    font-size: 16px;
  }

  .faq__a-text {
    font-size: 14px;
    padding-top: 8px;
  }

  /* ---- Pain ---- */
  .pain {
    padding: 60px 0;
  }

  .pain__inner {
    padding: 0 24px;
    gap: 48px;
  }

  .pain__heading-sm { font-size: 22px; }
  .pain__heading-lg { font-size: 30px; }

  .pain__body {
    gap: 24px;
  }

  .pain__top-cards {
    flex-direction: column;
    gap: 16px;
  }

  .pain__top-card {
    height: auto;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
  }

  .pain__top-card-icon {
    width: 32px;
    height: 42px;
    flex-shrink: 0;
  }

  .pain__top-card-text {
    font-size: 18px;
    text-align: left;
  }

  .sp-only { display: inline; }

  .pain__bottom-cards {
    flex-direction: column;
    gap: 24px;
  }

  .pain__bottom-card-title {
    font-size: 20px;
    padding: 20px 12px 12px;
    white-space: normal;
  }

  .pain__bottom-card-desc p {
    font-size: 14px;
    line-height: 22px;
  }

  .pain__footer {
    font-size: 18px;
  }

  /* ---- Feature ---- */
  .feature {
    padding: 60px 0;
  }

  .feature__inner {
    padding: 0 24px;
    gap: 48px;
  }

  .feature__heading-text { font-size: 28px; }

  .feature__cards {
    gap: 40px;
    padding-left: 0;
    padding-top: 16px; /* バッジのはみ出し分 */
  }

  .feature__card {
    flex-direction: column;
    padding: 24px 16px 24px 52px; /* 左余白を最小限に */
    gap: 20px;
    min-height: unset;
  }

  .feature__card-badge {
    top: -12px;   /* 少し上にはみ出す */
    left: -6px;
    width: 48px;
    height: 84px;
  }

  .feature__card-num { font-size: 22px; }

  .feature__card-content {
    flex-direction: column;
    gap: 16px;
  }

  .feature__card-title { font-size: 26px; }
  .feature__card-desc  { font-size: 13px; }

  .feature__card-thumb {
    flex: unset;
    width: 100%;
    height: 180px;
    flex-shrink: unset;
  }

  .feature__more-badge {
    width: 180px;
    height: 52px;
    font-size: 24px;
  }

  .feature__more-title {
    font-size: 20px;
  }

  .feature__support {
    flex-direction: column;
    gap: 24px;
  }

  .feature__support-card {
    flex: unset;
    width: 100%;
    padding: 24px 20px;
    min-height: unset;
  }

  .feature__support-ttl { font-size: 24px; }

  .feature__support-icon {
    width: 110px;
    height: 90px;
  }

  .feature__steps {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
  }

  .feature__step {
    width: 80%;
    max-width: 260px;
    min-height: unset;
    padding: 14px 16px;
  }

  .feature__step--goal {
    width: 90px;
    min-height: 90px;
    max-width: 90px;
  }

  .feature__step-label { font-size: 18px; }
  .feature__step-label--goal { font-size: 18px; }
  .feature__step-desc { font-size: 12px; }

  /* 横矢印→を非表示にして下向き矢印で代替 */
  .feature__step-arrow {
    font-size: 0;
    line-height: 0;
  }

  .feature__step-arrow::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid var(--color-text);
  }

  .feature__meeting-ttl {
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }

  .feature__meeting-desc p {
    font-size: 16px;
    text-align: left;
    line-height: 1.6;
  }

  .feature__options { padding: 12px 16px; }
  .feature__options-ttl { font-size: 16px; }

  /* ---- Conditions ---- */
  .conditions {
    padding: 60px 0;
  }

  .conditions__inner {
    padding: 0 24px;
    gap: 40px;
  }

  .conditions__heading-text { font-size: 28px; }

  /* ---- Footer ---- */
  .footer {
    padding: 48px 0 32px;
  }

  .footer__inner {
    padding: 0 20px;
    gap: 24px;
  }

  .footer__logo {
    width: 100px;
  }

  .footer__info-row {
    font-size: 12px;
    gap: 12px;
  }

  .footer__info-label {
    min-width: 45px;
  }
}
