/* ===============================
   Base
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   Utility（差し替え）
================================ */
.container {
  margin: 0 auto;
  width: 100%;
}

/* ワイド＝見せる（余白少なめで広く） */
.container.wide {
  max-width: 1200px;
  padding: 0 20px;
}

/* ナロー＝読ませる（少し締める） */
.container.narrow {
  max-width: 820px;
  padding: 0 20px;
}

/* 基本セクション */
.section {
  padding: 100px 20px;
}

/* 少し詰めるセクション（CTAとか） */
.section.tight {
  padding: 60px 20px;
}

.center {
  text-align: center;
}

/* ===============================
   Heading（高級感トーン）
================================ */
.section-heading {
  margin-bottom: 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #888;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 40px;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
}


/* ===============================
   Button（高級感トーン）
================================ */
.btn {
  display: inline-block;
  padding: 14px 26px;

  font-size: 13px;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

/* メインCTA（黒ベース） */
.btn-primary {
  background: #111;
  color: #fff;
}

.btn-primary:hover {
  background: #333;
}

/* サブCTA（枠のみ） */
.btn-secondary {
  border: 1px solid #bbb;
  color: #111;
  background: transparent;
}

.btn-secondary:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ===============================
   Header（高級感ベース・完全差し替え）
================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 100;
  border-bottom: 1px solid #e5e5e5;
  transition: 0.3s;
}

.header.is-scroll {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

/* 内部レイアウト */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header-logo {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #111;
}

/* ナビ */
.header-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 18px;
  color: #333;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.header-nav a:hover {
  opacity: 0.6;
}

/* CTA（重要：高級感） */
.header-cta {
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 2px;
  background: #111;
  color: #fff;
  transition: 0.3s;
}

.header-cta:hover {
  background: #333;
}

/* ハンバーガー（PCでは非表示） */
.hamburger {
  display: none;
  width: 26px;
  height: 18px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #111;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* SPナビ */
.sp-nav {
  display: none;
  position: fixed;
  top: 64px;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #eee;
}

.sp-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-nav li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.sp-nav a {
  font-size: 14px;
  color: #111;
}

/* アクティブ時 */
.sp-nav.is-active {
  display: block;
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* ===============================
   FV 全体
================================ */
.fv {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 背景 */
.fv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   配置
================================ */
.fv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 160px;
  padding-right: 40px;
  margin-top: 60px;
}

/* ===============================
   ベージュ面（しっかり見せる）
================================ */
.fv-copy {
  position: relative;
  max-width: 750px;

  padding: 50px 40px 50px 50px;

  background: linear-gradient(
    to right,
    rgba(245, 240, 230, 0.96) 0%,
    rgba(245, 240, 230, 0.94) 65%,
    rgba(245, 240, 230, 0.91) 74%,
    rgba(245, 240, 230, 0.86) 85%,
    rgba(245, 240, 230, 0.52) 100%
  );
  margin-left: 22px;
  margin-top: 82px;
}



/* ===============================
   テキスト（FVらしく強化）
================================ */
.fv-label {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 0;
  color: #1c2b3a;
}

.fv h1 {
  font-size: 54px; /* ←さらに強く */
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 10px;
  color: #1c2b3a;
  font-family: "Noto Serif JP", serif;
}

/* 下線削除 */
.fv h1 span::after {
  display: none;
}

.fv h1 span {
    font-size: 84px;
    font-weight: 700;
    letter-spacing: .02em;
}

.fv-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 48px;
  color: #1c2b3a;
}

/* ===============================
   ボタン
================================ */
.fv-buttons {
  display: flex;
  gap: 16px;
}

/* FV専用ボタン */
.fv .btn-primary {
  padding: 18px 36px;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #bfa15a, #e0c87a);
  color: #1c2b3a;
  border: none;
  transition: all 0.3s ease;
}

/* hover制御（ここが重要） */
.fv .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  padding: 18px 36px;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #1c2b3a;
  color: #1c2b3a;
  background: transparent;
}

/* サブCTA（軽く浮く） */
.fv .btn-secondary:hover {
  transform: translateY(-2px); /* ←ここ上げる */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18); /* ←しっかり影 */
}

