/**
 * Nanae プロフィール LP — nanae.css
 *
 * 設計思想:
 *   - #nnlp-root 配下のみ完全独立デザイン
 *   - Cocoon / entry-content / article 干渉を完全排除
 *   - CSS カスタムプロパティで全色・全値を管理
 *   - モバイルファースト + clamp() 流体タイポグラフィ
 *   - アニメーションは opacity / transform / filter のみ使用
 *   - カラーパレット: Golden Olive Green
 *       (やわらかなオフベージュ × ゴールデンオリーブグリーン × シャンパンゴールド × セージグリーン)
 *   - フォント: Shippori Mincho（明朝・見出し）/ Noto Sans JP（本文）
 *
 * @package cocoon-child-master
 */


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

/* Cocoon サイドバーを非表示 */
.nanae #sidebar,
.nanae .sidebar,
.nanae #sidebar-scroll,
.nanae .sidebar-top,
.nanae .sidebar-bottom { display: none !important; }

/* Cocoon 標準フッターを非表示（footer_tp で代替） */
.nanae #footer:not(.tp-footer),
.nanae .site-footer:not(.tp-footer),
.nanae .footer:not(.tp-footer) { display: none !important; }


/* ================================================================
   2. CSS カスタムプロパティ（全色・全値）
   ================================================================ */
#nnlp-root {
  /* ─ カラーパレット: Golden Olive Green ─ */
  --nnlp-bg:            #F7F5EC;   /* やわらかなオフベージュ */
  --nnlp-bg-2:          #F2EFE0;   /* セカンダリ背景 */
  --nnlp-bg-card:       #FBFAF2;   /* 紙のような表面 */

  --nnlp-olive:         #8A9A3E;   /* ゴールデンオリーブグリーン（主役） */
  --nnlp-olive-mid:     #A8B560;   /* やや明るいオリーブ */
  --nnlp-olive-deep:    #6E7A2E;   /* 深いオリーブ */
  --nnlp-olive-light:   #EEF1DA;   /* 淡いオリーブ */
  --nnlp-olive-border:  #D4DDA8;   /* オリーブの境界線 */

  --nnlp-gold:          #C9A66B;   /* シャンパンゴールド（差し色） */
  --nnlp-gold-bright:   #E2C26E;   /* 明るいゴールド */
  --nnlp-gold-light:    #F4ECD8;   /* 淡いシャンパン */
  --nnlp-gold-border:   #E1CFA5;
  --nnlp-gold-deep:     #997D3F;

  --nnlp-sage:          #6A9164;   /* 補助カラー：セージグリーン */
  --nnlp-sage-light:    #E8F0E5;
  --nnlp-sage-border:   #B8D4B4;

  --nnlp-ink:           #2D2E25;   /* 文字色（本文・見出し） */
  --nnlp-text:          #2D2E25;
  --nnlp-text-2:        #5A5A4F;   /* 中間文字 */
  --nnlp-muted:         #97968B;   /* 補足文字 */
  --nnlp-border:        #E3DECF;   /* 罫線 */

  /* ─ タイポグラフィ ─ */
  --nnlp-font-sans:     'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  --nnlp-font-serif:    'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --nnlp-font-display:  'Shippori Mincho', 'Noto Serif JP', serif;

  /* ─ スペーシング ─ */
  --nnlp-section-py:    clamp(3.5rem, 7vw, 6rem);
  --nnlp-container-max: 760px;   /* プロフィールページは読みやすい狭めの幅 */
  --nnlp-container-wide: 1040px;
  --nnlp-radius:        12px;
  --nnlp-radius-sm:     8px;
  --nnlp-radius-lg:     20px;

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


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

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

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

#nnlp-root img,
#nnlp-root svg { max-width: 100%; height: auto; display: block; }

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

#nnlp-root {
  background-color: var(--nnlp-bg);
  background-image:
    radial-gradient(ellipse 60% 80% at 10% 12%, rgba(138,154,62,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 55% 70% at 92% 88%, rgba(201,166,107,0.06) 0%, transparent 70%);
  color: var(--nnlp-text);
  font-family: var(--nnlp-font-sans);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
  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;
}


/* ================================================================
   4. テーブル・ブロッククォート白抜き完全解消（Cocoon 干渉対策）
   ================================================================ */
