/* =========================================================
   une（ユヌ）— プライベートサロン 共通スタイル
   白基調・写真主役・モダン×リッチ×個人店の温かみ
   差し色：グレージュ #B59E84 ／ CTA：チャコール #2E2B28
   ※こちらはご提案用のサンプルです（制作：MA Tech Lab）
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  --c-bg:       #ffffff;
  --c-bg-soft:  #faf8f4;   /* 温かみのあるオフホワイト */
  --c-bg-soft2: #f1ebe2;
  --c-ink:      #211c18;   /* 純黒を避けた温かいチャコール */
  --c-ink-2:    #544e47;
  --c-ink-3:    #948d83;
  --c-line:     #ebe5dc;   /* ヘアライン罫 */

  --c-accent:   #b59e84;   /* グレージュ（差し色） */
  --c-accent-d: #957b5c;   /* 小さな文字でも読める一段深いグレージュ */
  --c-accent-s: #efe8df;

  --c-cta:      #2a2622;   /* CTA専用チャコール */
  --c-cta-d:    #191613;

  --ff-en: "Jost", "Zen Kaku Gothic New", sans-serif;
  --ff-jp: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;

  --header-h: 80px;
  --maxw: 1140px;
  --gut: clamp(22px, 5vw, 68px);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  /* 影は低く・広く・淡く＝紙の上に静かに浮く質感 */
  --shadow-soft: 0 20px 48px -30px rgba(40, 32, 24, .30);
  --shadow-hov:  0 34px 66px -34px rgba(40, 32, 24, .38);
  --shadow-cta:  0 16px 32px -16px rgba(33, 28, 24, .42);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: var(--ff-jp);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.95;           /* 年齢層高め想定：ゆったり行間 */
  font-size: 17px;             /* 可読性優先のやや大きめ本文 */
  letter-spacing: .015em;      /* 和文は控えめなトラッキングで上質に */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--c-accent-d); outline-offset: 3px; border-radius: 4px; }

/* prefers-reduced-motion：浮遊・スクロール挙動をオフ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .float, .float-slow { animation: none !important; }
  .hero__media img.kenburns { animation: none !important; }
  .marquee__track { animation: none !important; }
  .js-ready .feature__media .frame,
  .js-ready .owner__photo .frame,
  .js-ready .service-card__media { clip-path: none !important; }
  .cursor-ring, .cursor-dot { display: none !important; }
}

/* ---------- 共通タイポ ---------- */
.en {
  font-family: var(--ff-en);
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.section { padding-block: clamp(64px, 11vw, 132px); }
.section--soft { background: var(--c-bg-soft); }
.section--accent { background: var(--c-bg-soft2); }
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
/* 固定ヘッダーで見出しが隠れないように */
.anchor { scroll-margin-top: calc(var(--header-h) + 12px); }

.section-head { text-align: center; margin-bottom: clamp(42px, 5.5vw, 68px); }
.section-head .en {
  display: block;
  font-size: clamp(32px, 5.6vw, 52px);
  font-weight: 300;
  letter-spacing: .22em;
  line-height: 1.12;
  color: var(--c-ink);
}
.section-head .jp {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--c-accent-d);
  position: relative;
  padding-top: 18px;
}
.section-head .jp::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 1px; background: var(--c-accent);
}
.section-head.left { text-align: left; }
.section-head.left .jp::before { left: 0; transform: none; }

.lead { max-width: 640px; margin: 0 auto; text-align: center; color: var(--c-ink-2); line-height: 2.15; font-size: 16px; }
.lead.left { margin: 0; text-align: left; }

