/**
 * Attitude Change Psychology — attitude_change_psychology.css
 *
 * 設計思想:
 *   - #acp-root 配下のみ完全独立デザイン
 *   - Cocoon / entry-content / article 干渉を完全排除
 *   - CSS カスタムプロパティで全色・全値を管理
 *   - モバイルファースト + clamp() 流体タイポグラフィ
 *   - アニメーションは opacity / transform / filter のみ使用
 *   - カラーパレット: 深墨色(#0c0a08)×羊皮紙金(#c8a96e)×象牙白(#f0ead8)
 *     — 暗室の書斎。和紙と墨。古書と燭台。
 *   - フォント: Cormorant Garamond (欧文Display) + Shippori Mincho (日本語明朝)
 *     + Noto Sans JP (サブテキスト)
 *
 * @package cocoon-child-master
 */

/* ================================================================
   1. COCOON 干渉リセット
   ================================================================ */
.attitude_change_psychology .article,
.attitude_change_psychology .entry-content,
.attitude_change_psychology .main,
.attitude_change_psychology .content,
.attitude_change_psychology .wrap,
.attitude_change_psychology #main,
.attitude_change_psychology #body-in,
.attitude_change_psychology #container,
.attitude_change_psychology #container-in,
.attitude_change_psychology #contents,
.attitude_change_psychology #contents-in {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
  position: static !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  flex: none !important;
}
.attitude_change_psychology #sidebar,
.attitude_change_psychology .sidebar,
.attitude_change_psychology #sidebar-scroll,
.attitude_change_psychology .sidebar-top,
.attitude_change_psychology .sidebar-bottom {
  display: none !important;
}
.attitude_change_psychology #footer:not(.tp-footer),
.attitude_change_psychology .site-footer:not(.tp-footer),
.attitude_change_psychology .footer:not(.tp-footer) {
  display: none !important;
}


/* ================================================================
   2. CSS カスタムプロパティ
   ================================================================ */
#acp-root {
  /* ─ カラーパレット ─ */
  --acp-bg:          #0c0a08;
  --acp-bg-2:        #120e0a;
  --acp-bg-card:     #1c1710;
  --acp-bg-card-2:   #221c13;
  --acp-gold:        #c8a96e;
  --acp-gold-bright: #e2c98a;
  --acp-gold-light:  rgba(200, 169, 110, 0.45);
  --acp-gold-faint:  rgba(200, 169, 110, 0.08);
  --acp-text:        #f0ead8;
  --acp-text-2:      #c8bfa8;
  --acp-text-3:      #8a8070;
  --acp-border:      rgba(200, 169, 110, 0.18);
  --acp-border-soft: rgba(200, 169, 110, 0.08);
  --acp-rule:        rgba(240, 234, 216, 0.08);

  /* ─ タイポグラフィ ─ */
  --acp-font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --acp-font-serif:   'Shippori Mincho', 'Noto Serif JP', serif;
  --acp-font-sans:    'Noto Sans JP', sans-serif;

  /* ─ スペーシング ─ */
  --acp-section-py:    clamp(4rem, 8vw, 8rem);
  --acp-container-max: 860px;
  --acp-container-wide: 1080px;
  --acp-radius:        4px;
  --acp-radius-sm:     2px;
  --acp-radius-lg:     8px;

  /* ─ トランジション ─ */
  --acp-ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --acp-ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --acp-transition:    0.4s var(--acp-ease);
  --acp-transition-slow: 0.7s var(--acp-ease-out);
}


/* ================================================================
   3. GLOBAL RESET — #acp-root スコープ
   ================================================================ */
#acp-root,
#acp-root *,
#acp-root *::before,
#acp-root *::after {
  box-sizing: border-box;
}

#acp-root h1,
#acp-root h2,
#acp-root h3,
#acp-root h4,
#acp-root h5,
#acp-root h6,
#acp-root p,
#acp-root ul,
#acp-root ol,
#acp-root li,
#acp-root figure,
#acp-root blockquote,
#acp-root dl,
#acp-root dd {
  margin: 0;
  padding: 0;
}

