/* ============================================================
   東京 目黒・白金台の占いSONO — renovation2
   Design concept: 重ね和紙 「白い和紙に、ひと刷けの蘇芳」
   Layered washi sheets joined by torn edges. One pigment: suō.
   ============================================================ */

:root {
    /* 和の伝統色 */
    --shironeri: #fbf8f2;   /* 白練  — base paper */
    --gofun: #fffdf8;       /* 胡粉  — card paper */
    --sakuranezumi: #f1e6e3;/* 桜鼠  — warm wash sheet */
    --aijiro: #eef2f0;      /* 藍白  — one cool breath */
    --sumi: #2c2528;        /* 墨    — ink */
    --keshizumi: #6e6266;   /* 消炭  — muted ink */
    --suou: #8e354a;        /* 蘇芳  — the single pigment */
    --suou-fukai: #5f2236;  /* 深蘇芳 */
    --shuniku: #cf4944;     /* 朱肉  — seal only */
    --kincha: #b69356;      /* 金茶  — hairlines, flecks */

    --line: rgba(44, 37, 40, 0.13);
    --line-soft: rgba(44, 37, 40, 0.08);
    --kin-line: rgba(182, 147, 86, 0.45);

    --washi: url("washi-paper.webp");

    --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
    --sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --mx: 0;
    --my: 0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        linear-gradient(rgba(251, 248, 242, 0.84), rgba(251, 248, 242, 0.84)),
        var(--washi);
    background-color: var(--shironeri);
    background-size: auto, 480px 480px;
    color: var(--sumi);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 2.05;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; height: auto; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.55;
    margin: 0;
}

p { margin: 0; }

::selection { background: rgba(142, 53, 74, 0.16); }

:focus-visible {
    outline: 2px solid var(--suou);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ---------- utilities ---------- */

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: clamp(20px, 5vw, 48px);
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 120;
    transform: translateY(-160%);
    border: 1px solid var(--sumi);
    background: var(--gofun);
    padding: 10px 16px;
    font-size: 13px;
    transition: transform 0.3s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

/* 朱印 — the traveling vermillion seal */
.seal {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    background: var(--shuniku);
    color: var(--gofun);
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border-radius: 4px;
    transform: rotate(-3deg);
    box-shadow:
        inset 0 0 0 1.5px rgba(255, 253, 248, 0.55),
        inset 0 0 0 4px var(--shuniku),
        0 1px 2px rgba(44, 37, 40, 0.18);
    flex: none;
}

/* ---------- sheets (section backgrounds) ---------- */

.sheet { position: relative; }

.sheet--shironeri { background: transparent; }

.sheet--sakuranezumi {
    background:
        linear-gradient(rgba(241, 230, 227, 0.88), rgba(241, 230, 227, 0.88)),
        var(--washi);
    background-size: auto, 480px 480px;
}

.sheet--aijiro {
    background:
        linear-gradient(rgba(238, 242, 240, 0.88), rgba(238, 242, 240, 0.88)),
        var(--washi);
    background-size: auto, 480px 480px;
}

.sheet--gofun {
    background:
        linear-gradient(rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.92)),
        var(--washi);
    background-size: auto, 480px 480px;
}

/* ---------- torn washi seam (fibrous raster mask) ---------- */

:root {
    --sheet-shironeri: rgba(251, 248, 242, 0.86);
    --sheet-sakuranezumi: rgba(241, 230, 227, 0.88);
    --sheet-aijiro: rgba(238, 242, 240, 0.88);
    --sheet-gofun: rgba(255, 253, 248, 0.92);
    --seam-h: clamp(30px, 4.4vw, 56px);
}

.seam {
    position: relative;
    height: var(--seam-h);
    margin-top: -1px;
    z-index: 2;
    background:
        linear-gradient(var(--seam-bg, transparent), var(--seam-bg, transparent)),
        var(--washi);
    background-size: auto, 480px 480px;
}

.seam::before,
.seam::after {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-mask: url("torn-bottom.png") repeat-x left top / auto 100%;
    mask: url("torn-bottom.png") repeat-x left top / auto 100%;
}

.seam::before {
    background: rgba(44, 37, 40, 0.8);
    opacity: 0.13;
    transform: translateY(4px);
}

.seam::after {
    background:
        linear-gradient(var(--seam-paper), var(--seam-paper)),
        var(--washi);
    background-size: auto, 480px 480px;
}

/* fibrous fringe (dark fiber shadows + light highlights) riding along the torn edge */
.seam > .seam-fringe {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("torn-fringe.png") repeat-x left top / auto 100%;
}

.seam--flip > .seam-fringe {
    background-image: url("torn-fringe-top.png");
}

.seam--flip::before,
.seam--flip::after {
    -webkit-mask-image: url("torn-top.png");
    mask-image: url("torn-top.png");
}

.seam--flip::before { transform: translateY(-4px); }

.seam--overlap {
    margin-top: calc(var(--seam-h) * -1);
    background: none;
}

