/* ============================================================
   みーじ Official Website - Main Stylesheet
   Color Palette:
     Red:    #D32F2F / #E53935
     Yellow: #F9C600 / #FFD600
     Green:  #388E3C / #43A047
     Gray:   #ECEFF1 / #CFD8DC / #607D8B
   ============================================================ */

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

:root {
  --red:        #D32F2F;
  --red-light:  #EF5350;
  --red-dark:   #B71C1C;
  --yellow:     #F9C600;
  --yellow-light: #FFE566;
  --yellow-dark:  #C79A00;
  --green:      #388E3C;
  --green-light:#66BB6A;
  --green-dark: #1B5E20;
  --gray-50:    #FAFAFA;
  --gray-100:   #F5F5F5;
  --gray-200:   #EEEEEE;
  --gray-300:   #E0E0E0;
  --gray-400:   #BDBDBD;
  --gray-500:   #9E9E9E;
  --gray-600:   #757575;
  --gray-700:   #616161;
  --gray-800:   #424242;
  --gray-900:   #212121;
  --white:      #FFFFFF;
  --text-main:  #2C2C2C;
  --text-sub:   #5A5A5A;
  --bg-base:    #F4F2EF;
  --bg-warm:    #F8F4ED;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --radius-sm:  0px;
  --radius-md:  2px;
  --radius-lg:  4px;
  --radius-xl:  0px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:  'Mochiy Pop P One', 'Noto Sans JP', sans-serif;
  --font-serif: 'Mochiy Pop P One', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--bg-base);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(211, 47, 47, 0.08);
  border-radius: 2px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
}

.title-bar {
  position: relative;
  width: 100px;
  height: 2px;
  background: var(--gray-400); /* 直線 */
  margin: 0 auto;
}

.title-bar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: var(--yellow);
  border: 2px solid var(--red);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 30%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  transition: none;
}

.btn-primary:hover::after {
  left: 140%;
  transition: left 0.8s ease-in-out;
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  margin-top: 24px;
  box-shadow: 0 4px 16px rgba(56, 142, 60, 0.35);
}

.btn-map:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 142, 60, 0.45);
}

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   HEADER
   ================================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.header-logo:hover {
  opacity: 0.8;
}
#header-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  /* Hide by default, show on scroll */
  opacity: 0;
  transform: translateX(-12px) scale(0.9);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

#site-header.scrolled #header-logo-img {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.header-nav {
  margin-left: auto;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(0,0,0,0.05);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.mobile-nav.open {
  max-height: 480px;
}

.mobile-nav ul {
  padding: 12px 24px 20px;
}

.mobile-nav li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link {
  display: block;
  padding: 14px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}

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

.mobile-sns-item {
  display: flex;
  gap: 12px;
  padding: 16px 4px 8px;
  border-bottom: none !important;
}

.mobile-sns-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  transition: transform var(--transition);
}

.mobile-sns-btn:active {
  transform: scale(0.95);
}

.mobile-sns-btn svg {
  width: 18px;
  height: 18px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
  background: #1b1712;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/HERO.png') no-repeat center center / cover;
  z-index: 0;
  transform: scale(1.12); /* Initially zoomed in */
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.site-loaded .hero::before {
  transform: scale(1); /* Smooth cinematic zoom-out */
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Stronger dark mask to make the text and logo pop out more clearly */
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  max-width: 1100px;
  width: 100%;
  padding: 48px 24px;
}

.hero-logo-wrap {
  flex-shrink: 0;
  width: 360px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

body.site-loaded .hero-logo-wrap {
  opacity: 1;
  transform: translateY(0);
  animation: heroLogoFloat 3s ease-in-out 1.2s infinite; /* Start floating after entrance */
}

.hero-logo {
  width: 100%;
  height: auto;
  /* Multi-stage drop-shadow: white glow for visibility of black text, plus soft color drop shadow */
  filter: 
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.85))
    drop-shadow(0 12px 36px rgba(249, 198, 0, 0.35))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-4px) rotate(1deg); }
}

.hero-text-block {
  flex: 1;
  min-width: 0;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s; /* Delayed entrance */
}

body.site-loaded .hero-text-block {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--yellow);
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--yellow-light) 60%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ================================================================
   CONCEPT STRIP
   ================================================================ */
.concept-strip {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  overflow: hidden;
  padding: 0;
}

.concept-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: stripScroll 22s linear infinite;
  padding: 16px 0;
}

.strip-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  padding: 0 20px;
  opacity: 0.9;
}