#acp-root ul,
#acp-root ol {
  list-style: none;
}

#acp-root {
  background-color: var(--acp-bg);
  color: var(--acp-text);
  font-family: var(--acp-font-serif);
  font-weight: 400;
  line-height: 1.9;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Cocoon blockquote/table 白抜き対処 */
#acp-root blockquote {
  background: var(--acp-bg-card) !important;
  border: none !important;
  color: var(--acp-text) !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}
#acp-root blockquote::before,
#acp-root blockquote::after {
  display: none !important;
}

#acp-root table {
  background: transparent !important;
}


/* ================================================================
   4. スクロールリビール
   ================================================================ */
.acp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.8s var(--acp-ease-out),
    transform 0.8s var(--acp-ease-out);
}
.acp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.acp-reveal[data-delay="1"] { transition-delay: 0.1s; }
.acp-reveal[data-delay="2"] { transition-delay: 0.2s; }
.acp-reveal[data-delay="3"] { transition-delay: 0.35s; }


/* ================================================================
   5. ベースコンポーネント
   ================================================================ */
.acp-container {
  max-width: var(--acp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.acp-container--wide {
  max-width: var(--acp-container-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* セクション */
.acp-section {
  padding-block: var(--acp-section-py);
  position: relative;
}
.acp-section--alt {
  background-color: var(--acp-bg-2);
}

/* セクションヘッダー */
.acp-section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.acp-section-eyebrow {
  font-family: var(--acp-font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acp-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.acp-eyebrow-roman {
  font-family: var(--acp-font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--acp-gold-bright);
}
.acp-section-title {
  font-family: var(--acp-font-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--acp-text);
  margin-bottom: 1.25rem;
}
.acp-section-desc {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 300;
  color: var(--acp-text-2);
  max-width: 640px;
  line-height: 1.8;
}

/* 本文テキスト */
.acp-prose p {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.9rem, 1.6vw, 1.02rem);
  font-weight: 300;
  color: var(--acp-text-2);
  line-height: 1.95;
  margin-bottom: 1.4rem;
}
.acp-prose p:last-child { margin-bottom: 0; }
.acp-prose strong {
  color: var(--acp-text);
  font-weight: 500;
}


/* ================================================================
   6. カバーセクション
   ================================================================ */
.acp-cover {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 背景 */
.acp-cover__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* 実写写真レイヤー（最背面） */
.acp-cover__bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://www.turning-point.today/wp-content/uploads/2026/05/attitude_change_psychology_1.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform-origin: center;
  will-change: transform;
}

/* グラデーションオーバーレイ（写真の上に重ね、暗室感を演出） */
.acp-cover__bg-paper {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8, 6, 4, 0.82) 0%, rgba(8, 6, 4, 0.55) 55%, rgba(8, 6, 4, 0.75) 100%),
    linear-gradient(to bottom, rgba(8, 6, 4, 0.4) 0%, transparent 40%, rgba(8, 6, 4, 0.6) 100%);
}
.acp-cover__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(240, 234, 216, 0.006) 3px,
      rgba(240, 234, 216, 0.006) 4px
    );
}
.acp-cover__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at center, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
}

/* インク滴装飾 */
.acp-cover__ink-drops {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.acp-drop {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
}
.acp-drop--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  animation: acp-pulse-glow 8s ease-in-out infinite;
}
.acp-drop--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  animation: acp-pulse-glow 11s ease-in-out 3s infinite;
}
.acp-drop--3 {
  width: 200px; height: 200px;
  top: 30%; right: 15%;
  animation: acp-pulse-glow 7s ease-in-out 1.5s infinite;
}

@keyframes acp-pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* カバーコンテンツ */
.acp-cover__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(6rem, 12vw, 10rem);
}

.acp-cover__discipline {
  font-family: var(--acp-font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--acp-text-3);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  animation: acp-fade-up 1s var(--acp-ease-out) 0.2s both;
}
.acp-cover__discipline-line {
  flex: 1;
  height: 1px;
  background: var(--acp-border-soft);
  max-width: 60px;
}