/* ---------- header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px clamp(20px, 4vw, 44px);
    background: rgba(251, 248, 242, 0.86);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
    backdrop-filter: blur(10px) saturate(1.05);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow 0.4s var(--ease);
}

.site-header[data-scrolled] {
    box-shadow: 0 10px 30px -18px rgba(44, 37, 40, 0.25);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.brand-place {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--keshizumi);
    border-left: 1px solid var(--line);
    padding-left: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.site-nav a {
    position: relative;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 9px 13px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 5px;
    height: 1px;
    background: var(--suou);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.site-nav a:last-child,
.site-nav a.nav-cta {
    margin-left: 10px;
    border: 1px solid var(--suou);
    color: var(--suou);
    border-radius: 999px;
    padding: 9px 20px;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.site-nav a:last-child::after,
.site-nav a.nav-cta::after { display: none; }

.site-nav a:last-child:hover,
.site-nav a:last-child:focus-visible,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
    background: var(--suou);
    color: var(--gofun);
}

.nav-button {
    display: none;
    position: relative;
    z-index: 70;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--gofun);
    cursor: pointer;
    padding: 0;
}

.nav-button span {
    position: absolute;
    left: 13px;
    right: 13px;
    height: 1.5px;
    background: var(--sumi);
    transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.nav-button span:nth-child(1) { top: 18px; }
.nav-button span:nth-child(2) { top: 25px; }

.nav-button.is-open span:nth-child(1) { top: 21px; transform: rotate(24deg); }
.nav-button.is-open span:nth-child(2) { top: 21px; transform: rotate(-24deg); }

/* ---------- buttons ---------- */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 12px 32px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.12em;
    transition: background 0.3s var(--ease), color 0.3s var(--ease),
        border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.button.primary {
    background: var(--suou);
    color: var(--gofun);
    border: 1px solid var(--suou);
}

.button.primary:hover,
.button.primary:focus-visible {
    background: var(--suou-fukai);
    border-color: var(--suou-fukai);
    transform: translateY(-1px);
}

.button.ghost {
    border: 1px solid rgba(44, 37, 40, 0.45);
    background: rgba(255, 253, 248, 0.6);
}

.button.ghost:hover,
.button.ghost:focus-visible {
    border-color: var(--suou);
    color: var(--suou);
    transform: translateY(-1px);
}

/* ---------- section scaffolding ---------- */

.section { padding-block: clamp(76px, 11vw, 136px); }

.section-grid {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: clamp(20px, 3vw, 36px);
}

.section-kicker {
    font-family: var(--serif);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.34em;
    color: var(--suou);
    writing-mode: vertical-rl;
    justify-self: center;
    align-self: start;
    position: sticky;
    top: 104px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.section-kicker::after {
    content: "";
    width: 1px;
    height: 64px;
    background: linear-gradient(var(--kincha), transparent);
}

.section-lead { margin-bottom: clamp(40px, 6vw, 64px); }

.section-lead h2 {
    font-size: clamp(27px, 4.4vw, 42px);
    margin-bottom: 18px;
}

.section-lead p {
    color: var(--keshizumi);
    max-width: 640px;
}

@media (min-width: 960px) {
    .section-lead {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 48px;
        align-items: end;
    }

    .section-lead h2 { margin-bottom: 0; }

    .section-lead p { padding-bottom: 8px; }
}

/* ---------- reveal ---------- */

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

/* ---------- hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(56px, 9vw, 110px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        url("gold-flecks.svg") right -60px top -40px / 560px auto no-repeat,
        radial-gradient(46vw 38vw at 84% 10%, rgba(241, 230, 227, 0.55), transparent 70%),
        radial-gradient(36vw 30vw at 4% 78%, rgba(238, 242, 240, 0.5), transparent 70%);
    opacity: 0.85;
    pointer-events: none;
}

/* faint full-bleed tarot key visual behind the first view */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg img,
.hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    object-fit: cover;
    object-position: center 38%;
    opacity: 0.2;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(92deg, rgba(251, 248, 242, 0.94) 8%, rgba(251, 248, 242, 0.5) 54%, rgba(251, 248, 242, 0.72) 100%),
        linear-gradient(180deg, rgba(251, 248, 242, 0.45), rgba(251, 248, 242, 0) 26%, rgba(251, 248, 242, 0) 58%, rgba(251, 248, 242, 0.96) 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--serif);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.34em;
    color: var(--suou);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(22px, 3vw, 34px);
}

.hero-eyebrow::after {
    content: "";
    width: 56px;
    height: 1px;
    background: var(--kin-line);
}

.hero-title { display: block; }

.hero-title-poem {
    display: block;
    font-size: clamp(38px, 6.4vw, 66px);
    line-height: 1.42;
    letter-spacing: 0.08em;
}

.hero-title-poem > span { display: block; }

.hero-title-poem .char { display: inline-block; }

.js .hero-title-poem .char {
    opacity: 0;
    transform: translateY(0.5em) rotate(2deg);
}

.js .is-ready .hero-title-poem .char {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: calc(var(--char-index) * 30ms);
}

.hero-title-keyword {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: clamp(20px, 2.6vw, 28px);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--keshizumi);
}

.hero-title-keyword::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--suou);
    transform: rotate(45deg);
    flex: none;
}

.hero-lead {
    margin-top: clamp(22px, 3vw, 30px);
    font-family: var(--serif);
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 2.2;
    letter-spacing: 0.05em;
}

.hero-sublead {
    margin-top: 14px;
    font-size: 13px;
    color: var(--keshizumi);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(28px, 3.4vw, 38px);
}

/* floating kanji */
.glyph-field {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    transform: translate(calc(var(--mx) * 14px), calc(var(--my) * 10px));
}