#nnlp-root blockquote {
  background: var(--nnlp-bg-card) !important;
  border-left: 3px solid var(--nnlp-gold) !important;
  border-right: none !important;
  color: var(--nnlp-text) !important;
  padding: 1.5rem 1.75rem !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: var(--nnlp-radius-sm) !important;
}
#nnlp-root blockquote::before,
#nnlp-root blockquote::after { display: none !important; }

#nnlp-root hr {
  border: none;
  height: 1px;
  background: var(--nnlp-border);
  margin: 1.5rem 0;
}

#nnlp-root code,
#nnlp-root pre {
  background: var(--nnlp-bg-card) !important;
  color: var(--nnlp-olive-deep) !important;
  border: 1px solid var(--nnlp-border) !important;
  border-radius: var(--nnlp-radius-sm);
  padding: 0.1em 0.4em;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.86em;
}


/* ================================================================
   5. ベースコンポーネント
   ================================================================ */
.nnlp-main {
  /* tp-header（固定 70px）の真下から自然に始まるよう、余白を確保 */
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.nnlp-container {
  max-width: var(--nnlp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}
.nnlp-container--wide {
  max-width: var(--nnlp-container-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}


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

/* stagger 効果 */
.nnlp-reveal[data-delay="1"] { transition-delay: 0.08s; }
.nnlp-reveal[data-delay="2"] { transition-delay: 0.16s; }
.nnlp-reveal[data-delay="3"] { transition-delay: 0.24s; }
.nnlp-reveal[data-delay="4"] { transition-delay: 0.32s; }


/* ================================================================
   7. Profile Hero — オーナー紹介
   ================================================================ */
.nnlp-profile-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.nnlp-profile-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

/* 写真フレーム（正方形画像 → 正円トリミング） */
.nnlp-photo-outer {
  flex-shrink: 0;
  position: relative;
  width: clamp(148px, 30vw, 168px);
  height: clamp(148px, 30vw, 168px);
}

.nnlp-photo-frame {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* ★正円トリミング */
  background: linear-gradient(145deg, var(--nnlp-olive-light) 0%, var(--nnlp-gold-light) 100%);
  border: 2px solid var(--nnlp-olive-border);
  box-shadow:
    0 8px 28px rgba(138, 154, 62, 0.18),
    0 2px 6px rgba(110, 122, 46, 0.10),
    inset 0 1px 2px rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.nnlp-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--nnlp-ease);
}

.nnlp-photo-outer:hover .nnlp-photo-img {
  transform: scale(1.05);
}

/* デコレーション：外側のうっすらした金リング */
.nnlp-photo-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 166, 107, 0.45);
  pointer-events: none;
  animation: nnlp-ring-rotate 38s linear infinite;
}
@keyframes nnlp-ring-rotate {
  to { transform: rotate(360deg); }
}

.nnlp-photo-leaf {
  position: absolute;
  top: -6px;
  right: 0;
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(138, 154, 62, 0.3));
  animation: nnlp-sway 4.5s ease-in-out infinite;
}
@keyframes nnlp-sway {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

/* Profile Info */
.nnlp-profile-info {
  width: 100%;
  text-align: center;
}

.nnlp-profile-greet {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--nnlp-olive);
  margin-bottom: 8px;
  font-weight: 500;
  font-family: var(--nnlp-font-sans);
}

.nnlp-profile-name {
  font-family: var(--nnlp-font-serif);
  font-size: clamp(1.55rem, 4.6vw, 2.05rem);
  font-weight: 700;
  color: var(--nnlp-ink);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.nnlp-name-sub {
  display: inline-block;
  font-size: 0.62rem;
  color: var(--nnlp-muted);
  letter-spacing: 0.18em;
  margin-left: 10px;
  vertical-align: middle;
  font-weight: 400;
}

.nnlp-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  justify-content: center;
}

.nnlp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border: 1px solid;
  white-space: nowrap;
}
.nnlp-badge--olive { background: var(--nnlp-olive-light); border-color: var(--nnlp-olive-border); color: var(--nnlp-olive-deep); }
.nnlp-badge--gold  { background: var(--nnlp-gold-light);  border-color: var(--nnlp-gold-border);  color: var(--nnlp-gold-deep); }
.nnlp-badge--sage  { background: var(--nnlp-sage-light);  border-color: var(--nnlp-sage-border);  color: var(--nnlp-sage); }

.nnlp-profile-bio {
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  color: var(--nnlp-text-2);
  line-height: 2.05;
  margin-bottom: 20px;
  font-weight: 400;
}

