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

:root {
  /* ナチュラル＆シックな和モダン・オーガニックカラー */
  --primary-navy: #1f3a52;        /* 深みのあるクラシックネイビー */
  --primary-deep: #162a3c;
  --sky-main: #2884ad;
  --sky-lightest: #f4f9fc;
  
  --accent-amber: #c87a32;        /* 温かみのあるアンバー・テラコッタ */
  --accent-gold: #d49e53;
  --accent-hover: #b06520;
  
  --bg-cream: #faf7f2;           /* 上質な生成り・オーガニックアイボリー */
  --bg-sand: #f4efe6;
  --white: #ffffff;
  
  --text-dark: #222b33;          /* 漆黒すぎない落ち着いた文字色 */
  --text-mid: #4a5a68;
  --text-light: #788896;
  
  --border-light: rgba(31, 58, 82, 0.08);
  --border-subtle: #e6e0d5;
  
  /* 精巧な微細角丸（AI風の極太丸角を排除） */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --shadow-sm: 0 2px 10px rgba(31, 58, 82, 0.06);
  --shadow-md: 0 6px 24px rgba(31, 58, 82, 0.09);
  --shadow-lg: 0 12px 36px rgba(31, 58, 82, 0.14);
  
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Nunito', sans-serif;
  --font-display: 'Pacifico', cursive;
}

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

body {
  font-family: var(--font-jp);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.85;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

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

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: 56px;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-jp);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.title-deco {
  width: 44px;
  height: 2px;
  background: var(--accent-amber);
  margin: 0 auto 20px;
}

.section-desc {
  font-size: 0.96rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary-navy);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(31, 58, 82, 0.2);
  transition: all 0.25s ease;
  letter-spacing: 0.08em;
  border: 1px solid var(--primary-navy);
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 58, 82, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-navy);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-navy);
  transition: all 0.25s ease;
  letter-spacing: 0.08em;
}

.btn-secondary:hover {
  background: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 12px;
}

.btn-aloha {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-amber);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(200, 122, 50, 0.25);
  transition: all 0.25s ease;
  letter-spacing: 0.06em;
}

.btn-aloha:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 122, 50, 0.35);
}

.instagram-icon {
  width: 18px;
  height: 18px;
}

/* Image placeholder */
.img-placeholder {
  background-color: var(--bg-sand);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  font-family: var(--font-jp);
}

/* ===========================
   Header / Navigation
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(31, 58, 82, 0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 44px;
}

.header-logo-img {
  width: 0;
  height: 44px;
  opacity: 0;
  transform: scale(0.7);
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, transform 0.35s ease;
  object-fit: contain;
  overflow: hidden;
  pointer-events: none;
}

.header.scrolled .header-logo-img {
  width: 44px;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  filter: drop-shadow(0 2px 6px rgba(31, 58, 82, 0.2));
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-jp);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
}

.nav-link:hover {
  color: var(--accent-amber);
  background-color: var(--bg-cream);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: var(--sky-lightest);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 99px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(91, 200, 240, 0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.mobile-menu.is-open {
  max-height: 400px;
  padding: 12px 0 20px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.mobile-nav-link:hover {
  color: var(--sky-main);
  background: var(--sky-lightest);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  text-align: center;
  background-color: #1a1a1a;
}

/* 背景画像 */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* 自然なオーバーレイ（青みを完全除去） */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45));
  z-index: 2;
}

/* Animated wave pattern */
.hero::before {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -50%;
  width: 200%;
  height: 160px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  animation: wave-anim 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -50%;
  width: 200%;
  height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  animation: wave-anim 10s ease-in-out infinite reverse;
}