.glyph-field span {
    position: absolute;
    font-family: var(--serif);
    font-size: clamp(88px, 13vw, 190px);
    color: rgba(44, 37, 40, 0.045);
    line-height: 1;
    /* ふわふわ浮遊: transform のみの GPU 合成アニメーション（PC/スマホ共通・軽量） */
    animation: glyph-float var(--gf-d, 19s) ease-in-out infinite;
    animation-delay: var(--gf-delay, 0s);
}

.glyph-field span:nth-child(1) { top: 6%; left: 38%; --gf-d: 17s; --gf-delay: -3s; --gf-a: 12px; }
.glyph-field span:nth-child(2) { top: 2%; right: 6%; --gf-d: 23s; --gf-delay: -11s; --gf-a: 16px; }
.glyph-field span:nth-child(3) { bottom: 18%; left: 4%; --gf-d: 20s; --gf-delay: -6s; --gf-a: 14px; }
.glyph-field span:nth-child(4) { bottom: 8%; left: 52%; --gf-d: 25s; --gf-delay: -16s; --gf-a: 17px; color: rgba(142, 53, 74, 0.05); }
.glyph-field span:nth-child(5) { top: 38%; right: 24%; --gf-d: 16s; --gf-delay: -9s; --gf-a: 11px; }
.glyph-field span:nth-child(6) { bottom: 34%; right: 2%; --gf-d: 21s; --gf-delay: -13s; --gf-a: 15px; color: rgba(142, 53, 74, 0.045); }

@keyframes glyph-float {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    25% { transform: translate3d(calc(var(--gf-a, 14px) * 0.65), calc(var(--gf-a, 14px) * -1), 0) rotate(0.7deg); }
    50% { transform: translate3d(calc(var(--gf-a, 14px) * -0.45), calc(var(--gf-a, 14px) * 0.75), 0) rotate(-0.6deg); }
    75% { transform: translate3d(calc(var(--gf-a, 14px) * -0.85), calc(var(--gf-a, 14px) * -0.55), 0) rotate(0.45deg); }
}

/* hero photo as a torn washi sheet */
.washi-photo {
    position: relative;
    margin: 0;
}

.washi-photo::before {
    content: "";
    position: absolute;
    inset: -4.5% -3.5% -3% -4.5%;
    background:
        linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
        var(--washi);
    background-size: auto, 440px;
    transform: rotate(-2.4deg);
    -webkit-mask: url("deckle-mask.png") 0 0 / 100% 100%;
    mask: url("deckle-mask.png") 0 0 / 100% 100%;
    z-index: -1;
}

.washi-photo::after {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: -16px;
    height: 26px;
    background: radial-gradient(50% 100% at 50% 0, rgba(44, 37, 40, 0.2), transparent 72%);
    filter: blur(6px);
    z-index: -2;
}

.washi-photo img,
.washi-photo picture {
    display: block;
    width: 100%;
}

.washi-photo img {
    -webkit-mask: url("deckle-mask.png") 0 0 / 100% 100%;
    mask: url("deckle-mask.png") 0 0 / 100% 100%;
}

.washi-photo .seal {
    position: absolute;
    top: -12px;
    right: -8px;
    z-index: 2;
}

.hero-visual { position: relative; }

/* two readers, round-cropped, layered like seals on washi */
.reader-circles {
    position: relative;
    max-width: 480px;
    margin-inline: auto;
}

.reader-circle {
    margin: 0;
}

.reader-circle img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--gofun);
    box-shadow: 0 22px 44px -26px rgba(44, 37, 40, 0.45);
}

.reader-circle .circle-frame {
    position: relative;
    display: block;
}

.reader-circle .circle-frame::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid var(--kin-line);
    border-radius: 50%;
}

.reader-circle figcaption {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.reader-circle figcaption strong {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.14em;
}

.reader-circle figcaption span {
    font-family: var(--serif);
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 0.24em;
    color: var(--suou);
}

.reader-circle--kanna {
    position: relative;
    width: 64%;
}

.reader-circle--sono {
    position: absolute;
    width: 47%;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.reader-circles .seal {
    position: absolute;
    top: 2%;
    right: 24%;
    z-index: 2;
}


.hero-visual .visual-caption {
    position: absolute;
    top: 10px;
    right: -36px;
    writing-mode: vertical-rl;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--keshizumi);
}

.hero-visual .visual-caption span:first-child {
    color: var(--suou);
}

/* ticker */
.ticker {
    position: relative;
    z-index: 2;
    margin-top: clamp(56px, 8vw, 96px);
    border-top: 1px solid var(--kin-line);
    border-bottom: 1px solid var(--kin-line);
    padding: 13px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-run 46s linear infinite;
}

.ticker-group { display: flex; }

.ticker-group span {
    position: relative;
    white-space: nowrap;
    font-family: var(--serif);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--keshizumi);
    padding: 0 2em;
}

.ticker-group span::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    background: var(--kincha);
    opacity: 0.6;
    transform: rotate(45deg);
}

@keyframes ticker-run {
    from { transform: translateX(0); }
    to { transform: translateX(-20%); }
}

/* ---------- cards (shared washi-paper card) ---------- */

.card {
    background:
        linear-gradient(rgba(255, 253, 248, 0.93), rgba(255, 253, 248, 0.93)),
        var(--washi);
    background-size: auto, 420px;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: clamp(26px, 3.4vw, 36px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 14px 30px -26px rgba(44, 37, 40, 0.35);
}

.card h3 {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 19px;
    margin-bottom: 12px;
}

.card h3::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--suou);
    transform: rotate(45deg);
    flex: none;
    align-self: center;
}

