/**
 * AMOT Strategy Guide LP — amot-strategy-guide.css
 *
 * 設計思想:
 *   - #amot-root 配下のみ完全独立デザイン
 *   - Cocoon / entry-content / article 干渉を完全排除
 *   - CSS カスタムプロパティで全色・全値を管理
 *   - モバイルファースト + clamp() 流体タイポグラフィ
 *   - アニメーションは opacity / transform / filter のみ使用
 *   - カラーパレット: 深黒（#07070e）× ゴールド × シアン × グリーン
 *     — 宇宙的・知性的ダーク美学。AIと思考の交差点。
 *   - フォント: Cormorant Garamond（欧文Display）×
 *               Noto Serif JP（日本語明朝） ×
 *               Noto Sans JP（本文）×
 *               JetBrains Mono（コード・番号）
 *
 * @package cocoon-child-master
 */

/* ================================================================
   1. COCOON 干渉リセット
   ================================================================ */
.amot-strategy-guide .article,
.amot-strategy-guide .entry-content,
.amot-strategy-guide .main,
.amot-strategy-guide .content,
.amot-strategy-guide .wrap,
.amot-strategy-guide #main,
.amot-strategy-guide #body-in,
.amot-strategy-guide #container,
.amot-strategy-guide #container-in,
.amot-strategy-guide #contents,
.amot-strategy-guide #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;
}

.amot-strategy-guide #sidebar,
.amot-strategy-guide .sidebar,
.amot-strategy-guide #sidebar-scroll,
.amot-strategy-guide .sidebar-top,
.amot-strategy-guide .sidebar-bottom {
  display: none !important;
}

.amot-strategy-guide #footer:not(.tp-footer),
.amot-strategy-guide .site-footer:not(.tp-footer),
.amot-strategy-guide .footer:not(.tp-footer) {
  display: none !important;
}

/* ================================================================
   2. CSS カスタムプロパティ（全色・全値）
   ================================================================ */
#amot-root {
  /* ─ カラーパレット ─ */
  --amot-bg:           #07070e;
  --amot-bg-2:         #0c0c18;
  --amot-bg-card:      #0c0c18;
  --amot-bg-card2:     #101020;
  --amot-bg-el:        #141428;

  --amot-gold:         #c89030;
  --amot-gold-bright:  #f5cb6e;
  --amot-gold-light:   #e8b448;
  --amot-gold-dim:     rgba(200, 144, 48, 0.11);
  --amot-gold-border:  rgba(200, 144, 48, 0.22);

  --amot-cyan:         #18b8d4;
  --amot-cyan-light:   #38d0ec;
  --amot-cyan-dim:     rgba(24, 184, 212, 0.09);
  --amot-cyan-border:  rgba(24, 184, 212, 0.20);

  --amot-green:        #2ec882;
  --amot-green-light:  #4ade9a;
  --amot-green-dim:    rgba(46, 200, 130, 0.09);
  --amot-green-border: rgba(46, 200, 130, 0.20);

  --amot-red:          #e84444;
  --amot-red-dim:      rgba(232, 68, 68, 0.10);
  --amot-red-border:   rgba(232, 68, 68, 0.22);

  --amot-text:         #f0ede6;
  --amot-text-2:       #8a8da8;
  --amot-text-3:       #3d4058;
  --amot-border:       rgba(255, 255, 255, 0.05);
  --amot-border-2:     rgba(255, 255, 255, 0.03);

  /* ─ タイポグラフィ ─ */
  --amot-font-display: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --amot-font-sans:    'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --amot-font-serif:   'Noto Serif JP', serif;
  --amot-font-mono:    'JetBrains Mono', 'Consolas', monospace;

  /* ─ スペーシング ─ */
  --amot-section-py:      clamp(3.5rem, 7vw, 6.5rem);
  --amot-section-py-sm:   clamp(2.5rem, 5vw, 4rem);
  --amot-container-max:   900px;
  --amot-container-wide:  1240px;
  --amot-radius-sm:       4px;
  --amot-radius:          8px;
  --amot-radius-md:       16px;
  --amot-radius-lg:       24px;

  /* ─ トランジション ─ */
  --amot-easing-fast:   0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --amot-easing:        0.30s cubic-bezier(0.4, 0, 0.2, 1);
  --amot-transition:    0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