@keyframes wave-anim {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(5%) scaleY(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px 80px;
  max-width: 700px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

.hero-logo-img {
  width: 255px;
  max-width: 80vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-title-en {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  line-height: 1.1;
}

.hero-title-ja {
  font-family: var(--font-jp);
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.15em;
}

.hero-desc {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  animation: fadeInUp 1.1s ease 0.3s both;
}

.badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

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

/* ===========================
   About Section
   =========================== */
.about {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.95;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.9;
  font-size: 0.96rem;
}

.about-tagline {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-navy);
  border-left: 3px solid var(--accent-amber);
  padding-left: 16px;
  margin: 24px 0 !important;
  line-height: 1.9 !important;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-amber);
  border: 1px solid var(--border-subtle);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.feature-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about-images {
  width: 100%;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.about-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-sand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery-item:nth-child(1) {
  grid-column: 1 / -1;
  height: 250px;
}

.about-gallery-item:nth-child(2),
.about-gallery-item:nth-child(3) {
  height: 180px;
}

.about-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.about-gallery-item:hover .about-gallery-img {
  transform: scale(1.05);
}

/* ===========================
   Menu Section (ランチメニュー)
   =========================== */
.menu-section {
  background: var(--white);
}

.lunch-menu-banner {
  max-width: 800px;
  margin: 0 auto 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-cream);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lunch-menu-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.lunch-menu-img {
  width: 100%;
  height: auto;
  display: block;
}

/* プレートスライダー */
.plate-slider-section {
  max-width: 720px;
  margin: 0 auto 40px;
}

.plate-section-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.plate-slider-container {
  position: relative;
}

.plate-slider {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  background: var(--white);
}

.plate-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.98);
}

.plate-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.plate-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plate-img-wrap {
  width: 100%;
  height: 290px;
  overflow: hidden;
}

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

.plate-card:hover .plate-img {
  transform: scale(1.04);
}

.plate-card-info {
  padding: 22px 26px;
  background: var(--bg-cream);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--border-subtle);
}

.plate-card-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.plate-card-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.slider-btn {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  color: var(--primary-navy);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
  transform: translateY(-2px);
}

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

.slider-counter {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  background: var(--bg-cream);
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  min-width: 76px;
  text-align: center;
}

.menu-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ===========================
   Hours Section
   =========================== */
.hours-section {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.hours-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.hours-table-wrap {
  overflow-x: auto;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.hours-table thead tr {
  background: var(--primary-navy);
}

.hours-table th {
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 14px 18px;
  text-align: center;
  letter-spacing: 0.06em;
}

.hours-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}

.hours-table .day {
  font-weight: 700;
  text-align: left;
  color: var(--primary-navy);
}

.hours-table .closed {
  color: #c62828;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hours-table .closed-cell {
  color: var(--text-light);
}

.hours-table .row-alt {
  background-color: var(--bg-cream);
}

.hours-table tbody tr:last-child td {
  border-bottom: none;
}

.badge-reservation-head {
  display: inline-block;
  background: var(--accent-amber);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-left: 4px;
  vertical-align: middle;
}

.badge-reservation-inline {
  display: inline-block;
  background: #d32f2f;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-left: 6px;
}

.dinner-reservation-notice {
  font-size: 0.85rem;
  color: #c62828;
  font-weight: 600;
  margin-top: 12px;
  text-align: right;
}

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
}

.info-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-card-text strong {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.info-card-text a,
.info-card-text span {
  font-size: 0.98rem;
  color: var(--text-dark);
  font-weight: 600;
}

.info-card-text a {
  color: var(--primary-navy);
}

/* ===========================
   Kitchen Car Section
   =========================== */
.kitchen-car-section {
  background: linear-gradient(155deg, #187fb8 0%, #25a4d9 50%, #46d0f6 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.kitchen-car-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.kitchen-car-section .section-label {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  display: inline-block;
  padding: 4px 16px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  letter-spacing: 0.24em;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.aloha-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 14px 0 20px;
}

.aloha-logo-img {
  width: 230px;
  max-width: 70vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.aloha-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.32));
}

.kitchen-car-section .title-deco {
  background: #ffffff;
  height: 2px;
  opacity: 0.8;
}

.kitchen-car-section .section-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
}

.kitchen-car-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}



.kitchen-car-heading {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.5;
}

.kitchen-car-content p {
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 14px;
}