.card p {
    font-size: 14px;
    color: var(--keshizumi);
}

/* ---------- concept ---------- */

.principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px);
}

.principle span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 12px;
    letter-spacing: 0.24em;
    color: var(--kincha);
    margin-bottom: 16px;
}

.principle span::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--kin-line);
}

/* ---------- worries ---------- */

.worry-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px);
}

/* ---------- beginner ---------- */

.beginner-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px);
}

.beginner-item h3::before {
    content: "問";
    width: auto;
    height: auto;
    background: none;
    transform: none;
    font-family: var(--serif);
    font-size: 12px;
    font-weight: 600;
    color: var(--gofun);
    background: var(--suou);
    border-radius: 3px;
    padding: 3px 6px;
    line-height: 1;
}

.soft-cta {
    margin-top: clamp(36px, 5vw, 52px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--kin-line);
    background: rgba(255, 253, 248, 0.7);
    border-radius: 2px;
    padding: clamp(22px, 3vw, 30px) clamp(22px, 3.6vw, 38px);
}

.soft-cta p {
    font-size: 14px;
    color: var(--keshizumi);
    max-width: 560px;
}

/* ---------- readers ---------- */

.reader-row {
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: start;
}

.reader-row + .reader-row { margin-top: clamp(64px, 9vw, 110px); }

@media (min-width: 880px) {
    .reader-row:nth-of-type(even) {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    }

    .reader-row:nth-of-type(even) figure { order: 2; }
}

.reader-row .role {
    font-family: var(--serif);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--suou);
    margin-bottom: 12px;
}

.reader-row h3 {
    font-size: clamp(26px, 3.4vw, 34px);
    margin-bottom: 16px;
}

.reader-row > div > p { color: var(--keshizumi); }

.reader-fit {
    margin-top: 22px;
    border: 1px solid var(--kin-line);
    background: rgba(255, 253, 248, 0.66);
    border-radius: 2px;
    padding: 18px 22px;
}

.reader-fit span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--suou);
    margin-bottom: 6px;
}

.reader-fit span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--suou);
    transform: rotate(45deg);
}

.reader-fit p {
    font-size: 13.5px;
    color: var(--keshizumi);
}

.reader-row ul {
    margin-top: 22px;
    display: grid;
    gap: 8px;
}

.reader-row ul li {
    position: relative;
    padding-left: 20px;
    font-size: 13.5px;
    color: var(--keshizumi);
}

.reader-row ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 12px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--suou);
    transform: rotate(45deg);
}

/* ---------- image strip ---------- */

.image-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--kin-line);
}

.image-strip img {
    width: 100%;
    height: clamp(170px, 24vw, 340px);
    object-fit: cover;
}

/* ---------- menu ---------- */

.menu .section-lead p { max-width: none; }

.menu-list { border-bottom: 1px solid var(--line); }

.menu-item {
    display: grid;
    grid-template-columns: 188px minmax(0, 1fr) auto;
    grid-template-areas: "head copy price";
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
    padding: clamp(26px, 3.6vw, 38px) clamp(8px, 1.4vw, 16px);
    border-top: 1px solid var(--line);
    transition: background 0.4s var(--ease);
}

.menu-item:hover {
    background: linear-gradient(90deg, rgba(241, 230, 227, 0.66), rgba(241, 230, 227, 0) 72%);
}

.menu-head { grid-area: head; }

.menu-head span {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--suou);
    border: 1px solid rgba(142, 53, 74, 0.4);
    border-radius: 999px;
    padding: 3px 12px;
    margin-bottom: 12px;
}

.menu-head h3 {
    font-size: clamp(21px, 2.6vw, 25px);
    line-height: 1.5;
}

.menu-copy { grid-area: copy; }

.menu-copy > p { color: var(--keshizumi); font-size: 14px; }

.menu-details {
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.menu-details > div {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.menu-details dt {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--suou);
    border: 1px solid rgba(142, 53, 74, 0.35);
    border-radius: 999px;
    text-align: center;
    padding: 3px 6px;
    line-height: 1.7;
}

.menu-details dd {
    margin: 0;
    font-size: 13.5px;
    color: var(--keshizumi);
    line-height: 1.9;
}

.menu-price {
    grid-area: price;
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(24px, 3vw, 30px);
    letter-spacing: 0.04em;
    white-space: nowrap;
    justify-self: end;
}

.menu-price small {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--keshizumi);
    margin-left: 8px;
}

/* ---------- voices ---------- */

.voice-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px);
}

.voice {
    position: relative;
    margin: 0;
    padding-top: clamp(34px, 4vw, 44px);
}

.voice::before {
    content: "「";
    position: absolute;
    top: 6px;
    left: 16px;
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1;
    color: rgba(142, 53, 74, 0.22);
}

.voice blockquote { margin: 0; }

.voice blockquote p {
    font-size: 14px;
    color: var(--sumi);
}

.voice figcaption {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--keshizumi);
}

.voice figcaption span + span {
    position: relative;
    padding-left: 14px;
}

.voice figcaption span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    background: var(--kincha);
    opacity: 0.7;
    transform: rotate(45deg);
}

/* ---------- flow ---------- */

.flow-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px);
    counter-reset: none;
}

