/* ===== HOME ===== */

/* ヒーローセクション */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: var(--warm-white);
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}
.hero-eyebrow span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--orange);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 28px;
}
.hero-title .italic { font-style: italic; color: var(--orange); }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--dark);
  color: transparent;
}

.hero-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-stat {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--brown-light);
}
.hero-stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.hero-stat-item .num span { color: var(--orange); font-size: 24px; }
.hero-stat-item .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.05); }

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(181,69,42,0.2), transparent 60%);
}

.hero-tag {
  position: absolute;
  bottom: 48px;
  left: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}
.hero-tag .dot {
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181,69,42,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(181,69,42,0); }
}
.hero-tag .tag-text { font-size: 12px; font-weight: 500; }
.hero-tag .tag-text strong { color: var(--orange); display: block; font-size: 14px; }

/* ─── スクロールインジケーター ─── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── コンセプトセクション ─── */
.concept {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}
.concept::before {
  content: 'LOIRE';
  position: absolute;
  top: 60px;
  left: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(181,69,42,0.06);
  pointer-events: none;
  line-height: 1;
}
.concept-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.concept-images {
  position: relative;
  height: 580px;
}
.concept-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 85%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.12);
}
.concept-img-sub {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 52%;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--warm-white);
  box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
}
.concept-img-deco {
  position: absolute;
  top: -20px; right: 30px;
  width: 80px; height: 80px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.15;
}

.concept-body .section-label { margin-bottom: 12px; }
.concept-lead {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-muted);
  margin-top: 24px;
}
.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.concept-tag {
  padding: 8px 18px;
  border: 1.5px solid var(--brown-light);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brown);
  font-weight: 500;
}

/* ─── メニュープレビュー ─── */
.menu-preview {
  padding: 140px 0;
  background: var(--warm-white);
}
.menu-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.menu-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.menu-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.menu-card-body { padding: 24px; }
.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.menu-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.menu-card-price small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 400;
}

/* ─── スタッフプレビュー ─── */
.staff-preview {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.staff-preview::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(181,69,42,0.15), transparent 70%);
  pointer-events: none;
}
.staff-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.staff-preview .section-label { color: var(--orange); }
.staff-preview .section-title { color: var(--warm-white); }
.staff-preview .section-title em { color: var(--orange); }

.staff-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.staff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.staff-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
}
.staff-card-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.staff-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.staff-card:hover .staff-card-photo img { transform: scale(1.05); }
.staff-card-info { padding: 24px; }
.staff-role {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--orange);
}
.staff-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--warm-white);
  margin: 8px 0 4px;
}
.staff-name-jp {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.staff-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.staff-spec-tag {
  background: rgba(181,69,42,0.12);
  color: var(--orange-light);
  border: 1px solid rgba(181,69,42,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
}

/* ─── 口コミ・SNS ─── */
.reviews {
  padding: 140px 0;
  background: var(--cream);
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brown-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--brown);
  font-size: 14px;
}
.review-name {
  font-size: 13px;
  font-weight: 500;
}
.review-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── CTA バナー ─── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), #2A2A28, var(--orange-deep));
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: 'RESERVE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
}
.cta-banner .section-label { color: rgba(255,255,255,0.7); }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
.btn-white {
  background: #fff;
  color: var(--orange-deep);
  border-radius: 100px;
  padding: 18px 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}



/* ===== MENU PAGE ===== */
.page-hero {
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 80px 60px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,15,10,0.9) 30%, rgba(26,15,10,0.3));
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero .section-title { color: var(--warm-white); }
.page-hero .section-title em { color: var(--orange); }

.menu-section {
  padding: 100px 0;
}
.menu-section:nth-child(even) { background: var(--cream); }

.menu-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--brown-light);
}
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--brown-light);
  gap: 24px;
}
.menu-item-left { flex: 1; }
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.menu-item-name-jp {
  font-size: 12px;
  color: var(--text-muted);
}
.menu-item-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 8px;
  max-width: 300px;
}
.menu-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--orange);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.menu-item-price small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  text-align: right;
}

.menu-section:nth-child(odd) .menu-list { grid-template-columns: 1fr 1fr; }

/* ─── オプション一覧 ─── */
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.option-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--brown-light);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.option-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(181,69,42,0.1);
}
.option-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.option-card .name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}
.option-card .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--orange);
}
.option-card .duration {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── 注意事項 ─── */
.menu-notes {
  background: rgba(181,69,42,0.05);
  border: 1px solid rgba(181,69,42,0.2);
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 60px;
}
.menu-notes h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.menu-notes p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
}



/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 120px 0;
}
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-story-media {
  position: relative;
  height: 650px;
}
.about-story-img {
  width: 75%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 30px 30px 80px rgba(0,0,0,0.1);
}
.about-story-accent {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 180px;
  background: var(--orange);
  color: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
}
.about-story-accent .big {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
}
.about-story-accent .small {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-top: 6px;
  opacity: 0.85;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}
