/* =====================================================
   数命占術テーマ — MUJI 原則 × Mystic Palette
   - ミニマリズム：装飾を排し、余白で語る
   - line-height: 1.6 で全要素統一
   - 影・グラデーションなし（ヒーローのみ占い表情で例外）
   - 角丸：ボタン 4px、カード 0px、入力 0px
   - テキスト #1b0d36（純黒は使わない）
   - 配色は紫×ピンク×ゴールドを維持
   ===================================================== */

:root {
    /* Palette（占い配色は引き継ぎ） */
    --c-violet-900: #1b0d36;
    --c-violet-800: #2a1654;
    --c-violet-700: #3d1e7a;
    --c-violet-500: #6b46c1;
    --c-violet-400: #8b5cf6;
    --c-violet-300: #a78bfa;
    --c-pink-500:   #ec4899;
    --c-pink-300:   #f9a8d4;
    --c-gold-500:   #d4af37;
    --c-gold-300:   #f0d97e;
    --c-cream:      #fbf6ef;  /* MUJI のきなり相当 */
    --c-paper:      #ffffff;
    --c-text:       #3c3c43;  /* MUJI 流の暗いグレー */
    --c-text-deep:  #1b0d36;  /* 強調用の深紫 */
    --c-text-soft:  #6d6d72;
    --c-text-muted: #9d9da0;
    --c-line:       #d8d8d9;
    --c-line-soft:  #ebebec;
    --c-bg-soft:    #f5f5f5;

    /* Spacing scale (MUJI 12段階) */
    --sp-xxxxs: 4px;
    --sp-xxxs:  8px;
    --sp-xxs:   12px;
    --sp-xs:    16px;
    --sp-s:     20px;
    --sp-sm:    24px;
    --sp-m:     32px;
    --sp-ml:    40px;
    --sp-l:     48px;
    --sp-xl:    56px;
    --sp-xxl:   64px;
    --sp-xxxl:  80px;
    --sp-xxxxl: 96px;

    /* Radii — MUJI はシャープ */
    --r-input: 0;
    --r-card:  0;
    --r-btn:   4px;
    --r-pill:  999px;

    /* Fonts — 全体を明朝体に統一（占いらしい静謐さ） */
    --f-base:     "Shippori Mincho B1", "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", serif;
    --f-jp:       "Shippori Mincho B1", "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", serif;
    --f-jp-serif: "Shippori Mincho B1", "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", serif;

    --ease: cubic-bezier(.32, .48, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
    font-family: var(--f-base);
    font-weight: 400;
    color: var(--c-text);
    background: var(--c-paper);
    font-size: 16px;
    line-height: 1.85; /* 明朝体は行間少し広めに */
    letter-spacing: .03em;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--c-violet-500); color: #fff; }

a {
    color: var(--c-violet-700);
    text-decoration: none;
    transition: color .25s var(--ease);
}
a:hover { color: var(--c-pink-500); text-decoration: underline; }
img, svg { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
    font-family: var(--f-base);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: normal;
    margin: 0 0 var(--sp-xs);
    color: var(--c-text-deep);
}
h3 { line-height: 1.15; letter-spacing: 2.4px; }

p { margin: 0 0 var(--sp-xs); line-height: 1.6; }

.screen-reader-text {
    position: absolute !important; width: 1px; height: 1px;
    overflow: hidden; clip: rect(1px,1px,1px,1px);
}
.skip-link { position: absolute; left: -9999px; top: -9999px; }
.skip-link:focus {
    position: static; background: var(--c-violet-700); color: #fff;
    padding: var(--sp-xxs) var(--sp-xs);
}

/* =====================================================
   Header — MUJI 流のシンプルさ
   ===================================================== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--c-line);
    padding: var(--sp-xs) 0;
}
.site-header__inner {
    max-width: 1120px; margin: 0 auto;
    padding: 0 var(--sp-m);
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--sp-sm);
}
.site-title {
    font-family: var(--f-base);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text-deep);
    line-height: 1.6;
}
.site-tagline {
    margin: 0;
    font-size: 12px;
    color: var(--c-text-soft);
    line-height: 1.6;
}
.site-nav {
    display: flex; align-items: center; gap: var(--sp-sm);
    flex-wrap: nowrap; min-width: 0;
}
.site-nav__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: var(--sp-sm); flex-wrap: nowrap;
}
.site-nav__list a {
    color: var(--c-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}
.site-nav__list a:hover { color: var(--c-violet-700); text-decoration: none; }
.site-nav__cta {
    display: inline-flex; align-items: center;
    padding: 10px 20px;
    background: var(--c-text-deep);
    color: #fff !important;
    border-radius: var(--r-btn);
    font-size: 12px; font-weight: 700;
    line-height: 1;
    white-space: nowrap; flex-shrink: 0;
    transition: background .2s var(--ease);
}
.site-nav__cta:hover { background: var(--c-violet-700); text-decoration: none; }

/* Hamburger */
.site-nav__toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent; border: 0; padding: 0;
    cursor: pointer;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.site-nav__toggle-bar {
    display: block; width: 22px; height: 2px;
    background: var(--c-text-deep); border-radius: 1px;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
    .site-nav__list { display: none; }
    .site-nav__toggle { display: inline-flex; }
}
@media (max-width: 760px) {
    .site-header__inner { gap: var(--sp-xxs); padding: 0 var(--sp-xs); }
    .site-tagline { display: none; }
    .site-nav__cta { padding: 10px 14px; font-size: 11px; }
}

/* Drawer */
.site-drawer {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(27, 13, 54, .97);
    opacity: 0;
    transition: opacity .25s var(--ease);
}
.site-drawer.is-open { opacity: 1; }
.site-drawer__inner {
    max-width: 480px; margin: 0 auto; height: 100%;
    padding: var(--sp-xxl) var(--sp-m) var(--sp-m);
    display: flex; flex-direction: column;
    color: #fff;
}
.site-drawer__close {
    position: absolute; top: var(--sp-xs); right: var(--sp-xs);
    width: 44px; height: 44px;
    background: transparent; border: 1px solid rgba(255,255,255,.3);
    color: #fff; font-size: 18px; line-height: 1;
    border-radius: var(--r-btn); cursor: pointer;
}
.site-drawer__list { list-style: none; padding: 0; margin: 0; }
.site-drawer__list li { border-bottom: 1px solid rgba(255,255,255,.12); }
.site-drawer__list a {
    display: block; color: #fff;
    font-size: 16px; font-weight: 700;
    padding: var(--sp-xs) 0;
    line-height: 1.6;
}
.site-drawer__list a:hover { text-decoration: none; color: var(--c-gold-300); }
.site-drawer__cta {
    display: inline-block;
    margin: var(--sp-m) auto 0;
    padding: 10px 24px;
    background: #fff; color: var(--c-text-deep) !important;
    border-radius: var(--r-btn);
    font-size: 12px; font-weight: 700;
    text-align: center;
}

/* =====================================================
   Layout — MUJI のゆったり構成
   ===================================================== */
.site-main { padding: 0; min-height: 50vh; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 var(--sp-m); }
.container--with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: var(--sp-xxl);
}
@media (max-width: 960px) {
    .container--with-sidebar { grid-template-columns: 1fr; gap: var(--sp-m); }
}
.content-area { min-width: 0; }
.content-area--page { max-width: 820px; margin: 0 auto; }

