@charset "UTF-8";

/* Light elegant theme inspired by experience.css */
:root {
  --tone-bg: #fbf8f4;
  --tone-card-1: rgba(250, 248, 245, 0.98);
  --tone-card-2: rgba(252, 250, 248, 0.96);
  --tone-border: rgba(190, 160, 110, 0.30);
  --tone-border-strong: rgba(200, 170, 120, 0.45);
  --tone-gold: rgba(220, 190, 130, 0.90);
  --tone-gold-light: rgba(220, 190, 130, 0.4);
  --tone-text: #2a1a10;
  --tone-text-soft: #4a3a2a;
  --tone-muted: #6a5a4a;
}

/* Main page background with texture */
body {
  background: linear-gradient(135deg, #fbf8f4 0%, #f5f0e8 50%, #faf7f1 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(220, 190, 130, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 170, 110, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 248, 235, 0.4) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(220, 190, 130, 0.02) 2px,
      rgba(220, 190, 130, 0.02) 4px
    );
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

.page-header .img { position: relative; }
.page-header .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.22));
}
.page-title-area .page-title { 
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.18); 
}
.page-title-area .page-title .en { 
  color: #ffffff; 
  letter-spacing: .22em;
}
.page-title-area .page-title .ja { 
  color: #ffffff; 
  font-weight: 600; 
  letter-spacing: .06em; 
}

/* Choice cards (ご来店について or 予約したい) */
.action-choice {
  max-width: 1180px;
  padding: 0 28px;
  margin: 40px auto 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.action-choice .choice-card {
  background: linear-gradient(135deg, var(--tone-card-1), var(--tone-card-2));
  border: 1px solid var(--tone-border);
  border-radius: 14px;
  box-shadow: 
    0 18px 46px rgba(0, 0, 0, 0.26), 
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 20px rgba(220, 190, 130, 0.05);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.action-choice .choice-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.choice-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  color: var(--tone-text);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.action-choice .choice-desc {
  font-size: 13px;
  color: var(--tone-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.action-choice .choice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--tone-border-strong);
  color: var(--tone-text);
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.5), transparent 60%),
              linear-gradient(135deg, rgba(248, 242, 235, 0.96), rgba(250, 245, 238, 0.94));
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform .06s ease, filter .2s ease;
  position: relative;
  z-index: 1;
}
.action-choice .choice-btn:hover { filter: brightness(1.05); }
.action-choice .choice-btn:active { transform: translateY(1px); }

/* Visit Guide Main Section */
.visit-guide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}

.guide-wrapper {
  padding: 20px 0;
}

/* イントロダクション */
.intro-section {
  background: linear-gradient(135deg, var(--tone-card-1), var(--tone-card-2));
  border: 1px solid var(--tone-border);
  border-radius: 12px;
  padding: 40px 32px;
  margin-bottom: 60px;
  box-shadow: 
    0 12px 30px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 30px rgba(220, 190, 130, 0.08);
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(220, 190, 130, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(200, 170, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.intro-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  color: var(--tone-text);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--tone-text) 0%, rgba(42, 26, 16, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text {
  font-size: 15px;
  color: var(--tone-text-soft);
  line-height: 1.9;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ガイドステップ */
.guide-step {
  display: flex;
  margin-bottom: 50px;
  gap: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(250, 248, 245, 0.6));
  border: 1px solid rgba(220, 190, 130, 0.15);
  border-radius: 12px;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.guide-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 190, 130, 0.3), transparent);
  pointer-events: none;
}

.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
  padding: 20px 0;
  text-align: center;
  border-right: 2px solid rgba(220, 190, 130, 0.3);
  padding-right: 40px;
  position: relative;
  z-index: 1;
}

.step-number .number {
  font-family: "Zen Old Mincho", serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.9), rgba(200, 170, 110, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.step-number .subtitle {
  font-size: 13px;
  color: var(--tone-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-content {
  flex: 1;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  color: var(--tone-text);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 8px;
}

.step-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(220, 190, 130, 0.8), transparent);
}

.step-content p {
  font-size: 14px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Strong tag styling */
strong {
  color: var(--tone-text);
  font-weight: 700;
  background: linear-gradient(120deg, rgba(220, 190, 130, 0.15) 0%, rgba(220, 190, 130, 0.05) 100%);
  padding: 2px 6px;
  border-radius: 4px;
  border-left: 3px solid rgba(220, 190, 130, 0.6);
  display: inline-block;
}

/* Info Links */
.info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.info-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(252, 250, 248, 0.7));
  border: 1px solid var(--tone-border);
  border-radius: 8px;
  color: var(--tone-text);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.info-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.info-link:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(252, 250, 248, 0.9));
  box-shadow: 0 6px 16px rgba(220, 190, 130, 0.15);
  border-color: rgba(220, 190, 130, 0.4);
}