.flow-list li { position: relative; }

.flow-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50px;
    right: calc(clamp(16px, 2.4vw, 28px) * -1);
    width: clamp(16px, 2.4vw, 28px);
    height: 1px;
    background: var(--kin-line);
}

.flow-num {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--suou);
    color: var(--suou);
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transform: rotate(-3deg);
    box-shadow: 2.5px 2.5px 0 rgba(142, 53, 74, 0.14);
    margin-bottom: 18px;
}

.flow-list h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.flow-list li > p {
    font-size: 13.5px;
    color: var(--keshizumi);
}

/* ---------- access ---------- */

.access-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.access-grid h2 {
    font-size: clamp(27px, 4vw, 38px);
    margin-bottom: 14px;
}

.access-lead {
    font-size: 14px;
    color: var(--keshizumi);
    margin-bottom: 22px;
}

.access-grid address {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.access-grid address::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--suou);
    transform: rotate(45deg);
    flex: none;
}

.station-list { display: grid; }

.station-list li {
    position: relative;
    padding: 11px 0 11px 28px;
    font-size: 13.5px;
    color: var(--keshizumi);
    border-top: 1px solid var(--line-soft);
}

.station-list li:last-child { border-bottom: 1px solid var(--line-soft); }

.station-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 9px;
    height: 9px;
    margin-top: -6px;
    border: 2px solid var(--suou);
    border-radius: 50%;
}

.access-note {
    margin-top: 22px;
    font-size: 13px;
    color: var(--keshizumi);
    background: rgba(255, 253, 248, 0.75);
    border: 1px solid var(--kin-line);
    border-radius: 2px;
    padding: 14px 18px;
}

.map {
    margin-top: clamp(40px, 6vw, 56px);
    background:
        linear-gradient(rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.92)),
        var(--washi);
    background-size: auto, 420px;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 10px;
}

.map iframe {
    display: block;
    width: 100%;
    height: clamp(300px, 42vw, 430px);
    border: 0;
    filter: sepia(0.14) saturate(0.9);
}

/* ---------- contact ---------- */

.contact { overflow: hidden; }

.contact .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
}

.contact .eyebrow {
    font-family: var(--serif);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.34em;
    color: var(--suou);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact .eyebrow::after {
    content: "";
    width: 56px;
    height: 1px;
    background: var(--kin-line);
}

.contact h2 {
    font-size: clamp(30px, 5vw, 46px);
    margin-bottom: 20px;
}

.contact-copy > p:not(.eyebrow) {
    color: var(--keshizumi);
    max-width: 480px;
}

.contact .hero-actions { margin-top: 30px; }

.contact .washi-photo { transform: rotate(1.6deg); }

.contact-alt {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--keshizumi);
}

.contact-alt a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-alt a:hover { color: var(--suou); }

/* ---------- LINE banner ---------- */

.line-banner {
    padding-bottom: clamp(76px, 11vw, 128px);
}

.line-banner .container { max-width: 920px; }

.line-banner-card {
    background:
        linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
        var(--washi);
    background-size: auto, 420px;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: clamp(18px, 3vw, 28px);
    text-align: center;
}

.line-banner-card img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.line-banner-card p {
    margin-top: 14px;
    font-size: 13px;
    color: var(--keshizumi);
}

/* ---------- footer ---------- */

.footer {
    border-top: 1px solid var(--line-soft);
    padding: clamp(36px, 5vw, 52px) 0 clamp(44px, 6vw, 64px);
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.footer small {
    display: block;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--keshizumi);
    text-align: right;
}

/* ---------- responsive ---------- */

@media (max-width: 959px) {
    .section-grid { display: block; }

    .section-kicker {
        writing-mode: horizontal-tb;
        position: static;
        margin-bottom: 20px;
    }

    .section-kicker::after {
        width: 56px;
        height: 1px;
    }
}

@media (max-width: 879px) {
    body { font-size: 14.5px; }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 65;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        background:
            linear-gradient(rgba(251, 248, 242, 0.96), rgba(251, 248, 242, 0.96)),
            var(--washi);
        background-size: auto, 480px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .site-nav a {
        font-size: 17px;
        padding: 12px 20px;
    }

    .site-nav a:last-child,
    .site-nav a.nav-cta { margin: 14px 0 0; }

    .nav-button { display: block; }

    .hero-grid { grid-template-columns: minmax(0, 1fr); }

    .hero-visual { max-width: 560px; width: 100%; margin-inline: auto; }

    .hero-visual .visual-caption { right: -8px; }

    .principles,
    .worry-list,
    .beginner-list,
    .voice-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .flow-list { grid-template-columns: minmax(0, 1fr); }

    .flow-list li:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: calc(clamp(16px, 2.4vw, 28px) * -1);
        left: 30px;
        width: 1px;
        height: clamp(16px, 2.4vw, 28px);
    }

    .reader-row { grid-template-columns: minmax(0, 1fr); }

    .reader-row figure { max-width: 420px; }

    .image-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .menu-item {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "head"
            "price"
            "copy";
        gap: 14px;
    }

    .menu-price { justify-self: start; }

    .access-grid { grid-template-columns: minmax(0, 1fr); }

    .access-grid figure { max-width: 520px; }

    .contact .container { grid-template-columns: minmax(0, 1fr); }

    .contact .washi-photo { max-width: 520px; }

    .footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer small { text-align: left; }
}