#amot-root a {
  color: inherit;
  text-decoration: none;
}

#amot-root {
  background-color: var(--amot-bg);
  color: var(--amot-text);
  font-family: var(--amot-font-sans);
  font-weight: 400;
  line-height: 1.85;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
  word-break: auto-phrase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================================
   4. Cocoon blockquote / table 白抜き問題の完全解消
   ================================================================ */
#amot-root blockquote {
  background: var(--amot-bg-card) !important;
  border-left: 3px solid var(--amot-gold) !important;
  border-right: none !important;
  color: var(--amot-text) !important;
  padding: 1.5rem 1.75rem !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: var(--amot-radius) !important;
}

#amot-root blockquote::before,
#amot-root blockquote::after {
  display: none !important;
}

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

.amot-section {
  padding-block: var(--amot-section-py);
  position: relative;
}

.amot-section--sm {
  padding-block: var(--amot-section-py-sm);
  position: relative;
}

.amot-section--alt {
  background-color: var(--amot-bg-2);
}

/* ================================================================
   6. スクロールリビールアニメーション
   ================================================================ */
.amot-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity   0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.amot-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.amot-reveal[data-delay="1"] { transition-delay: 0.10s; }
.amot-reveal[data-delay="2"] { transition-delay: 0.20s; }
.amot-reveal[data-delay="3"] { transition-delay: 0.30s; }
.amot-reveal[data-delay="4"] { transition-delay: 0.40s; }
.amot-reveal[data-delay="5"] { transition-delay: 0.50s; }

/* ================================================================
   7. ヒーローセクション
   ================================================================ */
.amot-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(70px + 80px) 24px 80px;
  overflow: hidden;
  text-align: center;
}

.amot-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(200,144,48,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%,  rgba(24,184,212,.05)  0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 60%,  rgba(46,200,130,.04)  0%, transparent 60%),
    var(--amot-bg);
  animation: amotBgPulse 10s ease infinite;
}

@keyframes amotBgPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .85; }
}

.amot-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.amot-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
}

.amot-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amot-gold-dim);
  border: 1px solid var(--amot-gold-border);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .68rem;
  letter-spacing: .15em;
  color: var(--amot-gold-light);
  margin-bottom: 32px;
  text-transform: uppercase;
  animation: amotFadeUp .8s ease forwards;
  opacity: 0;
}

.amot-hero__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amot-gold-light);
  animation: amotBlink 2s ease infinite;
  flex-shrink: 0;
}

@keyframes amotBlink {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1;  }
}

.amot-hero__title {
  font-family: var(--amot-font-display);
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--amot-text);
  margin-bottom: 20px;
  animation: amotFadeUp .9s ease .1s forwards;
  opacity: 0;
}

.amot-hero__title strong {
  font-weight: 700;
  color: var(--amot-gold-light);
  display: block;
  margin-top: 4px;
}

.amot-hero__sub {
  font-size: clamp(.95rem, 2.5vw, 1.18rem);
  color: var(--amot-text-2);
  max-width: 660px;
  margin: 0 auto 48px;
  line-height: 2.1;
  animation: amotFadeUp .9s ease .2s forwards;
  opacity: 0;
}

.amot-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  animation: amotFadeUp .9s ease .3s forwards;
  opacity: 0;
}

.amot-hero__pill {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  padding: 16px 22px;
  text-align: center;
  transition: border-color var(--amot-easing), transform var(--amot-easing);
}

.amot-hero__pill:hover {
  border-color: var(--amot-gold-border);
  transform: translateY(-2px);
}

.amot-hero__pill-num {
  font-family: var(--amot-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amot-gold-light);
  line-height: 1;
}

.amot-hero__pill-label {
  font-size: .66rem;
  color: var(--amot-text-3);
  letter-spacing: .10em;
  margin-top: 5px;
  text-transform: uppercase;
}

.amot-hero__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: amotFadeUp .9s ease .4s forwards;
  opacity: 0;
}