.about-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.about-body-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ─── スタッフ詳細 ─── */
.staff-section {
  padding: 120px 0;
  background: var(--cream);
}
.staff-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.staff-detail-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.staff-detail-card:hover { transform: translateY(-10px); }
.staff-detail-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.staff-detail-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.staff-detail-card:hover .staff-detail-photo img { transform: scale(1.05); }
.staff-detail-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(to top, rgba(26,15,10,0.85), transparent);
}
.staff-detail-role {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--orange);
}
.staff-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  margin-top: 4px;
}
.staff-detail-info { padding: 24px; }
.staff-detail-msg {
  font-size: 13px;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.staff-detail-spec-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.staff-spec-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12px;
}
.staff-spec-item .spec-key {
  font-weight: 700;
  color: var(--orange);
  min-width: 60px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.staff-spec-item .spec-val { color: var(--text-muted); }

/* ─── 価値観・こだわり ─── */
.values {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.values::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181,69,42,0.1), transparent 70%);
}
.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.values .section-title { color: var(--warm-white); }
.values .section-title em { color: var(--gold); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 24px;
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover {
  border-color: var(--gold);
  background: rgba(181,69,42,0.05);
}
.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: -16px;
}
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--warm-white);
  font-weight: 700;
  margin-bottom: 12px;
}
.value-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

/* ─── サロンギャラリー ─── */
.gallery {
  padding: 120px 0;
  background: var(--warm-white);
}
.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 60px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.05); }



/* ===== CONTACT PAGE ===== */
.contact-grid {
  padding: 100px 0;
}
.contact-grid-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.contact-info { }
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.contact-detail-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--brown-light);
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(181,69,42,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-detail-val {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.contact-detail-val strong { font-size: 18px; font-weight: 700; }

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--brown-light);
  background: var(--cream);
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ─── 予約フォーム ─── */
.reservation-form {
  background: var(--cream);
  border-radius: 28px;
  padding: 48px 44px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-label span { color: var(--orange); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--brown-light);
  border-radius: 12px;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(181,69,42,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

/* ─── FAQ ─── */
.faq-section {
  padding: 100px 0;
  background: var(--cream);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq-item {
  border-bottom: 1px solid var(--brown-light);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  background: none;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 24px;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--brown-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
}
.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 14px;
  line-height: 2;
  color: var(--text-muted);
}

/* ─── アクセス動画 ─── */
.access-video-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}
.access-video-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.access-video-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 40px;
}
.access-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark);
}
.access-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.access-video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-align: center;
}
.access-video-placeholder small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── SNSリンク ─── */
.sns-section {
  padding: 80px 0;
  background: var(--warm-white);
  text-align: center;
}
.sns-links-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.sns-link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sns-link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}
/* contact.html SNSリスト — アイコンとテキストを分離配置（ブランドガイドライン準拠） */
.contact-sns-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-sns-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-sns-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
}
.contact-sns-icon:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.contact-sns-icon svg {
  width: 26px; height: 26px;
}
.contact-sns-text a,
.contact-sns-text-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-sns-text a:hover,
.contact-sns-text-link:hover {
  color: var(--orange);
}



/* ─── SNS CTA セクション（TOP） ─── */
.sns-cta-section {
  padding: 100px 0;
  background: var(--warm-white);
}
.sns-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sns-cta-card {
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.sns-cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.sns-cta-card p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.8);
}
.sns-cta-card .section-label {
  color: rgba(255,255,255,0.7);
}
/* Instagram: 公式マルチカラー背景（アプリアイコンと同じグラデーション） */
.sns-cta-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
/* LINE: 公式グリーン背景 #06C755 */
.sns-cta-line {
  background: #06C755;
}

