/* =========================================================
   Luxury LP (ラグジュアリー版) - 専用スタイル
   index.html (body.lux-page) のみで有効
   ディープグリーン × アイボリー × ゴールド × 墨色
   ========================================================= */

.lux-page { background: var(--color-bg); }

/* ----- Header (透明感のあるヘッダー) ----- */
.lux-header {
  background: rgba(254, 249, 243, 0.20);   /* 80%透明（=20%だけクリーム）*/
  backdrop-filter: blur(16px);              /* ぼかしを強くして文字の読みやすさは確保 */
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 221, 208, 0.4);
}
.lux-header.is-scrolled {
  background: rgba(254, 249, 243, 0.55);   /* スクロール時は少し濃く（読みやすさ）*/
}
.lux-logo .logo-mark {
  width: 44px;
  height: 44px;
  background-image: url('../images/logo.png?v=2');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 14px;
  display: inline-block;
  text-indent: -9999px;
  overflow: hidden;
  flex-shrink: 0;
}
.lux-logo .logo-text { color: var(--color-navy); letter-spacing: .04em; font-weight: 500; }

/* ----- 共通：余白とタイポグラフィ ----- */
.lux-section { padding: 140px 0; }
.lux-section-head { text-align: center; margin-bottom: 72px; }
.lux-eyebrow {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-gold-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.lux-eyebrow-line {
  display: inline-block;
  position: relative;
  padding: 0 0 0 56px;
}
.lux-eyebrow-line::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}
.lux-eyebrow-gold { color: var(--color-gold-dark); }
.lux-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: .03em;
  line-height: 1.5;
  margin: 0 0 18px;
}
.lux-section-sub {
  color: var(--color-text);
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  line-height: 1.9;
}
.lux-italic {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;        /* "ヒト" を改行させない */
  display: inline-block;
}
.lux-emphasis {
  color: var(--color-primary);
  position: relative;
}
.lux-mobile-br { display: none; }

/* ----- ボタン ----- */
.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: 2px;        /* 鋭角に近い角丸 */
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.lux-btn-lg { padding: 24px 52px; font-size: 17px; }
.lux-btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
}
.lux-btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-bg);
  transform: translateY(-1px);
}
.lux-btn-ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.lux-btn-ghost:hover {
  background: var(--color-navy);
  color: var(--color-bg);
}
.lux-btn-gold {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.lux-btn-gold:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================
   1. HERO
   ============================================ */
.lux-hero {
  padding: 160px 0 140px;
  background:
    radial-gradient(circle at 80% 20%, rgba(252, 228, 214, 0.60) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(245, 226, 192, 0.50) 0%, transparent 50%),
    var(--color-bg-cream);
  position: relative;
}

/* ===== HERO ワイド画像背景版（写真の上に文字が浮かぶ） ===== */
.lux-hero-wide {
  padding: 0;
  background-image: url('../images/hero-wide.jpg?v=1');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lux-hero-wide::before { display: none; }
.lux-hero-wide::after {
  /* 画像はクリーン化済みなので、軽い拡散のみ */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(254, 249, 235, 0.20) 0%,
    rgba(254, 249, 235, 0.05) 50%,
    rgba(254, 249, 235, 0.0) 70%
  );
  pointer-events: none;
}
.lux-hero-wide .container { position: relative; z-index: 2; width: 100%; }
.lux-hero-wide .lux-hero-inner {
  max-width: 580px;
  padding: 96px 0;
}

@media (max-width: 900px) {
  .lux-hero-wide {
    min-height: auto;
    background-position: 80% center;
  }
  .lux-hero-wide::after {
    background: linear-gradient(
      180deg,
      rgba(254, 249, 235, 0.85) 0%,
      rgba(254, 249, 235, 0.55) 100%
    );
  }
  .lux-hero-wide .lux-hero-inner { padding: 72px 0; max-width: 100%; }
}
.lux-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  transform: translateY(-50%);
  opacity: .6;
}
.lux-hero-inner { max-width: 760px; }
.lux-hero-title {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--color-navy);
  margin: 0 0 28px;
}
.lux-hero-sub {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 36px;
  letter-spacing: .03em;
  line-height: 1.6;
}
.lux-hero-lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 2.1;
  color: var(--color-text);
  margin: 0 0 48px;
}
.lux-hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============================================
   2. MESSAGE
   ============================================ */