/* ---------- motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .js .reveal,
    .js .hero-title-poem .char {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .glyph-field span { animation: none; }

    .ticker-track { animation: none; }

    .button,
    .site-nav a::after { transition: none; }
}

/* ============================================================
   予約フォーム / 管理画面 (reserve/)
   ============================================================ */

.reserve-page main {
    padding: clamp(48px, 7vw, 88px) 0 clamp(72px, 10vw, 120px);
}

.reserve-head {
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    text-align: center;
}

.reserve-head .hero-eyebrow {
    justify-content: center;
    margin-bottom: 18px;
}

.reserve-head .hero-eyebrow::after { display: none; }

.reserve-head h1 {
    font-size: clamp(28px, 4.6vw, 40px);
    margin-bottom: 16px;
}

.reserve-head p {
    color: var(--keshizumi);
    font-size: 14px;
    text-align: left;
}

.form-card {
    max-width: 760px;
    margin: 0 auto;
    background:
        linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
        var(--washi);
    background-size: auto, 480px;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: clamp(26px, 4.5vw, 52px);
    box-shadow: 0 24px 50px -38px rgba(44, 37, 40, 0.4);
}

.form-row { margin-bottom: 26px; }

.form-row > label,
.form-row > .form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.req,
.opt {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.14em;
    border-radius: 999px;
    padding: 3px 10px;
    line-height: 1.4;
}

.req { background: var(--suou); color: var(--gofun); }

.opt { border: 1px solid var(--line); color: var(--keshizumi); }

.form-input {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    font: inherit;
    font-size: 15px;
    color: var(--sumi);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(44, 37, 40, 0.28);
    border-radius: 3px;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

textarea.form-input {
    min-height: 130px;
    line-height: 1.9;
    resize: vertical;
}

select.form-input {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--suou) 50%),
        linear-gradient(135deg, var(--suou) 50%, transparent 50%);
    background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

.form-input:focus {
    outline: none;
    border-color: var(--suou);
    box-shadow: 0 0 0 3px rgba(142, 53, 74, 0.14);
}

.form-input.error { border-color: #c0392b; background: #fdf3f1; }

.form-hint {
    margin-top: 8px;
    font-size: 12px;
    color: var(--keshizumi);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-message {
    margin: 0 auto 28px;
    max-width: 760px;
    padding: 16px 20px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.9;
}

.form-message--error {
    background: #fdf3f1;
    border: 1px solid rgba(192, 57, 43, 0.4);
    color: #8c2f23;
}

.form-message--ok {
    background: rgba(238, 242, 240, 0.85);
    border: 1px solid var(--kin-line);
}

.form-submit {
    margin-top: 34px;
    text-align: center;
}

.form-submit .button {
    min-width: 280px;
    cursor: pointer;
}

.form-submit .button:disabled { opacity: 0.55; cursor: wait; }

.form-privacy {
    margin-top: 18px;
    font-size: 12px;
    color: var(--keshizumi);
    text-align: center;
}

.thanks-card { text-align: center; }

.thanks-card .seal {
    width: 44px;
    height: 44px;
    font-size: 22px;
    margin-bottom: 20px;
}

.thanks-card h2 {
    font-size: clamp(24px, 3.6vw, 32px);
    margin-bottom: 16px;
}

.thanks-card p {
    color: var(--keshizumi);
    font-size: 14px;
}

.thanks-card .hero-actions {
    justify-content: center;
    margin-top: 30px;
}

.reserve-footer-note {
    max-width: 760px;
    margin: 28px auto 0;
    font-size: 12px;
    color: var(--keshizumi);
    text-align: center;
}

/* honeypot */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* admin */
.admin-page main { padding: clamp(48px, 7vw, 80px) 0 96px; }

.admin-card { max-width: 680px; }

.admin-section {
    border-top: 1px solid var(--line-soft);
    margin-top: 30px;
    padding-top: 26px;
}

.admin-section h2 {
    font-size: 19px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-section h2::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--suou);
    transform: rotate(45deg);
}

.admin-bar {
    max-width: 680px;
    margin: 0 auto 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--keshizumi);
}

.admin-bar a { text-decoration: underline; text-underline-offset: 4px; }

.notice-soft {
    font-size: 12.5px;
    background: rgba(255, 253, 248, 0.85);
    border: 1px solid var(--kin-line);
    border-radius: 3px;
    padding: 12px 16px;
    margin-bottom: 22px;
    color: var(--keshizumi);
}

@media (max-width: 640px) {
    .form-grid-2 { grid-template-columns: 1fr; }

    .form-submit .button { width: 100%; min-width: 0; }
}

/* flatpickr theme alignment */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--suou);
    border-color: var(--suou);
}

/* ============================================================
   常時表示の予約ドック（丸ボタン・響かんな / Sono - 園）
   ============================================================ */

.reserve-dock {
    position: fixed;
    right: clamp(14px, 2.4vw, 30px);
    bottom: clamp(14px, 2.4vw, 30px);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.reserve-dock-label {
    writing-mode: vertical-rl;
    font-family: var(--serif);
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--suou);
    background: var(--gofun);
    border: 1px solid var(--kin-line);
    border-radius: 999px;
    padding: 12px 5px;
    box-shadow: 0 6px 18px -10px rgba(44, 37, 40, 0.5);
    pointer-events: auto;
}

