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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   Navbar (shared)
=========================== */
:root {
  --red: #d7000f;
  --nav-h: 64px;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.4s ease;
}

#navbar.scrolled,
#navbar.solid {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 38, 38, 0.2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

@keyframes anniv-star-spin {
  0%   { transform: rotate(0deg) scale(1);   opacity: 0.7; }
  50%  { transform: rotate(180deg) scale(1.4); opacity: 1; }
  100% { transform: rotate(360deg) scale(1);  opacity: 0.7; }
}

@keyframes anniv-glow {
  0%, 100% { opacity: 0.85; text-shadow: none; }
  50%       { opacity: 1;    text-shadow: 0 0 8px rgba(212,153,58,0.7); }
}

.nav-anniversary {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  padding-top: 1px;
}

.nav-anniv-star {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  animation: anniv-star-spin 3s linear infinite;
}

.nav-anniv-star:last-child {
  animation-delay: 1.5s;
}

.nav-anniv-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: #d4993a;
  animation: anniv-glow 2.5s ease-in-out infinite;
}

.nav-anniv-num {
  font-size: 18px;
  color: #d4993a;
  letter-spacing: 0.05em;
  animation: anniv-glow 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
  width: 100%;
}


/* Social icons — nav */
.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-social-link {
  color: #fff !important;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
  opacity: 0.8;
}

.nav-social-link:hover {
  opacity: 1;
}

/* Right controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Theme toggle */
.theme-toggle {
  display: none;
}

.theme-toggle:hover {
  border-color: var(--red);
  background: rgba(212,38,38,0.1);
  transform: rotate(20deg);
}

.theme-toggle svg {
  width: 15px;
  height: 15px;
  position: absolute;
  stroke: currentColor;
  transition: opacity 0.3s, transform 0.3s;
}

[data-theme="dark"] .theme-icon-sun  { opacity: 0; transform: scale(0.5) rotate(-30deg); }
[data-theme="dark"] .theme-icon-moon { opacity: 1; transform: scale(1); }
[data-theme="light"] .theme-icon-sun  { opacity: 1; transform: scale(1); }
[data-theme="light"] .theme-icon-moon { opacity: 0; transform: scale(0.5) rotate(30deg); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

/* ── Mobile overlay ── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  backdrop-filter: blur(2px);
}

.mobile-menu-overlay.open {
  display: block;
}

/* ── Mobile drawer ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #111;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(0,0,0,0.2);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(212,38,38,0.15);
  flex-shrink: 0;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-logo-img {
  height: 32px;
  width: auto;
}

.mobile-menu-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #fff;
}

.mobile-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.mobile-close:hover {
  color: #fff;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-link:hover {
  background: rgba(212,38,38,0.08);
}

.mobile-link-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-link-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mobile-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-link-label {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #fff;
}

.mobile-link-label-en {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.mobile-link-arrow {
  font-size: 12px;
  color: var(--red);
  opacity: 0.7;
}

.mob-sns-bar {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.mob-sns-bar-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.mob-sns-bar-icons {
  display: flex;
  gap: 16px;
}

.mob-sns-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.mob-sns-icon svg {
  width: 18px;
  height: 18px;
}

.mob-sns-icon:hover {
  color: var(--red);
}

/* ===========================
   Map teaser section (index)
=========================== */
.map-teaser-section {
  background: #0d0d0d !important;
  padding: 80px 0 0 !important;
}

.map-teaser-desc {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: -40px;
  margin-bottom: 48px;
}

.map-teaser-section .section-en {
  color: var(--red);
}

.map-teaser-section .section-ja {
  color: #fff;
}

#miniMap {
  width: 100%;
  height: 480px;
  position: relative;
  z-index: 1;
}

.map-teaser-cta {
  display: flex;
  justify-content: center;
  padding: 40px 0 80px;
  background: #0d0d0d;
}

.map-teaser-cta .btn-primary {
  border-color: var(--red);
  color: var(--red);
  margin-top: 0;
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 16px 56px;
}

.map-teaser-cta .btn-primary:hover {
  background: var(--red);
  color: #fff;
}

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

