@charset "UTF-8";

/* =========================================================
   enn. by nature — Design System
   静謐なラグジュアリー × 自然派の温かみ
   ICHIの構造美(余白/明朝/モジュラースケール/約物半角) を
   enn. の自然派カラー(オフホワイト×ウォームグレー×シャンパンゴールド) で。
   黒背景は使わない。
   ========================================================= */

:root {
    /* ---- Color : warm natural palette ---- */
    --bg: #faf7f2;
    /* warm ivory */
    --bg-warm: #f3ecdf;
    /* deeper cream (交互セクション) */
    --bg-sage: #e9ece4;
    /* 薄いセージグレー (セクション背景の変化) */
    --surface: #ffffff;
    --ink: #3a342c;
    /* warm charcoal (真っ黒は使わない) */
    --ink-2: #6e6457;
    --ink-3: #a99d8b;
    --line: #e7ddcd;
    --line-soft: #f0e9dd;
    --gold: #b08d57;
    /* champagne gold / oak */
    --gold-deep: #94703f;
    --gold-soft: #efe5d2;
    --dark: #2e2a23;
    /* warm dark (footer) — 黒ではない焦げ茶 */

    /* ---- Typography ---- */
    --mincho: "YakuHanJP", "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    --gothic: "YakuHanJP", "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
    --serif-en: "Cormorant Garamond", serif;
    --sans-en: "Manrope", sans-serif;

    /* ---- Modular scale (ICHI流: ≈1.16倍) ---- */
    --fz-0: 0.9375rem;
    /* 15 */
    --fz-1: 1.125rem;
    /* 18 */
    --fz-2: 1.3125rem;
    /* 21 */
    --fz-3: 1.5625rem;
    /* 25 */
    --fz-4: 1.8125rem;
    /* 29 */
    --fz-5: 2.125rem;
    /* 34 */
    --fz-6: 2.5rem;
    /* 40 */
    --fz-7: 3rem;
    /* 48 */
    --fz-8: 3.5rem;
    /* 56 */
    --fz-9: 4.1875rem;
    /* 67 */
    --fz-10: 4.9375rem;
    /* 79 */

    /* ---- Rhythm ---- */
    --lh-body: 2.0;
    --lh-lead: 2.1;
    --lh-head: 1.6;
    --ls: 0.04em;
    --ls-wide: 0.12em;
    --ls-en: 0.22em;

    /* ---- Layout ---- */
    --w: 1120px;
    --w-narrow: 760px;
    --pad-x: clamp(22px, 6vw, 80px);
    --sec-y: clamp(84px, 12vw, 168px);
    --header-h: 86px;

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

/* =========================================================
   Reset / Base
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--gothic);
    font-size: var(--fz-1);
    font-weight: 400;
    line-height: var(--lh-body);
    letter-spacing: var(--ls);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

::selection {
    background: var(--gold-soft);
    color: var(--ink);
}

/* =========================================================
   Helpers
   ========================================================= */
.section {
    padding-block: var(--sec-y);
    padding-inline: var(--pad-x);
}

.sec-label {
    display: inline-block;
    font-family: var(--serif-en);
    font-style: italic;
    font-size: var(--fz-2);
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 1.4em;
}

.sec-title {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(var(--fz-5), 5.2vw, var(--fz-8));
    line-height: var(--lh-head);
    letter-spacing: 0.06em;
    color: var(--ink);
}

.sec-head {
    max-width: var(--w);
    margin-inline: auto;
}

.sec-head.center {
    text-align: center;
}

.sec-note {
    margin-top: 1.6em;
    font-size: var(--fz-0);
    color: var(--ink-3);
    letter-spacing: 0.06em;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9em;
    margin-top: 2.6em;
    font-family: var(--sans-en);
    font-size: var(--fz-0);
    letter-spacing: var(--ls-wide);
    color: var(--ink);
}

.text-link span {
    position: relative;
    padding-bottom: 0.4em;
}

.text-link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.6s var(--ease);
}

.text-link:hover span::after {
    transform: scaleX(0);
}

.center-link {
    display: flex;
    justify-content: center;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.site-header[data-state="scrolled"] {
    background: rgba(250, 247, 242, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line-soft);
}

.header-inner {
    height: 100%;
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5em;
    line-height: 1;
}

.brand-img {
    height: 34px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

.site-header.is-invert .brand-img {
    mix-blend-mode: normal;
    filter: invert(1);
}

.brand-mark {
    font-family: var(--serif-en);
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.brand-sub {
    font-family: var(--serif-en);
    font-style: italic;
    font-size: var(--fz-0);
    color: var(--gold);
    letter-spacing: 0.08em;
}

.gnav ul {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2.4vw, 2.8rem);
}

.gnav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35em;
    padding: 0.4em 0;
    position: relative;
}

.nav-en {
    font-family: var(--sans-en);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.4s var(--ease);
}

.nav-jp {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    transition: color 0.4s var(--ease);
}

.gnav a:hover .nav-en {
    color: var(--gold-deep);
}

.gnav a:hover .nav-jp {
    color: var(--gold);
}

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
    padding: 0.75em 1.7em;
    border: 1px solid var(--gold);
    border-radius: 999px;
    transition: background 0.5s var(--ease), color 0.5s var(--ease);
}