.nnlp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.nnlp-tag {
  font-size: 0.68rem;
  padding: 3px 10px;
  border: 1px solid var(--nnlp-border);
  border-radius: 20px;
  color: var(--nnlp-muted);
  background: var(--nnlp-bg-card);
  letter-spacing: 0.04em;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
  cursor: default;
}
.nnlp-tag:hover {
  border-color: var(--nnlp-olive-border);
  color: var(--nnlp-olive-deep);
  background: var(--nnlp-olive-light);
}


/* ================================================================
   8. Stance Box — このブログのスタンス
   ================================================================ */
.nnlp-stance-wrap {
  margin: 8px 0 clamp(3.5rem, 8vw, 5rem);
}

.nnlp-stance-box {
  background: var(--nnlp-bg-card);
  border: 1px solid var(--nnlp-border);
  border-radius: var(--nnlp-radius);
  padding: clamp(24px, 4vw, 32px) clamp(22px, 4vw, 32px) clamp(22px, 4vw, 28px);
  position: relative;
  box-shadow: 0 2px 18px rgba(138, 154, 62, 0.05);
  transition: box-shadow 0.4s var(--nnlp-ease), transform 0.4s var(--nnlp-ease);
}
.nnlp-stance-box:hover {
  box-shadow: 0 8px 28px rgba(138, 154, 62, 0.10);
  transform: translateY(-2px);
}

.nnlp-stance-label {
  position: absolute;
  top: -10px;
  left: 22px;
  padding: 2px 12px;
  background: var(--nnlp-bg-card);
  font-size: 0.68rem;
  color: var(--nnlp-olive-deep);
  letter-spacing: 0.18em;
  font-family: var(--nnlp-font-serif);
  border: 1px solid var(--nnlp-olive-border);
  border-radius: 4px;
  font-weight: 500;
}

.nnlp-stance-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nnlp-stance-list li {
  font-size: clamp(0.85rem, 1.9vw, 0.92rem);
  color: var(--nnlp-text-2);
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--nnlp-border);
  line-height: 1.85;
}
.nnlp-stance-list li:last-child  { border-bottom: none; padding-bottom: 0; }
.nnlp-stance-list li:first-child { padding-top: 0; }

.nnlp-stance-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--nnlp-olive);
  opacity: 0.7;
}


/* ================================================================
   9. Article Section — 本編セクション共通
   ================================================================ */
.nnlp-article-section {
  margin-bottom: clamp(3.5rem, 8vw, 5.5rem);
  scroll-margin-top: 80px; /* tp-header の高さ補正 */
}

.nnlp-sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.nnlp-sec-num {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--nnlp-olive);
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--nnlp-font-sans);
}

.nnlp-sec-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--nnlp-olive-border) 0%, var(--nnlp-border) 100%);
}

.nnlp-sec-title {
  font-family: var(--nnlp-font-serif);
  font-size: clamp(1.32rem, 3.6vw, 1.7rem);
  font-weight: 700;
  color: var(--nnlp-ink);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.nnlp-sec-sub {
  font-size: 0.78rem;
  color: var(--nnlp-muted);
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

/* Body prose */
.nnlp-body-text {
  font-size: clamp(0.9rem, 1.95vw, 0.95rem);
  color: var(--nnlp-text-2);
  line-height: 2.05;
}
.nnlp-body-text p { margin-bottom: 22px; }
.nnlp-body-text p:last-child { margin-bottom: 0; }
.nnlp-body-text strong { color: var(--nnlp-ink); font-weight: 600; }

.nnlp-accent {
  color: var(--nnlp-olive-deep);
  font-weight: 500;
  background: linear-gradient(transparent 62%, rgba(201, 166, 107, 0.28) 62%);
  padding: 0 2px;
}
.nnlp-accent-plain {
  color: var(--nnlp-olive-deep);
  font-weight: 500;
}


/* ================================================================
   10. Voice Block — 引用風囲み
   ================================================================ */
.nnlp-voice-block {
  background: var(--nnlp-olive-light);
  border-left: 3px solid var(--nnlp-olive);
  border-radius: 0 var(--nnlp-radius-sm) var(--nnlp-radius-sm) 0;
  padding: 18px 22px;
  margin: 26px 0;
  font-size: clamp(0.86rem, 1.9vw, 0.9rem);
  color: var(--nnlp-ink);
  line-height: 1.95;
}
.nnlp-voice-block--gold { background: var(--nnlp-gold-light); border-left-color: var(--nnlp-gold); }
.nnlp-voice-block--sage { background: var(--nnlp-sage-light); border-left-color: var(--nnlp-sage); }

.nnlp-vb-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  margin-bottom: 9px;
  font-weight: 500;
  color: var(--nnlp-olive-deep);
  font-family: var(--nnlp-font-sans);
}
.nnlp-voice-block--gold .nnlp-vb-label { color: var(--nnlp-gold-deep); }
.nnlp-voice-block--sage .nnlp-vb-label { color: var(--nnlp-sage); }

.nnlp-vb-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nnlp-olive);
  flex-shrink: 0;
}
.nnlp-voice-block--gold .nnlp-vb-label::before { background: var(--nnlp-gold); }
.nnlp-voice-block--sage .nnlp-vb-label::before { background: var(--nnlp-sage); }