.acp-cover__eyebrow {
  font-family: var(--acp-font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--acp-gold);
  margin-bottom: 1.75rem;
  animation: acp-fade-up 1s var(--acp-ease-out) 0.35s both;
}

.acp-cover__title {
  font-family: var(--acp-font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--acp-text);
  margin-bottom: 2rem;
  animation: acp-fade-up 1s var(--acp-ease-out) 0.5s both;
}
.acp-cover__title-em {
  font-style: italic;
  color: var(--acp-gold-bright);
}

.acp-cover__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: acp-fade-up 1s var(--acp-ease-out) 0.65s both;
}
.acp-cover__divider-line {
  flex: 1;
  height: 1px;
  background: var(--acp-border);
  max-width: 80px;
}
.acp-cover__divider-mark {
  font-size: 0.7rem;
  color: var(--acp-gold);
  letter-spacing: 0;
}

.acp-cover__sub {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: var(--acp-text-2);
  line-height: 1.85;
  max-width: 520px;
  padding-left: 1.25rem;
  border-left: 2px solid var(--acp-gold-light);
  margin-bottom: 3rem;
  animation: acp-fade-up 1s var(--acp-ease-out) 0.75s both;
}

/* カバー内CTA */
.acp-cover__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  animation: acp-fade-up 1s var(--acp-ease-out) 0.9s both;
}
.acp-cover__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  font-family: var(--acp-font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  border-radius: var(--acp-radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity var(--acp-transition), transform var(--acp-transition), box-shadow var(--acp-transition);
}
.acp-cover__cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.acp-cover__cta-sub {
  font-family: var(--acp-font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--acp-text-3);
}

/* スクロールヒント */
.acp-cover__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  animation: acp-fade-up 1s var(--acp-ease-out) 1.1s both;
}
.acp-cover__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--acp-gold), transparent);
  animation: acp-scroll-line 2s ease-in-out 1.5s infinite;
}
@keyframes acp-scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.acp-cover__scroll-label {
  font-family: var(--acp-font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--acp-text-3);
}


/* ================================================================
   7. ブロッククォート
   ================================================================ */
.acp-blockquote {
  position: relative;
  margin-block: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
  background: var(--acp-bg-card) !important;
  border-left: 2px solid var(--acp-gold) !important;
  color: var(--acp-text) !important;
}
.acp-blockquote__mark {
  position: absolute;
  top: -0.2rem;
  left: 1.75rem;
  font-family: var(--acp-font-display);
  font-size: 4.5rem;
  color: var(--acp-gold-light);
  line-height: 1;
  font-style: normal;
  user-select: none;
}
.acp-blockquote p {
  font-family: var(--acp-font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--acp-text);
  line-height: 1.8;
  padding-top: 1.5rem;
}


/* ================================================================
   8. 概念比較カード（通説vs実際）
   ================================================================ */
.acp-concept-pair {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.acp-concept-card {
  flex: 1;
  min-width: 200px;
  padding: 1.75rem 2rem;
  background: var(--acp-bg-card);
  border: 1px solid var(--acp-border);
  text-align: center;
}
.acp-concept-card--active {
  border-color: var(--acp-gold);
  background: var(--acp-bg-card-2);
  position: relative;
  overflow: hidden;
}
.acp-concept-card--active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acp-gold), transparent);
}
.acp-concept-card__label {
  font-family: var(--acp-font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acp-text-3);
  margin-bottom: 0.6rem;
}
.acp-concept-card__text {
  font-family: var(--acp-font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--acp-gold-bright);
  margin-bottom: 0.5rem;
}
.acp-concept-card__sub {
  font-family: var(--acp-font-sans);
  font-size: 0.7rem;
  color: var(--acp-text-3);
  line-height: 1.5;
}
.acp-concept-arrow {
  font-family: var(--acp-font-display);
  font-size: 1.8rem;
  color: var(--acp-text-3);
  flex-shrink: 0;
  text-align: center;
}