/* ===== レスポンシブ（タブレット） ===== */
@media (max-width: 1024px) {
  /* ─── ヒーロー: 画像を背景化、コンテンツ中央配置 ─── */
  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    position: relative;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    clip-path: none;
    z-index: 0;
  }
  .hero-right img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .hero-right-overlay {
    background: linear-gradient(
      to bottom,
      rgba(250,250,248,0.92) 0%,
      rgba(250,250,248,0.85) 60%,
      rgba(250,250,248,0.75) 100%
    );
  }
  .hero-tag { display: none; }
  .hero-left {
    background: transparent;
    padding: calc(var(--nav-h) + 48px) 32px 48px;
    align-items: center;
    text-align: center;
    z-index: 2;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-title { text-align: center; }
  .hero-desc { max-width: 520px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { white-space: nowrap; }
  .hero-stat { justify-content: center; }
  .scroll-indicator { display: none; }

  .concept-inner { grid-template-columns: 1fr; gap: 60px; }
  .concept-images { height: 360px; }
  .menu-cards { grid-template-columns: 1fr 1fr; }
  .staff-row { grid-template-columns: 1fr 1fr; }
  .about-story-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-story-media { height: 400px; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .sns-cta-inner { grid-template-columns: 1fr; }
}

/* ===== レスポンシブ（モバイル） ===== */
@media (max-width: 768px) {

  /* ─── HOME: ヒーロー ─── */
  .hero-left {
    padding: calc(var(--nav-h) + 32px) 20px 48px;
  }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-title { font-size: clamp(36px, 9vw, 52px); margin-bottom: 20px; }
  .hero-desc { font-size: 14px; line-height: 1.9; margin-bottom: 32px; }
  .hero-desc br { display: none; }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 16px 24px;
    border-radius: 12px;
  }
  .hero-stat {
    gap: 16px;
    margin-top: 40px;
    padding-top: 28px;
    flex-wrap: wrap;
  }
  .hero-stat-item .num { font-size: 32px; }
  .scroll-indicator { display: none; }

  /* ─── HOME: コンセプト ─── */
  .concept { padding: 80px 0; }
  .concept-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .concept-images { height: 280px; }
  .concept-lead { font-size: 13px; line-height: 2; }
  .concept-lead br { display: none; }

  /* ─── HOME: メニュープレビュー ─── */
  .menu-preview { padding: 80px 0; }
  .menu-preview-inner { padding: 0 20px; }
  .menu-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }
  .menu-cards { grid-template-columns: 1fr; gap: 20px; }

  /* ─── HOME: スタッフプレビュー ─── */
  .staff-preview { padding: 80px 0; }
  .staff-preview-inner { padding: 0 20px; }
  .staff-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }
  .staff-card-photo { aspect-ratio: 4/3; }

  /* ─── HOME: SNS CTA ─── */
  .sns-cta-section { padding: 60px 0; }
  .sns-cta-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 16px;
  }
  .sns-cta-card {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .sns-cta-card h3 { font-size: 20px; }
  .sns-cta-card p { font-size: 13px; }
  .sns-cta-card p br { display: none; }
  .sns-cta-card .btn { font-size: 12px; padding: 12px 24px; }

  /* ─── HOME: CTA バナー ─── */
  .cta-banner { padding: 60px 20px; }
  .cta-banner h2 { font-size: clamp(28px, 7vw, 48px); margin-bottom: 28px; }
  .btn-white { padding: 16px 32px; font-size: 13px; }

  /* ─── ABOUT: ページヒーロー ─── */
  .page-hero { padding: 0 20px 32px; min-height: 300px; }

  /* ─── ABOUT: ストーリー ─── */
  .about-story { padding: 60px 0; }
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .about-story-media { height: 320px; }
  .about-story-accent { width: 140px; padding: 20px 16px; }
  .about-story-accent .big { font-size: 36px; }
  .about-quote { font-size: clamp(18px, 5vw, 28px); }
  .about-body-text { font-size: 13px; }
  .about-body-text br { display: none; }

  /* ─── ABOUT: バリュー ─── */
  .values { padding: 80px 0; }
  .values-inner { padding: 0 20px; }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .value-card { padding: 24px 20px; }

  /* ─── ABOUT: スタッフ詳細 ─── */
  .staff-section { padding: 80px 0; }
  .staff-section-inner { padding: 0 20px; }
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }

  /* ─── ABOUT: ギャラリー ─── */
  .gallery { padding: 60px 0; }
  .gallery-inner { padding: 0 20px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
    margin-top: 36px;
  }
  .gallery-item:first-child { grid-row: auto; grid-column: 1 / 3; }

  /* ─── CONTACT: メイン ─── */
  .contact-grid { padding: 60px 0; }
  .contact-grid-inner { padding: 0 20px; }
  .contact-info-title { font-size: 24px; }
  .contact-detail-item { padding: 16px 0; }

  /* ─── CONTACT: SNSリスト ─── */
  .contact-sns-list { margin-top: 8px; }
  .contact-sns-item { gap: 12px; }

  /* ─── CONTACT: FAQ ─── */
  .faq-section { padding: 60px 0; }
  .faq-inner { padding: 0 20px; }
  .faq-question { font-size: 14px; padding: 20px 0; }
  .faq-answer-inner { font-size: 13px; line-height: 1.9; }

  /* ─── CONTACT: アクセス動画 ─── */
  .access-video-section { padding: 48px 0; }
  .access-video-inner { padding: 0 20px; }
  .access-video-desc { font-size: 13px; }

  /* ─── CONTACT: SNSセクション ─── */
  .sns-section { padding: 48px 0; }
  .sns-links-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* ─── MENU: ページ内レスポンシブは menu.html インラインCSSで対応済み ─── */
  .menu-list { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr 1fr; }
}