/* ===============================
   Problems（最終仕上げ）
================================ */
.problems {
  position: relative;
  padding: 100px 0;
  background: url('../img/bg-marble-white-soft.png') center / cover no-repeat;
}

/* 白かぶせ（大理石の主張を抑える） */
.problems::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
}

/* コンテンツを前に出す */
.problems .container {
  position: relative;
  z-index: 1;
}


/* ===== 見出し ===== */
.section-heading h2 {
  font-size: 32px;
  margin-top: 10px;
}

.section-label {
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #888;
}


/* ===== リスト ===== */
.problems-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
  padding: 0 40px; /* ←これ追加 */
  justify-content: center;
}


/* ===== カード ===== */
.problem-item {
  opacity: 0;
  transform: translateX(-16px);
  transition: all 1.1s cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  padding: 48px 36px 36px;

  background: #16202a; /* ← 少し明るいネイビー */
  color: #fff;

  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.08);
  
}

.problem-item.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* 表示時 */
.problem-item.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 番号 */
.problem-item::before {
  position: absolute;
  top: 18px;
  left: 24px;

  font-family: "Yu Mincho", serif; /* ←追加 */
  font-size: 26px; /* ←大きく */
  letter-spacing: 0.08em;

  color: #c8a96a;
}


.item-01::before { content: "01"; }
.item-02::before { content: "02"; }
.item-03::before { content: "03"; }


/* 見出し */
.problem-item h3 {
  font-family: "Yu Mincho", serif;
  font-size: 28px; /* ←大きく */
  margin-bottom: 0;
  line-height: 1.6;
}

/* 本文 */
.problem-item p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.9;
  color: #d0d5db;
}


/* ===============================
   画像スライド
================================ */

.salon-gallery {
  padding: 80px 0;
  background: #e7e7e7;
}

/* ←これが本質 */
.gallery-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 560px; /* ←固定が重要 */
  align-items: center;
  column-gap: 60px;
}

/* テキスト */
.gallery-lead {
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: 26px;
  font-weight: 450;
  line-height: 2.2;
  color: #555;
  margin: 0;
}

/* スライダー */
.gallery-slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-slider {
  width: 640px; /* ←ここ固定が重要 */
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ←潰れ防止 */
}

/* ドット */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;

  border: 1px solid #444;
  background: transparent;

  padding: 0;
  margin: 0;

  font-size: 0;       /* ←これ重要 */
  line-height: 0;     /* ←これも重要 */

  display: inline-block;
  flex: none;
}

.dot.active {
  background: #444;
}

.gallery-title {
  font-size: 36px;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 36px;
  font-weight: 600;
}

/* ===============================
   CTA Band1
================================ */

.mini-cta {
  padding: 72px 20px;
  background: #111;
}

.mini-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 60px;
}

.mini-cta-text {
  color: #fff;
}

.mini-cta-lead {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.mini-cta-title {
  margin: 0;
  font-size: 44px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "HGS明朝E",
    serif;
  font-weight: 500;
}

.mini-cta-btn-wrap {
  display: flex;
  justify-content: flex-end;
}

.mini-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 70px;
  padding: 30px 36px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

/* ★ここ変更 */
.mini-cta-btn:hover {
  background: #c9a96a; /* ゴールド */
  color: #111;
  border-color: #c9a96a;
}



/* =========================
   BEFORE AFTER
========================= */

.before-after {
  padding: 100px 0;
  background: url('../img/bg-marble-white-soft.png') center / cover no-repeat;
  min-height: 600px;
}


/* デフォルト（SP）縦並び */
.ba-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 32px;
}


.ba-item img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px;
}

/* PC（2カラム2段） */
@media (min-width: 1025px) {
  .ba-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 24px;
    margin-top: 40px;
  }
}

.before-after-text {
  font-size: 23px;
}

/* =========================
   微調整
========================= */

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  color: #666;
}

/* =========================
   CTA②（ミニCTA軽め）
========================= */

.cta-band--02 {
  padding: 64px 20px;
  background: #111; /* CTA①と揃える */
}

.cta-band--02 .cta-band-box {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 60px;
}

.cta-band--02 .cta-band-copy {
  color: #fff;
}

.cta-band--02 .cta-band-lead {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6); /* 少し弱め */
  font-weight: 500;
}