@keyframes hero-anniv-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-anniv-shimmer {
  0%, 100% { opacity: 0.85; }
  50%       { opacity: 1; filter: drop-shadow(0 0 12px rgba(212,153,58,0.6)); }
}

.hero-anniv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: hero-anniv-fade-in 2s ease both;
}

.hero-anniv-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-anniv-star {
  width: 14px;
  height: 14px;
  animation: anniv-star-spin 8s linear infinite;
}

.hero-anniv-star--sm {
  width: 9px;
  height: 9px;
  animation-delay: 1s;
}

.hero-anniv-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.hero-anniv-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 140px);
  color: #d4993a;
  line-height: 0.85;
  margin: 0;
  animation: hero-anniv-shimmer 6s ease-in-out infinite;
}

.hero-anniv-th {
  font-size: 0.35em;
  vertical-align: super;
  letter-spacing: 0.05em;
}

.hero-anniv-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 4vw, 42px);
  letter-spacing: 0.55em;
  color: #fff;
  margin: 0;
}

.hero-anniv-rule {
  width: 60px;
  height: 1px;
  background: rgba(212,153,58,0.6);
  margin: 10px 0;
}

.hero-anniv-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(13px, 1.6vw, 18px);
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.hero-logo {
  width: 220px;
  margin: 0 auto 20px;
}

.hero-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   Sections Common
=========================== */
.section {
  padding: 22px 0;
  background: #f8f5f0;
  position: relative;
  overflow: hidden;
}