/* ================================================================
   9. メカニズムカード（3つのコアメカニズム）
   ================================================================ */
.acp-mech-grid {
  display: grid;
  gap: 1px;
  background: var(--acp-border);
  border: 1px solid var(--acp-border);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.acp-mech-card {
  position: relative;
  background: var(--acp-bg);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: background var(--acp-transition);
  overflow: hidden;
}
.acp-section--alt .acp-mech-card {
  background: var(--acp-bg-2);
}
.acp-mech-card:hover {
  background: var(--acp-bg-card) !important;
}
.acp-mech-card__index {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  font-family: var(--acp-font-display);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--acp-border);
  line-height: 1;
  user-select: none;
}
.acp-mech-card__principle {
  font-family: var(--acp-font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acp-gold);
  margin-bottom: 0.6rem;
}
.acp-mech-card__title {
  font-family: var(--acp-font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--acp-text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.acp-mech-card__body {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  font-weight: 300;
  color: var(--acp-text-2);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.acp-mech-card__body strong {
  color: var(--acp-text);
  font-weight: 500;
}
.acp-mech-card__cite {
  font-family: var(--acp-font-sans);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--acp-text-3);
  line-height: 1.65;
  padding-top: 0.8rem;
  border-top: 1px solid var(--acp-border-soft);
}


/* ================================================================
   10. フローダイアグラム（7段階プロセス）
   ================================================================ */
.acp-flow {
  margin-block: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--acp-bg-card);
  border: 1px solid var(--acp-border);
  position: relative;
  overflow: hidden;
}
.acp-flow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acp-gold), transparent);
}
.acp-flow__label {
  font-family: var(--acp-font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--acp-text-3);
  margin-bottom: 2rem;
}
.acp-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.acp-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--acp-border-soft);
  transition: background var(--acp-transition);
}
.acp-flow__step:last-child { border-bottom: none; }
.acp-flow__step:hover {
  background: rgba(200, 169, 110, 0.03);
  margin-inline: -1rem;
  padding-inline: 1rem;
}
.acp-flow__step--final {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--acp-gold);
  border-bottom: none !important;
}
.acp-flow__step-num {
  font-family: var(--acp-font-display);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--acp-gold);
  min-width: 2.2rem;
  padding-top: 0.15rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.acp-flow__step-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.acp-flow__step-content strong {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  font-weight: 500;
  color: var(--acp-text);
  line-height: 1.4;
}
.acp-flow__step-content span {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.82rem, 1.4vw, 0.88rem);
  font-weight: 300;
  color: var(--acp-text-3);
  line-height: 1.6;
}


/* ================================================================
   11. 三列カードグリッド
   ================================================================ */
.acp-tri-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--acp-border);
  border: 1px solid var(--acp-border);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.acp-tri-card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--acp-bg-2);
  transition: background var(--acp-transition);
}
.acp-tri-card:hover {
  background: var(--acp-bg-card);
}
.acp-tri-card__principle {
  font-family: var(--acp-font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acp-gold);
  margin-bottom: 0.5rem;
}
.acp-tri-card__title {
  font-family: var(--acp-font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--acp-text);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.acp-tri-card__body {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.88rem, 1.5vw, 0.93rem);
  font-weight: 300;
  color: var(--acp-text-2);
  line-height: 1.85;
}


/* ================================================================
   12. エビデンスリスト
   ================================================================ */
.acp-evidence-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--acp-border);
}
.acp-evidence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--acp-border-soft);
  transition: background var(--acp-transition);
}
.acp-evidence:last-child { border-bottom: none; }
.acp-evidence:hover { background: var(--acp-gold-faint); }

