/* ================================================================
   YOISHO — style.css
   ================================================================ */

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --bg: #f4efe3;
  --bg-paper: #faf7ee;
  --bg-dark: #0e0e0e;
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --ink-mute: #8a8578;
  --accent: #dc2626;
  --accent-vivid: #ef3b2c;
  --accent-deep: #991b1b;
  --orange: #ea580c;
  --gold: #d4a017;
  --cream: #efe6d2;
  --line-soft: rgba(20, 20, 20, 0.12);

  --max-w: 1320px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --section-gap: clamp(4rem, 8vw, 7rem);
  --shadow: 0 30px 60px -30px rgba(10, 10, 10, 0.25);

  --font-mincho: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  --font-roman: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Noto Sans JP', -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography utilities ───────────────────────────────────────── */
.t-page-title {
  font-family: var(--font-mincho);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.t-page-title-en {
  font-family: var(--font-roman);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mute);
}
.t-section-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.t-section-title-en {
  font-family: var(--font-roman);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-mute);
}
.t-label {
  font-family: var(--font-roman);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-gap); }
.section--dark { background-color: var(--bg-dark); color: #e8e0d0; }
.section--dark-photo { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 700px; display: flex; align-items: center; }
@media (max-width: 640px) {
  .section--dark-photo { min-height: 0; padding-block: 3rem; background-size: 200% auto; background-position: center center; }
}
.section--dark-photo::before { content: ''; position: absolute; inset: 0; background: rgba(14,14,14,0.72); z-index: 0; }
.section--dark-photo > .container { position: relative; z-index: 1; width: 100%; }
.section--paper { background-color: var(--bg-paper); }
.section--cream { background-color: var(--cream); }

.heading-group { margin-bottom: clamp(2rem, 5vw, 4rem); }
.heading-group__label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.heading-group__label::after { content: ''; flex: 1; max-width: 3rem; height: 1px; background-color: var(--accent); }

.img-placeholder {
  background-color: #d6cfc0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  font-family: var(--font-roman); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  width: 100%; height: 100%;
}

/* ── Rich text ──────────────────────────────────────────────────── */
.rich-text h2 { font-family: var(--font-mincho); font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; }
.rich-text h3 { font-family: var(--font-mincho); font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; }
.rich-text p { margin-bottom: 1.25rem; line-height: 1.85; }
.rich-text a { color: var(--accent); text-decoration: underline; }
.rich-text ul, .rich-text ol { margin-bottom: 1.25rem; padding-left: 1.5rem; list-style: disc; }
.rich-text img { max-width: 100%; margin-block: 1.5rem; }

/* ── Fade-up ────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 1s ease forwards; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 239, 227, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* TOPページ：fixed にしてヒーロー全面表示、ヒーロー中は透明 */
.page-top .site-header {
  position: fixed;
  left: 0; right: 0; width: 100%;
}
.page-top .site-header:not(.is-scrolled):not(.drawer-open) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.page-top .site-header:not(.is-scrolled):not(.drawer-open) .site-header__logo-ja { color: #f4efe3; }
.page-top .site-header:not(.is-scrolled):not(.drawer-open) .site-header__logo-en { color: rgba(244,239,227,0.6); }
.page-top .site-header:not(.is-scrolled):not(.drawer-open) .site-header__logo-img { filter: brightness(0) invert(1); }
.page-top .site-header:not(.is-scrolled):not(.drawer-open) .site-header__logo { opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.page-top .site-header { transition: background 0.4s ease; }
.page-top .site-header .site-header__logo { transition: opacity 0.4s ease; }
.page-top .site-header:not(.is-scrolled):not(.drawer-open) .site-header__nav-link { color: rgba(244,239,227,0.85); }
.page-top .site-header:not(.is-scrolled):not(.drawer-open) .site-header__hamburger span { background-color: #f4efe3; }
.site-header__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x);
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo-img { height: 36px; width: auto; display: block; transition: filter 0.4s ease; }
.site-header__logo-ja { font-family: var(--font-mincho); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; color: var(--ink); }
.site-header__logo-en { font-family: var(--font-roman); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); }
.site-header__nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); }
.site-header__nav-link {
  font-family: var(--font-mincho); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--ink-soft);
  position: relative; padding-bottom: 2px; transition: color 0.2s;
}
.site-header__nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background-color: var(--accent); transition: width 0.3s ease;
}
.site-header__nav-link:hover { color: var(--ink); }
.site-header__nav-link:hover::after { width: 100%; }