.info-link:hover::before {
  opacity: 1;
}

.link-icon {
  margin-right: 8px;
  font-size: 18px;
}

/* Booking Info */
.booking-info {
  margin: 24px 0;
}

.booking-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(250, 248, 245, 0.8));
  border: 1px solid var(--tone-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.booking-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(220, 190, 130, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.booking-label {
  font-size: 12px;
  color: var(--tone-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.booking-phone {
  font-size: 24px;
  font-weight: 700;
  color: var(--tone-text);
  margin: 8px 0;
  position: relative;
  z-index: 1;
}

.booking-phone a {
  color: var(--tone-text);
  text-decoration: none;
  position: relative;
  background: linear-gradient(120deg, rgba(220, 190, 130, 0.3) 0%, rgba(220, 190, 130, 0.1) 100%);
  padding: 2px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  border-bottom: 2px solid rgba(220, 190, 130, 0.6);
}

.booking-phone a:hover {
  background: linear-gradient(120deg, rgba(220, 190, 130, 0.5) 0%, rgba(220, 190, 130, 0.2) 100%);
  border-bottom-color: rgba(220, 190, 130, 1);
  box-shadow: 0 2px 8px rgba(220, 190, 130, 0.2);
}

.booking-time {
  font-size: 12px;
  color: var(--tone-muted);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.notice-text {
  font-size: 13px;
  color: var(--tone-text-soft);
  background: linear-gradient(135deg, rgba(252, 248, 243, 0.8), rgba(250, 245, 238, 0.6));
  border-left: 3px solid rgba(220, 190, 130, 0.8);
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 16px;
  line-height: 1.7;
  position: relative;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.online-booking {
  margin: 20px 0;
}

.online-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.2), rgba(200, 170, 110, 0.15));
  border: 1.5px solid rgba(220, 190, 130, 0.6);
  border-radius: 8px;
  color: var(--tone-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.online-booking-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.online-booking-btn:hover {
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.3), rgba(200, 170, 110, 0.25));
  border-color: rgba(220, 190, 130, 0.9);
  box-shadow: 0 6px 16px rgba(220, 190, 130, 0.2);
}

.online-booking-btn:hover::before {
  opacity: 1;
}

.booking-icon {
  font-size: 16px;
}

/* Busy Times */
.busy-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.busy-block {
  padding: 20px 16px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--tone-border);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(250, 248, 245, 0.5));
}

.busy-block::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
}

.busy-high::before {
  background: radial-gradient(circle at 50% 50%, rgba(220, 140, 140, 0.15) 0%, transparent 70%);
}

.busy-medium::before {
  background: radial-gradient(circle at 50% 50%, rgba(220, 180, 120, 0.15) 0%, transparent 70%);
}

.busy-low::before {
  background: radial-gradient(circle at 50% 50%, rgba(140, 180, 140, 0.15) 0%, transparent 70%);
}