.acp-evidence__tag {
  margin-bottom: 0.75rem;
}
.acp-evidence__tag-theory {
  font-family: var(--acp-font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--acp-gold);
  line-height: 1.3;
}
.acp-evidence__tag-author {
  font-family: var(--acp-font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acp-text-3);
  margin-top: 0.2rem;
}
.acp-evidence__name {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 500;
  color: var(--acp-text);
  margin-bottom: 0.5rem;
}
.acp-evidence__desc {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.85rem, 1.4vw, 0.9rem);
  font-weight: 300;
  color: var(--acp-text-3);
  line-height: 1.8;
  margin-bottom: 0.7rem;
}
.acp-evidence__example {
  padding: 0.65rem 1rem;
  background: var(--acp-gold-faint);
  border-left: 2px solid var(--acp-gold-light);
  font-family: var(--acp-font-serif);
  font-size: 0.83rem;
  font-style: italic;
  color: var(--acp-text-2);
  line-height: 1.65;
}


/* ================================================================
   13. ハイライトボックス
   ================================================================ */
.acp-highlight {
  position: relative;
  margin-block: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--acp-gold-faint);
  border: 1px solid var(--acp-border);
}
.acp-highlight__corner {
  position: absolute;
  width: 10px;
  height: 10px;
}
.acp-highlight__corner--tl { top: 4px; left: 4px; border-top: 1px solid var(--acp-gold-light); border-left: 1px solid var(--acp-gold-light); }
.acp-highlight__corner--tr { top: 4px; right: 4px; border-top: 1px solid var(--acp-gold-light); border-right: 1px solid var(--acp-gold-light); }
.acp-highlight__corner--bl { bottom: 4px; left: 4px; border-bottom: 1px solid var(--acp-gold-light); border-left: 1px solid var(--acp-gold-light); }
.acp-highlight__corner--br { bottom: 4px; right: 4px; border-bottom: 1px solid var(--acp-gold-light); border-right: 1px solid var(--acp-gold-light); }
.acp-highlight p {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 300;
  color: var(--acp-text);
  line-height: 1.9;
}
.acp-highlight strong {
  color: var(--acp-gold-bright);
  font-weight: 500;
}


/* ================================================================
   14. プラクティスグリッド
   ================================================================ */
.acp-practice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--acp-border);
  border: 1px solid var(--acp-border);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.acp-practice {
  position: relative;
  background: var(--acp-bg-2);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: background var(--acp-transition);
  overflow: hidden;
}
.acp-practice:hover { background: var(--acp-bg-card); }
.acp-practice__num {
  font-family: var(--acp-font-display);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--acp-border);
  line-height: 1;
  margin-bottom: 0.6rem;
  user-select: none;
}
.acp-practice__skill {
  font-family: var(--acp-font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acp-gold);
  margin-bottom: 0.4rem;
}
.acp-practice__title {
  font-family: var(--acp-font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--acp-text);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.acp-practice__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--acp-border-soft);
  margin-bottom: 1rem;
}
.acp-practice__list li {
  position: relative;
  font-family: var(--acp-font-serif);
  font-size: clamp(0.85rem, 1.4vw, 0.92rem);
  font-weight: 300;
  color: var(--acp-text-2);
  line-height: 1.7;
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: 1px solid var(--acp-border-soft);
}
.acp-practice__list li:last-child { border-bottom: none; }
.acp-practice__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--acp-gold-light);
  font-size: 0.7rem;
  top: 0.65rem;
}
.acp-practice__note {
  padding: 0.75rem 1rem;
  background: var(--acp-gold-faint);
  font-family: var(--acp-font-sans);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--acp-text-3);
  line-height: 1.6;
  border-left: 2px solid var(--acp-gold-light);
}


/* ================================================================
   15. オーナメント仕切り
   ================================================================ */
.acp-ornament {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-block: clamp(2rem, 4vw, 3.5rem);
}
.acp-ornament__line {
  flex: 1;
  height: 1px;
  background: var(--acp-border-soft);
}
.acp-ornament__symbol {
  font-family: var(--acp-font-display);
  font-size: 0.75rem;
  color: var(--acp-gold);
  letter-spacing: 0.3em;
  white-space: nowrap;
}


/* ================================================================
   16. 結語セクション
   ================================================================ */
