/* ==========================================================================
   ごはん処ゆうづき - CUSTOM STYLES
   Original Design by Antigravity
   ========================================================================== */

:root {
  --cream: #f8f4ed;
  --warm-white: #fdfaf4;
  --charcoal: #2a2520;
  --dark-brown: #4a3427;
  --mid-brown: #8a6b52;
  --accent-orange: #e67e22; /* 夕月をイメージした暖かいオレンジ */
  --gold: #b8912a;
  --light-gold: #d4aa4a;
  --red-accent: #8b2020;
  --muted: #9e9086;
  --border: rgba(138,107,82,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif JP', serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.8;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(253,250,244,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.pc-only { display: block; }
.sp-only { display: none !important; }

@media (max-width: 1024px) {
  .pc-only { display: none !important; }
  .sp-only { display: block !important; }
}

.br-pc { display: inline; }
@media (max-width: 1024px) {
  .br-pc { display: none !important; }
}

.hd-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.hd-logo-bar {
  width: 3px;
  height: 44px;
  background: var(--accent-orange);
  border-radius: 2px;
}
.hd-logo-ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--dark-brown);
  letter-spacing: 0.1em;
}
.hd-logo-en {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

.hd-nav {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hd-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0 16px;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s;
  opacity: 0.7;
}
.hd-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.hd-nav a:hover, .hd-nav a.active { color: var(--dark-brown); opacity: 1; }
.hd-nav a:hover::after, .hd-nav a.active::after { transform: scaleX(1); }

.hd-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.hd-btn-tel {
  padding: 0 20px;
  min-width: 160px;
  height: 40px;
  background: var(--dark-brown);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(74,52,39,0.15);
}
.hd-btn-tel:hover {
  background: var(--accent-orange);
  transform: translateY(-2px);
}
.hd-btn-insta {
  padding: 0 20px;
  min-width: 160px;
  height: 40px;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(220,39,67,0.15);
}
.hd-btn-insta:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* ===== FV (Complex Card System) ===== */
.fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 650px;
  overflow: hidden;
  background: var(--warm-white);
}

.fv-body {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 240px 1fr 340px;
  padding: 0 60px;
  align-items: center;
  z-index: 10;
}

.fv-left-text {
  writing-mode: vertical-rl;
  font-family: 'Zen Old Mincho', serif;
  font-size: 15px;
  line-height: 2.6;
  letter-spacing: 0.3em;
  color: var(--dark-brown);
  opacity: 0.9;
  position: absolute;
  top: 10%; /* Move up */
  left: 60px;
  z-index: 15;
  animation: fadeIn 1.5s ease both;
}

.fv-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 15;
  position: absolute;
  bottom: 10%;
  right: 60px;
}

/* FV Badges */
.fv-badge {
  background: rgba(255,255,255,0.9);
  padding: 10px 20px;
  border-radius: 40px;
  color: var(--dark-brown);
  font-weight: 700;
  font-family: 'Zen Old Mincho', serif;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--accent-orange);
  animation: fadeUp 1s ease both;
}
.fv-badge:nth-child(2) { animation-delay: 0.2s; }
.fv-badge:nth-child(3) { animation-delay: 0.4s; }

.fv-badge span {
  font-size: 12px;
  background: var(--accent-orange);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0;
}
.fv-catch-lines {
  writing-mode: vertical-rl;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.fv-catch-line {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark-brown);
}
.fv-catch-line.large { font-size: clamp(48px, 6vw, 72px); }
.fv-catch-line.medium { font-size: clamp(32px, 4vw, 48px); margin-top: 40px; }