.busy-level {
  font-size: 12px;
  font-weight: 700;
  color: var(--tone-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.busy-time {
  font-size: 14px;
  color: var(--tone-text);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.busy-desc {
  font-size: 12px;
  color: var(--tone-text-soft);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Preparation Items */
.preparation-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.prep-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(250, 248, 245, 0.6));
  border: 1px solid var(--tone-border);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.prep-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(220, 190, 130, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.prep-item:hover {
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 20px rgba(220, 190, 130, 0.1);
  border-color: rgba(220, 190, 130, 0.3);
}

.prep-item:hover::before {
  opacity: 1;
}

.prep-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.prep-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tone-text);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.prep-desc {
  font-size: 12px;
  color: var(--tone-text-soft);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Atmosphere Gallery */
.atmosphere-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 
    0 6px 16px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
  position: relative;
  border: 1px solid rgba(220, 190, 130, 0.15);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

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

/* Important Info Section */
.important-info {
  background: linear-gradient(135deg, var(--tone-card-1), var(--tone-card-2));
  border: 1px solid var(--tone-border);
  border-radius: 12px;
  padding: 40px 32px;
  margin: 80px 0 60px;
  box-shadow: 
    0 12px 30px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 30px rgba(220, 190, 130, 0.08);
  position: relative;
  overflow: hidden;
}

.important-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(220, 190, 130, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 170, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.important-info h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  color: var(--tone-text);
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--tone-text) 0%, rgba(42, 26, 16, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--tone-border);
  position: relative;
  z-index: 1;
}

.info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-block h3 {
  font-size: 16px;
  color: var(--tone-text);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 8px;
}

.info-block h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(220, 190, 130, 0.7), transparent);
}

.info-block ul {
  list-style: none;
  padding: 0;
}

.info-block li {
  font-size: 14px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.info-block li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: rgba(220, 190, 130, 0.7);
  font-weight: 700;
}

.info-block p {
  font-size: 14px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.time-guide {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(250, 248, 245, 0.5));
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid rgba(220, 190, 130, 0.15);
  position: relative;
  overflow: hidden;
}

.time-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(220, 190, 130, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.time-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--tone-border);
  position: relative;
  z-index: 1;
}

.time-item:last-child {
  border-bottom: none;
}

.time-label {
  font-size: 13px;
  color: var(--tone-text);
  font-weight: 500;
}

.time-duration {
  font-size: 13px;
  color: var(--tone-text);
  font-weight: 700;
  background: linear-gradient(120deg, rgba(220, 190, 130, 0.25) 0%, rgba(220, 190, 130, 0.1) 100%);
  padding: 2px 8px;
  border-radius: 4px;
}

.time-note {
  font-size: 12px;
  color: var(--tone-muted);
  margin-top: 12px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 60px 32px;
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.8), rgba(252, 250, 248, 0.8));
  border: 1px solid var(--tone-border);
  border-radius: 12px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 12px 30px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(220, 190, 130, 0.06);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(220, 190, 130, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  color: var(--tone-text);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--tone-text) 0%, rgba(42, 26, 16, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta p {
  font-size: 14px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-phone,
.cta-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--tone-border-strong);
  position: relative;
  overflow: hidden;
}

.cta-phone {
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.9), rgba(200, 170, 110, 0.85));
  color: #ffffff;
}

.cta-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.cta-phone:hover {
  box-shadow: 0 8px 20px rgba(220, 190, 130, 0.3);
  transform: translateY(-2px);
}

.cta-phone:hover::before {
  opacity: 1;
}

.cta-instagram {
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.9), rgba(245, 240, 232, 0.9));
  color: var(--tone-text);
}

.cta-instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.cta-instagram:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 245, 240, 1));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cta-instagram:hover::before {
  opacity: 1;
}

.cta-icon {
  font-size: 18px;
}

/* スマートフォン対応 */
@media screen and (max-width: 1024px) {
  .guide-step {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .step-number {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--tone-border);
    padding: 20px 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    text-align: left;
  }

  .step-number .number {
    font-size: 36px;
  }

  .step-number .subtitle {
    display: flex;
    align-items: center;
  }

  .busy-times {
    grid-template-columns: 1fr;
  }

  .preparation-items {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-phone,
  .cta-instagram {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  body::before {
    opacity: 0.8;
  }

  .action-choice {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin: 32px auto 20px;
  }

  .visit-guide {
    padding: 0 20px;
  }

  .intro-section,
  .important-info,
  .final-cta {
    padding: 28px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
  }

  .guide-step {
    padding: 20px;
    margin-bottom: 32px;
  }

  .intro-title,
  .important-info h2,
  .final-cta h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .intro-text,
  .step-content p,
  .info-block p,
  .final-cta p {
    font-size: 13px;
  }

  .step-content h3,
  .info-block h3 {
    font-size: 16px;
  }

  .step-number {
    margin-bottom: 16px;
  }

  .step-number .number {
    font-size: 32px;
  }

  .busy-times,
  .preparation-items,
  .atmosphere-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 16 / 9;
  }

  .booking-phone {
    font-size: 20px;
  }

  .final-cta {
    padding: 24px 16px;
  }

  .final-cta p {
    margin-bottom: 24px;
  }

  .cta-phone,
  .cta-instagram {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.page-header .img { position: relative; }
.page-header .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.22));
}
.page-title-area .page-title { text-shadow: 0 2px 8px rgba(255, 255, 255, 0.18); }
.page-title-area .page-title .en { color: #ffffff; letter-spacing: .22em; }
.page-title-area .page-title .ja { color: #ffffff; font-weight: 600; letter-spacing: .06em; }

/* Choice cards (ご来店について or 予約したい) */
.action-choice {
  max-width: 1180px;
  padding: 0 28px;
  margin: 40px auto 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.action-choice .choice-card {
  background: linear-gradient(135deg, var(--tone-card-1), var(--tone-card-2));
  border: 1px solid var(--tone-border);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
  text-align: center;
}
.action-choice .choice-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  color: var(--tone-text);
  margin-bottom: 6px;
}
.action-choice .choice-desc {
  font-size: 13px;
  color: var(--tone-muted);
  margin-bottom: 16px;
}
.action-choice .choice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--tone-border-strong);
  color: var(--tone-text);
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.5), transparent 60%),
              linear-gradient(135deg, rgba(248, 242, 235, 0.96), rgba(250, 245, 238, 0.94));
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform .06s ease, filter .2s ease;
}
.action-choice .choice-btn:hover { filter: brightness(1.05); }
.action-choice .choice-btn:active { transform: translateY(1px); }