/* =========================================================
   ボタン
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .7em;
  padding: 16px 34px;
  font-family: var(--ff-en);
  font-size: 13.5px; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--c-ink);
  color: var(--c-ink);
  background: transparent;
  border-radius: 999px;
  transition: color .4s var(--ease), background .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--c-ink); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--accent { border-color: var(--c-accent); color: var(--c-accent-d); }
.btn--accent:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.btn--light { border-color: rgba(255,255,255,.75); color: #fff; }
.btn--light:hover { background: #fff; color: var(--c-ink); border-color: #fff; }

/* CTA専用（チャコール＋白太字＋柔らかい影＋ホバーで浮く） */
.btn--cta {
  background: var(--c-cta); color: #fff; border-color: var(--c-cta);
  font-weight: 500; box-shadow: var(--shadow-cta);
}
.btn--cta:hover { background: var(--c-cta-d); border-color: var(--c-cta-d); color: #fff; transform: translateY(-3px); }
.btn--cta .scissors { stroke: #fff; }

/* テキストリンク（→） */
.link-arrow {
  display: inline-flex; align-items: center; gap: .8em;
  font-family: var(--ff-en); font-size: 14.3px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-ink);
}
.link-arrow::after {
  content: ""; width: 36px; height: 1px; background: var(--c-ink);
  transition: width .4s var(--ease), background .4s var(--ease);
}
.link-arrow:hover::after { width: 56px; background: var(--c-accent); }

/* =========================================================
   ハサミアイコン（ホバー/クリックで「チョキ」）
   ========================================================= */
.scissors { width: 1.05em; height: 1.05em; overflow: visible; flex: none; }
.scissors .blade {
  transform-box: fill-box;
  transform-origin: 60% 50%;
  transition: transform .45s var(--ease);
}
.btn:hover .scissors .blade-top,
.link-arrow:hover .scissors .blade-top { transform: rotate(-13deg); }
.btn:hover .scissors .blade-bottom,
.link-arrow:hover .scissors .blade-bottom { transform: rotate(13deg); }
.scissors.snip .blade-top { animation: snipTop .42s var(--ease); }
.scissors.snip .blade-bottom { animation: snipBottom .42s var(--ease); }
@keyframes snipTop {
  0%, 45% { transform: rotate(-15deg); }
  100% { transform: rotate(2deg); }
}
@keyframes snipBottom {
  0%, 45% { transform: rotate(15deg); }
  100% { transform: rotate(-2deg); }
}

/* =========================================================
   写真の「浮遊（フローティング）」と「ホバー浮き」
   ========================================================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.float { animation: float 7s var(--ease) infinite; }
.float-slow { animation: floatSlow 8.5s var(--ease) infinite; }

/* ホバーで拡大＋浮き＋影（汎用フレーム） */
.lift {
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.lift img { transition: transform .6s var(--ease); display: block; width: 100%; }
.lift:hover { transform: translateY(-7px); box-shadow: var(--shadow-hov); }
.lift:hover img { transform: scale(1.05); }

/* =========================================================
   ヘッダー（全ページ共通・sticky）
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-solid {
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom-color: var(--c-line);
  box-shadow: 0 8px 30px -22px rgba(0,0,0,.45);
}
/* ヒーロー上＝初期は白文字 */
.header-over-hero .site-header:not(.is-solid) { color: #fff; }
.header-over-hero .site-header:not(.is-solid) .logo-main,
.header-over-hero .site-header:not(.is-solid) .nav-list > li > a,
.header-over-hero .site-header:not(.is-solid) .header-tel { color: #fff; }
.header-over-hero .site-header:not(.is-solid) .logo-sub,
.header-over-hero .site-header:not(.is-solid) .header-tel small { color: var(--c-accent-s); }
.header-over-hero .site-header:not(.is-solid) .logo-mark { stroke: #fff; }
.header-over-hero .site-header:not(.is-solid) .nav-list > li > a::after { background: #fff; }
.header-over-hero .site-header:not(.is-solid) .hamburger span { background: #fff; }

.header-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

/* ロゴ（ワードマーク：ハサミ＋小枝モチーフ） */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark { width: 30px; height: 30px; stroke: var(--c-accent-d); flex: none; transition: stroke .4s var(--ease); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--ff-en); font-size: 25.3px; font-weight: 500; letter-spacing: .26em; }
.logo-sub { font-family: var(--ff-en); font-size: 9.4px; letter-spacing: .42em; color: var(--c-accent-d); margin-top: 4px; }

/* ナビ（PCでは必ず横一列・折り返し禁止） */
.nav { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.nav-list { display: flex; align-items: center; gap: 15px; flex-wrap: nowrap; white-space: nowrap; }
.nav-list > li { white-space: nowrap; }
.nav-list > li > a {
  font-family: var(--ff-jp); font-size: 14.3px; font-weight: 500; letter-spacing: .03em;
  position: relative; padding-block: 6px; white-space: nowrap;
}
.nav-list > li > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.is-active::after { transform: scaleX(1); }
.nav-list > li > a.is-active { color: var(--c-accent-d); }

/* ナビ内のCTA（お問い合わせはこちら） */
.nav-list .nav-cta a {
  display: inline-flex; align-items: center; gap: .45em;
  background: var(--c-cta); color: #fff !important;
  padding: 9px 16px; border-radius: 999px;
  letter-spacing: .04em; font-size: 13.8px; box-shadow: var(--shadow-cta);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.nav-list .nav-cta a::after { display: none; }
.nav-list .nav-cta a:hover { background: var(--c-cta-d); transform: translateY(-2px); }
.nav-list .nav-cta .scissors { stroke: #fff; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-tel {
  font-family: var(--ff-en); font-size: 18.7px; letter-spacing: .1em;
  display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.25;
  white-space: nowrap;
}
.header-tel small { font-family: var(--ff-jp); font-size: 9.9px; letter-spacing: .2em; color: var(--c-ink-3); }

/* ハンバーガー */
.hamburger { display: none; width: 30px; height: 22px; position: relative; z-index: 120; }
.hamburger span {
  position: absolute; left: 0; width: 100%; height: 1.6px; background: var(--c-ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .4s var(--ease);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.nav-open .hamburger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); background: var(--c-ink); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); background: var(--c-ink); }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative; height: 100svh; min-height: 580px;
  margin-top: calc(-1 * var(--header-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 38%, transparent 38%, rgba(24,19,14,.30) 100%),
    linear-gradient(180deg, rgba(24,19,14,.38) 0%, rgba(24,19,14,.14) 44%, rgba(24,19,14,.56) 100%);
}
.hero__inner { padding: 0 24px; position: relative; z-index: 1; }
.hero__eyebrow { font-family: var(--ff-en); font-size: 12.5px; letter-spacing: .46em; text-transform: uppercase; margin-bottom: 26px; opacity: .92; }
.hero__title { font-family: var(--ff-en); font-weight: 300; font-size: clamp(58px, 14vw, 142px); letter-spacing: .2em; line-height: 1; margin-left: .2em; }
.hero__sub { margin-top: 26px; font-size: clamp(15px, 2.1vw, 18px); letter-spacing: .12em; font-weight: 300; line-height: 2; }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; transform: translateY(16px); animation: heroFade 1s var(--ease) 1.05s forwards; }
@keyframes heroFade { to { opacity: 1; transform: none; } }

/* ヒーロー：テキストのマスク・リビール */
.hero .msk { display: block; overflow: hidden; }
.hero .msk > span { display: block; transform: translateY(118%); animation: maskUp 1.05s var(--ease) forwards; }
.hero__eyebrow .msk > span { animation-delay: .25s; }
.hero__title .msk > span { animation-delay: .42s; }
.hero__sub .msk:nth-child(1) > span { animation-delay: .66s; }
.hero__sub .msk:nth-child(2) > span { animation-delay: .80s; }
@keyframes maskUp { to { transform: translateY(0); } }

/* ヒーロー背景：ゆるやかなケン・バーンズ */
.hero__media img.kenburns { animation: kenburns 20s var(--ease) infinite alternate; transform-origin: 56% 42%; }
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.12); } }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  font-family: var(--ff-en); font-size: 12.1px; letter-spacing: .35em; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 6px; cursor: pointer;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.hero__scroll svg { width: 14px; height: 14px; animation: scrollArrow 1.8s var(--ease) infinite; }
.hero__scroll:hover { opacity: .75; }
@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* =========================================================
   下層ページ用ヘッダー（gallery / blog）
   ========================================================= */
.page-hero { position: relative; padding-top: calc(var(--header-h) + 8px); background: var(--c-bg-soft); }
.page-hero__inner { padding-block: clamp(40px, 7vw, 84px); text-align: center; }
.page-hero .en { display: block; font-size: clamp(35.2px, 6.6vw, 63.8px); font-weight: 300; letter-spacing: .22em; line-height: 1.05; }
.page-hero .jp { display: inline-block; margin-top: 16px; font-size: 14.3px; letter-spacing: .32em; color: var(--c-accent-d); position: relative; padding-top: 18px; }
.page-hero .jp::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 30px; height: 1px; background: var(--c-accent); }
.crumbs { font-family: var(--ff-en); font-size: 12.1px; letter-spacing: .16em; color: var(--c-ink-3); text-align: center; padding-top: 16px; }
.crumbs a:hover { color: var(--c-accent-d); }
.crumbs span { margin: 0 .6em; }

/* =========================================================
   写真＋テキスト 2カラム（コンセプト等）
   ========================================================= */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 74px); align-items: center; }