.acp-conclusion {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--acp-border);
}
.acp-conclusion__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.acp-conclusion__kicker {
  font-family: var(--acp-font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--acp-gold);
  margin-bottom: 2rem;
}
.acp-conclusion__mark {
  font-family: var(--acp-font-display);
  font-size: 1.2rem;
  color: var(--acp-gold);
  margin-bottom: 2rem;
  letter-spacing: 0;
}
.acp-conclusion__text {
  font-family: var(--acp-font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--acp-text);
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.acp-conclusion__text:last-child { margin-bottom: 0; }
.acp-conclusion__text em {
  font-style: italic;
  color: var(--acp-gold-bright);
}


/* ================================================================
   17. 最終CTAセクション
   ================================================================ */

/* ── セクション外枠 ── */
.acp-cta-section {
  padding-block: clamp(5.5rem, 11vw, 9rem);   /* ← 上下余白を大幅に拡張（4rem→5.5〜9rem）*/
  background: var(--acp-bg-card);
  position: relative;
  overflow: hidden;
  isolation: isolate;                          /* ← z-index スタッキングを独立させCocoon干渉防止 */
}

/* 上辺ゴールドライン */
.acp-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acp-gold), transparent);
}

/* 下辺ゴールドライン */
.acp-cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acp-gold), transparent);
}

/* 背景に極薄ラジアルグロー（深みと奥行きを加える） */
.acp-cta-section .acp-cta-bg-glow {
  /* ← PHPテンプレート側に <div class="acp-cta-bg-glow" aria-hidden="true"></div> を追加（指示3参照）*/
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 50%,
      rgba(200, 169, 110, 0.055) 0%,
      transparent 72%
    );
  z-index: 0;
}

/* ── 内部コンテナ ── */
.acp-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;              /* ← margin-inline: auto から確実なショートハンドへ */
  display: flex;
  flex-direction: column;
  align-items: center;         /* ← flexでブロック単位の中央揃えを保証 */
  gap: 0;                      /* ← 各子要素のmarginで余白制御（gap=0で統一） */
}

/* ── アイブロウ（— この洞察をさらに深める —） ── */
.acp-cta-eyebrow {
  font-family: var(--acp-font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--acp-gold);
  margin: 0 0 1.75rem;
  opacity: 0.85;
}

/* ── タイトル ── */
.acp-cta-title {
  font-family: var(--acp-font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  color: var(--acp-text);
  line-height: 1.22;
  margin: 0 0 1.75rem;
  letter-spacing: -0.015em;
}

/* ── 説明文（左ズレ完全解消 + 中央揃え保証） ── */
.acp-cta-desc {
  font-family: var(--acp-font-serif);
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  font-weight: 300;
  color: var(--acp-text-2);
  line-height: 1.88;
  max-width: 560px;
  width: 100%;
  margin: 0 auto 3.5rem;      /* ← shorthandで left/right を確実に auto。下余白も2.5→3.5remに拡張 */
  text-align: center;          /* ← 親依存せず自身で宣言 */
  padding-inline: 0;           /* ← Cocoon padding リセット */
}

/* ── ボタンラッパー ── */
.acp-cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;         /* ← inline-flex から flex に変更し幅の崩れを防止 */
  width: 100%;
  gap: 1.1rem;                 /* ← ボタンとサブテキストの間隔を拡張（0.75→1.1rem）*/
}

/* ── CTAボタン本体 ── */
.acp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 4.5rem;     /* ← 縦1.1→1.35rem、横3.5→4.5rem に拡張（タップ領域を大幅強化）*/
  min-width: 260px;            /* ← スマホでも最低幅を保証 */
  min-height: 56px;            /* ← WCAG 2.5.5 準拠のタッチターゲット最低サイズ保証 */
  font-family: var(--acp-font-sans);
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  border-radius: var(--acp-radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.07) inset;  /* ← 内側ハイライトで立体感を追加 */
  position: relative;
  overflow: hidden;
  transition:
    opacity 0.35s var(--acp-ease),
    transform 0.35s var(--acp-ease),
    box-shadow 0.35s var(--acp-ease);
}

/* ホバー時のシマーエフェクト（光沢の走り） */
.acp-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.13) 50%,
    transparent 70%
  );
  transition: left 0.55s var(--acp-ease-out);
  pointer-events: none;
}