/* Cards Overlay Layer */
.fv-cards-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.fv-card {
  position: absolute;
  overflow: hidden;
  pointer-events: auto;
  transition:
    top          1.2s cubic-bezier(0.77,0,0.175,1),
    left         1.2s cubic-bezier(0.77,0,0.175,1),
    width        1.2s cubic-bezier(0.77,0,0.175,1),
    height       1.2s cubic-bezier(0.77,0,0.175,1),
    border-radius 1.2s ease,
    box-shadow    1.2s ease,
    opacity       0.8s ease;
  will-change: top, left, width, height, opacity;
}
.fv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Roles (Set via JS) */
.fv-card.pos-center {
  z-index: 8;
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}
.fv-card.pos-center img {
  transform: scale(1.1);
  transition: transform 8s linear !important;
}
.fv-card.pos-topright, .fv-card.pos-botleft {
  z-index: 6;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.fv-card.pos-hidden {
  opacity: 0;
  z-index: 1;
}

/* Dots */
.fv-dot-row {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.fv-sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(74,52,39,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.fv-sdot.active { background: var(--accent-orange); transform: scale(1.5); }

/* Decoration */
.fv-moon { display: none; }

/* ===== COMMON SECTIONS ===== */
section { padding: 120px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* BACKGROUNDS */
.bg-fixed {
  position: relative;
  background-color: transparent !important;
  z-index: 1;
}
.bg-fixed::before {
  display: none !important;
}

#about.bg-fixed, #voice.bg-fixed {
  background-image: url('../img/background.jpeg') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
}

.label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--accent-orange);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  text-align: center;
  color: var(--dark-brown);
  margin-bottom: 30px;
  line-height: 1.4;
}
.title span { color: var(--accent-orange); }
.divider {
  width: 60px;
  height: 2px;
  background: var(--accent-orange);
  margin: 0 auto 50px;
}

/* RECOMMEND SECTION */
#recommend { background: var(--dark-brown); }
.recommend-box {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.recommend-box .title { color: #fff; margin-bottom: 20px; }
.recommend-box .divider { border-color: rgba(184,145,42,0.3); margin-top: 20px; }

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 60px 0;
  border: 1px solid rgba(184,145,42,0.3);
}
.recommend-item {
  background: rgba(184,145,42,0.05);
  padding: 40px 30px;
  border: 1px solid rgba(184,145,42,0.15);
  position: relative;
  text-align: center;
  transition: background 0.4s;
}
.recommend-item:hover { background: rgba(184,145,42,0.12); }
.recommend-item span.num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Shippori Mincho', serif;
  font-size: 40px;
  color: rgba(184,145,42,0.15);
  font-weight: 700;
  line-height: 1;
}
.recommend-item p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.recommend-footer {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 2.2;
  font-weight: 500;
  margin: 40px auto 0;
  max-width: 800px;
}
.recommend-footer::before { display: none; }

/* Recommend Card Style (New) */
.recommend-card {
  background: #2d241e;
  border: 1px solid rgba(184,145,42,0.3);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.recommend-card:hover { border-color: var(--accent-orange); }
.rc-num {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(60px, 8vw, 80px);
  color: rgba(184,145,42,0.12);
  font-weight: 900;
  line-height: 1;
}
.rc-meta {
  font-size: 11px;
  color: var(--light-gold);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
.rc-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(20px, 3vw, 24px);
  color: #fff;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.rc-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 2;
}

/* ABOUT */
#about { padding-top: 100px; background: transparent; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 80px 0 80px 0;
  overflow: hidden;
  box-shadow: 24px 24px 0 var(--cream);
}
.about-img img { width: 100%; display: block; filter: brightness(0.95); transition: 0.5s; }
.about-img:hover img { transform: scale(1.03); filter: brightness(1); }
.about-text p {
  font-size: 16px;
  line-height: 2.3;
  color: var(--charcoal);
  margin-bottom: 28px;
  text-align: justify;
}

/* SERVICE (User requested change 4 -> 3 columns) */
.service-section { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 COLUMNS */
  gap: 40px;
  margin-top: 60px;
}
.service-card {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 40px;
  transition: all 0.4s;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.s-card-img {
  width: calc(100% + 80px);
  margin: -40px -40px 30px;
  height: 200px;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
}
.s-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-card:hover .s-card-img img {
  transform: scale(1.08);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(74,52,39,0.1);
  border-color: var(--accent-orange);
}
.s-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 40px;
  color: rgba(230,126,34,0.1);
  font-weight: 900;
  display: block;
  margin-bottom: 20px;
}
.s-time {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 15px;
}
.s-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--dark-brown);
  text-align: left;
}
.s-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
  text-align: left;
}

/* MENU DETAIL SECTION */
.menu-detail-section { background: #fff; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.tab-btn {
  padding: 12px 40px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s;
}
.tab-btn.active {
  background: var(--dark-brown);
  color: #fff;
  border-color: var(--dark-brown);
}