/* =====================================================
   Hero — きなり背景 + 月 + 占いテイスト最小限
   ===================================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--c-cream);
    color: var(--c-text-deep);
    padding: var(--sp-xxxxl) 0 var(--sp-xxxl);
    isolation: isolate;
}
/* 月モチーフ — 控えめに右上 */
.hero::after {
    content: ""; position: absolute;
    top: 10%; right: -3%;
    width: clamp(160px, 22vw, 280px);
    height: clamp(160px, 22vw, 280px);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%, #fff8dc 0%, #f0d97e 40%, #d4af37 75%, #b8941f 100%);
    z-index: 0;
    opacity: .35;
}
.hero__inner {
    position: relative; z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--sp-m);
}
.hero__eyebrow { display: none; }
.hero__title {
    font-family: var(--f-jp-serif);
    font-size: clamp(28px, 4.6vw, 48px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: normal;
    margin: 0 0 var(--sp-sm);
    color: var(--c-text-deep);
}
.hero__title em {
    font-style: normal;
    color: var(--c-violet-700);
}
.hero__lead {
    font-family: var(--f-base);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--c-text);
    max-width: 640px;
    margin: 0 0 var(--sp-m);
}
.hero__cta {
    display: inline-flex; align-items: center;
    padding: 12px 28px;
    font-family: var(--f-base);
    font-size: 14px; font-weight: 700;
    background: var(--c-text-deep);
    color: #fff !important;
    border-radius: var(--r-btn);
    transition: background .2s var(--ease);
    letter-spacing: normal;
}
.hero__cta::after { content: " →"; }
.hero__cta:hover { background: var(--c-violet-700); color: #fff !important; text-decoration: none; }
.hero__display, .hero__moon, .hero__curve { display: none; }

/* =====================================================
   Sections — 余白で語る
   ===================================================== */
.section {
    padding: var(--sp-xxxl) 0;
    background: var(--c-paper);
}
.section--cream { background: var(--c-cream); }
.section--dark {
    background: var(--c-text-deep);
    color: #fff;
}
.section--dark :is(h1, h2, h3, h4) { color: #fff; }
.section--dark a { color: var(--c-gold-300); }
.section__inner { max-width: 1120px; margin: 0 auto; padding: 0 var(--sp-m); }
.section__head { margin-bottom: var(--sp-l); }
.section__eyebrow { display: none !important; }
.section__title {
    font-family: var(--f-jp-serif);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: normal;
    margin: 0 0 var(--sp-xs);
    color: var(--c-text-deep);
}
.section--dark .section__title { color: #fff; }
.section__title--jp { font-family: var(--f-jp-serif); }
.section__lead {
    font-size: 16px; line-height: 1.6;
    color: var(--c-text);
    max-width: 720px;
}
.section--dark .section__lead { color: rgba(255,255,255,.85); }

/* =====================================================
   Post card — シンプルなボックス、影なし
   ===================================================== */
.post-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
}
@media (min-width: 760px) {
    .post-list--grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--sp-sm);
    }
}
.post-card {
    background: var(--c-paper);
    border: 1px solid var(--c-line-soft);
    border-radius: var(--r-card);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: border-color .2s var(--ease);
}
.post-card:hover { border-color: var(--c-violet-500); }
.post-list--grid .post-card { grid-template-columns: 1fr; }
@media (max-width: 600px) { .post-card { grid-template-columns: 1fr; } }
.post-card__thumb { position: relative; overflow: hidden; }
.post-card__thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.post-list--grid .post-card__thumb { aspect-ratio: 16/10; }
.post-card__body { padding: var(--sp-sm); }
.post-card__title {
    margin: 0 0 var(--sp-xxs);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}