.kitchen-car-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* キッチンカー メニュー表スライダー（白余白ゼロ・画面全体表示） */
.kc-menu-slider-wrap {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.kc-menu-slider-container {
  width: 100%;
}

.kc-menu-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1054 / 1492;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border: none;
  background: transparent;
}

.kc-menu-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.98);
}

.kc-menu-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

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

.kc-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 4px;
}

.kc-slider-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}

.kc-slider-btn:hover {
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

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

.kc-slider-counter {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 20px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.kitchen-car-main-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.2);
}

.menu-img-large {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}
/* ===========================
   Access Section
   =========================== */
.access-section {
  background: var(--white);
}

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

.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-amber);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.access-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.access-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.access-icon svg {
  width: 20px;
  height: 20px;
}

.access-detail {
  flex: 1;
  text-align: left;
}

.access-detail strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: left;
}

.access-detail p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  text-align: left;
}

.access-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.access-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 3px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  text-align: left;
}

.tel-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-align: left;
  display: inline-block;
}

.access-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--sky-main);
  border-radius: 50%;
  flex-shrink: 0;
}

.tel-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sky-deep) !important;
}

.access-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

/* ===========================
   Contact Section
   =========================== */
.contact-section {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 20px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--border-subtle);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-amber);
}

.contact-card-instagram:hover {
  border-color: #e1306c;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  margin-bottom: 12px;
  border: 1px solid var(--border-subtle);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-tel {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
  font-family: var(--font-en);
  letter-spacing: 0.02em;
}

.contact-insta-handle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #c13584;
  margin-bottom: 4px;
  font-family: var(--font-en);
}

.contact-note {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--primary-deep);
  color: #f5e6ce;
  position: relative;
  border-top: 2px solid var(--accent-amber);
}

.footer-wave {
  line-height: 0;
  overflow: hidden;
}

.footer-wave svg {
  width: 100%;
  height: 50px;
  display: block;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 44px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo-wrap a:hover .footer-logo-img {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
}

.footer-info {
  width: 100%;
  text-align: center;
}

.footer-info p {
  font-size: 0.96rem;
  line-height: 2;
  color: #f5e6ce;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-info a {
  color: #e2a05d;
  font-weight: 700;
  transition: color 0.2s, text-decoration 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-info a:hover {
  color: #ffffff;
}

/* サイトマップナビゲーション */
.footer-sitemap {
  width: 100%;
  margin: 4px 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(245, 230, 206, 0.25);
}

.sitemap-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e2a05d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.sitemap-list a {
  font-size: 0.88rem;
  color: #f5e6ce;
  transition: color 0.2s;
}

.sitemap-list a:hover {
  color: #ffffff;
  text-underline-offset: 3px;
}

.footer-sns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.footer-sns-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

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

.footer-sns-link:hover {
  color: var(--sky-light);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   Scroll Animations
   =========================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===========================
   Responsive Design
   =========================== */

/* Tablet (max 900px) */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

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

  .about-img-container {
    max-width: 420px;
    padding-bottom: 40px;
    padding-right: 30px;
  }

  .about-img-wrap.main-img {
    height: 280px;
  }

  .about-img-wrap.sub-img {
    height: 180px;
  }



  .hours-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .kitchen-car-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .access-map iframe {
    height: 300px;
  }

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

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

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

  .hero-content {
    padding: 20px 20px 80px;
  }



  .about-gallery-grid {
    max-width: 100%;
  }

  .about-gallery-item:nth-child(1) {
    height: 210px;
  }

  .about-gallery-item:nth-child(2),
  .about-gallery-item:nth-child(3) {
    height: 140px;
  }

  .kitchen-car-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kitchen-car-img-wrap {
    height: 130px;
  }
}

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .hours-table th,
  .hours-table td {
    padding: 11px 10px;
    font-size: 0.82rem;
  }

  .hero-wave svg {
    height: 50px;
  }
}

/* Small mobile (max 400px) */
@media (max-width: 400px) {
  .hero-title-en {
    font-size: 2.4rem;
  }

  .hero-title-ja {
    font-size: 1.5rem;
  }

  .hero-badges {
    gap: 7px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}