.strip-sep {
  color: var(--yellow);
  opacity: 0.6;
  font-size: 1rem;
}

@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  background: var(--bg-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}

.greeting-card {
  border-top-color: var(--red);
}

.commitment-card {
  border-top-color: var(--green);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--red);
}

.commitment-card .about-card-icon {
  color: var(--green);
}

.about-card-icon svg {
  width: 100%;
  height: 100%;
}

.about-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.about-card-text {
  font-size: 0.97rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-card-text strong {
  color: var(--green-dark);
  font-weight: 700;
}

.about-signature {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: italic;
  text-align: right;
  margin-top: 16px;
}

/* Commitment list */
.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.commitment-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: rgba(56, 142, 60, 0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
}

.commit-label {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--green);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
  margin-top: 1px;
}

.commit-detail {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.65;
}

.commitment-note {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  font-style: italic;
  text-align: right;
  letter-spacing: 0.03em;
}

/* Photo Row */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  border: 2px dashed var(--gray-400);
  transition: all var(--transition);
}

.photo-placeholder:hover {
  border-color: var(--yellow-dark);
  color: var(--gray-600);
}

/* ================================================================
   MENU SECTION (SLIDER)
   ================================================================ */
.menu-section {
  background: var(--bg-warm);
}

.menu-slider-outer {
  position: relative;
  padding: 0;
}

.menu-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px 24px;
  scrollbar-width: none; /* Firefox */
}

.menu-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.menu-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}

.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.menu-card:hover .menu-item-img {
  transform: scale(1.05);
}

.menu-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  border-bottom: 3px solid var(--yellow);
}

.menu-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 6.4em; /* Fixed height for 4 lines of 1.6 line-height */
}

.menu-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-top: auto;
}