.amot-btn-primary {
  background: linear-gradient(135deg, var(--amot-gold), #9a6a18);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--amot-font-sans);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  transition: opacity var(--amot-easing-fast), transform var(--amot-easing-fast);
  box-shadow: 0 4px 20px rgba(200,144,48,.25);
}

.amot-btn-primary:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.amot-btn-outline {
  background: transparent;
  color: var(--amot-text-2);
  border: 1px solid var(--amot-border);
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--amot-font-sans);
  font-size: .88rem;
  cursor: pointer;
  display: inline-block;
  transition: all var(--amot-easing-fast);
}

.amot-btn-outline:hover {
  border-color: var(--amot-text-2);
  color: var(--amot-text);
}

.amot-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--amot-text-3);
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: amotFadeIn 1s ease .9s forwards;
  opacity: 0;
}

.amot-hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--amot-text-3), transparent);
  animation: amotScrollPulse 2.2s ease infinite;
}

@keyframes amotScrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1);   }
  50%       { opacity: .8; transform: scaleY(.7);  }
}

/* ================================================================
   8. キーフレームアニメーション（共通）
   ================================================================ */
@keyframes amotFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes amotFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ================================================================
   9. セクション共通コンポーネント
   ================================================================ */
.amot-chapter-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .67rem;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--amot-text-3);
  margin-bottom: 16px;
}

.amot-chapter-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.amot-chapter-label--gold  { color: var(--amot-gold); }
.amot-chapter-label--cyan  { color: var(--amot-cyan); }
.amot-chapter-label--green { color: var(--amot-green); }
.amot-chapter-label--red   { color: var(--amot-red); }

.amot-section-title {
  font-family: var(--amot-font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -.015em;
  color: var(--amot-text);
  margin-bottom: 18px;
}

.amot-section-title strong {
  font-weight: 700;
}

.amot-section-lead {
  font-size: 1rem;
  color: var(--amot-text-2);
  max-width: 720px;
  line-height: 2;
  margin-bottom: 48px;
}

.amot-divider {
  max-width: var(--amot-container-wide);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 16px;
}

.amot-divider__line {
  flex: 1;
  height: 1px;
  background: var(--amot-border);
}

.amot-divider__text {
  font-size: .63rem;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--amot-text-3);
  white-space: nowrap;
  padding: 0 4px;
}

/* ================================================================
   10. ZMOT比較カード
   ================================================================ */
.amot-zmot-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 12px;
  align-items: center;
  margin: 48px 0;
}

.amot-zcard {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.amot-zcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.amot-zcard--old {
  border-color: var(--amot-red-border);
  background: rgba(232,68,68,.02);
}
.amot-zcard--old::before { background: rgba(232,68,68,.45); }

.amot-zcard--new {
  border-color: var(--amot-gold-border);
  background: var(--amot-gold-dim);
}
.amot-zcard--new::before {
  background: linear-gradient(90deg, var(--amot-gold), var(--amot-cyan));
}

.amot-zcard__label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.amot-zcard--old .amot-zcard__label { color: var(--amot-red); }
.amot-zcard--new .amot-zcard__label { color: var(--amot-gold-light); }

.amot-zcard__title {
  font-family: var(--amot-font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--amot-text);
}

.amot-zcard__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.amot-zcard__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--amot-text-2);
  line-height: 1.65;
}

.amot-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amot-bg-el);
  border: 1px solid var(--amot-border);
  font-size: .62rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 500;
  margin-top: 1px;
}

.amot-zmot-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amot-text-3);
  font-size: 1.3rem;
}

.amot-badge {
  display: inline-block;
  border-radius: 100px;
  padding: 3px 12px;
  font-size: .62rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-top: 16px;
}

.amot-badge--dead {
  background: var(--amot-red-dim);
  border: 1px solid var(--amot-red-border);
  color: var(--amot-red);
}

.amot-badge--new {
  background: var(--amot-gold-dim);
  border: 1px solid var(--amot-gold-border);
  color: var(--amot-gold-light);
}

/* ================================================================
   11. インサイトボックス
   ================================================================ */