.message-section { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-peach) 100%); }
.lux-message-body {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  color: var(--color-text);
  text-align: center;
}
.lux-message-body p { margin: 0 0 28px; }
.lux-message-body strong { color: var(--color-primary); font-weight: 500; }
.lux-signature {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--color-navy);
  margin-top: 48px !important;
  letter-spacing: .04em;
}

/* ============================================
   3. SUPPORT AREAS
   ============================================ */
.areas-section { background: var(--color-bg); }
.lux-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lux-area-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 56px 36px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lux-area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lux-area-card.is-main {
  background: var(--color-navy);
  color: rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
}
.lux-area-card.is-main h3,
.lux-area-card.is-main .lux-area-num { color: #fff; }
.lux-area-card.is-main .lux-area-list li { border-bottom-color: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.lux-area-card.is-main .lux-area-list li::before { color: var(--color-gold); }
.lux-area-card.is-main .lux-area-price {
  color: var(--color-gold);
  border-top-color: rgba(201, 169, 106, .25);
}
.lux-area-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: .3em;
}
.lux-area-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1;
  letter-spacing: .02em;
}
.lux-area-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 18px;
  letter-spacing: .02em;
  line-height: 1.5;
}
.lux-area-lead {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
  margin: 0 0 24px;
  color: inherit;
  opacity: .92;
}
.lux-area-list { margin: 0 0 28px; padding: 0; list-style: none; }
.lux-area-list li {
  font-size: 14.5px;
  padding: 12px 0 12px 24px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.7;
}
.lux-area-list li:last-child { border-bottom: none; }
.lux-area-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--color-gold);
  font-size: 12px;
}
.lux-area-price {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  letter-spacing: .02em;
}
.lux-area-price small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: 4px;
  letter-spacing: 0;
}
.lux-area-card.is-main .lux-area-price small { color: rgba(255,255,255,.7); }
.lux-areas-cta {
  text-align: center;
  margin: 48px 0 0;
  font-size: 14px;
  color: var(--color-text-muted);
}
.lux-areas-cta a {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 1px;
}

/* ============================================
   4. VALUES
   ============================================ */
.values-section { background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg) 100%); }
.lux-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.lux-value-card {
  background: var(--color-bg);
  padding: 44px 40px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}
.lux-value-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin: 0 0 12px;
  letter-spacing: .02em;
}
.lux-value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.lux-value-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: var(--color-text);
  margin: 0;
}

/* ============================================
   5. ABOUT
   ============================================ */
.about-section { background: var(--color-bg); }
.lux-about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.lux-about-photo .lux-photo-frame {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-bg-cream) 0%, rgba(252, 228, 214, 0.65) 50%, rgba(245, 226, 192, 0.75) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: .15em;
  text-align: center;
}
.lux-about-photo .lux-about-photo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(42, 38, 32, 0.12);
  display: block;
}
.lux-photo-frame small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  display: block;
  margin-top: 8px;
  color: var(--color-text-muted);
}
.lux-about-text .lux-eyebrow { text-align: left; }
.lux-about-text .lux-section-title { text-align: left; font-size: 32px; margin-bottom: 24px; }
.lux-about-tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 24px;
  padding-left: 18px;
  border-left: 3px solid var(--color-gold);
  line-height: 1.7;
}
.lux-about-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
  color: var(--color-text);
  margin: 0 0 28px;
}
.lux-about-text strong { color: var(--color-navy); font-weight: 600; }
.lux-about-facts { margin: 0 0 32px; padding: 0; list-style: none; }
.lux-about-facts li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--color-text);
}
.lux-about-facts li > span:first-child {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-gold-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lux-about-facts li .fact-value {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.85;
}
.lux-about-facts li .fact-value strong {
  color: var(--color-navy);
  font-weight: 700;
}

/* ============================================
   6. PROCESS
   ============================================ */
.process-section { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-peach) 100%); }
.lux-process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.lux-process-list li {
  background: var(--color-bg);
  padding: 36px 24px;
  text-align: center;
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}
.lux-process-num {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.lux-process-list h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-navy);
  letter-spacing: .02em;
}
.lux-process-list p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  line-height: 1.85;
}

/* ============================================
   7. FAQ
   ============================================ */