.post-card__title a { color: var(--c-text-deep); }
.post-card__title a:hover { color: var(--c-violet-700); text-decoration: none; }
.post-card__meta {
    color: var(--c-text-soft);
    font-size: 12px; font-weight: 400;
    line-height: 1.6;
    display: flex; gap: var(--sp-xs); align-items: center;
    margin-bottom: var(--sp-xxs);
}
.post-card__cat {
    background: var(--c-cream); color: var(--c-text-deep);
    padding: 2px 8px; border-radius: 0;
    font-size: 11px; font-weight: 700;
}
.post-card__excerpt {
    margin: 0; color: var(--c-text-soft);
    font-size: 14px; font-weight: 400; line-height: 1.6;
}

/* =====================================================
   Single / Page
   ===================================================== */
.single-post, .single-page {
    background: var(--c-paper);
    padding: clamp(var(--sp-m), 4.5vw, var(--sp-xl));
    border-radius: var(--r-card);
    border: 1px solid var(--c-line-soft);
}
@media (max-width: 600px) {
    .single-post, .single-page {
        padding: var(--sp-sm) var(--sp-xs);
        border-left: 0; border-right: 0;
    }
}
.single-post__header, .single-page__header {
    margin-bottom: var(--sp-m);
    padding-bottom: var(--sp-sm);
    border-bottom: 1px solid var(--c-line);
}
.single-post__title, .single-page__title {
    margin: 0 0 var(--sp-xs);
    font-family: var(--f-jp-serif);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: normal;
    color: var(--c-text-deep);
}
.single-post__meta {
    color: var(--c-text-soft);
    font-size: 13px; font-weight: 400;
    display: flex; gap: var(--sp-xs);
    line-height: 1.6;
}
.single-post__thumb {
    margin: 0 0 var(--sp-m);
    border-radius: var(--r-card); overflow: hidden;
}
.single-post__body { font-size: 16px; line-height: 1.6; }
.single-post__body :is(h2, h3, h4) {
    margin-top: var(--sp-l);
    margin-bottom: var(--sp-xs);
}
.single-post__body h2 {
    font-family: var(--f-jp-serif);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--c-text-deep);
    padding-bottom: var(--sp-xxs);
    border-bottom: 1px solid var(--c-line);
}
.single-post__body h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 2.4px;
    color: var(--c-text-deep);
}
.single-post__body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text-deep);
    line-height: 1.6;
}
.single-post__body p { margin: var(--sp-xs) 0; line-height: 1.6; }
.single-post__body blockquote {
    border-left: 2px solid var(--c-violet-500);
    background: var(--c-cream);
    margin: var(--sp-m) 0;
    padding: var(--sp-xs) var(--sp-sm);
}
.single-post__tags {
    list-style: none; margin: var(--sp-m) 0 0; padding: 0;
    display: flex; gap: var(--sp-xxs); flex-wrap: wrap;
}
.single-post__tags a {
    background: var(--c-cream);
    color: var(--c-text-deep);
    padding: 4px 12px;
    border-radius: 0;
    font-size: 13px; font-weight: 400;
    border: 1px solid var(--c-line-soft);
}
.single-post__nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xs);
    margin-top: var(--sp-m); padding-top: var(--sp-m);
    border-top: 1px solid var(--c-line);
}
.single-post__nav a {
    display: block;
    padding: var(--sp-xs) var(--sp-sm);
    background: var(--c-cream);
    border-radius: var(--r-card);
    font-size: 14px; font-weight: 400;
    color: var(--c-text-deep);
    line-height: 1.6;
}
.single-post__nav a:hover { background: var(--c-text-deep); color: #fff; text-decoration: none; }
.single-post__nav .next { text-align: right; }

/* =====================================================
   Sidebar
   ===================================================== */
.sidebar { font-size: 14px; line-height: 1.6; }
.sidebar .widget {
    background: var(--c-paper);
    padding: var(--sp-sm);
    border: 1px solid var(--c-line-soft);
    border-radius: var(--r-card);
    margin-bottom: var(--sp-sm);
}
.sidebar .widget__title {
    font-size: 16px; font-weight: 700;
    margin: 0 0 var(--sp-xs);
    padding-bottom: var(--sp-xxs);
    border-bottom: 1px solid var(--c-line);
    line-height: 1.6;
}
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li {
    padding: var(--sp-xxs) 0;
    border-bottom: 1px solid var(--c-line-soft);
    line-height: 1.6;
}
.sidebar li:last-child { border-bottom: 0; }
.sidebar a { color: var(--c-text); }
.sidebar a:hover { color: var(--c-violet-700); text-decoration: none; }

/* =====================================================
   Archive
   ===================================================== */
.archive-header { margin-bottom: var(--sp-m); }
.archive-title {
    font-family: var(--f-jp-serif);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: normal;
    margin: 0;
    color: var(--c-text-deep);
}
.archive-description {
    margin: var(--sp-xs) 0 0;
    color: var(--c-text-soft);
    max-width: 720px;
    line-height: 1.6;
}

/* =====================================================
   Breadcrumb
   ===================================================== */
.breadcrumb {
    margin: 0 0 var(--sp-m);
    font-size: 13px;
    color: var(--c-text-soft);
    line-height: 1.6;
}
.breadcrumb__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-xxs);
}
.breadcrumb__item { display: inline-flex; align-items: center; gap: var(--sp-xxs); }
.breadcrumb__item + .breadcrumb__item::before {
    content: "/"; color: var(--c-text-muted); margin-right: var(--sp-xxxs);
}
.breadcrumb__item a { color: var(--c-text-soft); }
.breadcrumb__item a:hover { color: var(--c-violet-700); text-decoration: none; }
.breadcrumb__item--current {
    color: var(--c-text-deep);
    max-width: 30ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* =====================================================
   Pagination
   ===================================================== */
.pagination {
    margin: var(--sp-m) 0 var(--sp-xs);
    display: flex; justify-content: center; gap: var(--sp-xxxs); flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px;
    background: var(--c-paper);
    border: 1px solid var(--c-line);
    color: var(--c-text-deep);
    font-size: 14px; font-weight: 400;
    line-height: 1.6;
    border-radius: var(--r-btn);
    transition: all .2s var(--ease);
}
.pagination a:hover {
    background: var(--c-text-deep); color: #fff;
    border-color: var(--c-text-deep); text-decoration: none;
}
.pagination .current {
    background: var(--c-text-deep); color: #fff; border-color: var(--c-text-deep);
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
    background: var(--c-text-deep);
    color: rgba(255,255,255,.75);
    padding: var(--sp-xxl) var(--sp-m) var(--sp-m);
    margin-top: 0;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--c-gold-300); text-decoration: none; }