.cta-band--02 .cta-band-copy h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "HGS明朝E",
    serif;
  font-weight: 500;
  white-space: nowrap;
}

/* ボタン（軽め） */
.cta-band--02 .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 58px;
  padding: 34px 28px;

  background-color: #fff;
  color: #111;
  border: 1px solid #fff;

  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* hoverだけ少し強く */
.cta-band--02 .btn-primary:hover {
  background: #c9a96a;
  border: 1px solid #c9a96a;
  color: #111;
}

/* =========================
   Reason（横長カード・改）
========================= */

.reason {
  background: #f7f6f4;
  padding: 100px 0;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}

/* カード */
.reason-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;

  background: #fbfaf8; /* ← ほんのり面を戻す */
  padding: 24px 28px;


  box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* ← しっかり浮かせる */

  height: auto; /* ← 固定やめる（重要） */
}

/* 偶数だけ並び替え */
.reason-item:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}

.reason-item:nth-child(even) .reason-image {
  order: 2;
}

.reason-item:nth-child(even) .reason-content {
  order: 1;
}

/* 画像（余白なし・角丸なし） */
.reason-image {
  height: 100%;
}

.reason-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* テキスト側だけ余白 */
.reason-content {
  padding: 40px;

}

.reason-number {
  font-size: 48px;
  color: #c9a96a;
  margin-bottom: 10px;
  font-weight: 600;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "HGS明朝E",
    serif;
  letter-spacing: 0.05em;
}

.reason-content h3 {
  font-size: 30px;
  margin-bottom: 14px;
  margin-top: 10px;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "HGS明朝E",
    serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.reason-content p {
  font-size: 20px;
  font-weight: 450;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}
/* =========================
   Reason専用（強めスライド）
========================= */

.reason .reason-item.js-fade {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reason .reason-item:nth-child(even).js-fade {
  transform: translateX(60px);
}

.reason .reason-item.js-fade.is-active {
  opacity: 1;
  transform: translateX(0);
}
/* ===============================
   SAFETY（最終）
================================ */
.safety {
  background: #f7f6f4;
}

.safety-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
  padding: 0 40px;
}

/* カード本体 */
.safety-item {
  opacity: 0;
  transform: translateX(-16px);
  transition: all 1.1s cubic-bezier(0.22, 1, 0.36, 1);

  overflow: hidden;

  background: #fbfaf8;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.safety-item.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* 中身 */
.safety-item-body {
  display: flex;
  flex-direction: column;

}

/* 画像 */
.safety-item-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* テキスト */
.safety-item-body h3 {
  font-family: "Yu Mincho", serif;
  font-size: 30px;
  line-height: 1.6;
  margin: 18px 20px 10px;
  color: #222;
}

.safety-item-body p {
  font-size: 20px;
  font-weight: 450;
  line-height: 1.9;
  color: #666;
  margin: 0 20px 22px;
}

/* 遅延そのまま */
.safety-item:nth-child(1) { transition-delay: 0s; }
.safety-item:nth-child(2) { transition-delay: 0.15s; }
.safety-item:nth-child(3) { transition-delay: 0.3s; }

/* ===============================
   Comparison
================================ */

.comparison {
  position: relative;
  padding: 100px 0;
  background: url('../img/bg-marble-white-soft.png') center / cover no-repeat;
}

.comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.5);
}

.comparison .container {
  position: relative;
  z-index: 1;
}


/* テーブル */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 20px;
  margin-top: 50px;

  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


/* セル共通 */
.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}


/* ヘッダー */
.comparison-table thead th {
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid #bbb;
}


/* 縦線（軽く） */
.comparison-table th + th,
.comparison-table td + td {
  border-left: 1px solid #eee;
}


/* 比較項目（左列） */
.comparison-table tbody th {
  width: 26%;
  font-weight: 600;
  color: #333;

}


/* 当サロン（主役） */
.comparison-table td:nth-child(2),
.comparison-table thead th:nth-child(2) {
  background: #ffffff;
  font-weight: 600;
  color: #111;
}


/* 一般サロン（弱め） */
.comparison-table td:nth-child(3) {
  color: #777;
}

/* ===== 当サロンだけ強調 ===== */

