/* ═══════════════════════════════════════════════════════
   Casa Flor / 株式会社カーサフロール
   フェミニンラグジュアリー × スペインタイル × テラコッタ
   ═══════════════════════════════════════════════════════ */

:root {
  --terracotta:      #C85A33;
  --terracotta-lt:   #E8734A;
  --terracotta-dk:   #A0451F;
  --gold:            #C9A84C;
  --gold-lt:         #F0D090;
  --gold-dk:         #A07830;
  --cream:           #FDF8F3;
  --cream-2:         #F5EADB;
  --ink:             #2B2622;
  --ink-soft:        #6B5D50;
  --ink-mute:        #8E8678;
  --rose:            #D4A5A5;
  --rose-lt:         #F5E6E6;
  --line:            rgba(43, 38, 34, 0.10);
  --line-gold:       rgba(201, 168, 76, 0.25);
  --serif-en:        'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --serif-jp:        'Noto Serif JP', 'Yu Mincho', serif;
  --sans-jp:         'Noto Sans JP', -apple-system, 'Hiragino Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans-jp);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--terracotta); font-weight: 600; }
b { font-weight: 600; }
.sp-only { display: none; }
@media (max-width: 720px) { .sp-only { display: inline; } .pc-only { display: none; } }

/* ═══ ページローダー ═══ */
#page-loader {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-stamp { width: 88px; height: 88px; animation: ld-stamp .7s cubic-bezier(.22,1,.36,1) both, ld-pulse 2.4s ease-in-out .7s infinite; }
.loader-name { font-family: var(--serif-en); font-size: 26px; letter-spacing: .12em; color: var(--terracotta); font-style: italic; }
.loader-dots { display: flex; gap: 7px; }
.loader-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: ld-bounce .9s ease-in-out infinite; }
.loader-dots span:nth-child(2) { animation-delay: .18s; }
.loader-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes ld-stamp { from { opacity:0; transform:rotate(-10deg) scale(.6); } to { opacity:1; transform:rotate(0) scale(1); } }
@keyframes ld-pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.04); } }
@keyframes ld-bounce { 0%,80%,100% { transform:translateY(0); opacity:.35; } 40% { transform:translateY(-9px); opacity:1; } }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.nav--scrolled { background: rgba(253, 248, 243, 0.96); box-shadow: 0 2px 20px rgba(0,0,0,0.06); padding: 10px 0; backdrop-filter: blur(8px); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; }
.nav__logo { display: flex; flex-direction: column; margin-right: auto; }
.nav__logo-en { font-family: var(--serif-en); font-style: italic; font-size: 26px; color: var(--terracotta); line-height: 1; letter-spacing: .02em; }
.nav__logo-jp { font-family: var(--serif-jp); font-size: 10px; color: var(--ink-soft); letter-spacing: .12em; margin-top: 2px; }
.nav__menu { display: flex; gap: 26px; list-style: none; }
.nav__menu a { font-size: 13px; letter-spacing: .06em; color: var(--ink); transition: color .2s; position: relative; padding: 6px 0; }
.nav__menu a::after { content:''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--terracotta); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.nav__menu a:hover { color: var(--terracotta); }
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { background: var(--terracotta); color: #fff !important; padding: 10px 22px; border-radius: 100px; font-size: 12px; letter-spacing: .08em; font-weight: 700; transition: background .3s, transform .3s; box-shadow: 0 4px 14px rgba(200, 90, 51, 0.25); }
.nav__cta:hover { background: var(--terracotta-dk); transform: translateY(-1px); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 6px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
@media (max-width: 900px) {
  .nav__menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 24px; gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
  body.nav-open .nav__menu { display: flex; }
  body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav__toggle { display: flex; }
  .nav__cta { padding: 8px 16px; font-size: 11px; }
}

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, #A0451F 0%, #C85A33 40%, #E8734A 100%); }
.hero-photo-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; z-index: 0; transition: opacity 1s ease; }
.hero-photo-bg.visible { opacity: 1; }
.hero-photo-bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(160, 69, 31, 0.55) 0%, rgba(200, 90, 51, 0.45) 50%, rgba(43, 38, 34, 0.35) 100%); }
.hero__pattern { position: absolute; inset: 0; z-index: 1; opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='26' fill='none' stroke='%23FDF8F3' stroke-width='1.2'/%3E%3Ccircle cx='40' cy='40' r='14' fill='none' stroke='%23FDF8F3' stroke-width='1'/%3E%3Cpath d='M40 8 L48 32 L72 40 L48 48 L40 72 L32 48 L8 40 L32 32 Z' fill='%23FDF8F3'/%3E%3C/svg%3E"); }
.hero__inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 100px 24px; text-align: center; color: var(--cream); }
.hero__eyebrow { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 32px; }
.hero__eyebrow-line { flex: 0 0 60px; height: 1px; background: var(--gold-lt); opacity: .8; }
.hero__eyebrow-text { font-family: var(--serif-en); font-size: 13px; letter-spacing: .35em; color: var(--gold-lt); }
.hero__title { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 32px; }
.hero__title-en { font-family: var(--serif-en); font-style: italic; font-weight: 500; font-size: clamp(64px, 12vw, 128px); line-height: 1; letter-spacing: -.01em; text-shadow: 0 4px 24px rgba(0,0,0,.2); }
.hero__title-jp { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(22px, 3.6vw, 34px); line-height: 1.5; letter-spacing: .08em; }
.hero__tag { font-family: var(--serif-jp); font-size: clamp(12px, 1.6vw, 15px); letter-spacing: .3em; color: var(--gold-lt); margin-bottom: 28px; }
.hero__sub { font-size: clamp(14px, 1.8vw, 17px); line-height: 1.9; margin-bottom: 44px; opacity: .95; }
.hero__cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--gold-lt); }
.hero__scroll span { font-family: var(--serif-en); font-size: 11px; letter-spacing: .3em; }
.hero__scroll-line { width: 1px; height: 44px; background: var(--gold-lt); animation: scroll-line 2s ease-in-out infinite; transform-origin: top; }
@keyframes scroll-line { 0%,100% { transform: scaleY(0.3); opacity:.4; } 50% { transform: scaleY(1); opacity:.9; } }