.site-header__hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.site-header__hamburger span {
  display: block; width: 22px; height: 1.5px; background-color: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.site-header__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-header__drawer {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  width: 100%; height: calc(100dvh - 68px);
  background: rgba(244, 239, 227, 0.99);
  padding: 2rem var(--pad-x);
  flex-direction: column; gap: 1.75rem; z-index: 9999;
  border-top: 1px solid var(--line-soft);
  overflow-y: auto;
}
.site-header__drawer.is-open { display: flex; }
.site-header__drawer-link {
  font-family: var(--font-roman); font-size: 1rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft); padding-bottom: 1.25rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background-color: var(--bg-dark); color: rgba(255,255,255,0.85); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer__inner { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }
.site-footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 3rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
}
.site-footer__nav {
  flex-direction: row; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; flex-wrap: wrap; justify-content: flex-end;
}
.site-footer__nav a { font-family: var(--font-roman); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }
.site-footer__brand-name { font-family: var(--font-mincho); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.site-footer__brand-en { font-family: var(--font-roman); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.site-footer__brand-tagline { font-family: var(--font-mincho); font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; line-height: 1.6; }
.site-footer__brand-info { font-size: 0.8rem; line-height: 1.8; color: rgba(255,255,255,0.6); }
.site-footer__brand-info a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.site-footer__brand-info a:hover { color: #fff; }
.site-footer__col-title { font-family: var(--font-roman); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.site-footer__col-links { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col-links a { font-size: 0.85rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.site-footer__col-links a:hover { color: #fff; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.site-footer__copyright { font-family: var(--font-roman); font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); }
.site-footer__privacy { font-size: 0.78rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.site-footer__privacy:hover { color: #fff; }

/* ================================================================
   PAGE HERO
   ================================================================ */
.page-hero {
  padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-inline: var(--pad-x); max-width: var(--max-w); margin-inline: auto;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__label {
  font-family: var(--font-roman); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
}
.page-hero__label::before { content: ''; font-size: 0.6rem; }
.page-hero__title { font-family: var(--font-mincho); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.15; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.page-hero__title-en { display: none; }
.page-hero__lead { font-size: 1rem; color: var(--ink-soft); max-width: 44rem; line-height: 1.8; }

/* ================================================================
   BUTTON
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  height: 52px; padding: 0 1.75rem;
  font-family: var(--font-roman); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer; text-decoration: none; white-space: nowrap;
}
.btn__arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary { background-color: var(--ink); color: #f4efe3; border: 1px solid var(--ink); }
.btn--primary:hover { background-color: var(--accent); border-color: var(--accent); }
.btn--outline { background-color: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background-color: var(--accent); color: #f4efe3; border-color: var(--accent); }
.btn--light { background-color: transparent; color: #e8e0d0; border: 1px solid rgba(232,224,208,0.4); }
.btn--light:hover { background-color: var(--accent); border-color: var(--accent); color: #fff; }

/* ================================================================
   SHOP CARD
   ================================================================ */
.shop-card { background-color: var(--bg-paper); border: 1px solid var(--line-soft); overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.shop-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.shop-card__photo { width: 100%; aspect-ratio: 16/9; overflow: hidden; background-color: #d6cfc0; position: relative; }
.shop-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.shop-card__photo-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-family: var(--font-roman); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); }
.shop-card__body { padding: clamp(1.5rem, 3vw, 2rem); }
.shop-card__tag { font-family: var(--font-roman); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.shop-card__name { font-family: var(--font-mincho); font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; line-height: 1.3; margin-bottom: 1rem; letter-spacing: 0.02em; }
.shop-card__info { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.shop-card__info-row { display: flex; gap: 0.75rem; }
.shop-card__info-label { font-family: var(--font-roman); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); min-width: 4rem; padding-top: 2px; }
.shop-card__info-value { line-height: 1.6; }
.shop-card__info-value a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.shop-card__map { width: 100%; height: 180px; background-color: #d6cfc0; border: 1px solid var(--line-soft); overflow: hidden; margin-bottom: 1rem; }
.shop-card__map iframe { width: 100%; height: 100%; border: none; display: block; }
.shop-card__map div { width: 100%; height: 100%; }
.shop-card__map-link { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-roman); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); transition: color 0.2s; }
.shop-card__map-link:hover { color: var(--accent); }
.shop-card__address { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1rem; }
.shop-card__links { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.75rem; }
.shop-card__link { font-family: var(--font-roman); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--accent); transition: opacity 0.2s; }
.shop-card__link:hover { opacity: 0.7; }

/* ================================================================
   NEWS CARD
   ================================================================ */
.news-card {
  display: grid; grid-template-columns: auto 1fr;
  border-bottom: 1px solid var(--line-soft);
  padding-block: 1.5rem; text-decoration: none; color: inherit;
  transition: opacity 0.2s;
}
.news-card:hover { opacity: 0.7; }
.news-card:hover .news-card__title { color: var(--accent); }
.news-card__meta { min-width: 10rem; padding-right: 2rem; }
.news-card__date { font-family: var(--font-roman); font-size: 0.8rem; color: var(--ink-mute); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.news-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.news-card__tag { font-family: var(--font-roman); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); border: 1px solid currentColor; padding: 0.15rem 0.5rem; }
.news-card__title { font-family: var(--font-mincho); font-size: 1rem; font-weight: 700; line-height: 1.5; letter-spacing: 0.02em; transition: color 0.2s; align-self: center; }

/* Grid variant */
.news-card--grid {
  background-color: var(--bg-paper); border: 1px solid var(--line-soft);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex; flex-direction: column; gap: 0.75rem;
  grid-template-columns: unset;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.news-card--grid:hover { box-shadow: var(--shadow); transform: translateY(-3px); opacity: 1; }
.news-card--grid .news-card__date { font-size: 0.75rem; margin-bottom: 0; }
.news-card--grid .news-card__title { font-size: 1rem; align-self: auto; }

/* ================================================================
   TOP PAGE
   ================================================================ */
.top-hero {
  position: relative; height: 100svh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.top-hero__bg { position: absolute; inset: 0; z-index: 0; }
.top-hero__bg picture { display: block; width: 100%; height: 100%; }
.top-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.top-hero__placeholder { width: 100%; height: 100%; background-color: #2a2520; display: flex; align-items: center; justify-content: center; font-family: var(--font-roman); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: #4a4035; }
.top-hero__content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; padding: clamp(2.5rem, 5vw, 5rem) var(--pad-x); }
.top-hero__number { font-family: var(--font-roman); font-size: clamp(5rem, 12vw, 12rem); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.06); line-height: 1; position: absolute; right: var(--pad-x); bottom: clamp(2.5rem, 5vw, 5rem); pointer-events: none; }
.top-hero__title { font-family: var(--font-mincho); font-size: clamp(3rem, 8vw, 7rem); font-weight: 700; line-height: 1.1; letter-spacing: 0.02em; color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.top-hero__sub { font-family: var(--font-roman); font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; font-style: italic; color: rgba(244,239,227,0.95); margin-bottom: 1.5rem; letter-spacing: 0.05em; text-shadow: 0 1px 12px rgba(0,0,0,0.8); }
.top-hero__body { font-size: clamp(1.1rem, 1.5vw, 1.2rem); font-weight: 500; color: rgba(244,239,227,0.92); line-height: 1.8; max-width: 34rem; text-shadow: 0 1px 10px rgba(0,0,0,0.8); }
.top-hero__scroll { position: absolute; bottom: 2rem; right: var(--pad-x); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.top-hero__scroll-line { width: 1px; height: 3rem; background: linear-gradient(to bottom, transparent, rgba(244,239,227,0.4)); display: block; }
.top-hero__scroll-text { font-family: var(--font-roman); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(244,239,227,0.4); writing-mode: vertical-rl; }

.top-brand__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.top-brand__title { margin-bottom: 0.25rem; }
.top-brand__title-en { margin-bottom: 1.5rem; }
.top-brand__body { font-size: 1rem; line-height: 1.9; color: var(--ink-soft); margin-bottom: 2.5rem; max-width: 36rem; }
.top-brand__visual { aspect-ratio: 4/3; overflow: hidden; }

.top-shops__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.top-shops__areas { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.top-shops-area { border: 1px solid var(--line-soft); padding: 1.5rem 2rem; }
.top-shops-area__name { font-family: var(--font-mincho); font-size: clamp(1rem, 2.5vw, 1.15rem); font-weight: 700; letter-spacing: 0.05em; color: #fff; background: var(--ink); padding: 0.18em 0.8em; margin-bottom: 1rem; display: inline-block; }
.top-shops-area__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }
.top-shops-area--single .top-shops-area__list { grid-template-columns: 1fr; }
.top-shops-area__item { font-family: var(--font-mincho); font-size: 0.95rem; color: var(--ink); }
.top-shops-area__count { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.5rem; }
.top-shops-area__num { font-family: var(--font-roman); font-size: 2.5rem; font-weight: 300; color: var(--ink); line-height: 1; margin-right: 0.2em; }
.top-shops__more { text-align: center; }

.top-franchise__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; }
.top-franchise__label { font-family: var(--font-roman); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.top-franchise__title { font-family: var(--font-mincho); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.3; letter-spacing: 0.02em; color: #fff; margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.top-franchise__body { font-size: 0.95rem; font-weight: 500; color: rgba(244,239,227,0.9); max-width: 40rem; line-height: 1.8; text-shadow: 0 1px 10px rgba(0,0,0,0.8); }
.top-franchise__cta { flex-shrink: 0; }

.top-news__more { margin-top: 2rem; text-align: right; }
.top-news__more-link { font-family: var(--font-roman); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--ink-mute); transition: color 0.2s; }
.top-news__more-link:hover { color: var(--accent); }

.top-footer-cta { border-top: 1px solid var(--line-soft); }
.top-footer-cta__inner { display: flex; align-items: center; gap: clamp(3rem, 6vw, 6rem); }
.top-footer-cta__num { font-family: var(--font-roman); font-size: clamp(5rem, 10vw, 9rem); font-style: italic; font-weight: 300; color: var(--line-soft); line-height: 1; display: block; }
.top-footer-cta__title { font-family: var(--font-mincho); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.3; letter-spacing: 0.02em; margin-bottom: 1rem; }
.top-footer-cta__body { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 2rem; }

/* ================================================================
   COMPANY PAGE
   ================================================================ */
.company-ceo__inner { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
.company-ceo__photo { flex-shrink: 0; }
.company-ceo__heading { margin-bottom: 1.5rem; }
.company-ceo__inner .heading-group { margin-bottom: 1rem; }
.company-ceo__body { font-size: 1rem; line-height: 1.9; color: var(--ink-soft); margin-bottom: 2rem; max-width: 40rem; }
.company-ceo__sig { font-family: var(--font-mincho); font-size: 1rem; color: var(--ink-soft); letter-spacing: 0.1em; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); display: inline-block; }

.company-philosophy__inner { display: flex; gap: clamp(2rem, 5vw, 5rem); align-items: flex-start; }
.company-philosophy__num { font-family: var(--font-roman); font-size: clamp(5rem, 10vw, 9rem); font-style: italic; font-weight: 300; color: var(--line-soft); line-height: 0.9; display: block; }
.company-philosophy__body { font-size: 1.05rem; line-height: 1.95; color: var(--ink-soft); max-width: 44rem; }

/* Philosophy Slider */
.philosophy-slider { position: relative; overflow: hidden; min-height: 44rem; display: flex; align-items: center; padding-block: 80px; }
.philosophy-slider__bg { position: absolute; inset: 0; }
.philosophy-slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 2.8s ease-in-out; }
.philosophy-slider__img:nth-child(1) { object-position: center 65%; }
.philosophy-slider__img:nth-child(2) { object-position: center 75%; }
.philosophy-slider__img.is-active { opacity: 1; }
.philosophy-slider__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.philosophy-slider > .container { width: 100%; max-width: var(--max-w); }
.philosophy-slider .company-philosophy__inner { padding: 0; background: none; max-width: 40em; }
.philosophy-slider .company-philosophy__body { max-width: none; }
.phil-hl {
  display: inline;
  background: rgba(255,255,255,0.85);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.15em 0.6em;
  line-height: 1.9;
}
.phil-hl--body {
  font-size: 1.05rem;
  line-height: 2.5;
  color: var(--ink-soft);
  font-weight: 500;
}
.philosophy-body-fade { display: none; }
.philosophy-body-more { display: none; }
.philosophy-slider .heading-group { margin-bottom: 1rem; }
.philosophy-slider .t-label { margin-bottom: 1rem; display: block; }
.philosophy-slider .t-label .phil-hl { background: none; padding: 0; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
.philosophy-slider .t-section-title { margin-bottom: 0.75rem; }

/* Philosophy slide-in animation */
@keyframes philSlideIn {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
.philosophy-slider .t-label,
.philosophy-slider .t-section-title,
.philosophy-slider .company-philosophy__body { opacity: 0; transform: translateX(-36px); }
.philosophy-slider.is-animated .t-label {
  animation: philSlideIn 2s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.philosophy-slider.is-animated .t-section-title {
  animation: philSlideIn 2s cubic-bezier(0.22,1,0.36,1) 0.8s forwards;
}
.philosophy-slider.is-animated .company-philosophy__body {
  animation: philSlideIn 2s cubic-bezier(0.22,1,0.36,1) 1.5s forwards;
}

.data-table { width: 100%; max-width: 56rem; border-collapse: collapse; }
.data-table tr { border-bottom: 1px solid var(--line-soft); }
.data-table tr:first-child { border-top: 1px solid var(--line-soft); }
.data-table th { font-family: var(--font-roman); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); width: 10rem; padding: 1.25rem 2rem 1.25rem 0; vertical-align: top; font-weight: 400; white-space: nowrap; text-align: left; }
.data-table td { font-size: 0.95rem; color: var(--ink-soft); padding: 1.25rem 0; line-height: 1.7; text-align: left; }

.history-list { max-width: 48rem; }
.history-item { display: grid; grid-template-columns: 7rem 1fr; align-items: start; gap: 0 2rem; padding-block: 1.25rem; border-bottom: 1px solid var(--line-soft); }
.history-item:first-child { border-top: 1px solid var(--line-soft); }
.history-year { font-family: var(--font-roman); font-size: 0.85rem; letter-spacing: 0.05em; color: var(--ink-mute); padding-top: 2px; }
.history-dot { display: none; }
.history-text { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }

/* ================================================================
   FRANCHISE PAGE
   ================================================================ */
.franchise-hero { position: relative; min-height: 80svh; display: flex; align-items: center; overflow: hidden; }
.franchise-hero__bg { position: absolute; inset: 0; }
.franchise-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.franchise-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.6) 50%, rgba(14,14,14,0.2) 100%); }
.franchise-hero__content { position: relative; z-index: 2; padding-block: clamp(3rem, 6vw, 5rem); width: 100%; }
.franchise-hero__label { font-family: var(--font-roman); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.franchise-hero__title { font-family: var(--font-mincho); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; line-height: 1.2; letter-spacing: 0.02em; color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.franchise-hero__sub { font-family: var(--font-roman); font-size: 1rem; font-style: italic; font-weight: 600; color: rgba(244,239,227,0.95); margin-bottom: 1.5rem; text-shadow: 0 1px 12px rgba(0,0,0,0.8); }
.franchise-hero__body { font-size: 0.95rem; font-weight: 500; color: rgba(244,239,227,0.92); max-width: 36rem; line-height: 1.8; text-shadow: 0 1px 10px rgba(0,0,0,0.8); }

.franchise-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.franchise-path { border: 1px solid var(--line-soft); padding: clamp(1.5rem, 3vw, 2.5rem); }
.franchise-path__type { font-family: var(--font-roman); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.franchise-path__title { font-family: var(--font-mincho); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.4; margin-bottom: 1rem; letter-spacing: 0.02em; }
.franchise-path__desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.5rem; }
.franchise-path__head { padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.franchise-path__btn { margin-top: 1.5rem; }
.franchise-model__inner { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
.franchise-table { width: 100%; max-width: 44rem; border-collapse: collapse; margin-bottom: 1rem; }
.franchise-table tr { border-bottom: 1px solid var(--line-soft); }
.franchise-table tr:first-child { border-top: 1px solid var(--line-soft); }
.franchise-table th { font-family: var(--font-roman); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); width: 9rem; padding: 1.1rem 2rem 1.1rem 0; vertical-align: top; font-weight: 400; white-space: nowrap; text-align: left; }
.franchise-table td { font-size: 1.05rem; font-family: var(--font-roman); color: var(--ink); padding: 1.1rem 0; text-align: left; }
.franchise-model__note { font-size: 0.78rem; color: var(--ink-mute); margin-top: 0.75rem; }
.franchise-model__visual { overflow: hidden; }

.franchise-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line-soft); }
.franchise-step { padding: clamp(1.5rem, 3vw, 2.5rem); border-right: 1px solid var(--line-soft); }
.franchise-step:last-child { border-right: none; }
.franchise-step__num { font-family: var(--font-mincho); font-size: 2.5rem; font-style: italic; font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 1rem; }
.franchise-step__title { font-family: var(--font-mincho); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: 0.03em; }
.franchise-step__body { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.7; }

.franchise-cta__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; }
.franchise-cta__label { font-family: var(--font-roman); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.franchise-cta__title { font-family: var(--font-mincho); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.3; letter-spacing: 0.02em; color: #e8e0d0; margin-bottom: 1rem; }
.franchise-cta__body { font-size: 0.9rem; color: rgba(244,239,227,0.8); max-width: 40rem; line-height: 1.8; }
.franchise-cta__btn { flex-shrink: 0; }

/* ── 一国一城制度 ────────────────────────────────────────────────── */
.franchise-catch { font-family: var(--font-mincho); font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 700; letter-spacing: 0.06em; color: var(--ink); margin-bottom: 1rem; }
.franchise-intro { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 3rem; max-width: 50rem; }
.franchise-ikkkj__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.franchise-ikkkj__card { border: 1px solid var(--line-soft); padding: 2rem 2.25rem; }
.franchise-ikkkj__card--accent { background: var(--ink); color: #fff; border-color: var(--ink); }
.franchise-ikkkj__card--combined { display: flex; gap: 0; padding: 0; grid-column: 1 / -1; }
.franchise-ikkkj__combined-left { flex: 1; padding: 2rem 2.25rem; }
.franchise-ikkkj__combined-divider { width: 1px; background: var(--line-soft); flex-shrink: 0; margin-block: 2rem; }
.franchise-ikkkj__combined-right { flex: 1; padding: 2rem 2.25rem; display: flex; flex-direction: column; justify-content: flex-start; }
.franchise-ikkkj__label { font-family: var(--font-roman); font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.franchise-ikkkj__card--accent .franchise-ikkkj__label { color: rgba(244,239,227,0.6); }
.franchise-ikkkj__value { font-family: var(--font-roman); font-size: 4rem; font-weight: 300; line-height: 1; margin-bottom: 1rem; }
.franchise-ikkkj__value span { font-size: 1.5rem; font-family: var(--font-mincho); font-weight: 700; margin-left: 0.1em; }
.franchise-ikkkj__subtitle { font-family: var(--font-mincho); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.franchise-ikkkj__note { font-size: 1rem; color: var(--ink-soft); line-height: 1.85; }
.franchise-ikkkj__card--accent .franchise-ikkkj__note { color: rgba(244,239,227,0.75); }
.franchise-ikkkj__list { padding-left: 1em; }
.franchise-ikkkj__list li { font-size: 1rem; color: var(--ink-soft); line-height: 1.8; position: relative; padding-left: 0.25em; }
.franchise-ikkkj__list li::before { content: '・'; }
.franchise-ikkkj__list--check { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.franchise-ikkkj__list--check li::before { content: '✓'; color: var(--accent); margin-right: 0.3em; }
.franchise-path__btn-wrap { display: flex; justify-content: center; margin-top: 2rem; }

/* ── FC加盟 KPI & テーブル ──────────────────────────────────────── */
.franchise-fc__kpi { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem; border: 1px solid var(--line-soft); }
.franchise-fc__kpi-item { flex: 1; text-align: center; padding: 2rem 1.5rem; }
.franchise-fc__kpi-divider { width: 1px; height: 5rem; background: var(--line-soft); flex-shrink: 0; }
.franchise-fc__kpi-label { font-family: var(--font-mincho); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.75rem; }
.franchise-fc__kpi-value { font-family: var(--font-mincho); font-size: 3rem; font-weight: 700; line-height: 1; }
.franchise-fc__kpi-value span { font-size: 1.1rem; font-family: var(--font-mincho); font-weight: 700; margin-left: 0.1em; }
.franchise-fc__kpi-value--sm { font-family: var(--font-mincho); font-size: 1rem; font-weight: 700; line-height: 1.6; letter-spacing: 0.03em; color: var(--ink); }
.franchise-tables__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; margin-top: 0.5rem; }
.franchise-table__heading { font-family: var(--font-mincho); font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 1rem; margin-top: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--ink); display: inline-block; }
.franchise-table--detail { max-width: 100%; }
.franchise-table--detail thead th { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.06em; color: #fff; background: var(--ink); padding: 0.75rem 1.25rem; text-align: left; width: auto; white-space: normal; }
.franchise-table--detail tbody td { font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink); padding: 0.85rem 1.25rem; }
.franchise-table--detail tbody tr:nth-child(even) td { background: rgba(20,20,20,0.03); }
.franchise-table--pl thead th:nth-child(2),
.franchise-table--pl tbody td:nth-child(2),
.franchise-table--pl tfoot td:nth-child(2) { text-align: right; }
.franchise-table--pl thead th:nth-child(3),
.franchise-table--pl tbody td:nth-child(3),
.franchise-table--pl tfoot td:nth-child(3) { text-align: right; width: 6rem; }
.franchise-table__total th, .franchise-table__total td { font-family: var(--font-mincho); font-weight: 700; font-size: 1rem; padding: 1rem 1.25rem; border-top: 2px solid var(--ink); background: var(--cream); }
.franchise-table__profit th, .franchise-table__profit td { color: var(--accent); }

/* ================================================================
   NEWS PAGE
   ================================================================ */
.news-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.news-tag { font-family: var(--font-roman); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1rem; border: 1px solid var(--line-soft); color: var(--ink-mute); transition: background-color 0.2s, color 0.2s, border-color 0.2s; cursor: pointer; background: none; }
.news-tag:hover { border-color: var(--accent); color: var(--accent); }
.news-tag.is-active { background-color: var(--ink); color: var(--bg); border-color: var(--ink); }
.news-empty { font-size: 0.95rem; color: var(--ink-mute); padding-block: 3rem; text-align: center; }

.news-pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); }
.news-pagination:empty { display: none; }
.news-pagination__btn { font-family: var(--font-roman); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--ink-mute); transition: color 0.2s; background: none; border: none; cursor: pointer; }
.news-pagination__btn:hover { color: var(--accent); }
.news-pagination__pages { display: flex; gap: 0.4rem; }
.news-pagination__page { width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-roman); font-size: 0.82rem; color: var(--ink-mute); border: 1px solid transparent; transition: all 0.2s; background: none; cursor: pointer; }
.news-pagination__page:hover { border-color: var(--line-soft); color: var(--ink); }
.news-pagination__page.is-active { background-color: var(--ink); color: var(--bg); border-color: var(--ink); }

/* News detail */
.news-detail-header { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(2rem, 4vw, 3rem); background-color: var(--bg-paper); border-bottom: 1px solid var(--line-soft); }
.news-detail-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.news-detail-date { font-family: var(--font-roman); font-size: 0.85rem; color: var(--ink-mute); letter-spacing: 0.05em; }
.news-detail-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.news-detail-tag { font-family: var(--font-roman); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); border: 1px solid currentColor; padding: 0.2rem 0.6rem; cursor: pointer; background: none; }
.news-detail-title { font-family: var(--font-mincho); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; line-height: 1.25; letter-spacing: 0.02em; max-width: 48rem; }
.news-detail-rich-text { max-width: 48rem; }
.news-detail-back { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); }
.news-detail-back-link { font-family: var(--font-roman); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--ink-mute); transition: color 0.2s; }
.news-detail-back-link:hover { color: var(--accent); }

/* ================================================================
   SHOPS PAGE
   ================================================================ */
.shops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-form { max-width: 48rem; }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; margin-bottom: 2.5rem; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__label { font-family: var(--font-roman); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); }
.contact-form__required { color: var(--accent); }
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--line-soft);
  padding: 0.75rem 0; font-family: var(--font-sans); font-size: 0.95rem;
  color: var(--ink); width: 100%; transition: border-color 0.2s; outline: none; letter-spacing: 0.02em;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder { color: var(--ink-mute); font-size: 0.9rem; }
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus { border-bottom-color: var(--ink); }
.contact-form__input.is-error, .contact-form__select.is-error, .contact-form__textarea.is-error { border-bottom-color: var(--accent) !important; }
.contact-form__select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8578' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.5rem center; padding-right: 2rem; }
.contact-form__textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.contact-form__error { font-size: 0.78rem; color: var(--accent); margin-top: 0.2rem; }
.contact-form__check-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.contact-form__checkbox { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--ink); cursor: pointer; }
.contact-form__privacy-link { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.contact-form__privacy-link:hover { color: var(--accent); }
.contact-form__submit-error { font-size: 0.88rem; color: var(--accent); margin-bottom: 1.5rem; padding: 1rem; border: 1px solid var(--accent); background-color: rgba(220,38,38,0.04); }
.contact-form__submit-error:empty { display: none; }
.contact-form__submit { display: flex; justify-content: flex-end; }
.contact-form__submit-btn { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; height: 52px; padding: 0 2rem; background-color: var(--ink); color: var(--bg); font-family: var(--font-roman); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; cursor: pointer; border: 1px solid var(--ink); transition: background-color 0.25s ease, border-color 0.25s ease; }
.contact-form__submit-btn:hover:not(:disabled) { background-color: var(--accent); border-color: var(--accent); }
.contact-form__submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Thanks page */
.thanks-inner { text-align: center; max-width: 36rem; margin-inline: auto; padding-block: 4rem; }
.thanks-stamp { font-size: 4rem; color: var(--accent); margin-bottom: 2rem; display: block; }
.thanks-title { font-family: var(--font-mincho); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; margin-bottom: 1.5rem; line-height: 1.4; }
.thanks-body { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.9; margin-bottom: 2.5rem; }
.thanks-link { font-family: var(--font-roman); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--ink-mute); transition: color 0.2s; }
.thanks-link:hover { color: var(--accent); }

/* ================================================================
   PRIVACY PAGE
   ================================================================ */
.privacy-body { max-width: 48rem; }
.privacy-intro { font-size: 1rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 3rem; }
.privacy-article { margin-bottom: 2.5rem; }
.privacy-article-title { font-family: var(--font-mincho); font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.privacy-article p { font-size: 0.95rem; line-height: 1.85; color: var(--ink-soft); }
.privacy-article ul { margin-top: 0.75rem; padding-left: 1.5rem; list-style: disc; }
.privacy-article li { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.4rem; }
.privacy-date { font-size: 0.88rem; color: var(--ink-mute); margin-top: 3rem; }
.privacy-company { font-family: var(--font-mincho); font-size: 0.95rem; color: var(--ink-soft); margin-top: 0.5rem; }

/* ================================================================
   LOADING STATE
   ================================================================ */
.loading { text-align: center; padding: 4rem; color: var(--ink-mute); font-family: var(--font-roman); font-size: 0.85rem; letter-spacing: 0.15em; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  :root { --section-gap: clamp(3rem, 6vw, 5rem); }
  .site-header__nav { display: none; }
  .site-header__hamburger { display: flex; }
  .site-footer__top { flex-direction: column; gap: 2rem; }
  .site-footer__nav { justify-content: flex-start; align-items: flex-start; }
  .top-brand__inner { grid-template-columns: 1fr; }
  .top-brand__visual { order: -1; }
  .top-shops__grid { grid-template-columns: 1fr 1fr; }
  .top-franchise__inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .top-footer-cta__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .top-footer-cta__deco { display: none; }
  .company-ceo__inner { grid-template-columns: 1fr; }
  .company-ceo__photo { max-width: 220px; }
  .company-philosophy__inner { flex-direction: column; }
  .company-philosophy__deco { display: none; }
  .franchise-model__inner { grid-template-columns: 1fr; }
  .franchise-model__visual { display: none; }
  .franchise-steps__grid { grid-template-columns: 1fr; }
  .franchise-step { border-bottom: 1px solid var(--line-soft); }
  .franchise-step:nth-child(even) { border-right: none; }
  .franchise-cta__inner { flex-direction: column; align-items: flex-start; }
  .franchise-paths { grid-template-columns: 1fr; }
  .franchise-ikkkj__grid { grid-template-columns: 1fr; }
  .franchise-ikkkj__card--combined { flex-direction: column; }
  .franchise-ikkkj__combined-divider { width: auto; height: 1px; margin-block: 0; margin-inline: 2rem; }
  .franchise-fc__kpi { flex-direction: column; }
  .franchise-fc__kpi-divider { width: 100%; height: 1px; }
  .shops-grid { grid-template-columns: 1fr; }
  .data-table th { width: 6rem; }
  .history-item { grid-template-columns: 5.5rem 1fr; }
}

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

@media (max-width: 960px) {
  .top-shops__areas { grid-template-columns: 1fr; }
  .philosophy-slider .company-philosophy__inner { max-width: 95%; }
  .franchise-tables__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  :root { --section-gap: 4rem; }
  .top-hero__scroll { display: none; }
  .philosophy-slider .company-philosophy__inner { max-width: 100%; }
  .philosophy-slider .phil-hl--body { background: none; color: rgba(255,255,255,0.92) !important; text-shadow: 0 1px 8px rgba(0,0,0,0.8); line-height: 1.3; padding: 0; font-size: 15px; }
  .philosophy-slider__overlay { background: rgba(0,0,0,0.5); }
  .philosophy-body-wrap { position: relative; max-height: 220px; overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%); mask-image: linear-gradient(to bottom, black 40%, transparent 100%); }
  .philosophy-body-wrap.is-open { max-height: none; -webkit-mask-image: none; mask-image: none; }
  .philosophy-body-fade { display: none; }
  .philosophy-body-more { display: inline-block; background: none; border: 1px solid rgba(255,255,255,0.6); color: #fff; font-family: var(--font-mincho); font-size: 0.85rem; padding: 0.5em 1.5em; margin-top: 0.75rem; cursor: pointer; letter-spacing: 0.05em; }
  .philosophy-body-more:hover { background: rgba(255,255,255,0.15); }
  .top-shops__grid { grid-template-columns: 1fr; }
  .top-shops__grid .shop-card:nth-child(n+3) { display: none; }
  .top-shops-area__list { grid-template-columns: 1fr; }
  .site-footer__top { flex-direction: column; gap: 1.5rem; }
  .news-card { grid-template-columns: 1fr; }
  .news-card__meta { padding-right: 0; margin-bottom: 0.5rem; }
  .franchise-steps__grid { grid-template-columns: 1fr; }
  .franchise-step { border-right: none; }
  .company-ceo__photo { max-width: 100%; width: 100%; }
  .philosophy-slider .container { margin-left: 0; }
  .philosophy-slider .t-section-title { font-size: 1.6rem; }
  .philosophy-slider { min-height: auto; padding-block: 60px; }
  .philosophy-slider .t-section-title { line-height: 1.4; }
  .philosophy-slider .t-section-title .phil-hl { background: none; padding: 0; color: #fff !important; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
  .phil-hl--body { font-size: 12px; }
}

@media (min-width: 961px) {
  .page-hero__label { font-size: 1.2rem; }
  .franchise-hero__label { font-size: 1.2rem; }
}

/* ── Shops エリア区分け ── */
.shops-area { margin-bottom: clamp(3rem, 6vw, 5rem); }
.shops-area__title { font-family: var(--font-mincho); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; color: var(--ink); letter-spacing: 0.05em; padding-bottom: 0.75rem; border-bottom: 2px solid var(--ink); margin-bottom: 2rem; }

/* ================================================================
   ANIMATIONS
   ================================================================ */

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── TOP hero (ページ読み込み時) ── */
.top-hero__bg img { animation: fadeIn 1.4s ease 0s both; }
.top-hero__title  { animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.3s both; }
.top-hero__sub    { animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.55s both; }
.top-hero__body   { animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.75s both; }
.top-hero__scroll { animation: fadeIn 1s ease 1.3s both; }

/* ── Franchise hero ── */
.franchise-hero__label { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.franchise-hero__title { animation: fadeUp 1s  cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.franchise-hero__sub   { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s both; }
.franchise-hero__body  { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.75s both; }

/* ── Page hero (内部ページ) ── */
.page-hero__label    { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.page-hero__title    { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.page-hero__title-en { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.page-hero__lead     { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.5s both; }

/* ── スクロール reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible   { opacity: 1; transform: translateY(0); }
.reveal--fade        { transform: none; }
.reveal--delay-1     { transition-delay: 0.1s; }
.reveal--delay-2     { transition-delay: 0.2s; }
.reveal--delay-3     { transition-delay: 0.3s; }
.reveal--delay-4     { transition-delay: 0.4s; }

/* ── reduced-motion 対応 ── */
@media (prefers-reduced-motion: reduce) {
  .top-hero__bg img, .top-hero__title, .top-hero__sub, .top-hero__body, .top-hero__scroll,
  .franchise-hero__label, .franchise-hero__title, .franchise-hero__sub, .franchise-hero__body,
  .page-hero__label, .page-hero__title, .page-hero__title-en, .page-hero__lead,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