.amot-insight-box {
  background: linear-gradient(135deg, rgba(200,144,48,.08), rgba(24,184,212,.04));
  border: 1px solid var(--amot-gold-border);
  border-radius: var(--amot-radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.amot-insight-box::after {
  content: '"';
  position: absolute;
  top: -24px; right: 20px;
  font-family: var(--amot-font-display);
  font-size: 11rem;
  font-weight: 700;
  color: rgba(200,144,48,.04);
  line-height: 1;
  pointer-events: none;
}

.amot-insight-box p {
  font-family: var(--amot-font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--amot-text);
  position: relative;
  z-index: 1;
}

.amot-insight-box em {
  font-style: normal;
  color: var(--amot-gold-light);
}

.amot-insight-box strong {
  font-weight: 700;
}

/* ================================================================
   12. タグ行
   ================================================================ */
.amot-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}

.amot-tag-item {
  background: var(--amot-bg-el);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-sm);
  padding: 2px 9px;
  font-size: .68rem;
  color: var(--amot-text-3);
  font-family: var(--amot-font-mono);
}

/* ================================================================
   13. 具体例グリッド（AMOT事例）
   ================================================================ */
.amot-example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 44px 0;
}

.amot-example-card {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  padding: 26px;
  transition: border-color var(--amot-easing), transform var(--amot-easing);
}

.amot-example-card:hover {
  border-color: rgba(255,255,255,.10);
  transform: translateY(-2px);
}

.amot-example-card__label {
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amot-text-3);
  margin-bottom: 14px;
}

.amot-example-scene {
  background: var(--amot-bg-el);
  border-radius: var(--amot-radius);
  padding: 12px 16px;
  font-size: .86rem;
  color: var(--amot-text-2);
  font-style: italic;
  margin-bottom: 14px;
  border-left: 2px solid var(--amot-cyan);
}

.amot-example-flow {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.amot-flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--amot-text-2);
  padding: 5px 0;
  border-bottom: 1px solid var(--amot-border-2);
}

.amot-flow-step:last-child { border-bottom: none; }

.amot-flow-step .icon {
  font-size: .9rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ================================================================
   14. KVグリッド（指標カード）
   ================================================================ */
.amot-kv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.amot-kvcard {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  padding: 18px;
  text-align: center;
  transition: border-color var(--amot-easing), transform var(--amot-easing);
}

.amot-kvcard:hover {
  border-color: var(--amot-gold-border);
  transform: translateY(-2px);
}

.amot-kvcard__num {
  font-family: var(--amot-font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.amot-kvcard__label {
  font-size: .68rem;
  color: var(--amot-text-3);
  margin-top: 6px;
  line-height: 1.55;
}

/* ================================================================
   15. ハイライトボックス
   ================================================================ */
.amot-highlight-box {
  background: var(--amot-gold-dim);
  border: 1px solid var(--amot-gold-border);
  border-radius: var(--amot-radius-md);
  padding: 22px 26px;
  margin: 20px 0;
}

.amot-highlight-box p {
  font-size: .88rem;
  color: var(--amot-text);
  line-height: 1.85;
}

.amot-highlight-box strong {
  color: var(--amot-gold-light);
}

/* ================================================================
   16. ダークファネル
   ================================================================ */
.amot-df-wrap {
  background: rgba(7,7,20,.99);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-lg);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.amot-df-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amot-cyan), transparent);
}

.amot-df-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.amot-df-vis,
.amot-df-dark {
  border-radius: var(--amot-radius-md);
  padding: 22px;
}

.amot-df-vis {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}

.amot-df-dark {
  background: rgba(0,0,0,.55);
  border: 1px dashed rgba(255,255,255,.07);
}

.amot-df-label {
  font-size: .62rem;
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.amot-df-vis .amot-df-label  { color: var(--amot-green); }
.amot-df-dark .amot-df-label { color: var(--amot-text-3); }

.amot-df-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.amot-df-items li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: var(--amot-text-2);
  padding: 3px 0;
}

.amot-df-items li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.amot-df-vis  .amot-df-items li::before { background: var(--amot-green); }
.amot-df-dark .amot-df-items li::before { background: rgba(255,255,255,.12); }