.lux-page .faq-section { background: var(--color-bg); }
.lux-faq-list { display: grid; gap: 14px; }
.lux-faq-item {
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--color-gold);
}
.lux-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: .02em;
}
.lux-faq-item summary::-webkit-details-marker { display: none; }
.lux-faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}
.lux-faq-icon::before, .lux-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-gold-dark);
  transition: transform .3s var(--ease);
}
.lux-faq-icon::before { left: 0; top: 6px; width: 14px; height: 1px; }
.lux-faq-icon::after { left: 6px; top: 0; width: 1px; height: 14px; }
.lux-faq-item[open] .lux-faq-icon::after { transform: rotate(90deg); }
.lux-faq-a {
  padding: 0 30px 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 2;
}
.lux-faq-a p { margin: 0; }
.lux-faq-a a { color: var(--color-primary); border-bottom: 1px solid var(--color-primary); }
.lux-faq-a strong { color: var(--color-navy); font-weight: 600; }

/* ============================================
   8. CTA（HEROと同じトーンで統一感）
   ============================================ */
.lux-cta-section {
  position: relative;
  background: var(--color-bg-cream);   /* 純粋な #eae4d7 のみ */
  color: var(--color-navy);
  text-align: center;
  overflow: hidden;
}
.lux-title-light { color: var(--color-navy) !important; }
.lux-cta-lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 2.1;
  color: var(--color-text);
  margin: 0 0 48px;
}
.lux-cta-card {
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 56px 44px;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 8px 30px rgba(47, 53, 36, 0.10);
}
/* CTA「整える一歩を、ともに考えましょう」を赤で強調 */
.lux-cta-lead strong {
  color: var(--color-accent);
  font-weight: 700;
}
/* CTAの無料相談ボタンをホバーすると赤になる */
.lux-cta-section .lux-btn-primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230, 0, 18, 0.35);
}
.lux-cta-channels {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed rgba(201, 169, 106, 0.5);
  font-size: 14px;
  color: var(--color-text-muted);
}
.lux-cta-channels p { margin: 0 0 16px; font-size: 12px; letter-spacing: .15em; color: var(--color-gold-dark); }
.lux-cta-channels ul { padding: 0; margin: 0; list-style: none; }
.lux-cta-channels li {
  padding: 6px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-weight: 500;
}
.lux-channel-label {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ============================================
   Footer adjustments for luxury page
   ============================================ */
.lux-footer {
  background: #F7F0E7;    /* 少し明るい温かいクリーム */
  border-top: 1px solid rgba(201, 169, 106, 0.3);
  color: var(--color-navy);
}
.lux-footer .footer-address {
  color: var(--color-navy);
  font-weight: 500;
}
.lux-footer .footer-nav a {
  color: var(--color-navy);
  font-weight: 500;
}
.lux-footer .footer-nav a:hover {
  color: var(--color-gold-dark);
}
.lux-footer .footer-copy {
  color: var(--color-text-muted);
  font-weight: 500;
}
.lux-footer .logo-text { color: var(--color-navy); }
.lux-footer .logo-text small { color: var(--color-text-muted); }

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 960px) {
  .lux-section { padding: 100px 0; }
  .lux-hero { padding: 120px 0 100px; }
  .lux-areas-grid { grid-template-columns: 1fr; }
  .lux-values-grid { grid-template-columns: 1fr; }
  .lux-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .lux-about-photo { max-width: 320px; margin: 0 auto; }
  .lux-process-list { grid-template-columns: repeat(2, 1fr); }
  .lux-mobile-br { display: inline; }
}
@media (max-width: 600px) {
  .lux-section { padding: 72px 0; }
  .lux-hero { padding: 88px 0 72px; }
  .lux-hero-title { font-size: 30px; }
  .lux-section-title { font-size: 24px; }
  .lux-process-list { grid-template-columns: 1fr; }
  .lux-cta-card { padding: 32px 22px; }
}

/* ============================================================
   ✨ ワクワク要素：呼吸する円・手紙風・変化セクション・ストーリー
   ============================================================ */

/* ----- HERO 全体を2カラム化＋背景の柔らかな光 ----- */
.lux-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lux-hero-bg-soft {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 22%, rgba(252, 228, 214, 0.85) 0%, transparent 45%),
    radial-gradient(circle at 10% 78%, rgba(249, 216, 211, 0.70) 0%, transparent 45%),
    radial-gradient(circle at 60% 100%, rgba(245, 226, 192, 0.65) 0%, transparent 50%);
}