/* Slider Controls Bottom (Arrows and Counter) */
.slider-controls-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.slider-arrow-bottom {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.slider-arrow-bottom:hover {
  background: var(--yellow);
  color: var(--gray-900);
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.slider-arrow-bottom svg {
  width: 20px;
  height: 20px;
}

.slider-counter {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-800);
  letter-spacing: 0.05em;
  min-width: 80px;
  text-align: center;
  user-select: none;
}

.menu-note-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-top: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

/* ================================================================
   HOURS SECTION
   ================================================================ */
.hours-section {
  background: linear-gradient(160deg, #1a1208 0%, #2d1e0c 100%);
  position: relative;
  overflow: hidden;
}

.hours-bg-deco {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(249,198,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(211,47,47,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hours-section .section-header .section-label {
  color: var(--yellow);
  background: rgba(249,198,0,0.12);
}

.hours-section .section-title {
  color: var(--white);
}

.hours-section .title-bar {
  background: rgba(255,255,255,0.3);
}

.hours-section .title-bar::after {
  background: var(--yellow);
  border-color: var(--yellow-light);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hours-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  color: var(--white);
  transition: transform var(--transition), background var(--transition);
}

.hours-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.hours-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.lunch-card .hours-badge {
  background: rgba(249, 198, 0, 0.2);
  color: var(--yellow);
  border: 1px solid rgba(249,198,0,0.3);
}

.dinner-card .hours-badge {
  background: rgba(211, 47, 47, 0.2);
  color: #FF8A80;
  border: 1px solid rgba(211,47,47,0.3);
}

.holiday-card .hours-badge {
  background: rgba(56, 142, 60, 0.2);
  color: var(--green-light);
  border: 1px solid rgba(56,142,60,0.3);
}

.hours-time {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}

.hours-sep {
  color: var(--yellow);
}

.hours-lo {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.hours-days {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.day-tag {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
}

.day-tag.active {
  background: var(--yellow);
  color: #1a1208;
}

.day-tag.closed {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
}

.hours-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.hours-reserve {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(249,198,0,0.12);
  padding: 6px 12px;
  border-radius: 2px;
  display: inline-block;
}

.hours-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* Holiday card */
.holiday-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--green-light);
}

.holiday-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.holiday-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
  font-size: 0.88rem;
  gap: 12px;
}

.holiday-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ================================================================
   RESERVE SECTION
   ================================================================ */
.reserve-section {
  background: var(--bg-warm);
}

.reserve-wrap {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.reserve-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.reserve-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.reserve-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--red);
}

.reserve-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.reserve-tel-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.reserve-tel {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.reserve-tel:hover {
  color: var(--red-light);
}

.reserve-msg {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 24px;
}

.reserve-capacity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.capacity-badge {
  display: inline-block;
  background: var(--yellow);
  color: #2c1a00;
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 2px;
}

.capacity-sep {
  color: var(--gray-400);
  font-size: 1.2rem;
}

.capacity-note {
  font-size: 0.92rem;
  color: var(--text-sub);
  font-weight: 500;
}

.reserve-attention {
  font-size: 0.85rem;
  color: var(--red);
  background: rgba(211, 47, 47, 0.05);
  border: 1px solid rgba(211,47,47,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-top: 8px;
}

/* SNS */
.sns-row {
  text-align: center;
}

.sns-label {
  font-size: 0.9rem;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.sns-btn svg {
  width: 20px;
  height: 20px;
}

.sns-instagram {
  background: #E1306C;
  color: var(--white);
}

.sns-instagram:hover {
  background: #FF4081;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.35);
}

.sns-facebook {
  background: #1877F2;
  color: var(--white);
}

.sns-facebook:hover {
  background: #3B5998;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

/* ================================================================
   ACCESS SECTION
   ================================================================ */
.access-section {
  background: var(--bg-base);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.access-map-wrap iframe {
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-md);
}

.access-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.access-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.access-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.access-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 8px;
}

.access-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.access-icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--red);
  margin-top: 2px;
}

.access-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.access-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.access-detail-value {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
}

.access-tel {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  transition: color var(--transition);
}

.access-tel:hover {
  color: var(--red-light);
}

.closed-note {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.hours-days-inline {
  font-size: 0.85rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: linear-gradient(160deg, #1a1208 0%, #2d1e0c 100%);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-logo-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(249,198,0,0.4));
}

.footer-shop-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.footer-nav {
  flex: 1;
  min-width: 200px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-sns {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 4px;
}

.footer-sns-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer-sns-link:hover {
  background: var(--yellow);
  color: #1a1208;
  transform: translateY(-2px);
}

.footer-sns-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}

.copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ================================================================
   PAGE TOP BUTTON & FLOATING INSTAGRAM
   ================================================================ */
.page-top-btn {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(211,47,47,0.4);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
}

.page-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page-top-btn:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(211,47,47,0.5);
}

.instagram-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(253, 29, 29, 0.4);
  z-index: 900;
  transition: all var(--transition);
}

.instagram-float-btn:hover {
  animation: bounceActive 0.6s ease-in-out;
  box-shadow: 0 8px 24px rgba(253, 29, 29, 0.5);
}

@keyframes bounceActive {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-8px) scale(1.05); }
  50% { transform: translateY(2px) scale(0.98); }
  70% { transform: translateY(-2px) scale(1.01); }
}

.instagram-float-btn svg {
  width: 24px;
  height: 24px;
}

.page-top-btn svg {
  width: 24px;
  height: 24px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: block; }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-top: 56px;
  }

  .hero-logo-wrap {
    width: 260px;
  }

  .hero-cta-group {
    justify-content: center;
  }

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

  .hours-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .photo-row {
    grid-template-columns: 1fr 1fr;
  }

  .photo-row .photo-placeholder:last-child {
    grid-column: span 2;
  }

  .menu-card {
    flex: 0 0 calc(50% - 12px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
  }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  .section { padding: 64px 0; }

  .hero-logo-wrap { width: 200px; }
  .hero-title { font-size: 3rem; }

  .about-card { padding: 28px 20px; }

  .reserve-main {
    padding: 36px 24px;
  }

  .photo-row {
    grid-template-columns: 1fr;
  }

  .photo-row .photo-placeholder:last-child {
    grid-column: unset;
  }

  .access-info { padding: 24px; }

  .menu-slider-outer {
    padding: 0;
  }
  .menu-slider {
    gap: 16px;
  }
  .menu-card {
    flex: 0 0 100%;
  }
  .slider-btn {
    display: none;
  }

  .page-top-btn {
    bottom: 80px;
    right: 20px;
  }

  .instagram-float-btn {
    bottom: 20px;
    right: 20px;
  }

  .hours-time {
    font-size: 1.6rem;
  }

  .sns-btn {
    padding: 10px 20px;
    font-size: 0.88rem;
  }
}

/* ================================================================
   OPENING LOADER
   ================================================================ */
#opening-loader {
  position: fixed;
  inset: 0;
  background: #ffffff; /* Clean white background */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 1.2s ease;
}

#opening-loader.loaded {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  width: 140px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: loaderLogoIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.loader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 0;
  animation: loaderLineGrow 1s ease-out 0.5s forwards;
}

@keyframes loaderLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderLineGrow {
  to {
    width: 120px;
  }
}