.amot-df-note {
  background: var(--amot-cyan-dim);
  border: 1px solid var(--amot-cyan-border);
  border-radius: var(--amot-radius);
  padding: 13px 16px;
  font-size: .84rem;
  color: var(--amot-text-2);
  line-height: 1.8;
  margin-top: 22px;
}

.amot-df-note strong { color: var(--amot-cyan-light); }

/* ================================================================
   17. 比較テーブル
   ================================================================ */
.amot-table-wrap {
  overflow-x: auto;
  border-radius: var(--amot-radius-md);
  border: 1px solid var(--amot-border);
  margin: 44px 0;
}

.amot-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
  background: transparent !important;
}

.amot-table thead tr {
  background: var(--amot-bg-card);
}

.amot-table th {
  padding: 13px 18px;
  text-align: left;
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amot-text-3);
  font-weight: 500;
  border-bottom: 1px solid var(--amot-border);
  background: var(--amot-bg-card) !important;
}

.amot-table td {
  padding: 15px 18px;
  font-size: .84rem;
  color: var(--amot-text-2);
  border-bottom: 1px solid var(--amot-border-2);
  vertical-align: top;
  line-height: 1.75;
  background: transparent !important;
}

.amot-table tbody tr:last-child td { border-bottom: none; }
.amot-table tbody tr:hover td {
  background: rgba(255,255,255,.015) !important;
}

.amot-table td:first-child {
  font-weight: 700;
  color: var(--amot-text);
  white-space: nowrap;
}

.amot-era-badge {
  display: inline-block;
  font-size: .60rem;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: .07em;
}

.amot-era-badge--old {
  background: var(--amot-red-dim);
  color: var(--amot-red);
  border: 1px solid var(--amot-red-border);
}

.amot-era-badge--now {
  background: var(--amot-gold-dim);
  color: var(--amot-gold-light);
  border: 1px solid var(--amot-gold-border);
}

.amot-era-badge--dark {
  background: var(--amot-cyan-dim);
  color: var(--amot-cyan-light);
  border: 1px solid var(--amot-cyan-border);
}

/* ================================================================
   18. 適応戦略カード
   ================================================================ */
.amot-adapt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 44px 0;
}

.amot-adapt-card {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  padding: 30px;
  transition: border-color var(--amot-easing), transform var(--amot-easing);
  position: relative;
  overflow: hidden;
}

.amot-adapt-card:hover {
  border-color: var(--amot-gold-border);
  transform: translateY(-2px);
}