/* ----- 呼吸する円（ヨガ × 労務）----- */
.lux-hero-breath {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.lux-hero-breath svg { width: 100%; height: auto; display: block; }
@keyframes lux-breath {
  0%, 100% { transform: scale(1); opacity: .9; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.breath-circle { transform-origin: center; }
.breath-1 { animation: lux-breath 7s ease-in-out infinite; transform-origin: 125px 160px; }
.breath-2 { animation: lux-breath 7s ease-in-out infinite 1.2s; transform-origin: 195px 160px; }
.breath-label-left, .breath-label-right {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  fill: #c9695a;
  letter-spacing: .15em;
}
.breath-label-right { fill: #b8901f; }
.breath-center {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  fill: var(--color-navy);
  letter-spacing: .15em;
}

/* ----- 手紙風 MESSAGE カード ----- */
.lux-letter-card {
  position: relative;
  background:
    linear-gradient(135deg, #fffaee 0%, #fdeed8 60%, #fce2d4 100%);
  padding: 68px 56px 56px;
  border-radius: 4px;
  box-shadow:
    0 1px 2px rgba(47,53,36,.04),
    0 18px 48px rgba(232, 150, 127, .15),
    inset 0 0 0 1px rgba(232, 150, 127, .35);
  margin: 0 auto;
  max-width: 780px;
  transform: rotate(-0.3deg);
}
.lux-letter-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #E8967F 30%, #c9a96a 70%, transparent);
  border-radius: 4px 4px 0 0;
}
.lux-letter-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid #E8967F;
  pointer-events: none;
}
.lux-letter-corner-tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.lux-letter-corner-tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.lux-letter-corner-bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.lux-letter-corner-br { bottom: 18px; right: 18px; border-left: none; border-top: none; }
.lux-letter-body {
  font-size: 17px;
  line-height: 2.4;
  color: var(--color-text);
  text-align: center;
  font-weight: 500;
}
.lux-letter-body p { margin: 0 0 28px; }
.lux-letter-body strong { color: var(--color-primary); font-weight: 700; }
.lux-signature {
  margin: 48px 0 0 !important;
  text-align: right;
  padding-top: 24px;
  border-top: 1px dashed var(--color-border);
}
.lux-signature-label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-right: 14px;
  letter-spacing: .1em;
}
.lux-signature-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 36px;
  color: #c9695a;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ----- "会社が、変わっていく。" セクション ----- */
.transform-section {
  background:
    linear-gradient(180deg, var(--color-bg-peach) 0%, var(--color-bg-cream) 100%);
  position: relative;
  overflow: hidden;
}
.lux-section-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 229, 176, 0.45) 0%, transparent 30%),
    radial-gradient(circle at 5% 90%, rgba(181, 201, 168, 0.30) 0%, transparent 35%);
}
.transform-section .container,
.transform-section .lux-section-head { position: relative; z-index: 1; }
.lux-transform-list {
  max-width: 820px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.lux-transform-row {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,.7);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.lux-transform-row p { margin: 0; }
.lux-transform-before {
  font-size: 16px;
  color: var(--color-text-muted);
  text-align: right;
  font-weight: 500;
}
.lux-transform-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-gold-dark);
  line-height: 1;
}
.lux-transform-after {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: .02em;
}
.lux-transform-cta {
  text-align: center;
  font-size: 17px;
  line-height: 2;
  color: var(--color-navy);
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ----- "わたしの今、あなたの未来。" ストーリー ----- */
.story-section {
  background:
    linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg-peach) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lux-decor-warm {
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 229, 176, 0.35) 0%, transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(245, 221, 213, 0.35) 0%, transparent 30%);
}
.story-section .container { position: relative; z-index: 1; }
.lux-story-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}
.lux-story-body {
  margin-top: 32px;
  font-size: 17px;
  line-height: 2.3;
  color: var(--color-text);
  font-weight: 500;
}
.lux-story-body p { margin: 0 0 28px; }
.lux-story-body strong { color: var(--color-primary); font-weight: 700; font-size: 20px; }
.lux-story-quote {
  font-family: "Cormorant Garamond", "Noto Sans JP", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold-dark);
  margin-top: 48px !important;
  padding: 24px 0;
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  letter-spacing: .04em;
}