.feature--rev .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.feature__media .frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s var(--ease); }
.feature__media:hover .frame img { transform: scale(1.04); }
.feature__media .tag {
  position: absolute; left: 18px; bottom: 18px;
  background: #fff; padding: 12px 20px; border-radius: 999px; box-shadow: var(--shadow-soft);
  font-family: var(--ff-en); font-size: 12.1px; letter-spacing: .22em;
}
.feature--rev .feature__media .tag { left: auto; right: 18px; }
.feature__body .en { display: block; font-size: clamp(28px, 4.2vw, 42px); font-weight: 300; letter-spacing: .16em; }
.feature__body .jp-label { display: inline-block; margin: 14px 0 24px; font-size: 12.5px; font-weight: 500; letter-spacing: .3em; color: var(--c-accent-d); }
.feature__body h3 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 600; letter-spacing: .02em; margin-bottom: 22px; line-height: 1.75; }
.feature__body p { font-size: 16px; color: var(--c-ink-2); margin-bottom: 20px; line-height: 2.05; }
.feature__body .sign { font-family: var(--ff-en); font-size: 16px; letter-spacing: .14em; color: var(--c-accent-d); margin-top: 10px; }

/* =========================================================
   オーナー紹介
   ========================================================= */
.owner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.owner__photo { position: relative; }
.owner__photo .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.owner__photo .frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
/* 顔写真プレースホルダ（本番で実写に差し替え） */
.owner__photo .frame.is-ph {
  position: relative; aspect-ratio: 3/4; background: var(--c-bg-soft2);
  border: 1px solid var(--c-line); display: grid; place-items: center;
}
.owner__photo .frame.is-ph::after { content: ""; position: absolute; inset: 16px; border: 1px solid var(--c-line); border-radius: var(--r-md); pointer-events: none; }
.owner__photo .frame.is-ph .ph-label {
  font-family: var(--ff-jp); font-size: 16.5px; letter-spacing: .3em; color: var(--c-ink-3); z-index: 1;
}
.owner__photo .badge {
  position: absolute; right: -14px; bottom: 24px;
  background: var(--c-cta); color: #fff; border-radius: 999px;
  padding: 12px 22px; font-family: var(--ff-en); font-size: 12.1px; letter-spacing: .2em;
  box-shadow: var(--shadow-cta);
}
.owner__body .role { font-family: var(--ff-en); font-size: 12px; letter-spacing: .26em; color: var(--c-accent-d); }
.owner__body .name { font-size: clamp(24px, 3.4vw, 32px); font-weight: 600; letter-spacing: .06em; margin: 8px 0 6px; }
.owner__body .name small { font-family: var(--ff-en); font-size: 13px; letter-spacing: .12em; color: var(--c-ink-3); margin-left: 12px; }
.owner__body .msg { font-size: 18px; color: var(--c-ink); font-weight: 500; margin: 20px 0; line-height: 1.95; letter-spacing: .03em; }
.owner__body p { font-size: 16px; color: var(--c-ink-2); margin-bottom: 18px; line-height: 2.05; }
.owner__career { border-top: 1px solid var(--c-line); margin-top: 22px; padding-top: 18px; }
.owner__career li { display: flex; gap: 16px; font-size: 14px; color: var(--c-ink-2); padding: 5px 0; }
.owner__career li b { font-family: var(--ff-en); color: var(--c-accent-d); font-weight: 500; min-width: 54px; letter-spacing: .05em; }

