    /* ══════════════════════════════
       NANO SKIN NEEDLE PAGE
       クラス名はすべて nn- プレフィックス
       テーマ：ブラック × ゴールド
    ══════════════════════════════ */
    :root {
      --nn-gold-50:   #fffdf0;
      --nn-gold-100:  #fef7cc;
      --nn-gold-200:  #fae88a;
      --nn-gold-300:  #f5d44a;
      --nn-gold-400:  #d4aa00;
      --nn-gold-500:  #b08800;
      --nn-black:     #0d0d0d;
      --nn-dark:      #1a1a1a;
      --nn-dark2:     #242424;
      --nn-cream:     #f8f5ec;
      --nn-text-light:#e8e0c8;
      --nn-text-mid:  #c8b878;
      --nn-text-pale: #8a7a50;
    }

    body.nano-page {
      background: var(--nn-black);
      color: var(--nn-text-light);
    }

    /* ══ HERO ══ */
    .nn-hero {
      background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0a0a0a 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0 70px;
      border-bottom: 1px solid rgba(212,170,0,0.3);
    }
    /* ゴールドの光彩 */
    .nn-hero::before {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,170,0,0.12) 0%, transparent 65%);
      top: -250px; right: -200px;
      pointer-events: none;
    }
    .nn-hero::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,170,0,0.07) 0%, transparent 70%);
      bottom: -150px; left: -100px;
      pointer-events: none;
    }

    .nn-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.85rem;
      letter-spacing: 0.32em;
      color: var(--nn-gold-400);
      text-transform: uppercase;
      margin-bottom: 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .nn-hero-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 20px;
    }
    .nn-hero-title span { color: var(--nn-gold-300); }
    .nn-hero-lead {
      font-size: 1.0rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.8;
      max-width: 480px;
      margin-bottom: 14px;
    }
    .nn-hero-lead em { color: var(--nn-gold-300); font-style: normal; font-weight: 700; }
    .nn-hero-desc {
      font-size: 0.87rem;
      line-height: 1.95;
      color: var(--nn-text-light);
      max-width: 460px;
      margin-bottom: 26px;
      opacity: 0.85;
    }
    .nn-hero-note {
      font-size: 0.72rem;
      color: var(--nn-text-pale);
      margin-top: 8px;
    }
    /* ── Badge (古いスタイル) ── */
    .nn-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(212,170,0,0.12);
      border: 1px solid rgba(212,170,0,0.4);
      color: var(--nn-gold-300);
      border-radius: 50px;
      padding: 5px 16px;
      font-size: 0.78rem;
      margin: 3px 3px 3px 0;
      letter-spacing: 0.05em;
    }
    .nn-badge i { font-size: 0.7rem; }

    /* ── Badge (新しいスタイル) ── */
    .nn-badges-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: stretch;
      margin-top: 1.5rem;
    }
    .nn-bb {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      background: var(--nn-dark2);
      border: 1px solid rgba(212,170,0,0.3);
      border-radius: 6px;
      padding: 12px 36px 11px;
      min-width: 140px;
    }
    .nn-bb .nn-bb-icon {
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nn-bb .nn-bb-icon svg {
      width: 16px;
      height: 16px;
      fill: var(--nn-gold-400);
    }
    .nn-bb .nn-bb-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--nn-text-light);
      letter-spacing: 0.1em;
      white-space: nowrap;
    }
    .nn-bb .nn-bb-sub {
      font-size: 9px;
      color: var(--nn-text-pale);
      letter-spacing: 0.1em;
      white-space: nowrap;
    }
    .nn-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(90deg, var(--nn-gold-500), var(--nn-gold-400));
      color: #0d0d0d;
      border-radius: 50px;
      padding: 13px 38px;
      font-size: 0.85rem;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 700;
      letter-spacing: 0.1em;
      transition: all 0.3s ease;
      box-shadow: 0 4px 24px rgba(212,170,0,0.35);
      margin-top: 18px;
      text-decoration: none;
    }
    .nn-btn:hover {
      background: linear-gradient(90deg, var(--nn-gold-400), var(--nn-gold-300));
      box-shadow: 0 6px 32px rgba(212,170,0,0.5);
      transform: translateY(-1px);
      color: #0d0d0d;
    }

    /* Hero photo frame */
    .nn-hero-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .nn-hero-frame {
      width: 300px; height: 375px;
      border-radius: 200px 200px 160px 160px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,170,0,0.15);
      background: linear-gradient(160deg, #2a2a1a, #1a1a0a);
      flex-shrink: 0;
      border: 1px solid rgba(212,170,0,0.25);
    }
    .nn-hero-frame img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .nn-img-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px;
      color: var(--nn-gold-400);
    }
    .nn-img-placeholder i { font-size: 2.2rem; opacity: 0.5; }
    .nn-img-placeholder span { font-size: 0.7rem; color: var(--nn-text-pale); letter-spacing: 0.1em; }

    .nn-float-tag {
      position: absolute;
      background: rgba(26,26,10,0.92);
      border: 1px solid rgba(212,170,0,0.4);
      border-radius: 16px;
      padding: 10px 18px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.5);
      font-size: 0.8rem;
      color: var(--nn-text-light);
      display: flex; align-items: center; gap: 7px;
      z-index: 3;
    }
    .nn-float-tag.tr { top: 16px; right: -10px; }
    .nn-float-tag.bl { bottom: 36px; left: -18px; }
    .nn-float-tag i { color: var(--nn-gold-400); font-size: 0.82rem; }

    /* ══ SECTION COMMON ══ */
    .nn-section { padding: 64px 0; }
    .nn-section.bg-dark  { background: var(--nn-dark); }
    .nn-section.bg-dark2 { background: var(--nn-dark2); }
    .nn-section.bg-black { background: var(--nn-black); }

    .nn-section-label {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.75rem;
      letter-spacing: 0.32em;
      color: var(--nn-gold-400);
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .nn-section-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.45rem;
      font-weight: 400;
      color: #fff;
      margin-bottom: 4px;
    }
    .nn-section-title::before {
      content: '';
      display: inline-block;
      width: 4px; height: 1.2em;
      background: var(--nn-gold-400);
      vertical-align: middle;
      margin-right: 12px;
      border-radius: 2px;
    }
    .nn-divider {
      width: 40px; height: 1px;
      background: rgba(212,170,0,0.35);
      margin: 14px 0 36px;
    }

    /* ── 特徴チップ ── */
    .nn-chip {
      display: inline-flex; align-items: center; gap: 6px;
      border: 1.5px solid rgba(212,170,0,0.35);
      border-radius: 50px;
      padding: 6px 22px;
      font-size: 0.88rem;
      color: var(--nn-gold-300);
      margin: 5px 4px;
      transition: all 0.2s;
      background: rgba(212,170,0,0.06);
    }
    .nn-chip i { font-size: 0.72rem; }
    .nn-chip:hover { background: rgba(212,170,0,0.15); border-color: var(--nn-gold-400); }
    .nn-note { font-size: 0.78rem; color: var(--nn-text-pale); margin-top: 12px; }
    .nn-note i { color: var(--nn-gold-400); margin-right: 4px; font-size: 0.75rem; }

    /* ── 特徴リスト ── */
    .nn-feat-list { list-style: none; padding: 0; margin: 0; }
    .nn-feat-list li {
      padding: 12px 0;
      font-size: 0.88rem;
      color: var(--nn-text-light);
      border-bottom: 1px solid rgba(212,170,0,0.12);
      display: flex; align-items: flex-start; gap: 10px;
      line-height: 1.75;
    }
    .nn-feat-list li:last-child { border-bottom: none; }
    .nn-feat-list i { color: var(--nn-gold-400); font-size: 0.85rem; flex-shrink: 0; margin-top: 3px; }

    /* ── セクション見出しバー（▶ スタイル） ── */
    .nn-bar-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nn-bar-title::before {
      content: '';
      display: inline-block;
      width: 0; height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 18px solid var(--nn-gold-400);
      flex-shrink: 0;
    }
    .nn-bar-title span { color: var(--nn-gold-300); }
    @media (max-width: 576px) {
      .nn-bar-title{
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
      }
      .nn-bar-title::before {
        display: none;
      }
    }

    /* ── CASE CARDS ── */
    .nn-case-card {
      background: var(--nn-dark2);
      border: 1px solid rgba(212,170,0,0.2);
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .nn-case-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212,170,0,0.1);
    }
    .nn-case-img {
      height: 220px;
      overflow: hidden;
      background: linear-gradient(135deg, #1a1a0d, #2a2a15);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .nn-case-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .nn-case-label {
      position: absolute;
      top: 10px; left: 10px;
      background: rgba(212,170,0,0.85);
      color: #0d0d0d;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px;
      letter-spacing: 0.05em;
    }
    .nn-case-body { padding: 20px 22px; }
    .nn-case-body p { font-size: 0.85rem; line-height: 1.85; color: var(--nn-text-light); margin: 0; opacity: 0.9; }

    /* Before/Afterアロー */
    .nn-arrow-row {
      display: flex; align-items: center; justify-content: center;
      padding: 8px 0;
      color: var(--nn-gold-400);
      font-size: 1.1rem;
      transform: rotate(90deg);
    }

    /* ── オプションカード（導入メニュー） ── */
    .nn-option-card {
      background: var(--nn-dark2);
      border: 1px solid rgba(212,170,0,0.25);
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .nn-option-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212,170,0,0.1);
    }
    .nn-option-img {
      height: 200px;
      overflow: hidden;
      background: linear-gradient(135deg, #1a1a0d, #2a2a15);
      display: flex; align-items: center; justify-content: center;
    }
    .nn-option-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .nn-option-body { padding: 22px 24px; }
    .nn-option-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--nn-gold-300);
      margin-bottom: 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .nn-option-title i { font-size: 0.9rem; }
    .nn-option-body p { font-size: 0.85rem; line-height: 1.85; color: var(--nn-text-light); margin: 0; opacity: 0.88; }
    .nn-option-tag {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(212,170,0,0.12);
      border: 1px solid rgba(212,170,0,0.3);
      color: var(--nn-gold-300);
      border-radius: 50px;
      padding: 3px 12px;
      font-size: 0.72rem;
      margin: 4px 3px 0 0;
    }

    /* ── STEPS ── */
    .nn-step-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 14px;
    }
    .nn-step-list li {
      padding: 12px 14px;
      font-size: 0.9rem;
      color: var(--nn-text-light);
      border: 1px solid rgba(212,170,0,0.2);
      border-radius: 12px;
      display: flex; align-items: flex-start; gap: 12px;
      background: rgba(255, 247, 229, 0.6);
    }
    .nn-step-list li:last-child { border-bottom: 1px solid rgba(212,170,0,0.2); }
    .nn-step-num {
      min-width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(212,170,0,0.15);
      color: var(--nn-gold-300);
      font-size: 0.75rem; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(212,170,0,0.3);
    }
    .nn-sico { color: var(--nn-gold-400); font-size: 0.85rem; width: 16px; text-align: center; flex-shrink: 0; }

    @media (max-width: 767.98px) {
      .nn-step-list { grid-template-columns: 1fr; }
    }

    .nn-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .nn-step-card { border-radius: 14px; overflow: hidden; }
    .nn-step-img {
      height: 110px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .nn-step-img.c1 { background: linear-gradient(135deg, #2a2510, #1e1c0c); }
    .nn-step-img.c2 { background: linear-gradient(135deg, #252210, #1a180a); }
    .nn-step-img.c3 { background: linear-gradient(135deg, #201e0e, #161508); }
    .nn-step-img.c4 { background: linear-gradient(135deg, #1c1a0c, #121108); }
    .nn-step-img.c5 { background: linear-gradient(135deg, #18160a, #0e0d06); }
    .nn-step-img.c6 { background: linear-gradient(135deg, #141208, #0c0b04); }
    .nn-step-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .nn-step-label {
      font-size: 0.7rem; color: var(--nn-text-pale);
      text-align: center; padding: 6px 4px;
      background: var(--nn-dark2);
    }
    .nn-step-label span {
      display: block; font-size: 0.64rem;
      color: var(--nn-gold-400);
      font-family: 'Cormorant Garamond', serif; font-style: italic;
    }

    /* ── FAQ ── */
    .nn-faq-item {
      background: var(--nn-dark2);
      border: 1px solid rgba(212,170,0,0.15);
      border-radius: 16px;
      padding: 24px 28px;
      margin-bottom: 14px;
    }
    .nn-faq-q {
      font-size: 0.9rem; font-weight: 500;
      color: #fff;
      margin-bottom: 10px;
      display: flex; align-items: flex-start; gap: 10px;
    }
    .nn-faq-q i { color: var(--nn-gold-400); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
    .nn-faq-a { font-size: 0.85rem; color: var(--nn-text-light); line-height: 1.85; margin: 0; padding-left: 26px; opacity: 0.88; }

    /* ── PRICE ── */
    .nn-price-card {
      background: linear-gradient(135deg, #1e1a08 0%, #2a240e 100%);
      border: 1.5px solid rgba(212,170,0,0.4);
      border-radius: 24px;
      padding: 48px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .nn-price-card::after {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,170,0,0.12), transparent 70%);
      bottom: -100px; right: -80px;
      pointer-events: none;
    }
    .nn-price-sublabel {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.9rem; color: var(--nn-gold-400);
      letter-spacing: 0.2em; margin-bottom: 4px;
    }
    .nn-price-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.5rem; font-weight: 600;
      color: #fff; margin-bottom: 20px;
    }
    .nn-price-tag {
      display: inline-block;
      background: var(--nn-gold-400);
      color: #0d0d0d;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 4px 18px;
      border-radius: 4px;
      margin-bottom: 14px;
      letter-spacing: 0.05em;
    }
    .nn-price-orig { font-size: 1rem; color: var(--nn-text-pale); text-decoration: line-through; margin-bottom: 6px; }
    .nn-price-main {
      font-family: 'Noto Serif JP', serif;
      font-size: 3.5rem; font-weight: 700;
      color: var(--nn-gold-300); line-height: 1.1; margin-bottom: 4px;
      text-shadow: 0 0 30px rgba(212,170,0,0.3);
    }
    .nn-price-main small { font-size: 1.2rem; font-weight: 400; color: var(--nn-text-light); }
    .nn-price-desc { font-size: 0.82rem; color: var(--nn-text-light); margin: 16px 0 0; line-height: 1.8; opacity: 0.85; }

    .nn-cta {
      background: linear-gradient(90deg, #0d0d0d 0%, #1a1a0a 100%);
      border: 1px solid rgba(212,170,0,0.4);
      padding: 26px 36px;
      border-radius: 16px;
      color: var(--nn-gold-300);
      font-size: 0.9rem; line-height: 1.7;
      text-align: center;
      margin-top: 28px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(212,170,0,0.1);
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .nn-cta i { font-size: 1rem; flex-shrink: 0; }

    /* ── ANIMATIONS ── */
    @keyframes nnFadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .nn-fu  { animation: nnFadeUp 0.7s ease both; }
    .nn-d1  { animation-delay: 0.1s; }
    .nn-d2  { animation-delay: 0.2s; }
    .nn-d3  { animation-delay: 0.3s; }
    .nn-d4  { animation-delay: 0.4s; }

    /* フッター文字色調整 */
    body.nano-page footer,
    body.nano-page .copy {
      background: #0a0a0a;
      border-top: 1px solid rgba(212,170,0,0.2);
    }

/* inline style moved from nanoskinneedle.html */
.nn-accent {
  color: var(--nn-gold-300);
}

.nn-case-lead {
  font-size: 0.88rem;
  color: var(--nn-text-mid);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.nn-case-img-tall {
  height: 260px;
}

.nn-price-orig-top {
  margin-top: 10px;
}

/* =========================================
   NANO SKIN NEEDLE - Light Theme Overrides
   ========================================= */
body.nano-page {
  --nn-black: #fffdf8;
  --nn-dark: #fff9f0;
  --nn-dark2: #fff4e6;
  --nn-text-light: #3b2f1d;
  --nn-text-mid: #8a6a2f;
  --nn-text-pale: #b58f49;
  background: var(--nn-black);
  color: var(--nn-text-light);
}

.nn-hero {
  background: linear-gradient(160deg, #fff9ef 0%, #fff2de 55%, #ffe9ce 100%);
  border-bottom: 1px solid rgba(212,170,0,0.25);
}

.nn-hero::before {
  background: radial-gradient(circle, rgba(212,170,0,0.18) 0%, transparent 68%);
}

.nn-hero::after {
  background: radial-gradient(circle, rgba(240,140,46,0.1) 0%, transparent 70%);
}

.nn-section.bg-dark,
.nn-section.bg-dark2,
.nn-section.bg-black {
  background: #fffaf2;
}

.nn-hero-title,
.nn-hero-lead,
.nn-section-title,
.nn-bar-title,
.nn-faq-q,
.nn-price-title {
  color: #2f2418;
}

.nn-hero-desc,
.nn-case-body p,
.nn-faq-a,
.nn-price-desc,
.nn-step-list li,
.nn-feat-list li,
.nn-placenta-points li {
  color: #5f4721;
  opacity: 1;
}

.nn-hero-frame,
.nn-case-card,
.nn-option-card,
.nn-placenta-card,
.nn-faq-item,
.nn-price-card {
  background: #fff;
  border-color: rgba(212,170,0,0.22);
  box-shadow: 0 6px 20px rgba(176,136,0,0.12);
}

.nn-float-tag {
  background: #fff;
  color: #5a431f;
  border-color: rgba(212,170,0,0.35);
}

.nn-case-header {
  background: #fff8eb;
}

.nn-step-label {
  background: #fff8eb;
}

.nn-cta {
  background: linear-gradient(90deg, #fff3dc 0%, #ffe8c0 100%);
  color: #5e4318;
  border-color: rgba(212,170,0,0.35);
  box-shadow: 0 6px 20px rgba(176,136,0,0.15);
}

body.nano-page footer,
body.nano-page .copy {
  background: #f6ead3;
  color: #6f5627;
  border-top: 1px solid rgba(212,170,0,0.25);
}

/* =========================================
   NANO SKIN NEEDLE - No Dark Background
   ========================================= */
body.nano-page,
.nn-hero,
.nn-section.bg-dark,
.nn-section.bg-dark2,
.nn-section.bg-black,
.nn-case-card,
.nn-option-card,
.nn-placenta-card,
.nn-faq-item,
.nn-price-card,
.nn-hero-frame,
.nn-float-tag,
.nn-step-label,
.nn-case-header,
.nn-cta,
body.nano-page footer,
body.nano-page .copy {
  background-color: #fffaf2;
}

.nn-hero {
  background-image: linear-gradient(160deg, #fffef8 0%, #fff6e8 55%, #ffeed8 100%);
}

.nn-hero-frame,
.nn-case-card,
.nn-option-card,
.nn-placenta-card,
.nn-faq-item,
.nn-price-card,
.nn-float-tag {
  border-color: rgba(212,170,0,0.3);
  box-shadow: 0 6px 20px rgba(176,136,0,0.12);
}

.nn-hero-title,
.nn-hero-lead,
.nn-section-title,
.nn-bar-title,
.nn-price-title,
.nn-faq-q {
  color: #2d2518;
}

.nn-hero-desc,
.nn-case-body p,
.nn-faq-a,
.nn-price-desc,
.nn-step-list li,
.nn-feat-list li,
.nn-placenta-points li,
.nn-note {
  color: #4f3e20;
  opacity: 1;
}

.nn-cta {
  background-image: linear-gradient(90deg, #fff3dc 0%, #ffe8c0 100%);
  color: #4f3a16;
  border-color: rgba(212,170,0,0.4);
}

/* no-dark additional overrides */
.nn-case-img,
.nn-option-img,
.nn-step-label,
.nn-case-header {
  background-color: #fff8eb;
}

.nn-step-img.c1,
.nn-step-img.c2,
.nn-step-img.c3,
.nn-step-img.c4,
.nn-step-img.c5,
.nn-step-img.c6 {
  background: linear-gradient(135deg, #fff5e4, #ffe9c9);
}

.nn-ba-date,
.nn-ba-date.right,
.nn-option-tag,
.nn-price-tag {
  background: #ffd27f;
  color: #3f2f14;
}

/* ensure dark gradients are removed */
.nn-hero-frame,
.nn-case-img,
.nn-option-img,
.nn-price-card,
.nn-placenta-card,
.nn-option-card,
.nn-faq-item {
  background-image: linear-gradient(135deg, #fff9ee, #ffefda);
}

.nn-float-tag,
.nn-step-label,
.nn-case-header {
  background-image: none;
}

/* footer color unified across all pages */
body.nano-page footer,
body.nano-page .copy {
  background: #0abab5;
  background-color: #0abab5;
  color: #fff;
  border-top: none;
}

/* =========================================
   NANO SKIN NEEDLE - Flow 5 Column
   ========================================= */
.nn-flow5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.nn-flow5-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f0e4bb 10%, #f0e4bb 90%, transparent);
  transform: translateY(-50%);
  z-index: 0;
}
.nn-flow5-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(24px);
  animation: nnFlow5FadeUp .55s ease forwards;
}
.nn-flow5-card:nth-child(1) { animation-delay: 0s; }
.nn-flow5-card:nth-child(2) { animation-delay: .1s; }
.nn-flow5-card:nth-child(3) { animation-delay: .2s; }
.nn-flow5-card:nth-child(4) { animation-delay: .3s; }
.nn-flow5-card:nth-child(5) { animation-delay: .4s; }
@keyframes nnFlow5FadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.nn-flow5-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #b8952a;
  background: #faf7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: #b8952a;
  margin-bottom: 18px;
  transition: background .3s, color .3s;
}
.nn-flow5-card-inner {
  background: #fffdf5;
  border: 1px solid rgba(184,149,42,.18);
  border-radius: 16px;
  padding: 28px 16px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 16px rgba(184,149,42,.07);
  transition: box-shadow .3s;
}
.nn-flow5-card:hover .nn-flow5-card-inner {
  box-shadow: 0 6px 28px rgba(184,149,42,.15);
}
.nn-flow5-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fffdf5;
  border: 1px solid #f0e4bb;
  box-shadow: 0 4px 20px rgba(184,149,42,0.15), inset 0 1px 0 rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.nn-flow5-card:hover .nn-flow5-icon-wrap {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 32px rgba(184,149,42,0.15), inset 0 1px 0 rgba(255,255,255,.9);
}
.nn-flow5-icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #b8952a;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nn-flow5-card:hover .nn-flow5-step-num {
  background: #b8952a;
  color: #fff;
}
.nn-flow5-step-title {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: .05em;
  color: #5a4a2a;
  margin-bottom: 6px;
}
.nn-flow5-step-label {
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 300;
  letter-spacing: .06em;
  line-height: 1.7;
  color: #8a7a5a;
}
@media (max-width: 900px) {
  .nn-flow5-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .nn-flow5-grid::before { display: none; }
  .nn-flow5-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 540px) {
  .nn-flow5-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .nn-flow5-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .nn-flow5-card-inner {
    flex-direction: row;
    text-align: left;
    padding: 18px 20px;
    gap: 16px;
  }
  .nn-flow5-icon-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
  }
  .nn-flow5-icon-wrap svg {
    width: 24px;
    height: 24px;
  }
  .nn-flow5-step-num { margin-bottom: 0; }
}

/* =========================================
   NANO SKIN NEEDLE - Content Enhancements
   ========================================= */
.nn-feature-hero {
  margin: 0 0 28px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(212,170,0,0.22);
  background: linear-gradient(135deg, #fffdf7 0%, #fff3dc 100%);
  box-shadow: 0 10px 32px rgba(176,136,0,0.08);
}
.nn-feature-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--nn-gold-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.nn-feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.55rem;
  line-height: 1.55;
  color: #2d2518;
  margin-bottom: 10px;
}
.nn-feature-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #5a4520;
  margin-bottom: 24px;
}
.nn-feature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.nn-feature-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(212,170,0,0.22);
  border-radius: 18px;
  padding: 20px 18px 18px;
}
.nn-feature-card-label {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff6df;
  color: var(--nn-gold-500);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 12px;
  border: 1px solid rgba(212,170,0,0.22);
}
.nn-feature-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: #2d2518;
  margin-bottom: 8px;
}
.nn-feature-card-text {
  font-size: 0.8rem;
  line-height: 1.8;
  color: #5a4520;
  margin: 0;
}

.nn-popular-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: -4px 0 20px;
}
.nn-popular-badge {
  display: inline-block;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff1c7;
  color: #5b430f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.nn-popular-text {
  margin: 0;
  font-size: 0.9rem;
  color: #4f3e20;
  line-height: 1.8;
}
.nn-rejuran-body p {
  margin-bottom: 14px;
}
.nn-rejuran-lead {
  font-size: 0.96rem;
  line-height: 1.85;
  color: #3b2f1d;
  font-weight: 600;
}
.nn-option-tags {
  margin-top: 16px;
}

.nn-placenta-card {
  background: #fff;
  border: 1px solid rgba(212,170,0,0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(176,136,0,0.12);
}
.nn-placenta-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,170,0,0.22);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #fff9ee, #ffefda);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(176,136,0,0.12);
}
.nn-placenta-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nn-placenta-body {
  padding: 28px 32px;
}
.nn-placenta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d2518;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nn-placenta-title i {
  color: var(--nn-gold-400);
}
.nn-placenta-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nn-placenta-points li {
  padding: 10px 0;
  font-size: 0.88rem;
  color: #4f3e20;
  border-bottom: 1px solid rgba(212,170,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nn-placenta-points li:last-child {
  border-bottom: none;
}
.nn-placenta-points i {
  color: var(--nn-gold-400);
  flex-shrink: 0;
}

.nn-booking-section {
  background: #5b430f;
}
.nn-booking-banner {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 56px 32px;
}
.nn-booking-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.nn-booking-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.63rem;
  letter-spacing: 0.45em;
  color: #f5d44a;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.nn-booking-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.38rem;
  font-weight: 300;
  color: #fffdf6;
  letter-spacing: 0.06em;
  line-height: 1.65;
  margin-bottom: 10px;
}
.nn-booking-sub {
  font-size: 0.75rem;
  color: #f6e6b2;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-bottom: 32px;
}
.nn-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 0;
  text-decoration: none;
  color: #5b430f;
  background: #fff7e3;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.nn-booking-btn:hover {
  color: #5b430f;
  background: #ffe7b1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.nn-booking-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #5b430f;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.nn-booking-btn:hover svg {
  transform: translateX(4px);
}
.nn-booking-btn-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.63rem;
  color: #f6e6b2;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .nn-feature-points {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .nn-feature-hero {
    padding: 22px 18px;
  }
  .nn-feature-title {
    font-size: 1.25rem;
  }
  .nn-booking-banner {
    padding: 40px 24px;
  }
  .nn-booking-title {
    font-size: 1.18rem;
  }
  .nn-booking-btn {
    padding: 16px 22px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }
  .nn-placenta-body {
    padding: 22px 20px;
  }
}

footer{
  margin-top: 0;
}