/* ================================================================
   11. Journey — 3ステップ・タイムライン
   ================================================================ */
.nnlp-journey-wrap {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--nnlp-border);
  border-radius: var(--nnlp-radius);
  overflow: hidden;
  margin: 28px 0;
  background: var(--nnlp-bg-card);
}

.nnlp-journey-step {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--nnlp-ease);
}
.nnlp-journey-step:hover { transform: scale(1.015); }

.nnlp-journey-step:nth-child(1) { background: var(--nnlp-gold-light); }
.nnlp-journey-step:nth-child(2) { background: var(--nnlp-bg-card); }
.nnlp-journey-step:nth-child(3) { background: var(--nnlp-olive-light); }

.nnlp-journey-step:not(:last-child) {
  border-bottom: 1px solid var(--nnlp-border);
}
.nnlp-journey-step:not(:last-child)::after {
  content: '↓';
  position: absolute;
  right: auto;
  top: auto;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--nnlp-olive);
  opacity: 0.6;
  z-index: 2;
  background: var(--nnlp-bg);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.nnlp-journey-lv {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--nnlp-muted);
  margin-bottom: 7px;
}
.nnlp-journey-name {
  font-family: var(--nnlp-font-serif);
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  font-weight: 700;
  color: var(--nnlp-ink);
  line-height: 1.4;
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}
.nnlp-journey-desc {
  font-size: 0.7rem;
  color: var(--nnlp-text-2);
  line-height: 1.7;
}


/* ================================================================
   12. Persona Flow — 副業の歩み（縦リスト）
   ================================================================ */
.nnlp-persona-flow {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 26px 0;
}

.nnlp-pf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--nnlp-bg-card);
  border-radius: var(--nnlp-radius-sm);
  border: 1px solid var(--nnlp-border);
  transition:
    border-color 0.22s,
    transform 0.22s var(--nnlp-ease),
    box-shadow 0.22s var(--nnlp-ease);
}
.nnlp-pf-item:hover {
  border-color: var(--nnlp-olive-border);
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(138, 154, 62, 0.08);
}

.nnlp-pf-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--nnlp-olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nnlp-olive-border);
}

.nnlp-pf-text {
  font-size: clamp(0.84rem, 1.9vw, 0.88rem);
  color: var(--nnlp-text-2);
  line-height: 1.85;
  flex: 1;
}
.nnlp-pf-text strong {
  display: block;
  color: var(--nnlp-ink);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 0.92rem;
  font-family: var(--nnlp-font-serif);
  letter-spacing: 0.04em;
}


/* ================================================================
   13. Theme List / Elements Grid — グリッドカード
   ================================================================ */
.nnlp-theme-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0;
}

.nnlp-theme-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--nnlp-bg-card);
  border: 1px solid var(--nnlp-border);
  border-radius: var(--nnlp-radius-sm);
  font-size: 0.85rem;
  color: var(--nnlp-ink);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s var(--nnlp-ease);
}
.nnlp-theme-item:hover {
  background: var(--nnlp-olive-light);
  border-color: var(--nnlp-olive-border);
  transform: translateX(2px);
}
.nnlp-theme-ico {
  color: var(--nnlp-olive);
  font-size: 0.95rem;
  line-height: 1;
}

.nnlp-elements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin: 26px 0;
}

.nnlp-el-card {
  background: var(--nnlp-bg-card);
  border: 1px solid var(--nnlp-border);
  border-radius: var(--nnlp-radius-sm);
  padding: 20px 22px;
  transition:
    transform 0.25s var(--nnlp-ease),
    box-shadow 0.25s var(--nnlp-ease),
    border-color 0.25s;
}
.nnlp-el-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(138, 154, 62, 0.11);
  border-color: var(--nnlp-olive-border);
}