.tab-content { display: none; width: 100%; transition: opacity 0.5s; opacity: 0; }
.tab-content.active { display: block; opacity: 1; }

.menu-category { margin-bottom: 60px; }
.cat-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 26px;
  color: var(--dark-brown);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: inline-block;
  padding-bottom: 5px;
}
.cat-note { font-size: 12px; color: var(--accent-orange); margin-bottom: 20px; font-weight: 700; }

.menu-list-wrap { display: flex; flex-direction: column; gap: 12px; }
.menu-item-row { display: flex; align-items: baseline; gap: 10px; }
.m-name { font-weight: 600; font-size: 16px; color: var(--charcoal); }
.m-dots { flex: 1; border-bottom: 1px dotted var(--border); }
.m-price { font-family: 'Shippori Mincho', serif; font-weight: 700; color: var(--dark-brown); min-width: 60px; text-align: right; }

.m-badge {
  background: var(--red-accent);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  margin-right: 8px;
}

.featured .m-name { color: var(--red-accent); }

.menu-list-wrap { display: flex; flex-direction: column; gap: 15px; }
.menu-item-row { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; border-bottom: 1px dotted var(--border); padding-bottom: 5px; }
.m-info { display: flex; align-items: center; flex: 1; min-width: 0; }
.m-name { font-weight: 600; font-size: 16px; color: var(--charcoal); flex: 1; min-width: 0; }
.m-price { font-family: 'Shippori Mincho', serif; font-weight: 700; color: var(--dark-brown); font-size: 16px; white-space: nowrap; flex-shrink: 0; }

.menu-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.upgrade-box {
  margin-top: 24px;
  background: var(--cream);
  padding: 20px;
  border-radius: 20px;
  font-size: 13px;
  border-left: 4px solid var(--accent-orange);
}

.menu-grid-half { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.menu-grid-complex { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.rice-note { font-size: 12px; color: var(--muted); margin-top: 8px; }

.takeout-card {
  background: #fff;
  border: 2px dashed var(--accent-orange);
  color: var(--accent-orange);
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  font-weight: 700;
  margin: 40px 0;
  letter-spacing: 0.15em;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.takeout-card svg { width: 24px; height: 24px; }

.insta-link-box { text-align: center; margin-top: 40px; }
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 20px rgba(220,39,67,0.2);
  transition: all 0.3s;
}
.btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220,39,67,0.3);
}

/* VOICE SECTION */
.voice-section { background: transparent; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.voice-card {
  background: #fff;
  padding: 50px 30px 40px;
  border-radius: 30px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.voice-stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}
.voice-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 4px;
}
.voice-name::after {
  content: ' 様';
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.voice-text-wrap {
  position: relative;
  max-height: 180px; /* 初期表示高さ */
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-top: 20px;
}
.voice-text-wrap.expanded {
  max-height: 2000px;
}
.voice-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal);
}
.voice-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, #fff, transparent);
  transition: opacity 0.3s;
}
.voice-text-wrap.expanded .voice-text-overlay { opacity: 0; pointer-events: none; }

.read-more-btn {
  background: none;
  border: none;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  margin-top: 15px;
  padding: 0;
  display: block;
  text-align: center;
  width: 100%;
}
.read-more-btn::after { content: ' ... 続きを読む'; }
.expanded + .read-more-btn::after { content: ' 閉じる'; }

.more-voice-box {
  text-align: center;
  margin-top: 60px;
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* GALLERY */
.gallery-section { padding: 0; background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }

/* GREETING SECTION */
.greeting-section { background: #fff; padding: 100px 0; }
.greeting-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.greeting-text h3 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 26px;
  color: var(--accent-orange);
  margin-bottom: 40px;
}
.greeting-text p {
  font-size: 16px;
  line-height: 2.3;
  color: var(--charcoal);
  margin-bottom: 30px;
}

/* BACK TO TOP */
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: var(--dark-brown);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
#back-to-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
#back-to-top:hover {
  background: var(--accent-orange);
  transform: translateY(-5px);
}