/* ═══ ボタン ═══ */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; font-size: 14px; letter-spacing: .1em; font-weight: 700; border-radius: 100px; transition: all .3s; cursor: pointer; border: 0; text-align: center; }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: 0 6px 22px rgba(200, 90, 51, 0.35); }
.btn--primary:hover { background: var(--terracotta-dk); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200, 90, 51, 0.45); }
.btn--ghost { background: rgba(255,255,255,.12); color: var(--cream); border: 1.5px solid rgba(253, 248, 243, .5); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); border-color: var(--cream); }
.btn--gold { background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk)); color: var(--ink); box-shadow: 0 6px 22px rgba(201, 168, 76, 0.4); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5); }
.btn--outline { background: transparent; color: var(--cream); border: 1.5px solid var(--gold-lt); }
.btn--outline:hover { background: var(--gold-lt); color: var(--ink); }

/* ═══ SECTION 共通 ═══ */
.section { padding: 100px 24px; position: relative; }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(26px, 3.6vw, 40px); line-height: 1.5; letter-spacing: .04em; text-align: center; margin-bottom: 24px; color: var(--ink); }
.section-title em { font-family: var(--serif-en); font-style: italic; font-weight: 600; font-size: 1.15em; }
.section-lead { text-align: center; font-size: 15px; line-height: 2; margin-bottom: 56px; color: var(--ink-soft); }
.editorial-label { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.editorial-label__num { font-family: var(--serif-en); font-style: italic; font-size: 15px; color: var(--gold-dk); letter-spacing: .05em; }
.editorial-label__sep { display: block; width: 24px; height: 1px; background: var(--gold); }
.editorial-label__name { font-family: var(--serif-en); font-size: 11px; letter-spacing: .3em; color: var(--gold-dk); text-transform: uppercase; }
.editorial-label--rose .editorial-label__num,
.editorial-label--rose .editorial-label__name { color: #8B4A4A; }
.editorial-label--rose .editorial-label__sep { background: var(--rose); }

/* ═══ ABOUT ═══ */
.about { background: var(--cream); }
.about__body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.about__text { font-family: var(--serif-jp); font-size: 16px; line-height: 2.1; color: var(--ink-soft); }
.about__text p { margin-bottom: 22px; }
.about__text b { color: var(--ink); }
.about__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-item { text-align: center; padding: 26px 12px; background: #fff; border: 1px solid var(--line-gold); border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.03); position: relative; }
.trust-item::before { content:''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.trust-item__num { display: block; font-family: var(--serif-en); font-weight: 600; font-size: 44px; color: var(--terracotta); line-height: 1; }
.trust-item__unit { font-family: var(--serif-en); font-size: 18px; color: var(--terracotta); }
.trust-item__label { display: block; font-size: 12px; letter-spacing: .1em; color: var(--ink-soft); margin-top: 10px; line-height: 1.6; }
@media (max-width: 900px) {
  .about__body { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══ POSITIONING ═══ */
.positioning { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.positioning__grid { display: flex; align-items: stretch; justify-content: center; gap: 12px; margin: 48px 0; flex-wrap: wrap; }
.pos-card { flex: 1 1 200px; max-width: 240px; background: #fff; padding: 32px 20px; border-radius: 8px; border: 1px solid var(--line-gold); text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; }
.pos-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(200, 90, 51, .15); }
.pos-card--mul { flex: 0 0 auto; max-width: 40px; background: transparent; border: 0; box-shadow: none; padding: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif-en); font-size: 32px; color: var(--gold); font-style: italic; }
.pos-card--mul:hover { transform: none; box-shadow: none; }
.pos-card__num { font-family: var(--serif-en); font-style: italic; font-size: 22px; color: var(--gold-dk); margin-bottom: 8px; }
.pos-card__title { font-family: var(--serif-jp); font-size: 18px; font-weight: 600; color: var(--terracotta); margin-bottom: 12px; letter-spacing: .04em; }
.pos-card__text { font-size: 13px; line-height: 1.85; color: var(--ink-soft); }
.positioning__conclusion { text-align: center; font-family: var(--serif-jp); font-size: clamp(17px, 2.4vw, 22px); font-weight: 500; letter-spacing: .06em; color: var(--ink); margin-top: 30px; padding: 24px; background: rgba(200, 90, 51, .06); border-top: 1px solid var(--terracotta); border-bottom: 1px solid var(--terracotta); }
.positioning__conclusion em { font-family: var(--serif-jp); font-style: normal; color: var(--terracotta); font-weight: 600; font-size: 1em; }

/* ═══ SERVICE (Menu-style CMS) ═══ */
.service { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.service::before { content:''; position: absolute; inset: 0; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='40' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='20' fill='none' stroke='%23C9A84C' stroke-width='.6'/%3E%3C/svg%3E"); }
.service .section__inner { position: relative; z-index: 1; }
.service .section-title { color: var(--cream); }
.service .section-lead { color: rgba(253, 248, 243, .75); }
.service .editorial-label__num,
.service .editorial-label__name { color: var(--gold-lt); }
.service .editorial-label__sep { background: var(--gold); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-skel { min-height: 300px; background: rgba(255,255,255,.04); border: 1px solid rgba(201, 168, 76, .12); border-radius: 8px; position: relative; overflow: hidden; }
.menu-skel::after { content:''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.09) 40%, rgba(201,168,76,.14) 50%, rgba(201,168,76,.09) 60%, transparent 100%);
  background-size: 250% 100%; animation: skel-shimmer 2s ease-in-out infinite; }
@keyframes skel-shimmer { 0% { background-position: 250% 0; } 100% { background-position: -250% 0; } }
.menu-card { background: rgba(253, 248, 243, .04); border: 1px solid rgba(201, 168, 76, .18); border-radius: 8px; padding: 32px 26px; position: relative; transition: transform .3s, border-color .3s; }
.menu-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.menu-card__badge { position: absolute; top: -16px; left: 24px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk)); color: var(--ink); font-family: var(--serif-en); font-weight: 700; font-size: 17px; border-radius: 50%; border: 3px solid var(--ink); }
.menu-card__concern { background: rgba(200, 90, 51, .12); border-left: 3px solid var(--terracotta-lt); padding: 12px 14px; margin-bottom: 18px; margin-top: 8px; border-radius: 4px; }
.menu-card__concern-label { display: block; font-size: 10px; letter-spacing: .2em; color: var(--gold-lt); margin-bottom: 4px; }
.menu-card__concern p { font-size: 13px; line-height: 1.7; color: var(--cream); font-family: var(--serif-jp); }
.menu-card__img { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: 4px; margin-bottom: 20px; }
.menu-card__title { font-family: var(--serif-jp); font-weight: 600; font-size: 22px; color: var(--gold-lt); margin-bottom: 6px; letter-spacing: .04em; line-height: 1.4; }
.menu-card__subtitle { font-family: var(--serif-en); font-style: italic; font-size: 13px; color: var(--gold); margin-bottom: 14px; }
.menu-card__text { font-size: 13.5px; line-height: 1.85; color: rgba(253, 248, 243, .85); }
.menu-card__price { font-family: var(--serif-en); font-size: 16px; color: var(--gold-lt); margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(201, 168, 76, .2); }
.service__note { text-align: center; margin-top: 40px; font-size: 13px; line-height: 2; color: rgba(253, 248, 243, .75); }
.service__note b { color: var(--gold-lt); }

/* ═══ FEATURES ═══ */
.features { background: var(--cream); }
.features__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.feat-card { background: #fff; padding: 36px 32px; border-radius: 8px; border: 1px solid var(--line-gold); position: relative; box-shadow: 0 6px 24px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(200,90,51,.12); }
.feat-card__num { font-family: var(--serif-en); font-style: italic; font-size: 44px; color: var(--terracotta); line-height: 1; margin-bottom: 12px; opacity: .85; }
.feat-card__title { font-family: var(--serif-jp); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: .04em; }
.feat-card__text { font-size: 14px; line-height: 1.9; color: var(--ink-soft); }
@media (max-width: 700px) { .features__list { grid-template-columns: 1fr; } }

/* ═══ MESSAGE ═══ */
.message { background: linear-gradient(180deg, var(--cream-2) 0%, var(--rose-lt) 100%); }
.message__layout { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: center; margin-top: 40px; }
.message__photo { text-align: center; }
.message__photo-frame { width: 260px; height: 340px; margin: 0 auto 22px; border-radius: 4px; overflow: hidden; border: 1px solid var(--gold); box-shadow: 0 12px 40px rgba(200, 90, 51, .18); background: linear-gradient(135deg, var(--terracotta-lt), var(--terracotta)); position: relative; }
.message__photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.message__photo-title { font-size: 11px; letter-spacing: .3em; color: var(--gold-dk); margin-bottom: 6px; }
.message__photo-name { font-family: var(--serif-jp); font-weight: 500; font-size: 22px; color: var(--ink); }
.message__photo-en { font-family: var(--serif-en); font-style: italic; font-size: 14px; color: var(--gold-dk); margin-top: 4px; letter-spacing: .05em; }
.message__content { position: relative; padding-left: 50px; }
.message__quote-mark { position: absolute; top: -20px; left: -8px; font-family: var(--serif-en); font-size: 120px; color: var(--gold); opacity: .35; line-height: 1; }
.message__body { font-family: var(--serif-jp); font-size: 17px; line-height: 2; color: var(--ink); margin-bottom: 22px; }
.message__sub { font-family: var(--serif-jp); font-size: 15px; line-height: 2; color: var(--ink-soft); }
@media (max-width: 900px) {
  .message__layout { grid-template-columns: 1fr; gap: 32px; }
  .message__content { padding-left: 20px; }
}

/* ═══ REVIEWS ═══ */
.reviews { background: var(--cream-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 24px; align-items: stretch; margin-top: 48px; }
.review-skel { min-height: 260px; background: #fff; border: 1px solid var(--line-gold); border-radius: 8px; position: relative; overflow: hidden; }
.review-skel::after { content:''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.08) 40%, rgba(201,168,76,.14) 50%, rgba(201,168,76,.08) 60%, transparent 100%);
  background-size: 250% 100%; animation: skel-shimmer 2s ease-in-out infinite; }
.review { display: flex; flex-direction: column; height: 100%; min-height: 260px; background: #fff; padding: 28px 24px; border-radius: 8px; border: 1px solid var(--line-gold); box-shadow: 0 6px 20px rgba(0,0,0,.04); }
.review__stars { font-size: 15px; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review__body { flex: 1; font-size: 14px; line-height: 1.9; color: var(--ink-soft); display: -webkit-box; -webkit-line-clamp: 8; line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; word-break: break-word; margin-bottom: 16px; }
.review__meta { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; }
.review__name { color: var(--ink); font-weight: 500; }
.review__date { font-family: var(--serif-en); color: var(--ink-mute); letter-spacing: .04em; }
.review--cta { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px 20px; background: linear-gradient(135deg, var(--terracotta-lt), var(--terracotta)); color: var(--cream); border-radius: 8px; border: 0; transition: transform .3s; text-decoration: none; }
.review--cta:hover { transform: translateY(-3px); }
.review-cta-stars { font-size: 18px; color: var(--gold-lt); letter-spacing: 4px; margin-bottom: 14px; }
.review-cta-msg { font-family: var(--serif-jp); font-size: 15px; line-height: 1.8; margin-bottom: 18px; color: var(--cream); }
.review-cta-link { font-family: var(--serif-en); font-size: 14px; letter-spacing: .08em; font-weight: 600; color: var(--gold-lt); }
.reviews-more-wrap { text-align: center; margin-top: 40px; }
.btn-reviews-more { display: inline-block; padding: 14px 32px; background: transparent; border: 1.5px solid var(--terracotta); border-radius: 100px; color: var(--terracotta); font-family: var(--sans-jp); font-weight: 700; font-size: 13px; letter-spacing: .08em; transition: background .3s, color .3s; }
.btn-reviews-more:hover { background: var(--terracotta); color: #fff; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══ BLOG ═══ */
.blog { background: var(--cream); }
.wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; min-height: 220px; }
.wall.cms-loading { display: flex; align-items: center; justify-content: center; }
.wall.cms-loading::before { content:'読み込み中...'; color: var(--ink-mute); font-size: 13px; letter-spacing: .2em; }
.blog-card { position: relative; background: #fff; border: 1px solid var(--line-gold); border-radius: 6px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; display: block; color: inherit; text-decoration: none; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(200,90,51,.14); }
.blog-card .tape { position: absolute; top: -8px; left: 20px; width: 60px; height: 18px; background: linear-gradient(180deg, rgba(201,168,76,.5), rgba(201,168,76,.3)); z-index: 2; transform: rotate(-3deg); }
.blog-card .image { width: 100%; aspect-ratio: 16/11; background: var(--cream-2); overflow: hidden; }
.blog-card .body { padding: 18px 18px 22px; }
.blog-card .date { font-family: var(--serif-en); font-size: 12px; color: var(--gold-dk); letter-spacing: .08em; }
.blog-card .cap { font-family: var(--serif-jp); font-size: 14px; line-height: 1.65; color: var(--ink); margin: 8px 0 12px; font-weight: 500; }
.blog-card:hover .cap { text-decoration: underline; text-decoration-color: var(--terracotta); text-underline-offset: 3px; }
.blog-card .cta-lbl { font-size: 12px; color: var(--terracotta); letter-spacing: .06em; }
a.blog-card { color: inherit; text-decoration: none; display: block; }
@media (max-width: 900px) { .wall { grid-template-columns: repeat(2, 1fr); } }

/* ═══ ACCESS ═══ */
.access { background: var(--cream-2); }
.access__layout { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: stretch; margin-top: 48px; }
.access__info { background: #fff; padding: 36px 32px; border-radius: 8px; border: 1px solid var(--line-gold); box-shadow: 0 6px 20px rgba(0,0,0,.04); display: flex; flex-direction: column; }
.access__info dl { display: grid; grid-template-columns: 90px 1fr; gap: 14px 20px; margin-bottom: 30px; flex: 1; }
.access__info dt { font-family: var(--serif-en); font-size: 11px; letter-spacing: .18em; color: var(--gold-dk); padding-top: 4px; }
.access__info dd { font-size: 14px; line-height: 1.8; color: var(--ink); }
.access__info small { display: block; color: var(--ink-mute); font-size: 11px; margin-top: 2px; }
.access__map { min-height: 400px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line-gold); box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.access__map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }
@media (max-width: 900px) { .access__layout { grid-template-columns: 1fr; } }

/* ═══ SNS ═══ */
.sns { background: var(--cream); padding: 60px 24px; }
.sns__row { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.sns__card { display: flex; align-items: center; gap: 14px; padding: 16px 26px; background: #fff; border: 1px solid var(--line-gold); border-radius: 100px; box-shadow: 0 4px 14px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; }
.sns__card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,90,51,.14); }
.sns__icon { font-size: 22px; }
.sns__body { display: flex; flex-direction: column; line-height: 1.4; }
.sns__body b { font-family: var(--serif-jp); font-size: 14px; color: var(--ink); }
.sns__body small { font-family: var(--serif-en); font-size: 11px; color: var(--ink-mute); letter-spacing: .06em; }
.sns__arrow { color: var(--terracotta); font-family: var(--serif-en); }

/* ═══ FAQ ═══ */
.faq { background: var(--cream-2); }
.qa { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.qa-item { background: #fff; border: 1px solid var(--line-gold); border-radius: 6px; overflow: hidden; }
.qa-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; gap: 12px; font-family: var(--serif-jp); font-size: 15px; font-weight: 500; color: var(--ink); }
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item__q { font-family: var(--serif-en); font-style: italic; color: var(--terracotta); font-weight: 600; }
.qa-item__arrow { margin-left: auto; font-family: var(--serif-en); color: var(--gold-dk); font-size: 18px; transition: transform .3s; }
.qa-item[open] .qa-item__arrow { transform: rotate(45deg); }
.qa-item__a { padding: 4px 24px 22px 46px; font-size: 14px; line-height: 1.9; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 18px; }

/* ═══ CTA ═══ */
.cta { padding: 100px 24px; background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.cta::before { content:''; position: absolute; inset: 0; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='26' fill='none' stroke='%23C9A84C' stroke-width='1.2'/%3E%3Ccircle cx='40' cy='40' r='14' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3Cpath d='M40 8 L48 32 L72 40 L48 48 L40 72 L32 48 L8 40 L32 32 Z' fill='%23C9A84C'/%3E%3C/svg%3E"); }
.cta__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.cta__eyebrow { font-family: var(--serif-en); font-size: 12px; letter-spacing: .4em; color: var(--gold-lt); margin-bottom: 24px; }
.cta__title { font-family: var(--serif-jp); font-size: clamp(22px, 3.2vw, 32px); line-height: 1.6; letter-spacing: .04em; margin-bottom: 20px; color: var(--cream); font-weight: 500; }
.cta__title em { color: var(--gold-lt); font-family: var(--serif-jp); font-style: normal; font-weight: 600; }
.cta__sub { font-size: 15px; line-height: 1.9; color: rgba(253, 248, 243, .8); margin-bottom: 40px; }
.cta__sub b { color: var(--gold-lt); }
.cta__buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══ FOOTER ═══ */
.footer { background: #1A1614; color: rgba(253, 248, 243, .85); padding: 80px 24px 40px; }
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__brand { text-align: center; margin-bottom: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(201, 168, 76, .18); }
.footer__logo { font-family: var(--serif-en); font-style: italic; font-size: 44px; color: var(--gold-lt); margin-bottom: 8px; letter-spacing: .02em; }
.footer__concept { font-family: var(--serif-jp); font-size: 16px; color: var(--cream); letter-spacing: .1em; margin-bottom: 6px; }
.footer__tag { font-family: var(--serif-jp); font-size: 12px; letter-spacing: .3em; color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
.footer__col-title { font-family: var(--serif-en); font-size: 11px; letter-spacing: .3em; color: var(--gold-lt); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(201, 168, 76, .2); }
.footer__col-body { font-size: 13px; line-height: 1.9; color: rgba(253, 248, 243, .75); }
.footer__col-body a { color: var(--gold-lt); text-decoration: none; }
.footer__col-body a:hover { text-decoration: underline; }
.footer__legal { text-align: center; padding: 24px 0; border-top: 1px solid rgba(201, 168, 76, .18); font-size: 12px; }
.footer__legal a { color: rgba(253, 248, 243, .7); margin: 0 6px; }
.footer__legal a:hover { color: var(--gold-lt); }
.footer__legal-sep { color: rgba(253, 248, 243, .3); }
.partner-notice-inline { text-align: center; font-size: 11.5px; color: rgba(253, 248, 243, .55); line-height: 1.9; padding: 20px 0; max-width: 700px; margin: 0 auto; }
.partner-notice-inline b { color: rgba(253, 248, 243, .8); font-weight: 500; }
.footer__meta { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(201, 168, 76, .12); font-size: 11px; letter-spacing: .06em; color: rgba(253, 248, 243, .5); flex-wrap: wrap; gap: 12px; }
.produced-by a { color: var(--gold-lt); text-decoration: none; }
.produced-by a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__meta { flex-direction: column; gap: 8px; }
}

/* ═══ モバイル横スクロールカルーセル ═══ */
@media (max-width: 600px) {
  .section { padding: 70px 20px; }
  .cta { padding: 70px 20px; }
  .hero__inner { padding: 90px 20px 100px; }
  .menu-grid, .reviews-grid, .wall {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px; padding: 0 4px 16px;
    scrollbar-width: none;
    grid-template-columns: unset; grid-auto-rows: unset;
    scroll-padding-left: 20px;
  }
  .menu-grid::-webkit-scrollbar, .reviews-grid::-webkit-scrollbar, .wall::-webkit-scrollbar { display: none; }
  .menu-card, .menu-skel, .review, .review-skel, .review--cta, .blog-card, a.blog-card {
    flex: 0 0 82vw; max-width: 320px;
    scroll-snap-align: start; min-width: 0;
  }
  .menu-skel { min-height: 260px; }
  .review, .review-skel, .review--cta { min-height: 240px; height: auto; }
  .positioning__grid { flex-direction: column; align-items: stretch; }
  .pos-card { max-width: 100%; }
  .pos-card--mul { max-width: 100%; padding: 4px 0; font-size: 24px; }
  .access__info dl { grid-template-columns: 80px 1fr; }
}