/* ============================================================
   ✨ フェードイン アニメーション
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .breath-1, .breath-2 { animation: none; }
}

/* ----- レスポンシブ：呼吸円とHEROグリッド ----- */
@media (max-width: 960px) {
  .lux-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lux-hero-breath { max-width: 300px; }
  .lux-letter-card { padding: 56px 32px 40px; }
  .lux-transform-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
    padding: 20px 24px;
  }
  .lux-transform-before, .lux-transform-after { text-align: center; }
  .lux-transform-arrow { transform: rotate(90deg); font-size: 22px; }
}
@media (max-width: 600px) {
  .lux-letter-card { padding: 44px 24px 36px; transform: none; }
  .lux-letter-body { font-size: 15px; line-height: 2.1; }
  .lux-signature-name { font-size: 26px; }
  .lux-story-body { font-size: 15px; }
}

/* ============================================================
   ✨ 朝の光・薄色アクセント（他セクションにも控えめに）
   ============================================================ */
/* 朝の光をはっきり見せる（前より2〜3倍の濃度に）*/
.areas-section { position: relative; overflow: hidden; }
.areas-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 226, 192, 0.85) 0%, rgba(245, 226, 192, 0.30) 40%, transparent 75%);
  pointer-events: none;
}
.values-section { position: relative; overflow: hidden; }
.values-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(252, 228, 214, 0.75) 0%, transparent 70%);
  pointer-events: none;
}
.about-section { position: relative; overflow: hidden; }
.about-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(249, 216, 211, 0.7) 0%, transparent 70%);
  pointer-events: none;
  transform: translateY(-50%);
}
.process-section { position: relative; overflow: hidden; }
.process-section::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(249, 216, 211, 0.65) 0%, transparent 70%);
  pointer-events: none;
}
.message-section { position: relative; overflow: hidden; }
.message-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(252, 228, 214, 0.7) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   ✨ ベール削除（HEROの写真は残す・他セクションのみ純粋化）
   ============================================================ */
.message-section,
.transform-section,
.areas-section,
.values-section,
.about-section,
.story-section,
.process-section,
.lux-page .faq-section,
.lux-cta-section {
  background: #ffffff !important;
}

/* ::before / ::after 装飾ベールを消す */
.lux-section-decor,
.lux-decor-warm { display: none !important; }
.areas-section::before,
.values-section::after,
.about-section::before,
.process-section::after,
.message-section::before { display: none !important; }

/* ============================================================
   ✨ 明るく仕上げ：ホワイトカード × ゴールドアクセント
   ============================================================ */

/* 1) カードを純白＋ゴールド細枠に */
.lux-page .lux-value-card,
.lux-page .lux-process-list li,
.lux-page .lux-faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(201, 169, 106, 0.30);
}
.lux-page .lux-area-card {
  border: 1px solid rgba(201, 169, 106, 0.30);
}
/* MAINカード（緑）は枠だけゴールド光彩を */
.lux-page .lux-area-card.is-main {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(201, 169, 106, 0.15);
}

/* 2) セクション見出しの下に金色の短いライン */
.lux-page .lux-section-title { position: relative; padding-bottom: 22px; }
.lux-page .lux-section-title::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
/* タイトル左揃え（about・letter内）は左揃えの線に */
.lux-page .about-section .lux-section-title::after,
.lux-page .lux-about-text .lux-section-title::after {
  left: 0;
  transform: none;
  background: var(--color-gold);
  width: 48px;
}

/* 3) 手紙風カードをさらにホワイト寄りに */
.lux-page .lux-letter-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdf9f0 100%) !important;
}
.lux-page .lux-letter-corner { border-color: var(--color-gold) !important; }

/* 4) 代表のこと 写真フレームに金のコーナーブラケット */
.lux-page .lux-about-photo {
  position: relative;
}
.lux-page .lux-about-photo::before,
.lux-page .lux-about-photo::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-gold);
  pointer-events: none;
}
.lux-page .lux-about-photo::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}
.lux-page .lux-about-photo::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}
.lux-page .lux-photo-frame {
  background: linear-gradient(135deg, #ffffff 0%, #faf3e1 100%) !important;
  border: 1px solid var(--color-gold) !important;
}

/* 5) セクション間に小さなゴールド装飾（伴走領域・バリュー・プロセス・FAQ 等の区切り） */
.lux-page .lux-section + .lux-section { position: relative; }
.lux-page .lux-section + .lux-section::before {
  content: "✦";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--color-bg-cream);
  color: var(--color-gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
}

/* バリュー数字も金色に統一 */
.lux-page .lux-value-num { color: var(--color-gold-dark); }