/* 各カードの見出しカラー */
.nnlp-el-card:nth-child(1) .nnlp-el-name { color: var(--nnlp-olive-deep); }
.nnlp-el-card:nth-child(2) .nnlp-el-name { color: var(--nnlp-gold-deep); }
.nnlp-el-card:nth-child(3) .nnlp-el-name { color: var(--nnlp-sage); }
.nnlp-el-card:nth-child(4) .nnlp-el-name { color: #7B7EC4; }

.nnlp-el-icon {
  font-size: 1.45rem;
  margin-bottom: 10px;
  display: block;
}
.nnlp-el-name {
  font-family: var(--nnlp-font-serif);
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}
.nnlp-el-desc {
  font-size: 0.79rem;
  color: var(--nnlp-text-2);
  line-height: 1.8;
}


/* ================================================================
   14. Voice Cards — 4色価値カード
   ================================================================ */
.nnlp-voice-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 26px 0;
}

.nnlp-vc-card {
  padding: 18px 20px;
  border-radius: var(--nnlp-radius-sm);
  border: 1px solid;
  transition: transform 0.25s var(--nnlp-ease), box-shadow 0.25s var(--nnlp-ease);
}
.nnlp-vc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.nnlp-vc-card:nth-child(1) { background: var(--nnlp-olive-light); border-color: var(--nnlp-olive-border); }
.nnlp-vc-card:nth-child(2) { background: var(--nnlp-gold-light);  border-color: var(--nnlp-gold-border); }
.nnlp-vc-card:nth-child(3) { background: var(--nnlp-sage-light);  border-color: var(--nnlp-sage-border); }
.nnlp-vc-card:nth-child(4) { background: #F1EEE0;                border-color: #D6CFB1; }

.nnlp-vc-title {
  font-family: var(--nnlp-font-serif);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--nnlp-ink);
  margin-bottom: 9px;
  letter-spacing: 0.04em;
}
.nnlp-vc-text {
  font-size: 0.79rem;
  color: var(--nnlp-text-2);
  line-height: 1.85;
}


/* ================================================================
   15. Table — 比較表（白抜き問題完全解消）
   ================================================================ */
.nnlp-table-wrap {
  overflow-x: auto;
  margin: 26px 0;
  border-radius: var(--nnlp-radius);
  border: 1px solid var(--nnlp-border);
  background: var(--nnlp-bg-card);
  -webkit-overflow-scrolling: touch;
}

.nnlp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  background: transparent !important;
}

.nnlp-table thead tr {
  background: var(--nnlp-olive-light) !important;
}

.nnlp-table thead th {
  background: var(--nnlp-olive-light) !important;
  color: var(--nnlp-olive-deep);
  padding: 13px 18px;
  text-align: left;
  font-family: var(--nnlp-font-serif);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  border-bottom: 1px solid var(--nnlp-olive-border);
  vertical-align: top;
}

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

.nnlp-table tbody tr {
  transition: background 0.15s;
}
.nnlp-table tbody tr:hover td {
  background: rgba(201, 166, 107, 0.08) !important;
}

.nnlp-td-head {
  font-family: var(--nnlp-font-serif);
  font-weight: 600;
  color: var(--nnlp-ink) !important;
  white-space: nowrap;
}


/* ================================================================
   16. Contact / CTA
   ================================================================ */
.nnlp-contact-wrap {
  margin: 30px 0 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(201,166,107,0.10) 0%, transparent 70%),
    linear-gradient(135deg, var(--nnlp-olive-light) 0%, var(--nnlp-gold-light) 100%);
  border: 1px solid var(--nnlp-olive-border);
  border-radius: var(--nnlp-radius);
  padding: clamp(28px, 5vw, 38px) clamp(22px, 4vw, 32px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nnlp-contact-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--nnlp-gold) 50%, transparent 100%);
  opacity: 0.7;
}