/* ヘッダー */
.comparison-table thead th:nth-child(2) {
  color: #bfa46f; /* ゴールド */
  font-weight: 700;
  font-size: 24px;
}

/* 本文 */
.comparison-table td:nth-child(2) {
  color: #bfa46f; /* ゴールド */
  font-weight: 700;
  font-size: 24px;
}

/* ===============================
   Staff
================================ */

/* ===============================
   Staff 背景ぼかし
================================ */
.staff {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* 背景画像 */
.staff::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/salon-reception-waiting-stylist.png') center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.05); /* ぼかし端対策 */
  z-index: 0;
}

/* 白オーバーレイ */
.staff::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    rgba(255,255,255,0.1);
  z-index: 1;
}

/* 中身を前面に */
.staff .container {
  position: relative;
  z-index: 2;
}

/* グリッド */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

/* カード */
.staff-card {
  background: #ffffff;
  
  overflow: hidden;

  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* hover（PCのみ効く） */
.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}



/* 画像 */
.staff-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* 本文 */
.staff-body {
  padding: 24px;

}

/* 名前 */
.staff-body h3 {
  font-size: 26px;
  font-weight: 800;
  color: #222;
  margin-bottom: 0;
  font-family: "Yu Mincho", serif;
}


/* 説明文 */
.staff-body p {
  font-size: 19px;
  font-weight: 450;
  line-height: 1.8;
  color: #555;
}

.staff-body .staff-meta {
  font-size: 20px;
  font-weight: 500;
  color: #8f7a4f;
  margin: 6px 0 10px;
  letter-spacing: 0.05em;
}



/* ===============================
   Service
================================ */

/* セクション背景 */
.service {
  background: #f7f7f7;
  padding: 100px 0;
}

/* グリッド：2カラム */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

/* カード */
.service-card {
  background: #fff;

  overflow: hidden;

  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* 表示された時 */
.service-card.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 順番ディレイ */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.3s; }
.service-card:nth-child(3) { transition-delay: 0.5s; }
.service-card:nth-child(4) { transition-delay: 0.7s; }

/* 画像 */
.service-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* 本文 */
.service-body {
  padding: 22px;
}

/* タイトル */
.service-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  margin-top: 6px;
  font-family: "Yu Mincho", serif;

}

/* 説明文 */
.service-body p {
  font-size: 19px;
  font-weight: 450;
  line-height: 1.8;
  color: #555;
}

/* ===============================
   FLOW
================================ */
.flow {
  position: relative;
  padding: 120px 0;
  background: #e9e6df;
  overflow: hidden;
}

/* 背景 */
.flow::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../img/flow-bg-men-eyebrow.png") no-repeat right center;
  background-size: cover;

  z-index: 0;
}

/* 左グラデ */
.flow::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(233, 230, 223, 0.95) 0%,
    rgba(233, 230, 223, 0.85) 35%,
    rgba(233, 230, 223, 0.3) 60%,
    rgba(233, 230, 223, 0) 80%
  );

  z-index: 1;
}

/* inner */
.flow-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出し */
.flow-head {
  text-align: center;
  margin-bottom: 70px;
}

.flow-head span {
  display: block;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: #8c877f;
  margin-bottom: 10px;
}

.flow-head h2 {
  font-size: 40px;
  font-weight: 600;
  color: #2b2b2b;
}

/* リスト（左寄せに調整） */
.flow-list {
  max-width: 820px;
  margin-left: 0; /* ←ここが今回の重要ポイント */
  display: flex;
  flex-direction: column;
  gap: 46px;
}

/* ステップ */
.flow-step {
  display: flex;
  gap: 18px;

  align-items: flex-start;

  opacity: 0;
  transform: translateX(24px);
  transition: all 0.8s ease;
}

/* 表示 */
.flow-step.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 遅延 */
.flow-step:nth-child(1) { transition-delay: 0s; }
.flow-step:nth-child(2) { transition-delay: 0.12s; }
.flow-step:nth-child(3) { transition-delay: 0.24s; }
.flow-step:nth-child(4) { transition-delay: 0.36s; }

