/* ===================================
   RESET & ROOT
=================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0f0f0d;
  --white:   #fdfcf7;
  --cream:   #f2ede0;
  --tan:     #e2d9c4;
  --orange:  #c8400b;
  --orange2: #e55a1a;
  --gray:    #7a776f;
  --font-min: 'Shippori Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-disp: 'Bebas Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===================================
   LOADER
=================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a0800 0%, #000 70%);
}

.loader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo-wrap {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: ldFadeUp 0.8s 0.2s ease both;
}

.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(229,90,26,0.5));
}

.loader-en {
  font-family: var(--font-disp);
  font-size: clamp(16px, 4vw, 24px);
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  animation: ldFadeUp 0.6s 0.6s ease both;
}

.loader-tagline {
  font-family: var(--font-min);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.25);
  margin-top: 14px;
  animation: ldFadeUp 0.6s 1.0s ease both;
}

.loader-bar-wrap {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  animation: ldFadeUp 0.4s 0.8s ease both;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--orange2);
}

@keyframes ldFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================
   LANG BAR
=================================== */
.lang-bar {
  position: fixed;
  top: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  background: var(--orange);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color 0.2s, background 0.2s;
}

.lang-btn:hover, .lang-btn.active {
  color: #fff;
  background: rgba(0,0,0,0.2);
}

.lang-sep { color: rgba(255,255,255,0.3); font-size: 10px; }

/* ===================================
   NAV
=================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.4s, padding 0.3s;
}

.nav.scrolled {
  background: rgba(15,15,13,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  font-family: var(--font-min);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.15em;
}

.nav-links { display: flex; gap: 36px; }

.nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--white); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-nav.open { display: flex; }

.mn-link {
  font-family: var(--font-min);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}

/* ===================================
   HERO
=================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
}

.hs-bg { position: absolute; inset: 0; z-index: 0; }

.hs-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.6s ease, transform 8s ease;
}

.hs-slide.hs-active { opacity: 1; transform: scale(1); }

.hs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(150deg, rgba(10,8,6,0.78) 0%, rgba(10,8,6,0.35) 55%, rgba(10,8,6,0.65) 100%);
}

.hf-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hf { position: absolute; }
.hf-img { display: block; object-fit: cover; }

.hf-circle {
  border-radius: 50%;
  border: 3px solid rgba(229,90,26,0.7);
  box-shadow: 0 0 40px rgba(229,90,26,0.4), 0 0 80px rgba(229,90,26,0.15);
}

.hf1 { width: 180px; height: 180px; top: 12%; right: 8%; animation: hfBob 6s ease-in-out infinite; }
.hf1 .hf-img { width: 180px; height: 180px; }
.hf2 { width: 110px; height: 110px; bottom: 24%; right: 4%; animation: hfBob 7s ease-in-out infinite 1.5s; }
.hf2 .hf-img { width: 110px; height: 110px; }

.hf-kanji {
  font-family: var(--font-min);
  font-size: 72px;
  color: rgba(229,90,26,0.22);
  display: block;
  line-height: 1;
  user-select: none;
  text-shadow: 0 0 30px rgba(229,90,26,0.3);
}

.hf3 { top: 18%; left: 4%; animation: hfBob 11s ease-in-out infinite 0.5s; }
.hf4 { bottom: 22%; left: 6%; animation: hfBob 8s ease-in-out infinite 2s; }
.hf5 { top: 42%; right: 20%; animation: hfBob 10s ease-in-out infinite 1s; }

.hf-tag {
  font-family: var(--font-disp);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.12);
  display: block;
  user-select: none;
}

.hf6 { bottom: 15%; left: 12%; animation: hfBob 12s ease-in-out infinite; }
.hf7 { top: 10%; left: 28%; animation: hfBob 10s ease-in-out infinite 3s; }

.hf-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(229,90,26,0.10);
}

.hf-ring1 { width: 380px; height: 380px; top: -5%; right: -80px; animation: hfSpin 14s linear infinite; }
.hf-ring2 { width: 240px; height: 240px; bottom: 5%; left: -60px; animation: hfSpin 10s linear infinite reverse; }

@keyframes hfBob {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  25%       { transform: translateY(-28px) rotate(4deg) scale(1.05); }
  75%       { transform: translateY(12px) rotate(-3deg) scale(0.97); }
}

@keyframes hfSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 160px 60px 60px;
  flex: 1;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--orange2);
  margin-bottom: 28px;
  text-transform: uppercase;
  animation: fadeUp 1s 0.3s both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.ht-jp {
  font-family: var(--font-min);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.06em;
  animation: fadeUp 1s 0.5s both;
}

.ht-en {
  font-family: var(--font-disp);
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: 1;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  animation: fadeUp 1s 0.7s both;
}

.hero-sub {
  font-family: var(--font-min);
  font-size: clamp(15px, 2vw, 22px);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  animation: fadeUp 1s 0.9s both;
}

.hs-dots { display: flex; gap: 8px; margin-top: 36px; }

.hs-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  pointer-events: all;
  transition: background 0.3s, transform 0.3s;
}

.hs-dot.hs-dot-active { background: var(--orange2); transform: scale(1.5); }

.hero-scroll-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  padding-bottom: 20px;
}

.hero-scroll-text {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.3);
}

.hero-scroll-bar {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.hero-scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--orange2);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop { 0% { top: -100%; } 100% { top: 200%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===================================
   PILLARS
=================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar { position: relative; overflow: hidden; display: block; cursor: pointer; }

.pillar-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }

.pillar-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pillar:hover .pillar-img { transform: scale(1.06); }

.pillar-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,13,0.85) 0%, rgba(15,15,13,0.1) 60%);
  transition: background 0.3s;
}

.pillar:hover .pillar-shade { background: linear-gradient(to top, rgba(200,64,11,0.7) 0%, rgba(15,15,13,0.2) 70%); }

.pillar-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; z-index: 2; }

.pillar-num {
  display: block;
  font-family: var(--font-disp);
  font-size: 40px;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.pillar-title {
  font-family: var(--font-min);
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  font-weight: 400;
  display: block;
}

.pillar-sub { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; display: block; }

/* ===================================
   TICKER
=================================== */
.ticker { background: var(--orange); overflow: hidden; padding: 12px 0; position: relative; z-index: 5; }

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 28s linear infinite;
}