/* ホバー状態 */
.acp-cta-btn:hover {
  opacity: 0.92;
  transform: translateY(-4px);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.48),
    0 1px 0 rgba(255, 255, 255, 0.07) inset;
}
.acp-cta-btn:hover::before {
  left: 140%;               /* ← シマーが左から右へ走る */
}

/* フォーカス（キーボードアクセシビリティ） */
.acp-cta-btn:focus-visible {
  outline: 2px solid var(--acp-gold);
  outline-offset: 4px;
  opacity: 0.92;
}

/* アクティブ（押し込み感） */
.acp-cta-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.38);
}

/* ── ボタン下サブテキスト ── */
.acp-cta-btn__sub {
  font-family: var(--acp-font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--acp-text-3);
  opacity: 0.75;
  margin-top: 0.2rem;        /* ← gap の上にさらに微調整 */
}

/* ── レスポンシブ：スマートフォン（〜479px）── */
@media (max-width: 479px) {
  .acp-cta-section {
    padding-block: clamp(4rem, 10vw, 5.5rem);
  }
  .acp-cta-inner {
    padding-inline: 1.5rem;  /* ← スマホでの左右余白確保 */
  }
  .acp-cta-desc {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    text-align: center;      /* ← スマホでも中央揃えを明示 */
  }
  .acp-cta-btn {
    padding: 1.3rem 3rem;
    min-width: 240px;
    width: 100%;             /* ← スマホでは横幅いっぱいに広げて押しやすく */
    max-width: 380px;
  }
}

/* ── レスポンシブ：タブレット（480px〜767px）── */
@media (min-width: 480px) and (max-width: 767px) {
  .acp-cta-section {
    padding-block: clamp(4.5rem, 9vw, 6.5rem);
  }
  .acp-cta-inner {
    padding-inline: 2rem;
  }
  .acp-cta-desc {
    text-align: center;
  }
  .acp-cta-btn {
    min-width: 280px;
  }
}

/* ── reduced motion 対応 ── */
@media (prefers-reduced-motion: reduce) {
  .acp-cta-btn::before {
    display: none;
  }
  .acp-cta-btn:hover {
    transform: none;
  }
  .acp-cta-btn:active {
    transform: none;
  }
}


/* ================================================================
   18. アニメーション
   ================================================================ */
@keyframes acp-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ================================================================
   19. レスポンシブ
   ================================================================ */
@media (min-width: 640px) {
  .acp-evidence {
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    align-items: start;
  }
  .acp-evidence__tag {
    margin-bottom: 0;
    text-align: right;
  }
  .acp-tri-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .acp-practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .acp-cover__content {
    padding-block: clamp(8rem, 14vw, 12rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .acp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .acp-drop { animation: none; }
  .acp-cover__scroll-line { animation: none; }
}

/* ================================================================
   20. シーンフィギュア（画像②〜⑤ 共通）
   ================================================================ */

/* ── 共通ベース ── */
.acp-scene-figure {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
}

/* コンテナ幅に収まる標準タイプ（②④） */
.acp-scene-figure:not(.acp-scene-figure--full):not(.acp-scene-figure--threshold) {
  margin-block: clamp(2.5rem, 5vw, 4rem);
}

/* フルブリード（③ — セクション背景色の外に食み出す） */
.acp-scene-figure--full {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  margin-block: clamp(2.5rem, 5vw, 4rem);
}

/* 結語直前（⑤ — セクションを超えたフルブリード） */
.acp-scene-figure--threshold {
  margin: 0;
  width: 100%;
  display: block;
}

/* ── フレーム（アスペクト比固定 16:9） ── */
.acp-scene-figure__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--acp-bg-card);
}

/* ── 画像本体 ── */
.acp-scene-figure__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1.2s var(--acp-ease-out), filter 0.8s var(--acp-ease);
  will-change: transform;
  filter: brightness(0.88) saturate(0.8);
}