/* =========================================================
   サービス（価値・体験・こだわり）
   ========================================================= */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px); }
.service-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hov); }
.service-card__media { overflow: hidden; aspect-ratio: 4/3; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 30px 28px 34px; }
.service-card .no { font-family: var(--ff-en); font-size: 12px; letter-spacing: .24em; color: var(--c-accent-d); }
.service-card h3 { font-size: 20px; font-weight: 600; letter-spacing: .02em; margin: 12px 0 14px; line-height: 1.55; }
.service-card p { font-size: 15px; color: var(--c-ink-2); line-height: 1.95; }

/* =========================================================
   メニュー（料金表）
   ========================================================= */
.menu-wrap { max-width: 740px; margin-inline: auto; }
.menu-block { margin-bottom: clamp(40px, 6vw, 62px); }
.menu-block h3 {
  font-family: var(--ff-en); font-size: 23px; font-weight: 400; letter-spacing: .16em;
  padding-bottom: 16px; border-bottom: 1px solid var(--c-ink); margin-bottom: 6px;
  display: flex; align-items: baseline; gap: 14px;
}
.menu-block h3 small { font-family: var(--ff-jp); font-size: 12.5px; font-weight: 500; letter-spacing: .22em; color: var(--c-accent-d); }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: baseline; padding: 20px 2px; border-bottom: 1px solid var(--c-line); }
.menu-row .name { font-size: 17px; font-weight: 600; letter-spacing: .02em; }
.menu-row .desc { font-size: 14px; color: var(--c-ink-3); margin-top: 6px; line-height: 1.8; }
.menu-row .price { font-family: var(--ff-en); font-size: 20px; letter-spacing: .04em; white-space: nowrap; color: var(--c-ink); }
.menu-row .price small { font-size: 13px; color: var(--c-ink-3); margin-left: 2px; }
.menu-note { font-size: 13.5px; color: var(--c-ink-3); margin-top: 26px; text-align: center; line-height: 1.9; }