.amot-adapt-card__num {
  font-family: var(--amot-font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(200,144,48,.06);
  position: absolute;
  top: 6px; right: 18px;
}

.amot-adapt-card__tag {
  display: inline-block;
  background: var(--amot-gold-dim);
  border: 1px solid var(--amot-gold-border);
  border-radius: var(--amot-radius-sm);
  padding: 2px 8px;
  font-size: .60rem;
  color: var(--amot-gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.amot-adapt-card__title {
  font-size: .97rem;
  font-weight: 700;
  color: var(--amot-text);
  margin-bottom: 10px;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

.amot-adapt-card__desc {
  font-size: .83rem;
  color: var(--amot-text-2);
  line-height: 1.85;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.amot-alist {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
}

.amot-alist li {
  font-size: .77rem;
  color: var(--amot-text-2);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.6;
}

.amot-alist li::before {
  content: '▸';
  color: var(--amot-gold);
  font-size: .62rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ================================================================
   19. 2カラムレイアウト
   ================================================================ */
.amot-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin: 44px 0;
}

.amot-two-col__title {
  font-family: var(--amot-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--amot-text);
  margin-bottom: 14px;
}

.amot-notice {
  background: var(--amot-green-dim);
  border: 1px solid var(--amot-green-border);
  border-radius: var(--amot-radius);
  padding: 12px 16px;
  font-size: .81rem;
  color: var(--amot-text-2);
  line-height: 1.75;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 10px 0;
}

.amot-notice::before {
  content: '✓';
  color: var(--amot-green);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* ================================================================
   20. CTAセクション
   ================================================================ */
.amot-cta-section {
  padding-block: var(--amot-section-py-sm);
  background: linear-gradient(180deg, transparent 0%, rgba(200,144,48,.04) 50%, transparent 100%);
  text-align: center;
}

.amot-cta-section__inner {
  max-width: 640px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.amot-cta-section__title {
  font-family: var(--amot-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 300;
  color: var(--amot-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.amot-cta-section__desc {
  font-size: .88rem;
  color: var(--amot-text-2);
  margin-bottom: 32px;
  line-height: 2;
}

.amot-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  padding: 16px 40px;
  font-family: var(--amot-font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity var(--amot-easing-fast), transform var(--amot-easing-fast), box-shadow var(--amot-easing-fast);
  box-shadow: 0 6px 28px rgba(200,144,48,.30);
  position: relative;
}

.amot-cta-btn:hover {
  opacity: .88;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(200,144,48,.40);
}

.amot-cta-btn::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--amot-easing-fast);
}

.amot-cta-btn:hover::after {
  transform: translateX(4px);
}

.amot-cta-subtext {
  margin-top: 14px;
  font-size: .75rem;
  color: var(--amot-text-3);
  letter-spacing: .08em;
}

/* ================================================================
   21. 30項目リスト（5カテゴリ）
   ================================================================ */
.amot-cats {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.amot-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--amot-border);
}

.amot-cat-header__icon { font-size: 1.35rem; }

.amot-cat-header__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--amot-text);
}

.amot-cat-header__count {
  font-size: .66rem;
  color: var(--amot-text-3);
  background: var(--amot-bg-el);
  padding: 2px 8px;
  border-radius: var(--amot-radius-sm);
}

.amot-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.amot-item-card {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  padding: 20px;
  transition: all var(--amot-easing);
  position: relative;
  overflow: hidden;
}

.amot-item-card:hover {
  border-color: rgba(255,255,255,.10);
  background: var(--amot-bg-card2);
  transform: translateY(-2px);
}

.amot-item-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: var(--amot-radius-sm) 0 0 var(--amot-radius-sm);
}

/* カテゴリ別アクセントカラー */
.amot-item-card--a::before { background: rgba(139, 92,246,.45); }
.amot-item-card--b::before { background: rgba(200,144, 48,.45); }
.amot-item-card--c::before { background: rgba( 46,200,130,.45); }
.amot-item-card--d::before { background: rgba( 24,184,212,.45); }
.amot-item-card--e::before { background: rgba(236, 72,153,.45); }

.amot-item-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 9px;
}

.amot-item-num {
  font-family: var(--amot-font-mono);
  font-size: .67rem;
  color: var(--amot-text-3);
  background: var(--amot-bg-el);
  padding: 2px 7px;
  border-radius: var(--amot-radius-sm);
}

.amot-priority-badge {
  font-size: .58rem;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.amot-priority-badge--urgent {
  background: rgba(232,68,68,.10);
  color: #f87171;
  border: 1px solid rgba(232,68,68,.20);
}

.amot-priority-badge--next {
  background: var(--amot-gold-dim);
  color: var(--amot-gold-light);
  border: 1px solid var(--amot-gold-border);
}

.amot-priority-badge--later {
  background: var(--amot-cyan-dim);
  color: var(--amot-cyan-light);
  border: 1px solid var(--amot-cyan-border);
}

.amot-item-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--amot-text);
  margin-bottom: 6px;
  line-height: 1.5;
}

.amot-item-desc {
  font-size: .75rem;
  color: var(--amot-text-2);
  line-height: 1.75;
  margin-bottom: 9px;
}

.amot-item-actions {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.amot-item-actions li {
  font-size: .69rem;
  color: var(--amot-text-3);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.6;
}

.amot-item-actions li::before {
  content: '·';
  color: var(--amot-gold);
  font-size: .95rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.amot-item-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
}

.amot-item-dots__label {
  font-size: .60rem;
  color: var(--amot-text-3);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.amot-item-dots__row {
  display: flex;
  gap: 2px;
}

.amot-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amot-border);
}

.amot-dot--on { background: var(--amot-gold); }

/* ================================================================
   22. ロードマップ
   ================================================================ */
.amot-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 44px 0;
}

.amot-roadmap-phase {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  padding: 26px;
  position: relative;
}

.amot-roadmap-phase--urgent  { border-top: 3px solid var(--amot-red);   }
.amot-roadmap-phase--next    { border-top: 3px solid var(--amot-gold);  }
.amot-roadmap-phase--later   { border-top: 3px solid var(--amot-cyan);  }

.amot-roadmap-phase__label {
  font-size: .60rem;
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.amot-roadmap-phase--urgent  .amot-roadmap-phase__label { color: var(--amot-red);         }
.amot-roadmap-phase--next    .amot-roadmap-phase__label { color: var(--amot-gold-light);  }
.amot-roadmap-phase--later   .amot-roadmap-phase__label { color: var(--amot-cyan);        }

.amot-roadmap-phase__title {
  font-family: var(--amot-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--amot-text);
  margin-bottom: 4px;
}

.amot-roadmap-phase__sub {
  font-size: .72rem;
  color: var(--amot-text-3);
  margin-bottom: 18px;
  line-height: 1.6;
}

.amot-roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.amot-roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .81rem;
  color: var(--amot-text-2);
  padding: 5px 0;
  border-bottom: 1px solid var(--amot-border-2);
}

.amot-roadmap-item:last-child { border-bottom: none; }

.amot-roadmap-item__num {
  font-family: var(--amot-font-mono);
  font-size: .63rem;
  color: var(--amot-text-3);
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ================================================================
   23. ジャーニーセクション（Journey）
   ================================================================ */
.amot-journey {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-lg);
  padding: clamp(2.5rem, 6vw, 4.25rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 44px 0;
}

.amot-journey::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amot-gold), transparent);
}