.reserve-dock-btn {
    pointer-events: auto;
    width: clamp(76px, 9.5vw, 92px);
    height: clamp(76px, 9.5vw, 92px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    color: var(--gofun);
    background:
        radial-gradient(120% 120% at 30% 22%, rgba(255, 255, 255, 0.22), transparent 60%),
        linear-gradient(150deg, var(--suou), var(--suou-fukai));
    border: 1px solid rgba(255, 253, 248, 0.5);
    box-shadow:
        0 14px 30px -14px rgba(95, 34, 54, 0.85),
        inset 0 0 0 4px rgba(255, 253, 248, 0.12);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.reserve-dock-btn::before {
    content: "占";
    position: absolute;
    top: 8px;
    font-size: 9px;
    opacity: 0.55;
}

.reserve-dock-btn {
    position: relative;
}

.reserve-dock-btn-jp {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(13px, 1.6vw, 15px);
    letter-spacing: 0.04em;
    line-height: 1.25;
}

.reserve-dock-btn-en {
    font-family: var(--serif);
    font-size: 9px;
    letter-spacing: 0.16em;
    opacity: 0.85;
}

.reserve-dock-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 36px -14px rgba(95, 34, 54, 0.95),
        inset 0 0 0 4px rgba(255, 253, 248, 0.18);
}

@media (max-width: 640px) {
    .reserve-dock {
        right: 0;
        left: 0;
        bottom: 0;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(rgba(251, 248, 242, 0), rgba(251, 248, 242, 0.92) 32%);
    }

    .reserve-dock-label { display: none; }

    .reserve-dock-btn {
        flex-direction: row;
        width: auto;
        height: auto;
        min-height: 48px;
        border-radius: 999px;
        padding: 0 20px;
        gap: 8px;
        flex: 1 1 0;
        max-width: 220px;
    }

    .reserve-dock-btn::before {
        content: "ご予約";
        position: static;
        top: auto;
        font-family: var(--serif);
        font-size: 12px;
        letter-spacing: 0.08em;
        opacity: 0.9;
    }

    .reserve-dock-btn-en { display: none; }

    .reserve-dock-btn-jp { font-size: 15px; }
}

/* 予約・管理ページではドックを出さない */
.reserve-page .reserve-dock { display: none; }

/* ============================================================
   調整: 破れ縁の繊維を薄く / Access写真は素のまま / 各BOXにペール背景
   ============================================================ */

/* 破れ縁のフリンジをさらに淡く */
.seam > .seam-fringe { opacity: 0.7; }

/* 連絡先セクションを写真なしの中央寄せに */
.contact--solo .container { display: block; }

.contact--solo .contact-copy {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.contact--solo .hero-actions { justify-content: center; }

/* Accessの建物写真は加工なし（耳付きマスク・回転・影を解除） */
.washi-photo--plain { transform: none; }

.washi-photo--plain::before,
.washi-photo--plain::after { display: none; }

.washi-photo--plain img {
    -webkit-mask: none;
    mask: none;
    border-radius: 3px;
    box-shadow: 0 18px 36px -28px rgba(44, 37, 40, 0.45);
}

/* ---- 各カードにペール系の背景色（淡い和の色） ---- */

/* Concept: 3つの原則 */
.principle:nth-child(1) {
    background:
        linear-gradient(rgba(244, 234, 233, 0.82), rgba(244, 234, 233, 0.82)),
        var(--washi);
    background-size: auto, 420px;
}
.principle:nth-child(2) {
    background:
        linear-gradient(rgba(238, 242, 240, 0.82), rgba(238, 242, 240, 0.82)),
        var(--washi);
    background-size: auto, 420px;
}
.principle:nth-child(3) {
    background:
        linear-gradient(rgba(245, 240, 230, 0.82), rgba(245, 240, 230, 0.82)),
        var(--washi);
    background-size: auto, 420px;
}

/* 初めての方へ: 4つのQ&A */
.beginner-item:nth-child(1) {
    background:
        linear-gradient(rgba(244, 234, 233, 0.8), rgba(244, 234, 233, 0.8)),
        var(--washi);
    background-size: auto, 420px;
}
.beginner-item:nth-child(2) {
    background:
        linear-gradient(rgba(238, 242, 240, 0.8), rgba(238, 242, 240, 0.8)),
        var(--washi);
    background-size: auto, 420px;
}
.beginner-item:nth-child(3) {
    background:
        linear-gradient(rgba(245, 240, 230, 0.8), rgba(245, 240, 230, 0.8)),
        var(--washi);
    background-size: auto, 420px;
}
.beginner-item:nth-child(4) {
    background:
        linear-gradient(rgba(242, 238, 244, 0.8), rgba(242, 238, 244, 0.8)),
        var(--washi);
    background-size: auto, 420px;
}

/* ご利用の流れ: 3ステップ */
.flow-list li:nth-child(1) {
    background:
        linear-gradient(rgba(244, 234, 233, 0.82), rgba(244, 234, 233, 0.82)),
        var(--washi);
    background-size: auto, 420px;
}
.flow-list li:nth-child(2) {
    background:
        linear-gradient(rgba(238, 242, 240, 0.82), rgba(238, 242, 240, 0.82)),
        var(--washi);
    background-size: auto, 420px;
}
.flow-list li:nth-child(3) {
    background:
        linear-gradient(rgba(245, 240, 230, 0.82), rgba(245, 240, 230, 0.82)),
        var(--washi);
    background-size: auto, 420px;
}

/* 占い師紹介の各予約ボタン */
.reader-cta {
    margin-top: 24px;
}

.reader-cta .button {
    display: inline-flex;
}

/* ============================================================
   管理画面: 出勤日の設定
   ============================================================ */

.schedule-block {
    border: 1px solid var(--line-soft);
    border-radius: 3px;
    padding: 18px 18px 6px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.4);
}

.schedule-name {
    font-size: 16.5px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-name::before {
    content: "占";
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: var(--suou);
    color: var(--gofun);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.weekday-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.weekday-check {
    position: relative;
    cursor: pointer;
}

.weekday-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.weekday-check span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(44, 37, 40, 0.28);
    border-radius: 3px;
    font-family: var(--serif);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.85);
    transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.weekday-check input:checked + span {
    background: var(--suou);
    border-color: var(--suou);
    color: var(--gofun);
}

.weekday-check input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(142, 53, 74, 0.2);
}

textarea.form-input--dates {
    min-height: 96px;
    font-size: 14px;
}

/* ============================================================
   占い師の丸抜き写真（予約フォーム最上部 / 占い師ページ）
   ============================================================ */

.reader-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 auto clamp(26px, 4vw, 40px);
    text-align: center;
}