/* =========================================================
   ギャラリー（丸み・浮遊・モーダル）
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.gallery.cols-4 { grid-template-columns: repeat(4, 1fr); }
.g-item {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: var(--r-lg); background: var(--c-bg-soft2);
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.g-item:hover { transform: translateY(-7px); box-shadow: var(--shadow-hov); }
.g-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item__cap {
  position: absolute; inset: auto 0 0 0; padding: 18px 20px;
  background: linear-gradient(0deg, rgba(28,23,18,.78), transparent);
  color: #fff; opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.g-item:hover .g-item__cap { opacity: 1; transform: none; }
.g-item__cap .en { font-size: 11px; letter-spacing: .2em; color: var(--c-accent-s); }
.g-item__cap .name { font-size: 15.4px; letter-spacing: .06em; margin-top: 3px; }
.g-item__plus {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.7); border-radius: 50%;
  display: grid; place-items: center; color: #fff; opacity: 0; transition: opacity .4s var(--ease);
}
.g-item:hover .g-item__plus { opacity: 1; }
.g-item__plus::before, .g-item__plus::after { content: ""; position: absolute; background: #fff; }
.g-item__plus::before { width: 12px; height: 1px; }
.g-item__plus::after { width: 1px; height: 12px; }

/* カテゴリフィルタ */
.filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 42px; }
.filter button {
  font-family: var(--ff-en); font-size: 13.2px; letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 22px; border: 1px solid var(--c-line); color: var(--c-ink-2); border-radius: 999px;
  transition: all .35s var(--ease);
}
.filter button:hover { border-color: var(--c-ink); color: var(--c-ink); }
.filter button.is-active { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }

/* ライトボックス */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  background: rgba(22,18,14,.92);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
  padding: 30px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(90vw, 600px); max-height: 78vh; object-fit: contain; border-radius: var(--r-md); box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.lightbox__cap { color: #fff; text-align: center; margin-top: 22px; }
.lightbox__cap .en { font-size: 12.1px; letter-spacing: .24em; color: var(--c-accent); }
.lightbox__cap .name { font-size: 16.5px; letter-spacing: .06em; margin-top: 6px; }
.lightbox__close { position: absolute; top: 22px; right: 26px; width: 44px; height: 44px; color: #fff; }
.lightbox__close::before, .lightbox__close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 24px; height: 1px; background: #fff; }
.lightbox__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.lightbox__close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; color: #fff; font-size: 33px; display: grid; place-items: center; opacity: .8; }
.lightbox__nav:hover { opacity: 1; color: var(--c-accent); }
.lightbox__nav.prev { left: 14px; }
.lightbox__nav.next { right: 14px; }

/* =========================================================
   よくあるご質問（アコーディオン）
   ========================================================= */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; gap: 16px;
  padding: 26px 6px; font-size: 17px; font-weight: 600; letter-spacing: .02em; color: var(--c-ink);
  line-height: 1.7; transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--c-accent-d); }
.faq-q .qmark { font-family: var(--ff-en); font-size: 18px; color: var(--c-accent-d); flex: none; }
.faq-q .ico { margin-left: auto; position: relative; width: 18px; height: 18px; flex: none; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--c-accent-d); transition: transform .4s var(--ease); }
.faq-q .ico::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .ico::after { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.faq-a__inner { padding: 0 8px 28px 42px; color: var(--c-ink-2); font-size: 15.5px; line-height: 2; }

/* =========================================================
   アクセス
   ========================================================= */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.access-table dl { display: grid; grid-template-columns: 116px 1fr; border-top: 1px solid var(--c-line); }
.access-table dt, .access-table dd { padding: 20px 4px; border-bottom: 1px solid var(--c-line); }
.access-table dt { font-family: var(--ff-en); font-size: 12.5px; letter-spacing: .18em; color: var(--c-accent-d); align-self: center; }
.access-table dd { font-size: 16px; line-height: 1.85; }
.map-embed { position: relative; aspect-ratio: 4/3; background: var(--c-bg-soft2); overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--c-line); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.04); }