.ticker-inner span { font-family: var(--font-disp); font-size: 14px; letter-spacing: 0.15em; color: rgba(255,255,255,0.9); }

@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================================
   ABOUT
=================================== */
.about { background: var(--white); padding: 0; }

.about-inner { display: grid; grid-template-columns: 1fr 1fr; }

.about-img-col { position: relative; min-height: 600px; overflow: hidden; }

.about-img-wrap { position: absolute; inset: 0; }

.about-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-text-col {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  color: #111;
}

.section-eyebrow { font-size: 10px; letter-spacing: 0.35em; color: var(--orange); text-transform: uppercase; margin-bottom: 16px; }

.section-heading {
  font-family: var(--font-min);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 28px;
  color: #111;
}

.about-body { font-size: 15px; line-height: 2; color: #555; margin-bottom: 18px; }
.about-body-first { font-size: 16px; font-weight: 500; color: #222; }

.about-features { display: flex; flex-direction: column; margin: 24px 0 28px; border-top: 1px solid var(--tan); }

.af-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--tan); }

.af-icon { font-size: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.af-title { display: block; font-size: 14px; font-weight: 500; color: #111; margin-bottom: 2px; }

.af-desc { display: block; font-size: 12px; color: #777; letter-spacing: 0.04em; }

.about-tagline { padding: 18px 22px; border-left: 2px solid var(--orange); background: rgba(200,64,11,0.04); }

.about-tagline p { font-family: var(--font-min); font-size: 15px; line-height: 1.8; color: #222; letter-spacing: 0.06em; }

/* ===================================
   SHOPS
=================================== */
.shops { background: var(--black); padding-top: 100px; }
.shops-header { margin-bottom: 64px; }
.shops .section-heading { color: var(--white); }
.shops .section-eyebrow { color: var(--orange); }

.shop-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.shop-light { background: var(--cream); }
.shop-dark  { background: var(--black); }

.shop-rev .shop-img-half { order: 2; }
.shop-rev .shop-text-half { order: 1; }

.shop-img-half { position: relative; overflow: hidden; }
.shop-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.shop-block:hover .shop-img { transform: scale(1.03); }

.shop-text-half { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.shop-dark .shop-text-half { color: var(--white); }
.shop-light .shop-text-half { color: #111; }

.shop-num { font-family: var(--font-disp); font-size: 80px; line-height: 1; opacity: 0.06; margin-bottom: -12px; }

.shop-tag { font-size: 10px; letter-spacing: 0.3em; color: var(--orange2); text-transform: uppercase; margin-bottom: 14px; }

.shop-name { font-family: var(--font-min); font-size: clamp(26px, 3.5vw, 46px); line-height: 1.35; letter-spacing: 0.06em; font-weight: 400; margin-bottom: 22px; }
.shop-dark .shop-name { color: var(--white); }
.shop-light .shop-name { color: #111; }

.shop-desc { font-size: 14px; line-height: 1.9; margin-bottom: 28px; opacity: 0.7; }

.shop-detail { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; padding-top: 18px; border-top: 1px solid rgba(128,128,128,0.2); }
.shop-detail-item { display: flex; gap: 20px; align-items: baseline; }
.sd-label { font-size: 10px; letter-spacing: 0.2em; opacity: 0.4; min-width: 40px; text-transform: uppercase; }
.sd-val { font-size: 14px; letter-spacing: 0.05em; }

.shop-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--orange2);
  color: var(--orange2);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.3s, color 0.3s;
}

.shop-btn:hover { background: var(--orange2); color: var(--white); }

/* ===================================
   PROFILE DEEP
=================================== */
.profile-deep { background: var(--black); color: var(--white); }

.pd-visual { position: relative; height: 55vh; overflow: hidden; }
.pd-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.pd-veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,15,13,0.3), rgba(15,15,13,0.85)); }

.pd-title-overlay { position: absolute; bottom: 48px; left: 60px; z-index: 2; }
.pd-en-title { font-family: var(--font-disp); font-size: clamp(36px, 6vw, 80px); color: rgba(255,255,255,0.1); letter-spacing: 0.1em; line-height: 1; }
.pd-ja-title { font-family: var(--font-min); font-size: clamp(13px, 1.8vw, 18px); color: rgba(255,255,255,0.45); letter-spacing: 0.2em; margin-top: 6px; }

.pd-inner { padding: 80px 40px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; max-width: 1200px; margin: 0 auto; }

.pd-data { border-top: 1px solid rgba(255,255,255,0.08); }
.pd-row { display: flex; flex-direction: column; gap: 4px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pd-label { font-size: 10px; letter-spacing: 0.22em; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.pd-val { font-size: 15px; color: var(--white); }

.pd-story { display: flex; flex-direction: column; }
.pd-story-block { display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pd-snum { font-family: var(--font-disp); font-size: 44px; color: var(--orange); line-height: 1; flex-shrink: 0; margin-top: -6px; }
.pd-stitle { font-family: var(--font-min); font-size: 18px; color: var(--white); letter-spacing: 0.08em; margin-bottom: 10px; font-weight: 400; }
.pd-stext { font-size: 13px; line-height: 2; color: rgba(255,255,255,0.5); }

/* ===================================
   ACCESS
=================================== */
.access { background: var(--cream); padding: 100px 0; }
.access .section-eyebrow { color: var(--orange); }
.access .section-heading { color: #111; margin-bottom: 48px; }

.access-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 560px; }

.access-card { background: var(--white); color: #111; padding: 40px 36px; display: flex; flex-direction: column; gap: 10px; border: 1px solid var(--tan); transition: background 0.2s; }
.access-card:hover { background: var(--white); }

.ac-tag { font-size: 10px; letter-spacing: 0.2em; color: var(--orange); text-transform: uppercase; }
.ac-name { font-family: var(--font-min); font-size: 20px; letter-spacing: 0.06em; color: #111; font-weight: 400; }
.ac-addr { font-size: 13px; color: #666; letter-spacing: 0.04em; line-height: 1.7; }

.ac-map-lazy { width: 100%; height: 180px; background: #ccc; display: flex; align-items: center; justify-content: center; overflow: hidden; margin: 4px 0; }
.ac-map-spinner { width: 20px; height: 20px; border: 2px solid rgba(0,0,0,0.15); border-top-color: var(--orange); border-radius: 50%; animation: mapSpin 0.9s linear infinite; }
@keyframes mapSpin { to { transform: rotate(360deg); } }
.ac-map-lazy iframe { display: block; width: 100%; height: 180px; border: 0; }

.ac-link { display: inline-block; font-size: 11px; letter-spacing: 0.15em; color: var(--orange); border-bottom: 1px solid rgba(200,64,11,0.3); padding-bottom: 2px; align-self: flex-start; text-transform: uppercase; transition: border-color 0.2s; }
.ac-link:hover { border-color: var(--orange); }

/* ===================================
   FOLLOW
=================================== */
.follow { background: var(--black); padding: 90px 0; text-align: center; }
.follow-inner { padding: 0 40px; }
.follow-catch { font-family: var(--font-min); font-size: clamp(22px, 3.5vw, 40px); letter-spacing: 0.08em; color: var(--white); margin-bottom: 36px; font-weight: 400; }
.follow-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.fl-btn { padding: 12px 36px; border: 1px solid rgba(255,255,255,0.25); font-size: 12px; letter-spacing: 0.18em; color: rgba(255,255,255,0.7); text-transform: uppercase; transition: border-color 0.3s, color 0.3s; }
.fl-btn:hover { border-color: var(--orange2); color: var(--white); }
.follow-mgr { font-size: 12px; letter-spacing: 0.12em; color: rgba(255,255,255,0.2); }

/* ===================================
   FOOTER
=================================== */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 56px 0 36px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.ft-name { font-family: var(--font-min); font-size: 20px; color: var(--white); letter-spacing: 0.12em; }
.ft-catch { font-size: 12px; letter-spacing: 0.14em; color: rgba(255,255,255,0.3); }
.ft-co { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; font-size: 11px; letter-spacing: 0.07em; color: rgba(255,255,255,0.18); margin-top: 14px; }
.ft-sep { opacity: 0.3; }
.ft-copy { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.12); margin-top: 6px; }

/* ===================================
   REVEAL
=================================== */
.reveal { opacity: 1; transform: none; }

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .inner { padding: 0 24px; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-scroll-line { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .pillar-img-wrap { aspect-ratio: 16/9; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-col { min-height: 280px; }
  .about-text-col { padding: 56px 24px; }
  .shops-header { padding: 0 24px; }
  .shop-block { grid-template-columns: 1fr; min-height: auto; }
  .shop-img-half { height: 55vw; min-height: 220px; }
  .shop-rev .shop-img-half { order: 0; }
  .shop-rev .shop-text-half { order: 0; }
  .shop-text-half { padding: 44px 24px; }
  .pd-title-overlay { left: 24px; bottom: 28px; }
  .pd-inner { padding: 56px 24px; }
  .pd-grid { grid-template-columns: 1fr; gap: 40px; }
  .access { padding: 72px 0; }
  .access-grid { grid-template-columns: 1fr; }
  .hf1 { width: 90px; height: 90px; }
  .hf1 .hf-img { width: 90px; height: 90px; }
  .hf2, .hf5, .hf7 { display: none; }
}

.ac-map {
  width: 100%;
  margin: 8px 0;
  overflow: hidden;
}

.ac-map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
}

/* ===================================
   PILLARS SECTION（hero外の独立セクション）
=================================== */
.pillars-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--black);
}

.pillars-section .pillar { display: block; position: relative; overflow: hidden; cursor: pointer; }
.pillars-section .pillar-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pillars-section .pillar-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pillars-section .pillar:hover .pillar-img { transform: scale(1.06); }
.pillars-section .pillar-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,13,0.88) 0%, rgba(15,15,13,0.1) 60%);
  transition: background 0.3s;
}
.pillars-section .pillar:hover .pillar-shade {
  background: linear-gradient(to top, rgba(200,64,11,0.75) 0%, rgba(15,15,13,0.2) 70%);
}
.pillars-section .pillar-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; z-index: 2; }
.pillars-section .pillar-num { display: block; font-family: var(--font-disp); font-size: 36px; color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 6px; }
.pillars-section .pillar-title { font-family: var(--font-min); font-size: clamp(18px, 2.2vw, 28px); color: var(--white); letter-spacing: 0.06em; margin-bottom: 6px; font-weight: 400; display: block; }
.pillars-section .pillar-sub { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; display: block; }

@media (max-width: 900px) {
  .pillars-section { grid-template-columns: 1fr; }
  .pillars-section .pillar-img-wrap { aspect-ratio: 16/9; }
}