.amot-journey::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amot-green), transparent);
}

.amot-journey__title {
  font-family: var(--amot-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 300;
  color: var(--amot-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.amot-journey__sub {
  font-size: .88rem;
  color: var(--amot-text-2);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.95;
}

.amot-journey-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
}

.amot-journey-step {
  border-radius: var(--amot-radius-md);
  padding: 18px 52px;
  text-align: center;
  min-width: 360px;
}

.amot-journey-step--1 {
  border: 1px solid var(--amot-cyan-border);
  background: var(--amot-cyan-dim);
}

.amot-journey-step--2 {
  border: 1px solid var(--amot-gold-border);
  background: var(--amot-gold-dim);
}

.amot-journey-step--3 {
  border: 1px solid var(--amot-green-border);
  background: var(--amot-green-dim);
}

.amot-journey-step__num {
  font-family: var(--amot-font-mono);
  font-size: .60rem;
  color: var(--amot-text-3);
  letter-spacing: .10em;
  margin-bottom: 5px;
}

.amot-journey-step__text {
  font-family: var(--amot-font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.amot-journey-step--1 .amot-journey-step__text { color: var(--amot-cyan-light);  }
.amot-journey-step--2 .amot-journey-step__text { color: var(--amot-gold-light);  }
.amot-journey-step--3 .amot-journey-step__text { color: var(--amot-green-light); }

.amot-journey-arrow {
  color: var(--amot-text-3);
  font-size: 1.3rem;
  line-height: 1;
}

.amot-journey-msg {
  font-size: .86rem;
  color: var(--amot-text-2);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 2;
}

.amot-journey-msg strong { color: var(--amot-gold-light); }

/* ================================================================
   24. エビデンスセクション
   ================================================================ */
.amot-evidence-wrap {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  overflow: hidden;
  margin: 44px 0;
}

.amot-evidence-header {
  padding: 18px 26px;
  border-bottom: 1px solid var(--amot-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: background var(--amot-easing-fast);
}

.amot-evidence-header:hover { background: var(--amot-bg-el); }

.amot-evidence-header h3 {
  font-size: .86rem;
  font-weight: 600;
  color: var(--amot-text);
  display: flex;
  align-items: center;
  gap: 9px;
}

.amot-evidence-toggle {
  font-size: 1.05rem;
  color: var(--amot-text-3);
  transition: transform var(--amot-easing);
}

.amot-evidence-toggle.is-open { transform: rotate(180deg); }

.amot-evidence-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}

.amot-evidence-body.is-open { max-height: 4000px; }

.amot-evidence-table {
  width: 100%;
  border-collapse: collapse;
}

.amot-evidence-table th {
  padding: 10px 18px;
  text-align: left;
  font-size: .60rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--amot-text-3);
  background: var(--amot-bg-card) !important;
  border-bottom: 1px solid var(--amot-border);
}

.amot-evidence-table td {
  padding: 11px 18px;
  font-size: .77rem;
  color: var(--amot-text-2);
  border-bottom: 1px solid var(--amot-border-2);
  line-height: 1.65;
  vertical-align: top;
  background: transparent !important;
}

.amot-evidence-table tr:last-child td { border-bottom: none; }

.amot-evidence-table td:first-child {
  color: var(--amot-text);
  font-weight: 600;
  white-space: nowrap;
  width: 130px;
}

.amot-ev-link {
  color: var(--amot-cyan);
  font-size: .68rem;
  display: inline-block;
  margin-left: 5px;
  opacity: .65;
}

.amot-ev-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ================================================================
   25. FAQアコーディオン
   ================================================================ */
.amot-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.amot-faq-item {
  background: var(--amot-bg-card);
  border: 1px solid var(--amot-border);
  border-radius: var(--amot-radius-md);
  overflow: hidden;
}

.amot-faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
  transition: background var(--amot-easing-fast);
}

.amot-faq-question:hover { background: var(--amot-bg-el); }

.amot-faq-question span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--amot-text);
  line-height: 1.5;
}