/* Visit Guide Main Section */
.visit-guide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}

.guide-wrapper {
  padding: 20px 0;
}

/* イントロダクション */
.intro-section {
  background: linear-gradient(135deg, var(--tone-card-1), var(--tone-card-2));
  border: 1px solid var(--tone-border);
  border-radius: 12px;
  padding: 40px 32px;
  margin-bottom: 60px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.intro-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  color: var(--tone-text);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.08em;
}

.intro-text {
  font-size: 15px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  text-align: center;
}

/* ガイドステップ */
.guide-step {
  display: flex;
  margin-bottom: 50px;
  gap: 40px;
}

.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
  padding: 20px 0;
  text-align: center;
  border-right: 2px solid var(--tone-border);
  padding-right: 40px;
}

.step-number .number {
  font-family: "Zen Old Mincho", serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(220, 190, 130, 0.7);
  line-height: 1;
  margin-bottom: 12px;
}

.step-number .subtitle {
  font-size: 13px;
  color: var(--tone-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.step-content {
  flex: 1;
  padding-top: 10px;
}

.step-content h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  color: var(--tone-text);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.step-content p {
  font-size: 14px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Info Links */
.info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.info-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--tone-border);
  border-radius: 8px;
  color: var(--tone-text);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.info-link:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.link-icon {
  margin-right: 8px;
  font-size: 18px;
}

/* Booking Info */
.booking-info {
  margin: 24px 0;
}

.booking-block {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--tone-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.booking-label {
  font-size: 12px;
  color: var(--tone-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.booking-phone {
  font-size: 24px;
  font-weight: 700;
  color: var(--tone-text);
  margin: 8px 0;
}

.booking-phone a {
  color: var(--tone-text);
  text-decoration: none;
  border-bottom: 2px solid rgba(220, 190, 130, 0.5);
}

.booking-phone a:hover {
  border-bottom-color: rgba(220, 190, 130, 1);
}

.booking-time {
  font-size: 12px;
  color: var(--tone-muted);
  margin-top: 8px;
}

.online-booking {
  margin: 20px 0;
}

.online-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.15), rgba(200, 170, 110, 0.1));
  border: 1px solid rgba(220, 190, 130, 0.5);
  border-radius: 8px;
  color: var(--tone-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.online-booking-btn:hover {
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.25), rgba(200, 170, 110, 0.2));
  border-color: rgba(220, 190, 130, 0.8);
  box-shadow: 0 6px 16px rgba(220, 190, 130, 0.15);
}

.booking-icon {
  font-size: 16px;
}

.notice-text {
  font-size: 13px;
  color: var(--tone-text-soft);
  background: rgba(252, 248, 243, 0.8);
  border-left: 3px solid rgba(220, 190, 130, 0.6);
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 16px;
  line-height: 1.7;
}

/* Busy Times */
.busy-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.busy-block {
  padding: 20px 16px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--tone-border);
}

.busy-high {
  background: linear-gradient(135deg, rgba(220, 140, 140, 0.1), rgba(200, 120, 120, 0.08));
}

.busy-medium {
  background: linear-gradient(135deg, rgba(220, 180, 120, 0.1), rgba(200, 160, 100, 0.08));
}

.busy-low {
  background: linear-gradient(135deg, rgba(140, 180, 140, 0.1), rgba(120, 160, 120, 0.08));
}

.busy-level {
  font-size: 12px;
  font-weight: 700;
  color: var(--tone-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.busy-time {
  font-size: 14px;
  color: var(--tone-text);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
}

.busy-desc {
  font-size: 12px;
  color: var(--tone-text-soft);
  line-height: 1.6;
}

/* Preparation Items */
.preparation-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.prep-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--tone-border);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}

.prep-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
}