.nnlp-contact-title {
  font-family: var(--nnlp-font-serif);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  font-weight: 700;
  color: var(--nnlp-ink);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.nnlp-contact-text {
  font-size: clamp(0.82rem, 1.9vw, 0.86rem);
  color: var(--nnlp-text-2);
  line-height: 1.95;
  margin-bottom: 22px;
}

/* CTAボタン本体 */
.nnlp-cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nnlp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 32px;
  background: var(--nnlp-olive); /* 既定値（CTA color が未設定の時） */
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none !important;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 6px 18px rgba(138, 154, 62, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    background 0.3s var(--nnlp-ease),
    transform 0.3s var(--nnlp-ease),
    box-shadow 0.3s var(--nnlp-ease),
    filter 0.3s var(--nnlp-ease);
  font-family: var(--nnlp-font-sans);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

/* シマー */
.nnlp-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.7s var(--nnlp-ease);
  pointer-events: none;
}

.nnlp-cta-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 10px 26px rgba(138, 154, 62, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.nnlp-cta-btn:hover::before { left: 130%; }

.nnlp-cta-btn:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.nnlp-cta-btn__label { position: relative; z-index: 1; }
.nnlp-cta-btn__arrow {
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--nnlp-ease);
}
.nnlp-cta-btn:hover .nnlp-cta-btn__arrow {
  transform: translateX(4px);
}

.nnlp-cta-btn__sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--nnlp-muted);
  margin: 4px 0 0;
}


/* ================================================================
   17. Closing — クロージング
   ================================================================ */
.nnlp-closing {
  padding: clamp(48px, 8vw, 70px) 0 clamp(36px, 7vw, 50px);
  text-align: center;
  border-top: 1px solid var(--nnlp-border);
  margin-top: 30px;
}

.nnlp-closing-ornament {
  font-size: 1rem;
  color: var(--nnlp-olive);
  opacity: 0.6;
  letter-spacing: 0.6em;
  margin-bottom: 22px;
}

.nnlp-closing-quote {
  font-family: var(--nnlp-font-serif);
  font-size: clamp(1.05rem, 3vw, 1.28rem);
  font-weight: 600;
  color: var(--nnlp-ink);
  line-height: 2.15;
  margin-bottom: 26px;
  letter-spacing: 0.05em;
}

.nnlp-closing-sig {
  font-size: 0.77rem;
  color: var(--nnlp-muted);
  letter-spacing: 0.1em;
}
.nnlp-closing-sig em {
  font-style: normal;
  color: var(--nnlp-olive-deep);
  font-family: var(--nnlp-font-serif);
  font-weight: 500;
  margin-right: 2px;
}


/* ================================================================
   18. レスポンシブ — タブレット（768px〜）
   ================================================================ */
@media (min-width: 768px) {

  #nnlp-root {
    --nnlp-container-max: 780px;
  }

  .nnlp-main {
    padding-top: clamp(2.5rem, 5vw, 4rem);
  }

  /* Profile Hero: 横並び（写真 + 情報） */
  .nnlp-profile-wrap {
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
    text-align: left;
  }
  .nnlp-profile-info {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
  .nnlp-profile-badges,
  .nnlp-tags { justify-content: flex-start; }

  /* Journey: 横並び 3カラム */
  .nnlp-journey-wrap {
    flex-direction: row;
  }
  .nnlp-journey-step {
    padding: 24px 16px;
  }
  .nnlp-journey-step:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid var(--nnlp-border);
  }
  .nnlp-journey-step:not(:last-child)::after {
    content: '›';
    right: -10px;
    top: 50%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    background: transparent;
    width: auto;
    height: auto;
  }

  /* グリッド類: 2カラム化 */
  .nnlp-theme-list { grid-template-columns: 1fr 1fr; }
  .nnlp-elements-grid { grid-template-columns: 1fr 1fr; }
  .nnlp-voice-cards { grid-template-columns: 1fr 1fr; }
}


/* ================================================================
   19. レスポンシブ — デスクトップ（1024px〜）
   ================================================================ */
@media (min-width: 1024px) {

  .nnlp-profile-wrap {
    gap: 44px;
  }
  .nnlp-photo-outer {
    width: 178px;
    height: 178px;
  }

  .nnlp-stance-box {
    padding: 34px 38px 30px;
  }

  /* hover 強度を少しだけ強める */
  .nnlp-el-card:hover {
    box-shadow: 0 14px 34px rgba(138, 154, 62, 0.14);
  }
}


/* ================================================================
   20. アクセシビリティ — reduced motion 対応
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .nnlp-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .nnlp-photo-ring { animation: none !important; }
  .nnlp-photo-leaf { animation: none !important; }
}


/* ================================================================
   21. プリント対応
   ================================================================ */
@media print {
  #nnlp-root { background: #ffffff !important; }
  .nnlp-cta-btn,
  .nnlp-photo-leaf,
  .nnlp-photo-ring { display: none !important; }
  .nnlp-reveal { opacity: 1 !important; transform: none !important; }
}