/* =========================================================
   お問い合わせ（最後のセクション）
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.contact-ways { display: grid; gap: 16px; }
.contact-way {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px;
  border: 1px solid var(--c-line); border-radius: var(--r-md); background: #fff;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-way:hover { border-color: var(--c-accent); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.contact-way .ic { width: 50px; height: 50px; border-radius: 50%; background: var(--c-bg-soft2); display: grid; place-items: center; flex: none; }
.contact-way .ic svg { width: 22px; height: 22px; stroke: var(--c-accent-d); fill: none; }
.contact-way .t { font-size: 16.5px; font-weight: 600; letter-spacing: .02em; }
.contact-way .s { font-size: 13.5px; color: var(--c-ink-3); }
.contact-way .big { font-family: var(--ff-en); font-size: 24px; letter-spacing: .05em; }

/* 問い合わせフォーム枠 */
.contact-form { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 38px); }
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13.5px; letter-spacing: .06em; margin-bottom: 9px; font-weight: 600; }
.contact-form label .req { color: var(--c-accent-d); font-size: 11.5px; margin-left: 8px; letter-spacing: .1em; }
.contact-form input, .contact-form textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--c-ink);
  padding: 14px 16px; border: 1px solid var(--c-line); border-radius: var(--r-sm); background: var(--c-bg-soft);
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus { box-shadow: 0 0 0 3px rgba(181,158,132,.14); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--c-accent); background: #fff; outline: none; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-note { font-size: 13.2px; color: var(--c-ink-3); margin: 4px 0 18px; }
.contact-form .btn--cta { width: 100%; justify-content: center; }

/* =========================================================
   CTA 帯
   ========================================================= */
.cta { position: relative; text-align: center; color: #fff; overflow: hidden; padding-block: clamp(72px, 12vw, 128px); }
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(28,23,18,.62); }
.cta .en { display: block; font-size: clamp(30.8px, 5.5vw, 50.6px); font-weight: 300; letter-spacing: .18em; }
.cta p { margin: 18px auto 34px; max-width: 560px; opacity: .92; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   ブログ（一覧／記事）
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 36px); }
.blog-card {
  display: block; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hov); }
.blog-card__media { overflow: hidden; aspect-ratio: 3/2; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 22px 24px 26px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-meta time { font-family: var(--ff-en); font-size: 13.2px; letter-spacing: .08em; color: var(--c-ink-3); }
.blog-meta .cat { font-family: var(--ff-en); font-size: 11px; letter-spacing: .16em; color: var(--c-accent-d); border: 1px solid var(--c-accent); border-radius: 999px; padding: 2px 12px; }
.blog-card h3 { font-size: 18.7px; font-weight: 600; letter-spacing: .03em; line-height: 1.6; margin-bottom: 10px; }
.blog-card p { font-size: 14.9px; color: var(--c-ink-2); }

/* 記事本文 */
.article { max-width: 760px; margin-inline: auto; }
.article__head { text-align: center; margin-bottom: 36px; }
.article__head h1 { font-size: clamp(24.2px, 3.7vw, 33px); font-weight: 600; line-height: 1.6; letter-spacing: .03em; margin-top: 14px; }
.article__cover { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); margin-bottom: 38px; }
.article__cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article__body p { margin-bottom: 22px; color: var(--c-ink-2); }
.article__body h2 { font-size: 22px; font-weight: 600; letter-spacing: .04em; margin: 40px 0 16px; padding-left: 14px; border-left: 3px solid var(--c-accent); }
.article__back { text-align: center; margin-top: 52px; }

/* =========================================================
   フッター（全ページ共通）
   ========================================================= */