.prep-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tone-text);
  margin-bottom: 8px;
}

.prep-desc {
  font-size: 12px;
  color: var(--tone-text-soft);
  line-height: 1.6;
}

/* Atmosphere Gallery */
.atmosphere-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  aspect-ratio: 4 / 3;
}

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

/* Important Info Section */
.important-info {
  background: linear-gradient(135deg, var(--tone-card-1), var(--tone-card-2));
  border: 1px solid var(--tone-border);
  border-radius: 12px;
  padding: 40px 32px;
  margin: 80px 0 60px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.important-info h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  color: var(--tone-text);
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.08em;
}

.info-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--tone-border);
}

.info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-block h3 {
  font-size: 16px;
  color: var(--tone-text);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.info-block ul {
  list-style: none;
  padding: 0;
}

.info-block li {
  font-size: 14px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.info-block li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: rgba(220, 190, 130, 0.7);
  font-weight: 700;
}

.info-block p {
  font-size: 14px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.time-guide {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}

.time-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--tone-border);
}

.time-item:last-child {
  border-bottom: none;
}

.time-label {
  font-size: 13px;
  color: var(--tone-text);
  font-weight: 500;
}

.time-duration {
  font-size: 13px;
  color: rgba(220, 190, 130, 0.8);
  font-weight: 600;
}

.time-note {
  font-size: 12px;
  color: var(--tone-muted);
  margin-top: 12px;
  font-style: italic;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 60px 32px;
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.6), rgba(252, 250, 248, 0.6));
  border: 1px solid var(--tone-border);
  border-radius: 12px;
  margin-bottom: 80px;
}

.final-cta h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  color: var(--tone-text);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.final-cta p {
  font-size: 14px;
  color: var(--tone-text-soft);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-phone,
.cta-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--tone-border-strong);
}

.cta-phone {
  background: linear-gradient(135deg, rgba(220, 190, 130, 0.9), rgba(200, 170, 110, 0.85));
  color: #ffffff;
}

.cta-phone:hover {
  box-shadow: 0 8px 20px rgba(220, 190, 130, 0.3);
  transform: translateY(-2px);
}

.cta-instagram {
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.9), rgba(245, 240, 232, 0.9));
  color: var(--tone-text);
}

.cta-instagram:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 245, 240, 1));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-icon {
  font-size: 18px;
}

/* スマートフォン対応 */
@media screen and (max-width: 1024px) {
  .guide-step {
    flex-direction: column;
    gap: 24px;
  }

  .step-number {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--tone-border);
    padding: 20px 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    text-align: left;
  }

  .step-number .number {
    font-size: 36px;
  }

  .step-number .subtitle {
    display: flex;
    align-items: center;
  }

  .busy-times {
    grid-template-columns: 1fr;
  }

  .preparation-items {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-phone,
  .cta-instagram {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .action-choice {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin: 32px auto 20px;
  }

  .visit-guide {
    padding: 0 20px;
  }

  .intro-section,
  .important-info,
  .final-cta {
    padding: 28px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
  }

  .intro-title,
  .important-info h2,
  .final-cta h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .intro-text,
  .step-content p,
  .info-block p,
  .final-cta p {
    font-size: 13px;
  }

  .step-content h3,
  .info-block h3 {
    font-size: 16px;
  }

  .step-number {
    margin-bottom: 16px;
  }

  .step-number .number {
    font-size: 32px;
  }

  .busy-times,
  .preparation-items,
  .atmosphere-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 16 / 9;
  }

  .booking-phone {
    font-size: 20px;
  }

  .final-cta {
    padding: 24px 16px;
  }

  .final-cta p {
    margin-bottom: 24px;
  }

  .cta-phone,
  .cta-instagram {
    padding: 12px 20px;
    font-size: 13px;
  }
}