.amot-faq-icon {
  font-size: 1rem;
  color: var(--amot-text-3);
  transition: transform var(--amot-easing);
  flex-shrink: 0;
}

.amot-faq-icon.is-open { transform: rotate(180deg); }

.amot-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.amot-faq-answer.is-open { max-height: 600px; }

.amot-faq-answer__inner {
  padding: 0 22px 18px;
  font-size: .83rem;
  color: var(--amot-text-2);
  line-height: 1.9;
}

/* ================================================================
   26. html・body スクロール設定補完
   ================================================================ */
html.amot-strategy-guide-html {
  scroll-padding-top: 70px;
}

/* ================================================================
   27. レスポンシブ — タブレット (〜 960px)
   ================================================================ */
@media (max-width: 960px) {
  .amot-item-grid    { grid-template-columns: repeat(2, 1fr); }
  .amot-roadmap      { grid-template-columns: 1fr; }
  .amot-zmot-grid    { grid-template-columns: 1fr; }
  .amot-zmot-arrow   { display: none; }
  .amot-adapt-grid   { grid-template-columns: 1fr; }
  .amot-example-grid { grid-template-columns: 1fr; }
  .amot-df-inner     { grid-template-columns: 1fr; }
  .amot-two-col      { grid-template-columns: 1fr; }
  .amot-kv-grid      { grid-template-columns: repeat(2, 1fr); }
  .amot-journey-step { min-width: auto; width: 100%; padding: 14px 22px; }
  .amot-journey      { padding: 36px 22px; }
  .amot-insight-box  { padding: 26px 22px; }
  .amot-df-wrap      { padding: 26px 20px; }
  .amot-section      { padding-block: clamp(3rem, 6vw, 5rem); }
}

/* ================================================================
   28. レスポンシブ — スマートフォン (〜 600px)
   ================================================================ */
@media (max-width: 600px) {
  .amot-item-grid       { grid-template-columns: 1fr; }
  .amot-kv-grid         { grid-template-columns: repeat(2, 1fr); }
  .amot-hero__pills     { gap: 8px; }
  .amot-hero__pill      { padding: 12px 14px; }
  .amot-hero__pill-num  { font-size: 1.5rem; }
  .amot-cta-btn         { padding: 14px 28px; font-size: .875rem; }
  .amot-hero__btns      { flex-direction: column; align-items: center; }
  .amot-roadmap-phase   { padding: 20px 18px; }
}