.site-footer { background: #1b1713; color: #cfc7ba; padding-block: clamp(60px, 8vw, 88px) 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); padding-bottom: 54px; }
.footer-logo .logo-mark { stroke: var(--c-accent); width: 34px; height: 34px; }
.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-sub { color: var(--c-accent); }
.footer-about { margin-top: 22px; font-size: 15.4px; line-height: 2; color: #a59c8e; max-width: 330px; }
.footer-sns { display: flex; gap: 14px; margin-top: 22px; }
.footer-sns a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; transition: all .35s var(--ease); }
.footer-sns a:hover { border-color: var(--c-accent); background: var(--c-accent); }
.footer-sns svg { width: 17px; height: 17px; stroke: #cfc7ba; fill: none; transition: stroke .35s var(--ease); }
.footer-sns a:hover svg { stroke: #1c1815; }
.footer-col h4 { font-family: var(--ff-en); font-size: 13.2px; letter-spacing: .22em; color: var(--c-accent); margin-bottom: 22px; }
.footer-col li { margin-bottom: 13px; font-size: 15.4px; }
.footer-col a { color: #cfc7ba; transition: color .3s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact p { font-size: 15.4px; line-height: 1.9; color: #a59c8e; margin-bottom: 14px; }
.footer-contact .big { font-family: var(--ff-en); font-size: 25.3px; letter-spacing: .06em; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13.2px; color: #7d756a;
}
.footer-bottom .note { color: #6b6358; letter-spacing: .03em; }
.footer-bottom .credit { font-family: var(--ff-en); letter-spacing: .14em; }

/* =========================================================
   ページトップボタン
   ========================================================= */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #fff; border: 1px solid var(--c-line); box-shadow: var(--shadow-soft);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .4s var(--ease), visibility .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--c-cta); }
.to-top svg { width: 18px; height: 18px; stroke: var(--c-ink); transition: stroke .4s var(--ease); }
.to-top:hover svg { stroke: #fff; }
@media (max-width: 700px) { .to-top { bottom: 84px; } }

/* =========================================================
   スマホ固定フッターバー（電話／予約）
   ========================================================= */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    box-shadow: 0 -10px 30px -18px rgba(0,0,0,.4);
  }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; font-family: var(--ff-en); font-size: 14.3px; letter-spacing: .12em; }
  .mobile-bar .tel { background: #fff; color: var(--c-ink); border-top: 1px solid var(--c-line); }
  .mobile-bar .res { background: var(--c-cta); color: #fff; }
  .mobile-bar svg { width: 17px; height: 17px; }
}

/* =========================================================
   予約モーダル
   ========================================================= */
.reserve-modal {
  position: fixed; inset: 0; z-index: 210; display: grid; place-items: center; padding: 24px;
  background: rgba(22,18,14,.6); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.reserve-modal.is-open { opacity: 1; visibility: visible; }
.reserve-card { background: #fff; max-width: 430px; width: 100%; padding: clamp(30px, 5vw, 46px); text-align: center; border-radius: var(--r-lg); transform: translateY(16px); transition: transform .4s var(--ease); position: relative; }
.reserve-modal.is-open .reserve-card { transform: none; }
.reserve-card .en { display: block; font-size: 28.6px; font-weight: 300; letter-spacing: .18em; }
.reserve-card .jp { font-size: 14.3px; letter-spacing: .18em; color: var(--c-accent-d); margin: 10px 0 28px; }
.reserve-card .r-opt { display: flex; align-items: center; gap: 16px; text-align: left; padding: 16px 18px; border: 1px solid var(--c-line); border-radius: var(--r-md); margin-bottom: 12px; transition: all .35s var(--ease); }
.reserve-card .r-opt:hover { border-color: var(--c-accent); background: var(--c-bg-soft); }
.reserve-card .r-opt .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--c-bg-soft2); display: grid; place-items: center; flex: none; }
.reserve-card .r-opt .ic svg { width: 18px; height: 18px; stroke: var(--c-accent-d); fill: none; }
.reserve-card .r-opt .t { font-size: 16.5px; font-weight: 600; }
.reserve-card .r-opt .s { font-size: 13.2px; color: var(--c-ink-3); }
.reserve-card .r-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; }
.reserve-card .r-close::before, .reserve-card .r-close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 1px; background: var(--c-ink); }
.reserve-card .r-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.reserve-card .r-close::after { transform: translate(-50%,-50%) rotate(-45deg); }

/* =========================================================
   スクロールフェードイン
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

.img-note { font-size: 12.1px; color: var(--c-ink-3); letter-spacing: .06em; margin-top: 8px; text-align: center; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1180px) {
  .nav-list { gap: 12px; }
  .nav-list > li > a { font-size: 13.8px; }
  .header-tel { display: none; }
}
/* 横一列が窮屈になる前に、ハンバーガーへ切り替え */
@media (max-width: 1024px) {
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 0;
    background: rgba(255,255,255,.98); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s var(--ease);
  }
  .nav-open .nav { opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; flex-wrap: wrap; gap: 22px; white-space: normal; }
  .nav-list > li > a { font-size: 18.7px; letter-spacing: .14em; color: var(--c-ink) !important; }
  .nav-list > li > a::after { background: var(--c-accent) !important; }
  .nav-list .nav-cta { margin-top: 8px; }
  .nav-list .nav-cta a { color: #fff !important; font-size: 16.5px; padding: 13px 28px; }
  .hamburger { display: block; }
  .header-actions .header-tel { display: none; }
}
@media (max-width: 920px) {
  :root { --header-h: 66px; }
  .feature, .owner { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .owner__photo { max-width: 380px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery, .gallery.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .access-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  body { padding-bottom: 56px; }   /* mobile-bar 分 */
}
@media (max-width: 460px) {
  .service-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero__title { letter-spacing: .12em; }
}

/* =========================================================
   v2 — モダン演出（進捗バー／グレイン／カーソル／クリップ表示
        ／ゴースト見出し／マーキー／パララックス）
   ========================================================= */

/* --- スクロール進捗バー --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 130; pointer-events: none; background: transparent;
}
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--c-accent-s), var(--c-accent) 40%, var(--c-accent-d));
}

/* --- フィルムグレイン質感 --- */
.grain {
  position: fixed; inset: 0; z-index: 92; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.82'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* --- カスタムカーソル（PCのみ・JSで cursor-on を付与） --- */
.cursor-ring, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none;
  border-radius: 50%; opacity: 0; will-change: transform;
  transition: opacity .3s var(--ease);
}
.cursor-ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1px solid var(--c-accent);
  transition: opacity .3s var(--ease), width .35s var(--ease), height .35s var(--ease),
              margin .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--c-cta); }
.cursor-on .cursor-ring, .cursor-on .cursor-dot { opacity: 1; }
.cursor-on, .cursor-on a, .cursor-on button, .cursor-on .g-item, .cursor-on .faq-q { cursor: none; }
.cursor-on input, .cursor-on textarea { cursor: text; }
.cursor-ring.is-hover {
  width: 64px; height: 64px; margin: -32px 0 0 -32px;
  background: rgba(181,158,132,.12); border-color: var(--c-accent-d);
}
.cursor-ring.is-down { width: 28px; height: 28px; margin: -14px 0 0 -14px; }
.at-hero .cursor-ring { border-color: #fff; }
.at-hero .cursor-dot { background: #fff; }

/* --- 画像のクリップ・ワイプ表示（JS有効時のみ隠す） --- */
.js-ready .feature__media .frame,
.js-ready .owner__photo .frame,
.js-ready .service-card__media {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease);
}
.js-ready .feature__media .frame.in,
.js-ready .owner__photo .frame.in,
.js-ready .service-card__media.in { clip-path: inset(0 0 0 0); }

/* --- セクション見出しの巨大ゴースト英字 --- */
.section-head { position: relative; }
.section-head .ghost {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -64%);
  font-family: var(--ff-en); font-weight: 300; text-transform: uppercase;
  font-size: clamp(68.2px, 16.5vw, 206.8px); letter-spacing: .04em; line-height: 1;
  color: var(--c-accent); opacity: .06; white-space: nowrap;
  pointer-events: none; user-select: none; z-index: 0;
}
.section-head .en, .section-head .jp { position: relative; z-index: 1; }

#concept { position: relative; }
#concept .wrap { position: relative; z-index: 1; }
.ghost--block {
  position: absolute; top: clamp(8px, 3vw, 40px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-en); font-weight: 300; text-transform: uppercase;
  font-size: clamp(85.8px, 19.8vw, 246.4px); letter-spacing: .04em; line-height: 1;
  color: var(--c-accent); opacity: .045; white-space: nowrap;
  pointer-events: none; user-select: none; z-index: 0;
}

/* --- キーワードの流れる帯（マーキー） --- */
.marquee {
  overflow: hidden; background: var(--c-bg-soft);
  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  padding-block: clamp(16px, 2.4vw, 24px);
}
.marquee__track {
  display: inline-flex; align-items: center; white-space: nowrap;
  will-change: transform; animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--ff-en); font-weight: 300;
  font-size: clamp(16.5px, 2.3vw, 24.2px); letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-ink); padding-inline: clamp(16px, 3vw, 36px);
}
.marquee__track i { width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* --- マグネティック要素の土台 --- */
.magnetic { will-change: transform; }

/* ===== BudouX：日本語の文節改行の補強（禁則） =====
   JSが data-budoux 要素に折り返し候補(ZWSP)を挿入する。
   ここでは未適用時の保険＋禁則の補強を行う。 */
[data-budoux]{
  word-break: keep-all;     /* 語の途中での改行を防ぐ */
  overflow-wrap: anywhere;  /* 長い英単語・URL等のはみ出しは許可 */
  line-break: strict;       /* 小書き仮名・句読点などの行頭禁則を厳格化 */
}