/* 番号（少し締めた） */
.flow-step-num {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #313c55;

  color: #fff;
  font-size: 30px;
  letter-spacing: 0.08em;

  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

/* テキスト */
.flow-step-content h3 {
  min-height: 68px;
  display: flex;
  align-items: center;

  margin: 0 0 6px;
  font-size: 32px;
  color: #1f1f1f;
 
  font-weight: 700;
  line-height: 1.2;
}
.flow-step-content p {
  font-size: 20px;
  font-weight: 450;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
/* ===============================
   PRICE
================================ */
.price {
  padding: 120px 0;
  background: url("../img/bg-marble-white-soft.png") center / cover no-repeat;
}

/* ボックス */
.price-box {
  max-width: 1000px;
  margin: 60px auto 0;

  background: #111;
  color: #fff;

  padding: 50px 40px;

  border: 1px solid #bfa46f;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  text-align: center;
}

/* プラン */
.price-plan {
  font-size: 46px;
  letter-spacing: 0.12em;
  color: #bfa46f;
  margin-bottom: 10px;
}

/* タイトル */
.price-main h3 {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  background-color: #bfa46f;
  padding: 10px 26px;
}

/* 価格（主役） */
.price-value {
  font-size: 90px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
  margin-left: 50px;
  letter-spacing: .03em;
  color: #fff;
}

.price-value span {
  font-size: 26px;
  margin-left: 6px;
  color: #ccc;
}

/* 補足 */
.price-note {
  font-size: 26px;
  color: #aaa;
  margin-bottom: 30px;
}

/* リスト全体 */
.price-features {
  border-top: 1px solid rgba(191,164,111,0.4);
  padding-top: 24px;

  max-width: 500px;        /* ← 横幅を制限して塊にする */
  margin: 0 auto;          /* ← ボックス内で中央配置 */

  display: flex;
  flex-direction: column;
  gap: 14px;

  text-align: left;        /* ← 左揃え */
  list-style: none;        /* ← デフォルト消す */
}

/* 各項目 */
.price-features li {
  position: relative;
  padding-left: 18px;      /* ← スクエア分の余白 */

  font-size: 20px;
  color: #ddd;
  line-height: 1.7;
}

/* スクエア */
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;

  width: 6px;
  height: 6px;

  background: #bfa46f;     /* ← くすみゴールド */
}


/* ===============================
   CTA③（ミニCTA）
================================ */
.cta-band--03 {
  padding: 72px 0;
  background: #111;
}

/* inner */
.cta-band--03 .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ボックス */
.cta-band-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 60px;   /* ← 少し広げる（元60 → 80） */
}

/* テキスト */
.cta-band-copy {
  color: #fff;
  max-width: 720px;   
}

.cta-band-lead {
  margin: 0 0 20px;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.cta-band-copy h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

/* ボタン */
.cta-band--03 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 58px;
  padding: 36px 28px;

  background: #fff;
  color: #111;
  text-decoration: none;

  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;

  border: 1px solid #fff;
  transition: all 0.3s ease;
}

/* hover（ここだけ調整ポイント） */
.cta-band--03 .btn:hover {
  background: #bfa46f;
  color: #111;
  border-color: #bfa46f;

  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* =============================== 
   Review（黒カード × 明るい背景） 
================================ */
.review {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* 背景（軽めぼかし） */
.review::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/salon-reception-waiting-stylist.png') center / cover no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: 0;
}

/* 白オーバーレイ（軽め） */
.review::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
  z-index: 1;
}

.review .container {
  position: relative;
  z-index: 2;
}


/* ===== リスト（problemと統一） ===== */
.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
  padding: 0 40px;
}


/* ===== カード（黒ベース維持） ===== */
.review-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;

  position: relative;
  padding: 48px 36px 36px;

  background: #16202a;
  color: #fff;

  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  border: 1px solid rgba(255,255,255,0.08);
}

.review-item.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* ===== REVIEW + 番号（左上にまとめる） ===== */
.review-meta {
  display: flex;
  align-items: center; /* ←これが本質 */

  font-size: 18px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);

  line-height: 1; /* ←追加 */
}

.review-meta span {
  margin-left: 6px;

  font-family: "Yu Mincho", serif;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #c8a96a;

  line-height: 1; /* ←追加 */
}


/* 既存の番号は消す */
.review-item::after {
  display: none;
}

/* ===== タイトル ===== */
.review-title {
  font-family: "Yu Mincho", serif;
  font-size: 34px;
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.5;
}