.reader-hero-frame {
    position: relative;
    display: block;
    width: clamp(120px, 18vw, 168px);
}

.reader-hero-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--gofun);
    box-shadow: 0 18px 38px -24px rgba(44, 37, 40, 0.5);
}

.reader-hero-frame::before {
    content: "";
    position: absolute;
    inset: -9px;
    border: 1px solid var(--kin-line);
    border-radius: 50%;
}

.reader-hero-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.12em;
}

/* ============================================================
   占い師ページ: 選択画面・カレンダー・時間パネル
   ============================================================ */

.staff-choice {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 4vw, 44px);
    max-width: 680px;
    margin: 0 auto;
}

.staff-choice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 26px 30px 24px;
    background:
        linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
        var(--washi);
    background-size: auto, 480px;
    border: 1px solid var(--line);
    border-radius: 3px;
    box-shadow: 0 18px 40px -32px rgba(44, 37, 40, 0.45);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.staff-choice-card .reader-hero-frame { width: 128px; }

.staff-choice-card strong {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 16.5px;
    letter-spacing: 0.12em;
}

.staff-choice-go {
    font-size: 12px;
    color: var(--suou);
    border-bottom: 1px solid var(--suou);
    padding-bottom: 2px;
}

.staff-choice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px -30px rgba(44, 37, 40, 0.55);
}

.staff-card { max-width: 760px; }

.cal-legend {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
    font-size: 12.5px;
    color: var(--keshizumi);
}

.cal-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.cal-swatch {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid rgba(44, 37, 40, 0.28);
    background: rgba(255, 255, 255, 0.85);
}

.cal-swatch.is-open {
    background: var(--suou);
    border-color: var(--suou);
}

.cal-month { margin-bottom: 26px; }

.cal-title {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
}

.cal-head {
    text-align: center;
    font-size: 11px;
    color: var(--keshizumi);
    padding: 4px 0 6px;
    letter-spacing: 0.1em;
}

.cal-blank { min-height: 1px; }

.cal-day {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(44, 37, 40, 0.22);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 3px;
    min-height: 56px;
    padding: 6px 2px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    font: inherit;
    color: var(--sumi);
    cursor: pointer;
    transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.cal-num {
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1;
}

.cal-time {
    font-size: 9.5px;
    line-height: 1.2;
    min-height: 12px;
    letter-spacing: 0.02em;
    opacity: 0.9;
    border-radius: 999px;
    padding: 1px 5px;
}

.cal-day.is-open {
    background: var(--suou);
    border-color: var(--suou);
    color: var(--gofun);
}

.cal-day.is-open .cal-time {
    background: rgba(255, 253, 248, 0.18);
}

.cal-day.is-open .cal-time:hover {
    background: rgba(255, 253, 248, 0.34);
}

.cal-day:not(.is-open):hover {
    border-color: var(--suou);
    color: var(--suou);
}

.cal-day:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(142, 53, 74, 0.25);
}

span.cal-day.is-out {
    border-color: rgba(44, 37, 40, 0.1);
    background: transparent;
    color: rgba(44, 37, 40, 0.25);
    cursor: default;
    justify-content: center;
    font-family: var(--serif);
    font-size: 14px;
}

.time-panel {
    margin-top: 8px;
    border: 1px solid var(--kin-line);
    border-radius: 3px;
    background: rgba(255, 253, 248, 0.95);
    padding: 18px;
}

.time-panel-title {
    font-size: 14px;
    margin-bottom: 12px;
}

.time-panel-title strong {
    font-family: var(--serif);
    letter-spacing: 0.06em;
}

.time-panel-row {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 380px;
}

.time-panel-sep { color: var(--keshizumi); }

.time-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.time-panel-actions .button {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 13px;
    cursor: pointer;
}

@media (max-width: 640px) {
    .cal-grid { gap: 3px; }

    .cal-day { min-height: 50px; padding: 5px 1px 4px; }

    .cal-num { font-size: 13px; }

    .cal-time { font-size: 8.5px; padding: 1px 3px; }

    .staff-choice-card { width: 100%; max-width: 320px; }
}