.header-cta-en {
    font-family: var(--sans-en);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    transition: color 0.5s var(--ease);
}

.header-cta-jp {
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    color: var(--ink);
    transition: color 0.5s var(--ease);
}

.header-cta:hover {
    background: var(--gold);
}

.header-cta:hover .header-cta-en,
.header-cta:hover .header-cta-jp {
    color: #fff;
}

/* Hamburger */
.hbg {
    display: none;
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 120;
}

.hbg span {
    position: absolute;
    left: 9px;
    width: 24px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}

.hbg span:nth-child(1) {
    top: 15px;
}

.hbg span:nth-child(2) {
    top: 21px;
}

.hbg span:nth-child(3) {
    top: 27px;
}

body.menu-open .hbg span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.menu-open .hbg span:nth-child(2) {
    opacity: 0;
}

body.menu-open .hbg span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.m-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

body.menu-open .m-menu {
    opacity: 1;
    visibility: visible;
}

.m-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.m-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4em;
}

.m-nav .nav-en {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
}

.m-nav .nav-jp {
    font-size: 0.72rem;
}

.m-menu-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.m-tel {
    font-family: var(--serif-en);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.m-line {
    padding: 0.9em 2.6em;
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* =========================================================
   Loading (オープニング) — ICHI流: 図形が順に現れ→ロゴ上昇→退場
   ========================================================= */
.loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: grid;
    place-items: center;
    transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}

body.loaded .loading {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    text-align: center;
}

.loading-img {
    display: block;
    width: clamp(190px, 26vw, 300px);
    height: auto;
    mix-blend-mode: multiply;
}

.js .loading-img {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    animation: logoReveal 1.8s var(--ease) 0.3s forwards;
}

@keyframes logoReveal {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .loading-logo,
    .loading-img {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    height: 240vh;
    background: var(--bg);
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
    padding-inline: var(--pad-x);
}

.js .hero-sticky {
    opacity: 0;
    animation: heroRise 1.4s var(--ease) 0.1s forwards;
}

@keyframes heroRise {
    to {
        opacity: 1;
    }
}

/* 多角形クリップ写真: スクロール進行度 --p で width を拡大 → 全画面へ */
.hero-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* 初期 = 画面中央の五角形。JS が --p に応じて矩形(全画面)へ変形 */
    clip-path: polygon(50% 17%, 71% 34%, 63% 81%, 37% 81%, 29% 34%);
    filter: drop-shadow(0 30px 60px rgba(46, 42, 35, 0.22));
    will-change: clip-path, filter;
}

.js .hero-shape {
    opacity: 0;
    animation: shapeRise 1.6s var(--ease) 0.3s forwards;
}

@keyframes shapeRise {
    to {
        opacity: 1;
    }
}

/* 拡大しきった時は影を消す (画面端の影は不要) */
.hero-shape.is-full {
    filter: none;
}

.hero-shape .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(.445, .05, .55, .95);
}

.hero-shape .hero-photo.is-current {
    opacity: 1;
}

/* 円弧テキスト (図形を囲む, ゆっくり回転, スクロールでフェード) */
.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(370px, 46vw, 620px);
    height: clamp(370px, 46vw, 620px);
    margin-top: calc(clamp(370px, 46vw, 620px) / -2);
    margin-left: calc(clamp(370px, 46vw, 620px) / -2);
    animation: spin 56s linear infinite;
    pointer-events: none;
    will-change: opacity;
}