.site-footer__inner {
    max-width: 1120px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
    gap: var(--sp-sm);
}
.site-footer__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: var(--sp-sm); flex-wrap: wrap; justify-content: center;
}
.site-footer__list a { font-size: 14px; font-weight: 400; }
.site-footer__brand {
    text-align: center; padding-bottom: var(--sp-sm);
    border-bottom: 1px solid rgba(255,255,255,.12);
    width: 100%; max-width: 480px;
}
.site-footer__title {
    display: block;
    font-family: var(--f-jp-serif);
    font-size: 20px; font-weight: 700;
    color: #fff;
    line-height: 1.6;
}
.site-footer__sub { display: none; }
.site-footer__copyright {
    font-size: 12px; font-weight: 400;
    margin: 0;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

/* =====================================================
   鑑定結果（MUJI ベース、ソウルナンバーは紫アクセント）
   ===================================================== */
.single-page--fortune { background: var(--c-paper); }

.sumei-fortune-result h2 {
    font-family: var(--f-jp-serif);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--c-text-deep);
    padding-bottom: var(--sp-xxs);
    border-bottom: 1px solid var(--c-line);
    margin-top: var(--sp-l);
}
.sumei-fortune-result h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 2.4px;
    color: var(--c-text-deep);
    margin-top: var(--sp-m);
}
.sumei-fortune-result h4 {
    font-size: 16px; font-weight: 700;
    line-height: 1.6;
    color: var(--c-text-deep);
    margin-top: var(--sp-sm);
}
.sumei-fortune-result .soulnum {
    display: block;
    font-family: var(--f-jp-serif);
    font-size: clamp(80px, 16vw, 160px);
    text-align: center;
    margin: var(--sp-xs) auto;
    font-weight: 700;
    line-height: 1;
    letter-spacing: normal;
    color: var(--c-violet-700);
}
.sumei-fortune-result .soulnum::before,
.sumei-fortune-result .soulnum::after { display: none; }
.sumei-fortune-result .sum {
    display: inline-block;
    padding: 0 8px;
    background: var(--c-cream);
    color: var(--c-text-deep);
    font-weight: 700;
}