/* ── Section watermarks ── */
.philosophy-section::before,
.shops-section::before,
.shop-online-section::before,
.recruit-section::before,
.brands-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(200px, 40vw, 520px);
  font-weight: 700;
  color: rgba(212, 38, 38, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.philosophy-section::before  { content: '暖簾'; }
.shops-section::before       { content: ''; }
.shop-online-section::before { content: '旨味'; }
.recruit-section::before     { content: '仲間'; }
.brands-section::before      { content: ''; }

.about-section::before {
  content: '達磨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(200px, 40vw, 520px);
  font-weight: 700;
  color: rgba(255, 220, 160, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section:nth-child(even) {
  background: #fff;
}

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

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.left {
  text-align: left;
}

.section-en {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #d7000f;
  font-weight: 500;
  margin-bottom: 8px;
}

.section-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.1em;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 13px;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  margin-top: 32px;
}

.btn-primary:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-light {
  border-color: #fff;
  color: #fff;
}

.btn-light:hover {
  background: #fff;
  color: #1a1a1a;
}

/* ===========================
   News
=========================== */
.news-section {
  background: #fff !important;
  position: relative;
  overflow: hidden;
}

.news-section .container {
  position: relative;
  z-index: 1;
}

/* Layout: heading left + content right */
.news-layout {
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

.news-heading-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.news-heading-ja {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 11px;
  line-height: 1;
}

.news-heading-en {
  writing-mode: vertical-rl;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--red);
  line-height: 1;
}

.news-main { flex: 1; min-width: 0; }

/* Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  overflow: hidden;
  cursor: pointer;
}

.news-card-inner {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.06);
}

/* Date badge over image */
.news-date-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  line-height: 1.4;
}

/* Category tag — vertical, top-right */
.news-tag {
  position: absolute;
  top: 0;
  right: 0;
  writing-mode: vertical-rl;
  font-size: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 5px;
  line-height: 1;
  color: #1a1a1a;
}

.news-tag--new      { background: #f5c800; }
.news-tag--campaign { background: #ff6b35; color: #fff; }
.news-tag--info     { background: #4a9eda; color: #fff; }

/* Card body */
.news-body {
  padding: 12px 2px 0;
}

.news-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 5px;
}

.news-body p {
  font-size: 11px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* More buttons */
.news-more-btns {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 28px;
}

.news-more-btn {
  padding: 13px 40px;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}

.news-more-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ===========================
   About
=========================== */
.about-section {
  background: #0d0d0d !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}


.about-inner {
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: #0d0d0d;
}

.about-content .section-en {
  color: #d7000f;
}

.about-content .section-ja {
  color: #fff;
}

.about-text {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 2;
  margin-top: 24px;
}

.about-content .btn-primary {
  border-color: #d7000f;
  color: #d7000f;
}

.about-content .btn-primary:hover {
  background: #d7000f;
  color: #fff;
}

/* ===========================
   Philosophy
=========================== */
.philosophy-section {
  background: #f8f5f0 !important;
}

/* Layout: heading left + content right */
.philo-layout {
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

.philo-heading-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.philo-heading-ja {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 11px;
  line-height: 1;
}

.philo-heading-en {
  writing-mode: vertical-rl;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--red);
  line-height: 1;
}

.philo-main { flex: 1; min-width: 0; }

.philosophy-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.philosophy-card {
  background: #fff;
  padding: 40px 32px;
  border-top: 3px solid #d7000f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.philo-num {
  font-size: 40px;
  font-weight: 700;
  color: #d7000f;
  opacity: 0.25;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-family: 'Noto Serif JP', serif;
}

.philo-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.philo-text {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

/* ===========================
   Kodawari
=========================== */
.kodawari-section {
  background: #fff !important;
}

.kodawari-layout {
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

.kodawari-heading-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.kodawari-heading-ja {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 11px;
  line-height: 1;
}

.kodawari-heading-en {
  writing-mode: vertical-rl;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--red);
  line-height: 1;
}

.kodawari-main { flex: 1; min-width: 0; }

.kodawari-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.kodawari-card {
  border-top: 3px solid var(--red);
  padding: 32px 24px;
  background: #1a1a1a center/cover no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kodawari-card--1 { background-image: url('data/kodawari_1.png'); }
.kodawari-card--2 { background-image: url('data/kodawari_2.png'); }
.kodawari-card--3 { background-image: url('data/kodawari_3.png'); }
.kodawari-card--4 { background-image: url('data/kodawari_4.png'); }

.kodawari-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  transition: background 0.3s;
}

.kodawari-card:hover .kodawari-card-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.kodawari-card > *:not(.kodawari-card-overlay) {
  position: relative;
  z-index: 1;
}

.kodawari-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.kodawari-icon {
  font-family: 'Noto Serif JP', serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.kodawari-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.kodawari-text {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
}

.kodawari-history {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 36px;
  padding: 24px 28px;
  background: #1a1a1a;
  display: inline-flex;
}

.kodawari-history-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
}

.kodawari-history-num small {
  font-size: 36px;
}

.kodawari-history-label {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ===========================
   Stats
=========================== */
.stats-section {
  background: #d7000f !important;
  padding: 80px 0 !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-grid--single {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-num small {
  font-size: 36px;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

/* ===========================
   Brands
=========================== */
.brands-section {
  background: #111 !important;
}

.brands-section .section-en {
  color: var(--red) !important;
}

.brands-section .section-ja {
  color: #fff !important;
}

.brands-shops-section {
  background: #111 !important;
}

.brands-shops-section .section-en {
  color: var(--red) !important;
}

.brands-shops-section .section-ja {
  color: #fff !important;
}

.brands-shops-section .shop-name {
  color: #fff;
}

.brands-shops-section .shop-card-arrow {
  color: #666;
}

.brands-shops-section .shop-card.active .shop-name {
  color: var(--red);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

/* Brands grid */
.bm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  width: 100%;
}

.bm-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  aspect-ratio: 4 / 3;
}

.bm-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.bm-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid #eee;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.brand-card:hover {
  border-color: #d7000f;
  box-shadow: 0 4px 16px rgba(212,38,38,0.12);
}

.brand-card img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

/* ===========================
   Shops
=========================== */
.shops-section {
  background: #f8f5f0 !important;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.shops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.shop-card {
  cursor: pointer;
  transition: transform 0.3s ease;
  user-select: none;
}

.shop-card:hover {
  transform: translateY(-3px);
}

.shop-card.active .shop-img-wrap {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.shop-card.active .shop-name {
  color: var(--red);
}

.shop-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.shop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-card:hover .shop-img-wrap img {
  transform: scale(1.05);
}

.shop-logo-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  padding: 6px;
}

.shop-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-name {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  padding: 8px 0 8px;
  letter-spacing: 0.05em;
}

.shop-card-btns {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 1px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}

.shop-card-btn {
  flex: 1;
  display: block;
  text-align: center;
  font-size: 11px;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.05em;
  padding: 9px 4px;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}

.shop-card-btn:hover {
  background: var(--red);
}

.stores-store-btn {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.stores-store-btn .btn-primary {
  border-color: #fff;
  color: #fff;
}

.stores-store-btn .btn-primary:hover {
  background: #fff;
  color: #111;
}

/* ── Shop Drawer ── */
.sdrawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 9000;
  pointer-events: none;
  transition: background 0.35s;
}

.sdrawer-overlay.open {
  background: rgba(0,0,0,0.45);
  pointer-events: all;
}

.sdrawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  overflow: hidden;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sdrawer-overlay.open .sdrawer {
  transform: translateX(0);
}

/* Two-panel slider inside the drawer */
.sdrawer-panels {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.sdrawer-panels.show-detail {
  transform: translateX(-50%);
}

.sdrawer-panel {
  width: 50%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  -webkit-overflow-scrolling: touch;
}

/* Top bar */
.sdrawer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #ede7e0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
  flex-shrink: 0;
}

.sdrawer-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.sdrawer-back {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--red);
  font-weight: 700;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sdrawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #aaa;
  padding: 0 2px;
  line-height: 1;
  transition: color 0.2s;
}

.sdrawer-close:hover { color: #1a1a1a; }

/* Store list */
.sdrawer-list {
  flex: 1;
  overflow-y: auto;
}

.sdrawer-list-item {
  cursor: pointer;
  border-bottom: 1px solid #f0ebe4;
  transition: background 0.15s;
}

.sdrawer-list-item:hover {
  background: #faf7f4;
}

.sdrawer-list-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  gap: 12px;
}

.sdrawer-list-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.sdrawer-list-addr {
  font-size: 11px;
  color: #999;
}

.sdrawer-list-arrow {
  font-size: 20px;
  color: #ccc;
  flex-shrink: 0;
}

/* Panel footer */
.sdrawer-panel-footer {
  padding: 16px;
  border-top: 1px solid #ede7e0;
  background: #fff;
  flex-shrink: 0;
}

.sdrawer-map-btn {
  display: block;
  text-align: center;
}

/* Detail panel */
/* ── Detail hero ── */
.sdrawer-detail-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #222;
  flex-shrink: 0;
}

.sdrawer-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sdrawer-detail-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 5px;
}

.sdrawer-brand-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.sdrawer-detail-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.sdrawer-detail-dist-badge {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Action buttons ── */
.sdrawer-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #f0ebe4;
  flex-shrink: 0;
}

.sdrawer-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-right: 1px solid #f0ebe4;
  transition: background 0.15s;
}

.sdrawer-action-btn:last-child { border-right: none; }
.sdrawer-action-btn:hover { background: #faf7f4; }

.sdrawer-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border: 1px solid #ffe0e0;
}

.sdrawer-action-icon svg { width: 18px; height: 18px; }

/* ── Info rows (icon-based) ── */
.sdrawer-detail-body {
  padding: 16px 18px 32px;
  overflow-y: auto;
}

.sdrawer-detail-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.sdrawer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #f5f0eb;
  font-size: 13px;
  line-height: 1.6;
}

.sdrawer-info-icon {
  width: 18px;
  flex-shrink: 0;
  color: #bbb;
  padding-top: 2px;
  display: flex;
}

.sdrawer-info-icon svg { width: 16px; height: 16px; }

.sdrawer-info-value { color: #1a1a1a; flex: 1; }

.sdrawer-phone-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

/* ── Payment ── */
.sdrawer-payment-wrap {
  padding-top: 14px;
}

.sdrawer-payment-label {
  font-size: 10px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* ── Distance in list ── */
.sdrawer-list-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sdrawer-list-dist {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  margin-top: 2px;
}

.payment-chip {
  display: inline-block;
  background: #f0ebe4;
  border-radius: 10px;
  padding: 2px 9px;
  font-size: 11px;
  margin: 2px 3px 0 0;
  color: #555;
}

/* ===========================
   Online Shop
=========================== */
.shop-online-section {
  background: #111 !important;
}

.shop-online-desc {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.product-slider-wrap {
  position: relative;
  margin-bottom: 48px;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 24px;
}

.product-slider::-webkit-scrollbar { display: none; }

.slider-btn {
  position: absolute;
  top: calc(50% - 12px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-btn-prev { left: -22px; }
.slider-btn-next { right: -22px; }

@media (max-width: 768px) {
  .slider-btn { display: none; }
}

.product-card {
  flex: 0 0 270px;
  scroll-snap-align: start;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,38,38,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.product-img-wrap {
  aspect-ratio: 4 / 4;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-info {
  padding: 14px 16px 18px;
}

.product-category {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product-name {
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-price {
  font-size: 18px;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
}

.product-price small {
  font-size: 11px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0;
  margin-left: 2px;
}

.shop-online-section .section-en {
  color: var(--red) !important;
}

.shop-online-section .section-ja {
  color: #fff;
}

.shop-online-cta {
  text-align: center;
}

.shop-online-cta .btn-primary {
  color: #fff;
  border-color: #fff;
}

.shop-online-cta .btn-primary:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 480px) {
  .product-card { flex: 0 0 220px; }
}

/* ===========================
   Collaboration
=========================== */
.collab-section {
  background: transparent !important;
  padding: 0 !important;
}

.collab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.collab-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.collab-panel--light {
  background: url('data/col_back.png') center/cover no-repeat;
  position: relative;
}

.collab-panel--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
}

.collab-panel--light .collab-panel-inner {
  position: relative;
  z-index: 1;
}

.collab-panel--dark {
  background: url('data/fc_back.png') center/cover no-repeat;
  position: relative;
}

.collab-panel--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.collab-panel--dark .collab-panel-inner {
  position: relative;
  z-index: 1;
}

.collab-panel-inner {
  max-width: 420px;
  width: 100%;
}

.collab-panel-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--red);
  margin: 0 0 8px;
}

.collab-panel-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 20px;
}

.collab-panel--light .collab-panel-title { color: #1a1a1a; }
.collab-panel--dark  .collab-panel-title { color: #fff; }

.collab-rule {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

.collab-panel-desc {
  font-size: 14px;
  line-height: 2;
  margin: 0 0 32px;
}

.collab-panel--light .collab-panel-desc { color: #555; }
.collab-panel--dark  .collab-panel-desc { color: rgba(255,255,255,0.6); }

.collab-panel-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 28px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.collab-panel-btn:hover { opacity: 0.85; }

.collab-panel-btn--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.collab-panel-btn--outline:hover {
  background: #fff;
  color: #111;
  opacity: 1;
}

/* ===========================
   App
=========================== */
.app-section {
  background: #0d0d0d !important;
  padding: 0 !important;
}

.app-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 500px;
  align-items: stretch;
}

.app-banner-col {
  overflow: hidden;
  display: flex;
  max-height: 500px;
}

.app-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.app-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}

.app-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 40px;
  overflow-y: auto;
}

.app-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.app-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.app-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #d7000f;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  flex-shrink: 0;
}

.app-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.app-btn {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.app-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.app-btn img {
  height: 40px;
  width: auto;
  display: block;
}

.app-sns {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.app-sns-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 10px;
}

.app-sns-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-sns-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.app-sns-icon:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.app-sns-icon span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ===========================
   Recruit
=========================== */
.recruit-section {
  background: #f8f5f0 !important;
}

/* Layout: heading left + content right */
.recruit-layout {
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

.recruit-heading-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.recruit-heading-ja {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 11px;
  line-height: 1;
}

.recruit-heading-en {
  writing-mode: vertical-rl;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--red);
  line-height: 1;
}

.recruit-main { flex: 1; min-width: 0; }

.recruit-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.recruit-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.recruit-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.recruit-motto {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

.recruit-text {
  font-size: 14px;
  line-height: 2;
  color: #555;
  margin-bottom: 4px;
}

.recruit-image-col {
  overflow: hidden;
  border-radius: 2px;
}

.recruit-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   Footer (shared across all pages — see partials.js)
=========================== */
#footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 0 0;
}

#footer .footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#footer .footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

#footer .footer-brand p {
  font-size: 12.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

#footer .footer-sns {
  display: flex;
  gap: 12px;
}

#footer .footer-sns-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s ease;
}

#footer .footer-sns-btn svg {
  width: 15px;
  height: 15px;
}

#footer .footer-sns-btn:hover {
  color: #fff;
  border-color: var(--red);
}

#footer .footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 500;
}

#footer .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer .footer-col a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

#footer .footer-col a:hover {
  color: var(--red);
}

#footer .footer-bottom {
  text-align: center;
  padding: 26px 0;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
  #footer .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ===========================
   Scroll Reveal
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hex-item {
    width: 110px;
    height: 127px;
  }

  .hex-row--offset {
    margin-left: 59px;
  }

  .hex-row {
    margin-bottom: -32px;
  }

  .shops-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid--single {
    grid-template-columns: 1fr;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.2);
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 0 20px;
  }

  .nav-logo-img {
    height: 36px;
  }

  .nav-logo-text {
    font-size: 18px;
  }

  .nav-anniv-text {
    font-size: 10px;
  }

  .nav-anniv-num {
    font-size: 13px;
  }

  .nav-anniv-star {
    width: 7px;
    height: 7px;
  }

  .nav-links {
    display: none;
  }

  .nav-social {
    display: none;
  }

  .theme-toggle {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #miniMap {
    height: 320px;
  }

  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 20px;
  }

  .section-ja {
    font-size: 24px;
  }

  .hero-logo {
    width: 150px;
  }

  .hero-tagline {
    font-size: 12px;
  }

  .news-section {
    padding: 48px 0;
  }

  .news-layout {
    flex-direction: column;
    gap: 24px;
  }

  .news-heading-block {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 0;
  }

  .news-heading-ja {
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 10px 16px;
    letter-spacing: 0.15em;
  }

  .news-heading-en {
    writing-mode: horizontal-tb;
    font-size: 13px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-more-btns {
    flex-direction: column;
    gap: 10px;
  }

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

  .about-content {
    padding: 60px 24px;
  }

  .about-content .section-header {
    margin-bottom: 24px;
  }

  .philo-layout {
    flex-direction: column;
    gap: 24px;
  }

  .philo-heading-block {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 0;
  }

  .philo-heading-ja {
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 10px 16px;
    letter-spacing: 0.15em;
  }

  .philo-heading-en {
    writing-mode: horizontal-tb;
    font-size: 13px;
  }

  .philosophy-lead {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kodawari-layout {
    flex-direction: column;
    gap: 24px;
  }

  .kodawari-heading-block {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 0;
  }

  .kodawari-heading-ja {
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 10px 16px;
    letter-spacing: 0.15em;
  }

  .kodawari-heading-en {
    writing-mode: horizontal-tb;
    font-size: 13px;
  }

  .kodawari-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-num {
    font-size: 48px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .brands-grid .brand-card {
    padding: 14px;
  }

  .brands-grid .brand-card img {
    max-height: 48px;
  }

  .shops-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .collab-split {
    grid-template-columns: 1fr;
  }

  .collab-panel {
    padding: 56px 20px;
  }

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

  .app-banner-col {
    min-height: 220px;
    order: 2;
  }

  .app-content {
    order: 1;
  }

  .app-content {
    align-items: center;
    padding: 60px 20px;
    text-align: center;
  }

  .app-content .section-en {
    font-size: 14px;
  }

  .app-title {
    font-size: 32px;
  }

  .app-desc {
    font-size: 16px;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-btn img {
    height: 60px;
  }

  .app-sns-icons {
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    gap: 16px;
  }

  .app-sns-icon {
    padding: 12px;
    border-radius: 12px;
  }

  .app-sns-icon svg {
    width: 36px;
    height: 36px;
  }

  .app-sns-icon span {
    display: none;
  }

  .recruit-layout {
    flex-direction: column;
    gap: 24px;
  }

  .recruit-heading-block {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 0;
  }

  .recruit-heading-ja {
    writing-mode: horizontal-tb;
    font-size: 20px;
    padding: 10px 16px;
    letter-spacing: 0.15em;
  }

  .recruit-heading-en {
    writing-mode: horizontal-tb;
    font-size: 13px;
  }

  .recruit-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recruit-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .bm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .shops-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sdrawer {
    width: 70%;
  }
}