.ring-text {
    font-family: var(--sans-en);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    fill: var(--ink-2);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* コピー (左に重ねる) */
.hero-copy {
    position: absolute;
    left: var(--pad-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--sans-en);
    font-size: var(--fz-0);
    font-weight: 500;
    letter-spacing: var(--ls-en);
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.8em;
    opacity: 0;
    animation: rise 1.2s var(--ease) 0.5s forwards;
}

.hero-title {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(2.4rem, 5.2vw, 4.1rem);
    line-height: 1.5;
    letter-spacing: 0.09em;
    color: var(--ink);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: lineUp 1.1s var(--ease) forwards;
}

.hero-title .line:nth-child(1) span {
    animation-delay: 0.6s;
}

.hero-title .line:nth-child(2) span {
    animation-delay: 0.74s;
}

@keyframes lineUp {
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-en {
    font-family: var(--serif-en);
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.7rem);
    color: var(--gold-deep);
    letter-spacing: 0.04em;
    margin-top: 1.1em;
    opacity: 0;
    animation: rise 1.3s var(--ease) 1s forwards;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NEWS (左下) */
.hero-news {
    position: absolute;
    left: var(--pad-x);
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 1.1em;
    z-index: 5;
    max-width: min(380px, 72vw);
    opacity: 0;
    animation: rise 1.3s var(--ease) 1.3s forwards;
    transition: opacity 0.4s var(--ease);
}

.hero-news:hover {
    opacity: 0.62;
}

.hero-news-label {
    flex-shrink: 0;
    font-family: var(--sans-en);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.5em 1.1em;
}

.hero-news-text {
    font-size: 0.82rem;
    color: var(--ink-2);
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-news-arrow {
    color: var(--gold);
    flex-shrink: 0;
}

/* Scroll */
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9em;
    opacity: 0;
    animation: rise 1.3s var(--ease) 1.5s forwards;
    z-index: 4;
}

.hero-scroll span {
    font-family: var(--sans-en);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-2);
}

.hero-scroll i {
    width: 1px;
    height: 56px;
    background: linear-gradient(var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll i::after {
    content: "";
    position: absolute;
    top: -56px;
    left: 0;
    width: 1px;
    height: 56px;
    background: linear-gradient(transparent, var(--gold-deep));
    animation: scrolldot 2.4s var(--ease) infinite;
}

@keyframes scrolldot {
    to {
        top: 56px;
    }
}

/* 拡大しきった全画面写真の上に浮かぶ到達コピー */
.hero-final {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: grid;
    place-items: center;
    padding-inline: var(--pad-x);
    opacity: 0;
    pointer-events: none;
}

.hero-final-text {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(1.7rem, 4.2vw, 3.2rem);
    line-height: 2;
    letter-spacing: 0.12em;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 40px rgba(46, 42, 35, 0.45);
}

.hero-final-text span {
    display: block;
}

/* =========================================================
   Intro strip
   ========================================================= */
.intro {
    position: relative;
    padding-block: clamp(76px, 11vw, 156px);
    padding-inline: var(--pad-x);
    text-align: center;
    overflow: hidden;
}

/* 背景の微かなグラデーション動き (2026トレンド: subtle aurora) */
.intro::before {
    content: "";
    position: absolute;
    inset: -25% -10%;
    z-index: 0;
    background:
        radial-gradient(38% 48% at 26% 38%, rgba(176, 141, 87, 0.10), transparent 70%),
        radial-gradient(40% 50% at 74% 62%, rgba(93, 112, 89, 0.09), transparent 70%);
    animation: auroraDrift 22s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes auroraDrift {
    to {
        transform: translate(3.5%, -3%) scale(1.12);
    }
}

.intro-lead {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-inline: auto;
    font-family: var(--mincho);
    font-size: clamp(var(--fz-1), 2.2vw, var(--fz-3));
    font-weight: 400;
    line-height: 2.3;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-wrap: balance;
}

.intro-lead em {
    font-style: normal;
    color: var(--gold-deep);
}

/* キネティックタイポ: 文字が一字ずつ ぼかし→鮮明 で浮上 */
.intro-lead .ch {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.5em);
    filter: blur(6px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.intro-lead.is-active .ch {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {

    .intro::before {
        animation: none;
    }

    .intro-lead .ch {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* =========================================================
   Custom cursor (PCのみ) — 要素に吸い付くマグネティック
   ========================================================= */
@media (hover: hover) and (pointer: fine) {

    a,
    button,
    .bk-menu,
    .bk-day.is-available,
    .bk-slot,
    [data-magnetic] {
        cursor: none;
    }

    .cursor {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9998;
        pointer-events: none;
        will-change: transform;
    }

    .cursor-dot,
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        border-radius: 50%;
        pointer-events: none;
    }

    .cursor-dot {
        width: 7px;
        height: 7px;
        margin: -3.5px 0 0 -3.5px;
        background: var(--gold-deep);
        transition: opacity 0.3s var(--ease);
    }

    .cursor-ring {
        width: 38px;
        height: 38px;
        margin: -19px 0 0 -19px;
        border: 1px solid var(--gold);
        opacity: 0.55;
        transition: width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.4s var(--ease), background 0.4s var(--ease), margin 0.4s var(--ease);
    }

    .cursor.is-hover .cursor-ring {
        width: 66px;
        height: 66px;
        margin: -33px 0 0 -33px;
        opacity: 1;
        background: rgba(176, 141, 87, 0.07);
    }

    .cursor.is-hover .cursor-dot {
        opacity: 0;
    }
}

@media (hover: none),
(pointer: coarse) {
    .cursor {
        display: none;
    }
}

[data-magnetic] {
    transition: transform 0.35s var(--ease);
}

/* =========================================================
   Film grain (全体に極微のノイズ = 高級感・没入感)
   ========================================================= */
.grain {
    position: fixed;
    inset: -60%;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grainShift 0.5s steps(2) infinite;
}

@keyframes grainShift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-4%, 3%);
    }

    50% {
        transform: translate(3%, -4%);
    }

    75% {
        transform: translate(-3%, 2%);
    }

    100% {
        transform: translate(4%, -2%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .grain {
        animation: none;
    }

    .cursor {
        display: none;
    }
}

/* =========================================================
   Recruit page (採用情報)
   ========================================================= */
.sub-body {
    background: var(--bg);
}

.rc-hero {
    position: relative;
    height: 68vh;
    min-height: 440px;
    margin-top: 66px;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
}

.rc-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.rc-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 12s var(--ease) forwards;
}

.rc-hero-veil {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(250, 247, 242, 0.72), rgba(250, 247, 242, 0.55));
}

.rc-hero-inner {
    padding-inline: var(--pad-x);
}

.rc-hero-title {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-top: 0.5em;
}

.rc-hero-title em {
    font-style: normal;
    color: var(--gold-deep);
}

.rc-hero-en {
    margin-top: 1.3em;
    font-family: var(--serif-en);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--gold-deep);
    letter-spacing: 0.04em;
}

.rc-message {
    background: var(--bg-warm);
}

.rc-message-inner {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.rc-message-text {
    font-family: var(--mincho);
    font-size: clamp(var(--fz-2), 2.6vw, var(--fz-4));
    line-height: 2.1;
    letter-spacing: 0.08em;
    color: var(--ink);
}

.rc-message-text em {
    font-style: normal;
    color: var(--gold-deep);
}

.rc-message-prose {
    margin-top: 2.4em;
}

.rc-message-prose p {
    line-height: 2.1;
    letter-spacing: 0.06em;
    color: var(--ink-2);
}

.rc-points-grid {
    max-width: var(--w);
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.rc-point {
    padding: clamp(1.8rem, 3vw, 2.6rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 3px;
}

.rc-point-no {
    font-family: var(--serif-en);
    font-size: 1.4rem;
    color: var(--gold);
}

.rc-point-title {
    font-family: var(--mincho);
    font-size: var(--fz-2);
    letter-spacing: 0.05em;
    margin-top: 0.6em;
    color: var(--ink);
}

.rc-point-text {
    margin-top: 1em;
    font-size: var(--fz-0);
    line-height: 2;
    letter-spacing: 0.05em;
    color: var(--ink-2);
}

.rc-positions {
    background: var(--bg-sage);
}

.rc-pos-list {
    max-width: var(--w-narrow);
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    display: grid;
    gap: clamp(1.2rem, 2.5vw, 2rem);
}

.rc-pos {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: clamp(1.8rem, 3.5vw, 2.8rem);
}

.rc-pos-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    flex-wrap: wrap;
    margin-bottom: 1.4em;
    padding-bottom: 1.2em;
    border-bottom: 1px solid var(--line);
}

.rc-pos-title {
    font-family: var(--mincho);
    font-size: var(--fz-3);
    letter-spacing: 0.05em;
    color: var(--ink);
}

.rc-pos-tag {
    font-family: var(--sans-en);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border: 1px solid var(--gold-soft);
    border-radius: 999px;
    padding: 0.4em 1.1em;
}

.rc-pos-dl>div {
    display: grid;
    grid-template-columns: 6em 1fr;
    gap: 1.2em;
    padding-block: 0.8em;
}

.rc-pos-dl dt {
    font-family: var(--sans-en);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding-top: 0.2em;
}

.rc-pos-dl dd {
    font-size: var(--fz-0);
    line-height: 1.9;
    letter-spacing: 0.05em;
    color: var(--ink);
}

/* 集客サポート バンド */
.rc-support {
    background: var(--bg-sage, #e9ece4);
    padding-block: clamp(60px, 9vw, 120px);
    padding-inline: var(--pad-x);
    text-align: center;
}

.rc-support-inner {
    max-width: var(--w, 1100px);
    margin-inline: auto;
}

.rc-support-title {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(1.8rem, 5vw, 3rem);
    letter-spacing: 0.06em;
    color: var(--ink);
    margin: 0.4em 0 0.6em;
    line-height: 1.4;
}

.rc-support-lead {
    max-width: 40em;
    margin: 0 auto clamp(2.2rem, 5vw, 3.4rem);
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 2.1;
    color: var(--ink-2);
    letter-spacing: 0.04em;
}

.rc-support-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.6rem, 3vw, 2.6rem);
    text-align: left;
}

.rc-support-points li {
    padding-top: 1.2em;
    border-top: 1px solid var(--gold-soft, #e7d8bf);
}

.rc-support-points b {
    display: block;
    font-family: var(--mincho);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.04em;
    margin-bottom: 0.5em;
}

.rc-support-points span {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--ink-2);
    letter-spacing: 0.03em;
}

@media (max-width: 760px) {
    .rc-support-points {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rc-support-points li {
        padding: 1.1em 0;
    }

    .rc-support-points li:last-child {
        border-bottom: 1px solid var(--gold-soft, #e7d8bf);
    }
}

.rc-cta {
    background:
        linear-gradient(rgba(46, 42, 35, 0.5), rgba(46, 42, 35, 0.5)),
        url("../images/salon-1.jpg") center/cover no-repeat;
    padding-block: clamp(80px, 12vw, 160px);
    padding-inline: var(--pad-x);
    text-align: center;
}

.rc-cta-inner {
    max-width: 680px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .rc-points-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .rc-pos-dl>div {
        grid-template-columns: 1fr;
        gap: 0.4em;
    }

    /* 見出しを全幅にして長いカタカナ職種名の不自然な折返しを防ぐ */
    .rc-pos-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7em;
    }

    .rc-pos-title {
        font-size: var(--fz-2);
    }
}

/* =========================================================
   Online Shop (会員限定 / パスコードゲート)
   ========================================================= */
.shop-body.locked .bk-header,
.shop-body.locked .shop,
.shop-body.locked .site-footer {
    display: none;
}

.gate {
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: var(--bg);
    display: grid;
    place-items: center;
    padding: var(--pad-x);
    text-align: center;
}

.shop-body.unlocked .gate {
    display: none;
}

.gate-inner {
    max-width: 400px;
}

.gate-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 2.2em;
    mix-blend-mode: multiply;
}

.gate-label {
    font-family: var(--sans-en);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.4em;
}

.gate-text {
    font-size: var(--fz-0);
    line-height: 2;
    letter-spacing: 0.06em;
    color: var(--ink-2);
    margin-bottom: 2.4em;
}

.gate-form {
    display: flex;
    gap: 0.6em;
}

.gate-form input {
    flex: 1;
    font-family: var(--gothic);
    font-size: 1rem;
    padding: 0.9em 1.2em;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: var(--surface);
    color: var(--ink);
    text-align: center;
    letter-spacing: 0.1em;
}

.gate-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}

.gate-form button {
    padding: 0.9em 1.6em;
    background: var(--dark);
    color: #fff;
    border-radius: 3px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: background 0.4s var(--ease);
}

.gate-form button:hover {
    background: var(--gold-deep);
}

.gate-error {
    margin-top: 1.4em;
    font-size: 0.8rem;
    color: #b06a5a;
    letter-spacing: 0.04em;
}

.gate-back {
    display: inline-block;
    margin-top: 2.4em;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--ink-3);
}

.gate-back:hover {
    color: var(--gold-deep);
}

.shop {
    padding-bottom: 120px;
}

.shop-head {
    text-align: center;
    padding: clamp(50px, 8vw, 96px) var(--pad-x) 0;
}

.shop-cat {
    padding-block: clamp(44px, 6vw, 84px);
}

.shop-cat:nth-child(odd) {
    background: var(--bg-warm);
}

.shop-cat-head {
    max-width: var(--w);
    margin-inline: auto;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.shop-grid {
    max-width: var(--w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.6rem, 3.5vw, 3.5rem);
}

.shop-item {
    text-align: center;
    position: relative;
}

/* 要カウンセリング（メーカー対面指定）バッジ + CTA */
.shop-badge {
    position: absolute;
    top: 0.7em;
    left: 0.7em;
    z-index: 2;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(46, 42, 35, 0.82);
    padding: 0.35em 0.8em;
    border-radius: 999px;
}

.shop-buy-counsel {
    border-color: var(--ink);
    color: var(--ink);
}

.shop-buy-counsel:hover {
    background: var(--ink);
    color: #fff;
}

.shop-counsel-note {
    margin-top: 0.8em;
    font-size: 0.7rem;
    line-height: 1.7;
    color: var(--ink-3);
    letter-spacing: 0.02em;
}

/* 商品マスタ描画の状態表示 */
.shop-boot,
.shop-empty {
    text-align: center;
    padding: 4em 0;
    color: var(--ink-3);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

.shop-badge-oos {
    background: rgba(140, 133, 121, 0.9);
}

.shop-buy-oos {
    display: inline-block;
    margin-top: 1.2em;
    padding: 0.75em 2em;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    cursor: default;
}

/* フッター法務リンク */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6em 1.6em;
    margin-bottom: 1em;
}

.footer-legal a {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    color: var(--ink-3);
}

.footer-legal a:hover {
    color: var(--gold);
}

.shop-thumb {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 3px;
    margin-bottom: 1.4em;
    background: linear-gradient(150deg, var(--gold-soft), var(--bg-sage));
}

/* 商品写真が入るまでの上品なプレースホルダー（実写真を入れる際は背景画像を指定し opacity:0 で消す）*/
.shop-thumb::after {
    content: "enn.";
    font-family: var(--serif-en);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: 0.06em;
    color: var(--ink);
    opacity: 0.14;
}

.shop-thumb[data-tone="b"] {
    background: linear-gradient(150deg, #efe5d2, #e3e7df);
}

.shop-thumb[data-tone="c"] {
    background: linear-gradient(150deg, #ece2cf, #f0ebe0);
}

.shop-thumb[data-tone="d"] {
    background: linear-gradient(150deg, #e7e9e2, #efe6d4);
}

.shop-thumb[data-tone="e"] {
    background: linear-gradient(150deg, #e3e8de, #efe7d6);
}

.shop-thumb[data-tone="f"] {
    background: linear-gradient(150deg, #f0e7d6, #e6e9e1);
}

.shop-name {
    font-family: var(--mincho);
    font-size: var(--fz-2);
    letter-spacing: 0.05em;
    color: var(--ink);
    word-break: keep-all;
    /* 「モイスチャー セラム」を語の途中で折らず、スペース位置で改行 */
}

.shop-desc {
    margin-top: 0.7em;
    font-size: var(--fz-0);
    line-height: 1.9;
    color: var(--ink-2);
    letter-spacing: 0.04em;
}

.shop-price {
    margin-top: 0.9em;
    font-family: var(--serif-en);
    font-size: 1.3rem;
    color: var(--ink);
}

.shop-buy {
    display: inline-block;
    margin-top: 1.2em;
    padding: 0.75em 2em;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.shop-buy:hover {
    background: var(--gold);
    color: #fff;
}

.shop-note {
    max-width: var(--w-narrow);
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    padding-inline: var(--pad-x);
    text-align: center;
    font-size: 0.78rem;
    line-height: 2;
    color: var(--ink-3);
    letter-spacing: 0.04em;
}

@media (max-width: 680px) {
    .shop-grid {
        gap: 1.1rem;
    }

    .shop-name {
        font-size: 1.02rem;
        letter-spacing: 0.02em;
    }

    .shop-desc {
        font-size: 0.78rem;
    }

    .shop-buy {
        padding: 0.7em 1.3em;
        font-size: 0.72rem;
    }
}

/* =========================================================
   Concept
   ========================================================= */
.concept {
    background: var(--bg-warm);
}

.concept-grid {
    max-width: var(--w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.concept-prose {
    margin-top: 2.4em;
}

.concept-prose p {
    line-height: var(--lh-lead);
    letter-spacing: 0.06em;
    color: var(--ink-2);
}

.concept-prose p+p {
    margin-top: 1.8em;
}

.concept-fig {
    position: relative;
}

.concept-fig img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.concept-fig figcaption {
    position: absolute;
    bottom: 1.4em;
    left: 1.4em;
    font-family: var(--serif-en);
    font-style: italic;
    font-size: var(--fz-0);
    color: #fff;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 12px rgba(46, 42, 35, 0.4);
}

/* =========================================================
   Menu
   ========================================================= */
.menu-list {
    max-width: var(--w-narrow);
    margin: clamp(3.5rem, 7vw, 6rem) auto 0;
}

.menu-item {
    padding-block: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--line);
}

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

.menu-item-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 1.4em;
}

.menu-no {
    font-family: var(--serif-en);
    font-size: var(--fz-2);
    color: var(--gold);
    letter-spacing: 0.05em;
}

.menu-name {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: var(--fz-3);
    letter-spacing: 0.08em;
    color: var(--ink);
    line-height: 1.4;
}

.menu-name-en {
    font-family: var(--serif-en);
    font-style: italic;
    font-size: var(--fz-0);
    color: var(--ink-3);
    letter-spacing: 0.04em;
    margin-top: 0.3em;
}

.menu-price {
    font-family: var(--serif-en);
    font-size: var(--fz-4);
    color: var(--ink);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.menu-price span {
    font-size: 0.6em;
    color: var(--ink-3);
    margin-left: 0.15em;
}

.menu-price-ask {
    font-family: var(--gothic);
    font-size: var(--fz-1);
    color: var(--ink-3);
    letter-spacing: 0.08em;
}

.menu-desc {
    margin-top: 1.4em;
    max-width: 90%;
    font-size: var(--fz-0);
    line-height: 2.0;
    letter-spacing: 0.06em;
    color: var(--ink-2);
}

/* =========================================================
   Salon
   ========================================================= */
.salon {
    background: var(--bg-sage);
}

.salon-head {
    max-width: var(--w);
    margin-inline: auto;
    text-align: center;
}

.salon-lead {
    margin-top: 2em;
    line-height: var(--lh-lead);
    letter-spacing: 0.08em;
    color: var(--ink-2);
}

.salon-gallery {
    max-width: 1320px;
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(12px, 1.6vw, 22px);
}

.salon-gallery .g-main {
    grid-row: 1 / 3;
}

.salon-gallery figure {
    position: relative;
    overflow: hidden;
}

.salon-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.salon-gallery .g-main img {
    aspect-ratio: 4 / 5;
}

.salon-gallery .g-sub img {
    aspect-ratio: 16 / 10;
}

.salon-gallery figure:hover img {
    transform: scale(1.04);
}

/* =========================================================
   Profile
   ========================================================= */
.profile {
    background: var(--bg-warm);
}

.profile-grid {
    max-width: var(--w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.profile-fig img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.profile-role {
    margin-top: 1em;
    font-family: var(--sans-en);
    font-size: var(--fz-0);
    letter-spacing: 0.14em;
    color: var(--gold-deep);
}

.profile .sec-title {
    font-family: var(--serif-en);
    font-weight: 500;
    font-size: clamp(var(--fz-6), 7vw, var(--fz-9));
    letter-spacing: 0.04em;
}

.profile-prose {
    margin-top: 2em;
}

.profile-prose p {
    line-height: var(--lh-lead);
    letter-spacing: 0.06em;
    color: var(--ink-2);
}

.profile-prose p+p {
    margin-top: 1.6em;
}

/* =========================================================
   News
   ========================================================= */
.news-list {
    max-width: var(--w-narrow);
    margin: clamp(3rem, 6vw, 5rem) auto 0;
}

.news-item {
    border-top: 1px solid var(--line);
}

.news-item:last-child {
    border-bottom: 1px solid var(--line);
}

.news-item a {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 1.6em;
    padding-block: 1.8em;
    transition: opacity 0.4s var(--ease);
}

.news-item a:hover {
    opacity: 0.6;
}

.news-date {
    font-family: var(--sans-en);
    font-size: var(--fz-0);
    letter-spacing: 0.1em;
    color: var(--gold-deep);
}

.news-cat {
    font-family: var(--sans-en);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45em 1.2em;
}

.news-text {
    font-family: var(--mincho);
    font-size: var(--fz-1);
    letter-spacing: 0.06em;
    color: var(--ink);
    line-height: 1.8;
}

/* =========================================================
   Access
   ========================================================= */
.access-grid {
    max-width: var(--w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}

.access-dl {
    margin-top: 2.6em;
}

.access-dl>div {
    display: grid;
    grid-template-columns: 7em 1fr;
    gap: 1.4em;
    padding-block: 1.3em;
    border-top: 1px solid var(--line);
}

.access-dl>div:last-child {
    border-bottom: 1px solid var(--line);
}

.access-dl dt {
    font-family: var(--sans-en);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding-top: 0.3em;
}

.access-dl dd {
    font-size: var(--fz-0);
    line-height: 1.9;
    letter-spacing: 0.06em;
    color: var(--ink);
}

.access-dl dd a {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.15em;
}

.access-map {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--line-soft);
}

.access-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(0.96);
}

/* =========================================================
   Reserve CTA
   ========================================================= */
.reserve {
    background:
        linear-gradient(rgba(46, 42, 35, 0.5), rgba(46, 42, 35, 0.5)),
        url("../images/salon-3.jpg") center/cover fixed no-repeat;
    padding-block: clamp(96px, 14vw, 200px);
    padding-inline: var(--pad-x);
    text-align: center;
}

.reserve-inner {
    max-width: 760px;
    margin-inline: auto;
    color: #fff;
}

.reserve-eyebrow {
    font-family: var(--sans-en);
    font-size: var(--fz-0);
    letter-spacing: var(--ls-en);
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 1.6em;
}

.reserve-title {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(var(--fz-5), 5.5vw, var(--fz-8));
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #fff;
}

.reserve-lead {
    margin-top: 1.8em;
    line-height: 2;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.86);
}

.reserve-actions {
    margin-top: 3em;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
    min-width: 220px;
    padding: 1.2em 2.4em;
    border-radius: 999px;
    transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease);
}

.btn-en {
    font-family: var(--sans-en);
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.btn-jp {
    font-size: 0.96rem;
    letter-spacing: 0.08em;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-fill {
    background: var(--gold);
    color: #fff;
}

.btn-fill .btn-en {
    color: var(--gold-soft);
}

.btn-fill:hover {
    background: var(--gold-deep);
    transform: translateY(-3px);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.82);
    padding-inline: var(--pad-x);
}

.footer-inner {
    max-width: var(--w);
    margin-inline: auto;
    padding-block: clamp(60px, 9vw, 100px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem 4rem;
    align-items: start;
}

.footer-mark {
    font-family: var(--serif-en);
    font-weight: 500;
    font-size: 2.6rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-tagline {
    margin-top: 0.8em;
    font-size: var(--fz-0);
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1em 2.4em;
}

.footer-nav a {
    font-size: var(--fz-0);
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.4s var(--ease);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-sns {
    grid-column: 1 / -1;
    display: flex;
    gap: 2em;
    padding-top: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-sns a {
    font-family: var(--sans-en);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.4s var(--ease);
}

.footer-sns a:hover {
    color: var(--gold);
}

.footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
    max-width: var(--w);
    margin-inline: auto;
    padding-block: 2em;
    font-family: var(--sans-en);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

/* =========================================================
   Floating mobile CTA
   ========================================================= */
.float-cta {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 90;
    display: none;
    gap: 1px;
    background: var(--line);
    transform: translateY(100%);
    transition: transform 0.6s var(--ease);
}

.float-cta.show {
    transform: translateY(0);
}

.float-cta a {
    flex: 1;
    text-align: center;
    padding: 1.1em;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
}

.float-tel {
    background: var(--surface);
    color: var(--ink);
}

.float-line {
    background: var(--gold);
    color: #fff;
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
[data-sa] {
    will-change: opacity, transform;
}

.js [data-sa] {
    opacity: 0;
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js [data-sa="up"] {
    transform: translateY(22px);
}

.js [data-sa="scale"] {
    transform: scale(0.965);
}

.js [data-sa="op"] {
    transform: none;
}

.js [data-sa].is-active {
    opacity: 1;
    transform: none;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
    :root {
        --header-h: 72px;
    }

    .gnav,
    .header-cta {
        display: none;
    }

    .hbg {
        display: block;
    }

    .concept-grid,
    .profile-grid,
    .access-grid {
        grid-template-columns: 1fr;
    }

    .concept-fig,
    .profile-fig {
        order: -1;
        max-width: 460px;
    }

    .profile-fig {
        margin-inline: auto;
    }

    .salon-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .salon-gallery .g-main {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .salon-gallery .g-main img {
        aspect-ratio: 16 / 10;
    }

    .reserve {
        background-attachment: scroll;
    }
}

@media (max-width: 680px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .menu-item-head {
        grid-template-columns: auto 1fr;
        gap: 0.6em 1em;
    }

    .menu-price {
        grid-column: 2;
        margin-top: 0.4em;
    }

    .menu-desc {
        max-width: 100%;
    }

    .news-item a {
        grid-template-columns: 1fr;
        gap: 0.8em;
    }

    .news-cat {
        justify-self: start;
    }

    .access-dl>div {
        grid-template-columns: 1fr;
        gap: 0.5em;
    }

    .float-cta {
        display: flex;
    }

    body {
        padding-bottom: calc(54px + env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-sa] {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero {
        height: 100svh;
    }

    .hero-sticky {
        position: relative;
    }

    .hero-shape {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* =========================================================
   Lenis (慣性スムーススクロール) — 必須CSS
   ========================================================= */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* =========================================================
   Marquee (流れるブランドキーワード)
   ========================================================= */
.marquee {
    overflow: hidden;
    padding-block: clamp(30px, 4.5vw, 56px);
    border-block: 1px solid var(--line);
    background: var(--bg);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee-track span {
    font-family: var(--serif-en);
    font-style: italic;
    font-size: clamp(1.5rem, 3.4vw, 2.6rem);
    letter-spacing: 0.03em;
    color: var(--gold);
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* =========================================================
   Photo stream (写真が右→左へ流れる, profile前)
   ========================================================= */
.photo-stream {
    overflow: hidden;
    padding-block: clamp(44px, 6vw, 88px);
    background: var(--bg);
}

.photo-stream-track {
    display: flex;
    gap: clamp(12px, 1.6vw, 22px);
    width: max-content;
    animation: photoStream 48s linear infinite;
}

.photo-stream-track img {
    height: clamp(200px, 26vw, 330px);
    width: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes photoStream {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.photo-stream:hover .photo-stream-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .photo-stream-track {
        animation: none;
    }
}

/* =========================================================
   Header invert (暗いセクション上での色反転)
   ========================================================= */
.site-header.is-invert {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.site-header.is-invert .brand-mark,
.site-header.is-invert .nav-en {
    color: #fff;
}

.site-header.is-invert .brand-sub,
.site-header.is-invert .nav-jp {
    color: rgba(255, 255, 255, 0.72);
}

.site-header.is-invert .header-cta {
    border-color: rgba(255, 255, 255, 0.55);
}

.site-header.is-invert .header-cta-en {
    color: var(--gold-soft);
}

.site-header.is-invert .header-cta-jp {
    color: #fff;
}

.site-header.is-invert .hbg span {
    background: #fff;
}

/* =========================================================
   回転する円形の予約ボタン (ICHI流, ただし enn. はダークトープ)
   ========================================================= */
.spin-btn {
    position: fixed;
    right: clamp(20px, 3vw, 42px);
    bottom: clamp(20px, 3vw, 42px);
    z-index: 80;
    width: clamp(98px, 11vw, 138px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: #fff;
    transition: transform 0.6s var(--ease);
}

.spin-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--dark);
    box-shadow: 0 18px 40px -14px rgba(46, 42, 35, 0.6);
    transition: background 0.5s var(--ease);
}

.spin-btn:hover {
    transform: scale(1.05);
}

.spin-btn:hover::before {
    background: var(--gold-deep);
}

.spin-btn-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 14s linear infinite;
}

.spin-btn-ring text {
    font-family: var(--sans-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    fill: #fff;
    text-transform: uppercase;
}

.spin-btn-core {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 38%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.spin-btn-arrow {
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.5s var(--ease);
}

.spin-btn:hover .spin-btn-arrow {
    transform: translate(3px, -3px);
}

/* =========================================================
   Shapes (Matter.js 物理演算ビジュアル)
   ========================================================= */
.shapes {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: var(--sec-y);
    background: var(--bg-sage);
    overflow: hidden;
}

.shapes-head {
    max-width: var(--w);
    margin-inline: auto;
    padding-inline: var(--pad-x);
    text-align: center;
    position: relative;
    z-index: 2;
}

.shapes-lead {
    margin-top: 1.8em;
    line-height: var(--lh-lead);
    letter-spacing: 0.08em;
    color: var(--ink-2);
}

.shapes-hint {
    margin-top: 1.8em;
    font-family: var(--sans-en);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.shapes-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
    cursor: grab;
}

.shapes-stage:active {
    cursor: grabbing;
}

.shapes-stage canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* =========================================================
   Hero / Shapes / Spin — responsive
   ========================================================= */
@media (max-width: 1000px) {
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: clamp(2.5rem, 7vh, 5rem);
    }

    .hero-stage {
        width: min(66vw, 400px);
        order: 2;
    }

    .hero-copy {
        position: static;
        transform: none;
        text-align: center;
        order: 1;
        pointer-events: auto;
    }

    .hero-news {
        display: none;
    }
}

@media (max-width: 680px) {
    /* ヒーロー見出し: 端で切れないよう縮小＋字間を詰める */
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
        letter-spacing: 0.04em;
        line-height: 1.46;
    }

    .hero-en {
        font-size: clamp(1rem, 4.6vw, 1.3rem);
    }

    /* mobile: 回転ボタンは見出しと重なるため隠し、常設の下部バーを予約導線にする */
    .spin-btn {
        display: none;
    }

    .float-cta {
        transform: none;
    }

    .ring-text {
        font-size: 15px;
        letter-spacing: 0.2em;
    }
}