/* 画像②：水の流れ — 左寄り構図 */
.acp-scene-figure--flow .acp-scene-figure__img {
  object-position: 40% center;
  filter: brightness(0.78) saturate(0.7) contrast(1.05);
}

/* 画像④：廊下 — 中央消失点 */
.acp-scene-figure--corridor .acp-scene-figure__img {
  object-position: center 45%;
  filter: brightness(0.82) saturate(0.72);
}

/* 画像⑤：閾値の人物 */
.acp-scene-figure__img--conclusion {
  object-position: center center;
  filter: brightness(0.75) saturate(0.65) contrast(1.08);
}

/* ホバー時のゆっくりズーム（デスクトップのみ） */
@media (hover: hover) {
  .acp-scene-figure__frame:hover .acp-scene-figure__img {
    transform: scale(1.025);
    filter: brightness(0.92) saturate(0.85);
  }
}

/* ── オーバーレイ層 ── */
.acp-scene-figure__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(12, 10, 8, 0.3) 0%,
      transparent 30%,
      transparent 65%,
      rgba(12, 10, 8, 0.65) 100%
    );
}

/* 画像③用：より強い暗幕（テキストオーバーレイあり） */
.acp-scene-figure__overlay--dark {
  background:
    linear-gradient(to bottom,
      rgba(12, 10, 8, 0.55) 0%,
      rgba(12, 10, 8, 0.2) 40%,
      rgba(12, 10, 8, 0.2) 60%,
      rgba(12, 10, 8, 0.72) 100%
    ),
    linear-gradient(to right,
      rgba(12, 10, 8, 0.4) 0%,
      transparent 50%
    );
}

/* 画像⑤用：中央から上下に向けてフェード */
.acp-scene-figure__overlay--conclusion {
  background:
    linear-gradient(to bottom,
      rgba(12, 10, 8, 0.85) 0%,
      rgba(12, 10, 8, 0.15) 25%,
      rgba(12, 10, 8, 0.1) 60%,
      rgba(12, 10, 8, 0.9) 100%
    );
}

/* ── キャプション（写真左下・右下のラベル） ── */
.acp-scene-figure__caption {
  position: absolute;
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  left: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 3;
}
.acp-scene-figure__caption--right {
  left: auto;
  right: clamp(1.25rem, 3vw, 2rem);
  text-align: right;
}
.acp-scene-figure__caption-en {
  font-family: var(--acp-font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  color: var(--acp-gold-bright);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.acp-scene-figure__caption-ja {
  font-family: var(--acp-font-sans);
  font-size: clamp(0.6rem, 1vw, 0.7rem);
  letter-spacing: 0.18em;
  color: var(--acp-text-3);
  line-height: 1.4;
}

/* ── テキストブロック（画像③・⑤ 中央オーバーレイテキスト） ── */
.acp-scene-figure__text-block {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 520px;
}
.acp-scene-figure__text-block--center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  bottom: clamp(1.75rem, 3.5vw, 3rem);
  width: max-content;
  max-width: min(520px, 80vw);
}
.acp-scene-figure__text-block-en {
  font-family: var(--acp-font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--acp-text);
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
.acp-scene-figure__text-block-ja {
  font-family: var(--acp-font-sans);
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
  letter-spacing: 0.2em;
  color: var(--acp-gold);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
}

/* ── 結語セクションの上辺ボーダーを打ち消す（⑤は画像がセクション先頭になる） ── */
.acp-conclusion {
  border-top: none !important;
  padding-top: 0 !important;
}
.acp-conclusion .acp-container {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

/* ── フルブリード③のセクション内マージン調整 ── */
.acp-section--alt .acp-scene-figure--full {
  /* acp-section--altの背景色を画像の左右まで伸ばす */
  background: var(--acp-bg-2);
}

/* ── reduced motion: スケールアニメーション無効化 ── */
@media (prefers-reduced-motion: reduce) {
  .acp-scene-figure__img {
    transition: none;
    will-change: auto;
  }
  .acp-scene-figure__frame:hover .acp-scene-figure__img {
    transform: none;
  }
}