.sumei-fortune-result img.graf {
    border-radius: 0;
    display: block; margin: var(--sp-m) auto;
    border: 1px solid var(--c-line-soft);
}

.sumei-fortune-result ul.flow {
    list-style: none;
    margin: var(--sp-m) 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 2px;
}
.sumei-fortune-result ul.flow li {
    background: var(--c-cream);
    border-radius: 0;
    padding: 8px 4px;
    text-align: center;
    font-size: 13px; font-weight: 400;
    line-height: 1.4;
    color: var(--c-text);
    border: 1px solid var(--c-line-soft);
}
.sumei-fortune-result ul.flow li span {
    display: block; font-size: 11px;
    color: var(--c-text-soft);
}
.sumei-fortune-result ul.flow li.age {
    background: var(--c-violet-700); color: #fff;
    border-color: var(--c-violet-700);
    font-weight: 700;
}
.sumei-fortune-result ul.flow li.age span { color: rgba(255,255,255,.85); }
.sumei-fortune-result ul.flow li.hidden { visibility: hidden; }
.sumei-fortune-result ul.flow li.empty {
    background: transparent; border-color: transparent;
}

/* シェア・もう一度・エラー */
.sumei-fortune-share {
    display: flex; gap: 8px; flex-wrap: wrap; margin: var(--sp-xs) 0 var(--sp-m);
}
.sumei-fortune-share__btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 10px 20px;
    border-radius: var(--r-btn);
    font-size: 12px; font-weight: 700;
    line-height: 1;
    border: 0; cursor: pointer; text-decoration: none;
    transition: opacity .2s var(--ease);
    letter-spacing: normal;
}
.sumei-fortune-share__btn:hover { opacity: .85; text-decoration: none; }
.sumei-fortune-share__btn--x    { background: #000; color: #fff; }
.sumei-fortune-share__btn--fb   { background: #1877f2; color: #fff; }
.sumei-fortune-share__btn--line { background: #06c755; color: #fff; }
.sumei-fortune-share__btn--copy { background: var(--c-violet-700); color: #fff; }

.sumei-fortune-again { text-align: center; margin: var(--sp-l) 0 var(--sp-xs); }
.sumei-fortune-again__link {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--c-text-deep);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: var(--r-btn);
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: background .2s var(--ease);
}
.sumei-fortune-again__link:hover { background: var(--c-violet-700); color: #fff !important; text-decoration: none; }

.sumei-fortune-cta { text-align: center; margin: var(--sp-m) 0; }
.sumei-fortune-cta__link {
    display: inline-block; padding: 12px 28px;
    background: var(--c-text-deep); color: #fff !important;
    border-radius: var(--r-btn);
    text-decoration: none;
    font-size: 14px; font-weight: 700;
}
.sumei-fortune-cta__link:hover { background: var(--c-violet-700); color: #fff !important; text-decoration: none; }

.sumei-fortune-error {
    background: var(--c-cream);
    border-left: 2px solid var(--c-pink-500);
    padding: var(--sp-xs) var(--sp-sm);
    margin: var(--sp-sm) 0;
}

/* Reveal */
[data-reveal] {
    opacity: 0; transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Comments */
.comments-area {
    margin-top: var(--sp-m); padding-top: var(--sp-m);
    border-top: 1px solid var(--c-line);
}
.comments-title { font-size: 18px; font-weight: 700; margin-bottom: var(--sp-sm); line-height: 1.6; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list .comment {
    background: var(--c-cream);
    padding: var(--sp-xs) var(--sp-sm);
    margin-bottom: var(--sp-xs);
    border-radius: var(--r-card);
}

/* Search form */
.search-form { display: flex; gap: var(--sp-xxxs); margin: var(--sp-xs) 0; }
.search-form input[type="search"] {
    flex: 1; padding: 10px 12px;
    border: 1px solid var(--c-line);
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
    border-radius: var(--r-input);
}
.search-form button {
    background: var(--c-text-deep); color: #fff; border: 0;
    padding: 0 var(--sp-sm);
    font-size: 12px; font-weight: 700;
    cursor: pointer;
    border-radius: var(--r-btn);
}