/* ===== 本文 ===== */
.review-text {
  font-size: 20px;
  font-weight: 450;
  line-height: 1.9;
  color: #d0d5db;
  margin-bottom: 20px;
}


/* ===== 投稿者 ===== */
.review-author {
  font-size: 16px;
  color: #9aa3ab;
}

.review-item:nth-child(1) {
  transition-delay: 0s;
}

.review-item:nth-child(2) {
  transition-delay: 0.15s;
}

.review-item:nth-child(3) {
  transition-delay: 0.3s;
}

/* ===============================
   FAQ（最終版：Q/Aあり・ミニマル）
================================ */
.faq {
  padding: 100px 0;
  background: #f3f3f3;
}

/* ===== リスト ===== */
.faq-list {
  margin-top: 60px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== アイテム ===== */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 22px 0;
}

/* ===== Q（質問） ===== */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;

  font-size: 30px;
  font-weight: 600;

  padding-left: 46px;
  padding-right: 30px;
}

/* ▶削除 */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Qラベル */
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: -6px;

  font-family: "Yu Mincho", serif;
  font-size: 30px;
  color: #c8a96a;
 
}

/* + - */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;

  font-size: 20px;
  color: #aaa;

  transition: all 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: #333;
}

/* ===== A（回答） ===== */
.faq-item p {
  position: relative;

  margin-top: 0;
  padding-left: 46px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  font-size: 22px;
  font-weight: 450;
  line-height: 1.9;
  color: #555;

  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
}

/* Aラベル */
.faq-item p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: -7px;

  font-family: "Yu Mincho", serif;
  font-size: 30px;
  color: #c99a3c;

}

/* 開いた時 */
.faq-item[open] p {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

/* ===============================
   CTA FINAL（黒デザイン 完全版）
================================ */
.cta-final {
  position: relative;
  padding: 160px 0;
  color: #fff;
  overflow-x: hidden;
  overflow-y: visible;
}

/* 背景画像 */
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/cta-bg-dark-marble.png') center / cover no-repeat;
  z-index: 0;
}

/* 黒オーバーレイ */
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* コンテナ */
.cta-final .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ラベル */
.cta-final .section-label {
  display: block;

  letter-spacing: 0.2em;

  margin-bottom: 16px;
}

/* 見出し */
.cta-final h2 {
  font-size: 40px;
  
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  margin-top: 20px;
  color: #fff;
}

/* ボックス */
.cta-final-box {
  margin-top: 40px;
  padding: 60px 40px;
  border: 1px solid #bfa46f;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

/* サブ見出し */
.cta-final-box h3 {
  font-size: 42px;
  font-weight: 800;
  font-family: "Yu Mincho", serif;
  line-height: 1.8;
  margin-bottom: 30px;
  margin-top: 10px;
}

/* テキスト */
.cta-final-text {
  font-size: 24px;
  font-family: "Yu Mincho", serif;
  font-weight: 500;
  line-height: 1;
  opacity: 0.85;
  margin-bottom: 32px;
}

/* ポイント */
.cta-final-points {
  display: flex;
  justify-content: space-between;
  max-width: 640px;
  margin: 0 auto 60px;
}

.cta-final-points span {
  position: relative;
  padding-left: 26px;
  font-size: 24px;
}

.cta-final-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #bfa46f;
}

/* ===============================
   CTA ボタン（最終）
================================ */
.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;

}

.cta-final-actions .btn {
  padding: 14px 36px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

/* ===============================
   メイン（ゴールド）
================================ */
.cta-final-actions .btn-primary {
  background: #bfa46f;
  color: #111;
}

/* hover */
.cta-final-actions .btn-primary:hover {
  background: #d4b87c; /* 少し明るく */
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

/* ===============================
   サブ（白枠）
================================ */
.cta-final-actions .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

/* hover */
.cta-final-actions .btn-secondary:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

/* ===============================
   Footer
================================ */
.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 12px;
  color: #888;
  border-top: 2px solid rgba(255,255,255,0.08);
}

/* ===============================
   Fade Animation
================================ */
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.js-fade.is-active {
  opacity: 1;
  transform: translateY(0);
}

.section-heading h2 {
  font-size: 40px;
  margin-top: 10px;
}