/* CONTACT SECTION */
.contact-section { background: var(--warm-white); padding: 100px 0; }
.contact-box {
  background: #fff;
  border-radius: 60px;
  padding: 80px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(74,52,39,0.05);
  border: 1px solid var(--border);
}
.contact-btn-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.contact-btn-main {
  padding: 0 40px;
  min-width: 280px;
  height: 64px;
  background: var(--dark-brown);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 60px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.3s;
}
.contact-btn-group .btn-insta {
  padding: 0 40px;
  min-width: 280px;
  height: 64px;
  border-radius: 60px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-btn-main:hover { background: var(--accent-orange); transform: translateY(-3px); }

/* ACCESS (Dark version) */
.access-section { background: #2d241e; color: #fff; padding: 120px 0; }
.access-section .title { color: #fff; }
.access-section .label { color: var(--light-gold); }
.access-section .divider { border-color: rgba(184,145,42,0.3); }

.access-box {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  box-shadow: none;
}
.a-info h3 { font-family: 'Zen Old Mincho', serif; font-size: 32px; margin-bottom: 50px; color: #fff; }
.a-list { border-top: 1px solid rgba(184,145,42,0.2); }
.a-list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid rgba(184,145,42,0.2);
  align-items: baseline;
}
.a-list-item dt { 
  font-size: 13px; 
  color: var(--light-gold); 
  font-weight: 800; 
  margin: 0; 
}
.a-list-item dd { 
  font-size: 16px; 
  margin: 0; 
  color: #e0d9d2; 
  line-height: 1.8; 
}
.a-map {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(184,145,42,0.2);
  height: 500px;
  width: 100%;
}
.a-map iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* FOOTER */
footer {
  background: var(--dark-brown);
  color: #fff;
  padding: 100px 0 50px;
}
.ft-logo { text-align: center; margin-bottom: 60px; }
.ft-logo-ja { font-family: 'Zen Old Mincho', serif; font-size: 32px; font-weight: 900; letter-spacing: 0.1em; }
.ft-logo-en { font-size: 10px; letter-spacing: 0.4em; opacity: 0.5; margin-top: 10px; }
.ft-copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 50px;
  letter-spacing: 0.15em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .pc-only { display: none !important; }
  .sp-only { display: flex !important; }
  .container { padding: 0 32px; }

  /* Header SP Fixed */
  .site-header { position: fixed !important; top: 0 !important; left: 0; right: 0; padding: 0 24px; z-index: 1000 !important; background: rgba(253,250,244,0.98) !important; }
  main { padding-top: 80px; }
  .hd-nav { display: none; }

  /* Hamburger Btn */
  .hamburger-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    position: relative;
    z-index: 300;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .hamburger-btn span {
    width: 100%;
    height: 2px;
    background: var(--dark-brown);
    transition: all 0.3s;
  }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* SP Overlay */
  .sp-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--warm-white);
    z-index: 250;
    padding: 120px 40px 40px;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .sp-menu-overlay.active { opacity: 1; visibility: visible; }
  .sp-nav ul { list-style: none; padding: 0; }
  .sp-nav li { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .sp-nav a {
    text-decoration: none;
    font-size: 24px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: var(--dark-brown);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .sp-nav a span { font-size: 11px; opacity: 0.5; font-weight: 500; font-family: 'Noto Serif JP', serif; }
  .sp-menu-footer { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .sp-footer-btn {
    padding: 16px;
    text-align: center;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
  }
  .sp-footer-btn.tel { background: var(--dark-brown); color: #fff; }
  .sp-footer-btn.insta { background: linear-gradient(45deg, #f09433, #dc2743); color: #fff; }

  /* Sections */
  section { padding: 40px 0; text-align: left !important; }
  .title { text-align: left !important; margin-bottom: 30px !important; }
  .label { text-align: left !important; }
  .divider { margin-left: 0; margin-bottom: 30px !important; }
  
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { border-radius: 40px 0; box-shadow: 12px 12px 0 var(--cream); }
  
  .recommend-grid { grid-template-columns: 1fr; gap: 16px; }
  .rc-title { font-size: 18px !important; line-height: 1.5 !important; }
  
  .service-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .menu-detail-section { text-align: left !important; }
  .menu-tabs { justify-content: flex-start; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .menu-columns, .menu-grid-half, .menu-grid-complex { grid-template-columns: 1fr; gap: 40px; }
  
  .voice-grid { grid-template-columns: 1fr; }
  
  .greeting-box { grid-template-columns: 1fr; text-align: left !important; gap: 40px; }
  .greeting-text { text-align: left !important; }
  
  .access-box { grid-template-columns: 1fr; gap: 40px; box-shadow: none; padding: 0; }
  .a-map { height: 350px; }

  /* SP FV (Vertical Design) */
  .fv { height: auto; min-height: auto; }
  .fv-sp { width: 100%; display: flex; flex-direction: column; background: #fff; }
  .fv-sp-top { position: relative; width: 100%; height: 60vh; overflow: hidden; }
  .fv-sp-slider { width: 100%; height: 100%; position: relative; }
  .fv-sp-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s; }
  .fv-sp-slider img.active { opacity: 1; }
  
  .fv-sp-mini-badges {
    position: absolute;
    bottom: 50px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 25;
  }
  .fv-badge.mini {
    margin: 0;
    font-size: 11px;
    padding: 8px 20px;
    width: auto !important;
    min-width: 200px;
    border-radius: 4px;
    background: rgba(255,255,255,0.98);
    color: var(--dark-brown);
    letter-spacing: 1px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--accent-orange);
  }

  .fv-sp-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
  .fv-sp-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }
  .fv-sp-dots span.active { background: var(--accent-orange); width: 20px; border-radius: 4px; }
  
  .fv-sp-bottom { padding: 20px 40px 40px; background: #fdfaf4; position: relative; }
  .fv-sp-vertical { writing-mode: vertical-rl; display: flex; gap: 24px; align-items: flex-start; height: 230px; margin: 0 auto; }
  .fv-sp-main-text { font-family: 'Zen Old Mincho', serif; font-size: 28px; font-weight: 900; line-height: 1.4; color: var(--dark-brown); }
  .fv-sp-sub-text { font-size: 13px; line-height: 2.2; color: var(--muted); padding-top: 20px; }

  /* Gallery Slider for SP */
  .gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    margin-left: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .gallery-item {
    flex: 0 0 100% !important;
    scroll-snap-align: center;
    aspect-ratio: 16 / 9 !important;
    border-radius: 0 !important;
    overflow: hidden;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }

  /* Menu Row Optimization for SP */
  .menu-item-row {
    flex-wrap: nowrap !important;
    align-items: center !important;
    padding: 15px 0 !important;
    justify-content: space-between !important;
  }
  .m-info {
    flex: 1 !important;
    min-width: 0 !important;
    margin-right: 10px !important;
  }
  .m-name {
    font-size: 14px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    flex: 1 !important;
  }
  .m-dots { display: none !important; }
  .m-price {
    font-size: 15px !important;
    min-width: auto !important;
    text-align: right !important;
    flex-shrink: 0 !important;
  }

  /* Tab Buttons */
  .menu-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; overflow: hidden; padding: 0; }
  .tab-btn { padding: 12px 0; text-align: center; font-size: 12px; }

  /* Greeting Title */
  .greeting-title { font-size: 24px !important; }
  .greeting-text h3 { font-size: 18px !important; margin-bottom: 20px !important; text-align: left !important; line-height: 1.5 !important; }
  .greeting-text p { line-height: 1.8 !important; margin-bottom: 15px !important; }

  /* Sticky Footer */
  .footer { padding-bottom: 120px; } /* Space for footer */
  #back-to-top { bottom: 100px !important; }

  .sp-fixed-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 70px;
    background: #fff;
    display: flex !important;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 100 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .sff-btn {
    flex: 1 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin: 0 !important;
    border-radius: 0 !important;
    height: 100%;
    letter-spacing: 0.05em;
  }
  }
  .sff-btn.insta { background: #fff; color: #dc2743; border-right: 1px solid var(--border); }
  .sff-btn.tel { background: var(--dark-brown); color: #fff; }

  .sff-btn svg {
    flex-shrink: 0;
  }

}

@media (max-width: 768px) {
  .fv-badge { padding: 8px 16px; font-size: 12px; }
  .fv-badge span { font-size: 10px; }
  .hd-logo-ja { font-size: 20px; }
}
