/*
Theme Name: おはじき新宿 リニューアル
Theme URI: https://www.ohajikishinjyuku.com/
Author: おはじき新宿
Description: 地鶏割烹 おはじき新宿 公式サイト リニューアルテーマ
Version: 1.0.0
Tags: restaurant, japanese, dark
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --washi: #F5EFE4;
  --washi-light: #FAF6EE;
  --washi-dark: #EDE3D0;
  --sumi: #2B2520;
  --sumi-soft: #4A3F36;
  --ai: #2D4A5F;
  --ai-deep: #1E3544;
  --kaki: #C65D2E;
  --kaki-light: #E07A4C;
  --ki: #D4A84B;
  --matcha: #7A8A4D;
  --akane: #A84443;
  --line: #D9CDB8;

  --font-mincho: 'Shippori Mincho', 'Yu Mincho', 'YuMincho', serif;
  --font-handwriting: 'Klee One', 'Shippori Mincho', serif;
  --font-sans: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--washi);
  color: var(--sumi);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(198, 93, 46, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(45, 74, 95, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   TOP BAR (HEADER)
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 205, 184, 0.5);
  transition: all 0.3s ease;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 22px;
  color: var(--sumi);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--kaki);
  color: var(--washi-light);
  border-radius: 50%;
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
}

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

.nav a:not(.reserve-btn) {
  font-family: var(--font-mincho);
  color: var(--sumi-soft);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--kaki);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav a:hover::after { width: 100%; }

.reserve-btn {
  background: var(--kaki);
  color: var(--washi-light);
  padding: 14px 36px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 2px;
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(198,93,46,0.35);
  white-space: nowrap;
}

.reserve-btn:hover {
  background: var(--sumi);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sumi);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 120px 40px 60px;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-text { position: relative; z-index: 2; }

.hero-kicker {
  font-family: var(--font-handwriting);
  font-size: 16px;
  color: var(--kaki);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--kaki);
}

.hero-title {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.15;
  color: var(--sumi);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-title .accent {
  color: var(--kaki);
  position: relative;
  display: inline-block;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--ki);
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}

.hero-desc {
  font-family: var(--font-mincho);
  font-size: 17px;
  line-height: 2;
  color: var(--sumi-soft);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.btn-primary {
  background: var(--sumi);
  color: var(--washi-light);
  padding: 18px 36px;
  border-radius: 2px;
  font-family: var(--font-mincho);
  font-size: 15px;
  letter-spacing: 0.15em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--kaki);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(198, 93, 46, 0.25);
}

.btn-phone {
  font-family: var(--font-mincho);
  color: var(--sumi);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sumi);
  transition: color 0.2s;
}

.btn-phone:hover { color: var(--kaki); border-color: var(--kaki); }

.btn-phone .phone-num {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.photo-frame {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(43, 37, 32, 0.22), 0 4px 12px rgba(43, 37, 32, 0.12);
  transition: transform 0.5s ease;
}

.photo-frame:hover { transform: translateY(-10px) rotate(0deg) !important; }

.photo-1 {
  width: 72%; height: 58%;
  top: 0; right: -2%;
  transform: rotate(2deg);
  z-index: 2;
}

.photo-2 {
  width: 60%; height: 52%;
  bottom: 0; left: -2%;
  transform: rotate(-2deg);
  z-index: 3;
  box-shadow: 0 28px 70px rgba(43, 37, 32, 0.28), 0 4px 12px rgba(43, 37, 32, 0.15);
}

.photo-3 {
  width: 32%; height: 50%;
  bottom: 4%; right: 4%;
  transform: rotate(1.5deg);
  z-index: 1;
}

.photo-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--washi-light);
  font-family: var(--font-mincho);
  font-size: 14px;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Photo placeholder */
.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #4A3F36 0%, #2B2520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,239,228,0.3);
  font-family: var(--font-mincho);
  font-size: 13px;
  letter-spacing: 0.1em;
  flex-direction: column;
  gap: 8px;
}

.photo-placeholder::before {
  content: '📷';
  font-size: 32px;
  opacity: 0.4;
}

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

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-en {
  font-family: var(--font-handwriting);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--kaki);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--sumi);
  line-height: 1.3;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--kaki);
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.story-image {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #4A3F36 0%, #2B2520 100%);
  border-radius: 6px;
  overflow: hidden;
}

.story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-image-label {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--kaki);
  color: var(--washi-light);
  padding: 12px 24px;
  font-family: var(--font-mincho);
  font-size: 13px;
  letter-spacing: 0.15em;
  box-shadow: 0 8px 24px rgba(198, 93, 46, 0.3);
}

.story-text .section-en { text-align: left; }
.story-text .section-title { text-align: left; margin-bottom: 32px; }

.story-body {
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 2.2;
  color: var(--sumi-soft);
  margin-bottom: 20px;
}

.story-signature {
  font-family: var(--font-handwriting);
  font-size: 22px;
  color: var(--kaki);
  margin-top: 32px;
  letter-spacing: 0.05em;
}

/* ============================================================
   DISH SECTION
   ============================================================ */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dish-card {
  position: relative;
}

.dish-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  background: linear-gradient(135deg, #4A3F36 0%, #2B2520 100%);
}

.dish-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover .dish-image img { transform: scale(1.05); }

.dish-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 64px;
  height: 64px;
  background: var(--kaki);
  color: var(--washi-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mincho);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.3;
  transform: rotate(8deg);
  box-shadow: 0 4px 12px rgba(198, 93, 46, 0.4);
}

.dish-info { padding: 24px 4px 0; }

.dish-category {
  font-family: var(--font-handwriting);
  font-size: 13px;
  color: var(--kaki);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.dish-name {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 22px;
  color: var(--sumi);
  margin-bottom: 10px;
  line-height: 1.4;
}

.dish-desc {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 1.9;
  color: var(--sumi-soft);
}

.dish-price {
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--sumi);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.dish-price .amount {
  font-size: 18px;
  font-weight: 600;
  color: var(--kaki);
}

.dish-more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.btn-outline {
  border: 1px solid var(--sumi);
  color: var(--sumi);
  padding: 16px 44px;
  border-radius: 2px;
  font-family: var(--font-mincho);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: var(--sumi);
  color: var(--washi-light);
}

/* ============================================================
   STAFF SECTION
   ============================================================ */
.staff-section {
  padding: 120px 40px;
  background: var(--sumi);
  color: var(--washi-light);
}

.staff-section .section-en { color: var(--ki); }
.staff-section .section-title { color: var(--washi-light); }

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.staff-card {
  text-align: center;
}

.staff-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #3a2f28 0%, #1E1916 100%);
  margin-bottom: 20px;
}

.staff-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}

.staff-role {
  font-family: var(--font-handwriting);
  font-size: 12px;
  color: var(--ki);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.staff-name {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 700;
  color: var(--washi-light);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.furigana {
  font-family: var(--font-handwriting);
  font-size: 11px;
  color: var(--kaki-light);
  letter-spacing: 0.2em;
  font-weight: 400;
}

.staff-quote {
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 1.9;
  color: rgba(245, 239, 228, 0.6);
}

/* ============================================================
   SCENE SECTION
   ============================================================ */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 2px;
}

.scene-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #4A3F36 0%, #2B2520 100%);
}

.scene-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.85) 0%, transparent 60%);
  z-index: 1;
}

.scene-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.scene-content {
  padding: 32px;
  color: var(--washi-light);
  width: 100%;
  position: relative;
  z-index: 2;
}

.scene-tag {
  font-family: var(--font-handwriting);
  font-size: 13px;
  color: var(--ki);
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}

.scene-title {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.scene-desc {
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.9;
}

/* ============================================================
   SAKE BANNER
   ============================================================ */
.sake-banner {
  padding: 100px 40px;
  background: linear-gradient(rgba(10,8,6,0.82), rgba(10,8,6,0.82)), #2B2520;
  background-size: cover;
  background-position: center;
  color: var(--washi-light);
  position: relative;
  overflow: hidden;
}

.sake-banner::before {
  content: '酒';
  position: absolute;
  font-family: var(--font-mincho);
  font-size: 600px;
  color: rgba(245, 239, 228, 0.04);
  top: -150px;
  right: -100px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.sake-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sake-text .section-en { color: var(--ki); }

.sake-text h2 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.3;
  margin: 12px 0 30px;
}

.sake-text p {
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 2.1;
  opacity: 0.85;
  margin-bottom: 16px;
}

.sake-link {
  font-family: var(--font-mincho);
  color: var(--ki);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ki);
  transition: all 0.3s;
  margin-top: 16px;
}

.sake-link:hover { gap: 20px; }

.sake-visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sake-cup {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A3F36 0%, #2B2520 100%);
  box-shadow: inset 0 -30px 60px rgba(0,0,0,0.4), 0 30px 80px rgba(212,168,75,0.2);
  overflow: hidden;
}

.sake-cup img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.info-details dt {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 14px;
  color: var(--kaki);
  letter-spacing: 0.15em;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-bottom: 8px;
}

.info-details dt:first-of-type {
  padding-top: 0;
  border-top: none;
}

.info-details dd {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--sumi);
  line-height: 1.8;
  padding-bottom: 20px;
}

.bar-highlight {
  display: inline-block;
  background: var(--ai-deep);
  color: var(--ki);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  margin-left: 4px;
  font-family: var(--font-handwriting);
  vertical-align: middle;
}

.info-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.info-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ============================================================
   NEWS BANNER (LUNCH & BAR)
   ============================================================ */
.news-banner {
  background: var(--washi-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(43,37,32,0.06), 0 -2px 20px rgba(43,37,32,0.06);
}

.banner-card {
  border-left: 3px solid transparent;
  transition: border-color 0.3s, opacity 0.2s;
}

.banner-lunch {
  border-left-color: var(--kaki);
}

.banner-bar {
  border-left-color: var(--ai);
}

.news-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}

.banner-card {
  padding: 60px 56px;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
}

.banner-card:hover { opacity: 0.8; }

.banner-lunch { border-right: none; }

.news-divider {
  background: var(--line);
  align-self: stretch;
  margin: 40px 0;
}

.news-en {
  font-family: var(--font-handwriting);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--kaki);
  margin-bottom: 12px;
}

.banner-bar .news-en { color: var(--ai); }

.news-title {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 22px;
  color: var(--sumi);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-desc {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 1.9;
  color: var(--sumi-soft);
  margin-bottom: 20px;
}

.news-meta {
  font-family: var(--font-handwriting);
  font-size: 13px;
  color: var(--kaki);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.banner-bar-meta { color: var(--ai); }

.news-link {
  font-family: var(--font-mincho);
  font-size: 13px;
  color: var(--sumi);
  letter-spacing: 0.1em;
}

/* ============================================================
   SNS SECTION
   ============================================================ */
.sns-grid {
  max-width: 900px;
  margin: 0 auto;
}

.sns-block { background: var(--washi-light); border-radius: 8px; padding: 40px; }

.sns-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.sns-icon {
  width: 28px; height: 28px;
  color: var(--sumi);
  flex-shrink: 0;
}

.sns-name {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 16px;
  color: var(--sumi);
}

.sns-handle {
  font-family: var(--font-handwriting);
  font-size: 13px;
  color: var(--kaki);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: block;
}

.sns-follow-btn {
  margin-left: auto;
  border: 1px solid var(--sumi);
  color: var(--sumi);
  padding: 8px 20px;
  border-radius: 2px;
  font-family: var(--font-mincho);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.sns-follow-btn:hover {
  background: var(--sumi);
  color: var(--washi-light);
}

.sns-feed-grid {
  display: grid;
  gap: 8px;
}

.sns-feed-3col { grid-template-columns: repeat(3, 1fr); }

.sns-post {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--washi-dark);
}

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

.sns-post:hover img { transform: scale(1.05); }

.sns-post-placeholder {
  aspect-ratio: 4/3;
  border-radius: 4px;
  background: var(--washi-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--sumi-soft);
  opacity: 0.4;
}

/* ============================================================
   RECRUIT BANNER
   ============================================================ */
.recruit-banner { background: var(--sumi); }

.recruit-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 40px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.recruit-inner:hover { opacity: 0.8; }

.recruit-en {
  font-family: var(--font-handwriting);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--kaki);
  writing-mode: vertical-rl;
  flex-shrink: 0;
}

.recruit-body { flex: 1; }

.recruit-title {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 700;
  color: var(--washi-light);
  margin-bottom: 8px;
}

.recruit-desc {
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 1.9;
  color: rgba(245, 239, 228, 0.6);
}

.recruit-arrow {
  font-size: 24px;
  color: var(--kaki);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.recruit-inner:hover .recruit-arrow { transform: translateX(6px); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  background: var(--sumi);
  padding: 120px 40px;
  text-align: center;
}

.cta-kicker {
  font-family: var(--font-handwriting);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--ki);
  margin-bottom: 20px;
}

.cta h2 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--washi-light);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cta p {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: rgba(245, 239, 228, 0.6);
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta {
  background: var(--kaki);
  color: var(--washi-light);
  padding: 18px 44px;
  border-radius: 2px;
  font-family: var(--font-mincho);
  font-size: 15px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--kaki-light);
  transform: translateY(-2px);
}

.btn-cta-outline {
  border: 1px solid rgba(245, 239, 228, 0.3);
  color: var(--washi-light);
  padding: 17px 40px;
  border-radius: 2px;
  font-family: var(--font-mincho);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta-outline:hover {
  border-color: var(--washi-light);
  background: rgba(245, 239, 228, 0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1E1916;
  padding: 80px 40px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(217, 205, 184, 0.1);
}

.footer-brand h3 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 18px;
  color: var(--washi-light);
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2;
  color: rgba(245, 239, 228, 0.5);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-handwriting);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--kaki);
  margin-bottom: 20px;
}

.footer-nav a,
.footer-contact a {
  display: block;
  font-family: var(--font-mincho);
  font-size: 14px;
  color: rgba(245, 239, 228, 0.5);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--washi-light); }

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

.footer-bottom p {
  font-family: var(--font-handwriting);
  font-size: 12px;
  color: rgba(245, 239, 228, 0.3);
  letter-spacing: 0.05em;
}

/* ============================================================
   DRINK PAGE (page-drink.php 用)
   ============================================================ */
.drink-hero {
  min-height: 60vh;
  background: linear-gradient(rgba(10,8,6,0.7), rgba(10,8,6,0.7)), var(--sumi);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 80px;
}

.drink-hero h1 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--washi-light);
  line-height: 1.2;
  margin-bottom: 20px;
}

.drink-hero .hero-sub {
  font-family: var(--font-handwriting);
  font-size: 16px;
  color: var(--ki);
  letter-spacing: 0.2em;
}

.sake-temp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 60px;
}

.sake-temp-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.sake-temp-item:last-child { border-right: none; }

.sake-temp-name {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 20px;
  color: var(--sumi);
  margin-bottom: 8px;
}

.sake-temp-celsius {
  font-family: var(--font-handwriting);
  font-size: 13px;
  color: var(--kaki);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.sake-temp-desc {
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 1.8;
  color: var(--sumi-soft);
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.drink-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.drink-card:hover {
  box-shadow: 0 8px 32px rgba(43, 37, 32, 0.1);
}

.drink-card-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #4A3F36, #2B2520);
  overflow: hidden;
}

.drink-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.drink-card:hover .drink-card-image img { transform: scale(1.05); }

.drink-card-body { padding: 24px; }

.drink-card-type {
  font-family: var(--font-handwriting);
  font-size: 12px;
  color: var(--kaki);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.drink-card-name {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 20px;
  color: var(--sumi);
  margin-bottom: 10px;
}

.drink-card-origin {
  font-family: var(--font-handwriting);
  font-size: 13px;
  color: var(--sumi-soft);
  margin-bottom: 12px;
}

.drink-card-desc {
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 1.9;
  color: var(--sumi-soft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 100px; }
  .hero-visual { height: 400px; }
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .sake-inner { grid-template-columns: 1fr; }
  .sake-visual { 
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.sake-cup {
  width: 240px;
  height: 240px;
}
  .info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sake-temp-grid { grid-template-columns: repeat(3, 1fr); }
  .drink-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar-inner { padding: 12px 20px; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(245, 239, 228, 0.98);
    z-index: 100;
    justify-content: center;
    align-items: center;
    gap: 12px;
    overflow: hidden;
  }
  .nav.open a {
    font-size: 18px !important;
    width: 100%;
    text-align: center;
    padding: 6px 0;
  }
  .nav.open .reserve-btn {
  font-weight: 700;
  font-size: 14px;
  padding: 14px 36px;
  box-shadow: 0 2px 12px rgba(198,93,46,0.35);
    display: inline-flex !important;
    margin-top: 16px;
  }
  .nav.open a { font-size: 20px; }
  .hamburger { display: flex; z-index: 101; }

  .section { padding: 80px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-title { font-size: 36px; }
  .hero-visual { height: 300px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .dish-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .scene-grid { grid-template-rows: repeat(4, 260px); }
  .news-banner-inner { grid-template-columns: 1fr; }
  .news-divider { display: none; }
  .banner-card { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .sake-temp-grid { grid-template-columns: 1fr 1fr; }
  .drink-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }

  .topbar-inner .reserve-btn { display: inline-flex; padding: 14px 36px; }
}

/* ============================================================
   RESPONSIVE FIXES（スマホ最適化）
   ============================================================ */
@media (max-width: 768px) {

  /* 今月のおすすめ → 1カラム */
  #pickup > div > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* シーンのオーバーレイを濃く */
  .scene-card::before {
    background: linear-gradient(to top, rgba(10,8,6,0.92) 0%, rgba(10,8,6,0.4) 60%) !important;
  }

  /* シーンのタイトルを小さく */
  .scene-title { font-size: 18px !important; }
  .scene-desc { font-size: 12px !important; }

  /* ハンバーガーメニュー展開時 */
  .nav.open {
    padding: 20px;
    gap: 20px !important;
  }
  .nav.open a {
    font-size: 18px !important;
    letter-spacing: 0.05em;
  }
  .nav.open .reserve-btn {
  font-weight: 700;
  font-size: 14px;
  padding: 14px 36px;
  box-shadow: 0 2px 12px rgba(198,93,46,0.35);
    display: inline-flex !important;
    margin-top: 16px;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px 40px !important;
    letter-spacing: 0.1em !important;
    width: 80%;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(198,93,46,0.4);
  }

  /* ヒーロービジュアルの余白削除 */
  .hero-visual { margin-top: 0; }

  /* セクションのpadding調整 */
  .section { padding: 60px 20px !important; }

  /* staffセクションのoverfow */
  .staff-section { overflow: hidden; }

  /* drink-grid スマホ1カラム */
  .drink-grid { grid-template-columns: 1fr !important; }

  /* sake-temp-grid スマホ1カラム */
  .sake-temp-grid { grid-template-columns: 1fr !important; }

  /* footer-nav スマホ表示 */
  .footer-inner { padding: 0 20px; }

  /* ニュースバナー padding */
  .banner-card { padding: 32px 20px !important; }
}

@media (max-width: 768px) {
  .pickup-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .sake-visual { display: none !important; }
  .sake-banner {
    background-color: rgba(10,8,6,0.7) !important;
  }
}
@media (max-width: 768px) {
  /* シーン：1カラムに */
  .scene-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, 320px) !important;
  }

  /* シーンタイトル：1行に収める */
  .section-title {
    white-space: nowrap;
    font-size: clamp(22px, 4vw, 32px) !important;
  }

  /* シーンテキスト：視認性向上 */
  .scene-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9) !important;
  }

  .scene-desc {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9) !important;
    line-height: 1.8 !important;
  }

  .scene-tag {
    text-shadow: 0 1px 6px rgba(0,0,0,0.9) !important;
  }

  /* シーンオーバーレイを濃く */
  .scene-card::before {
    background: linear-gradient(to top, rgba(10,8,6,0.95) 0%, rgba(10,8,6,0.3) 60%) !important;
  }
}
@media (max-width: 768px) {
  /* メニューページ看板料理・ドリンクカード 1カラム */
  .drink-grid,
  #featured > div[style*="grid-template-columns:repeat(3"],
  #featured > div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  /* おすすめ一品 2カラムに */
  #ippin > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 768px) {
  /* コース料理 1カラム */
  #course > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* メニューリスト 1カラム */
  #menu-list > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* メニューリストの各アイテム余白調整 */
  #menu-list div[style*="display:flex;justify-content:space-between"] {
    gap: 8px;
  }

  /* メニューリストの価格を右寄せ固定 */
  #menu-list span[style*="white-space:nowrap"] {
    text-align: right;
    flex-shrink: 0;
  }

  /* お酒ページの温度チャート 1カラム */
  .sake-temp-grid {
    grid-template-columns: 1fr !important;
  }

  /* その他ドリンクメニュー 1カラム */
  #other-drinks > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  /* おすすめ一品の2カラムリスト → 1カラム */
  #ippin > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  /* 串焼きの2カラム → 1カラム */
  #yakitori div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  /* お酒ページ 日本酒・ワイン 2カラムに */
  #nihonshu .drink-grid,
  #nihonshu > div > div[style*="grid-template-columns:repeat(4"],
  #wine > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ドリンクカードのテキスト調整 */
  .drink-card-name {
    font-size: 16px !important;
  }
  .drink-card-desc {
    font-size: 12px !important;
  }
}
@media (max-width: 768px) {
  /* アクセス行き方 1カラム */
  #access div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  /* ランチ定食 1カラム */
  #teishoku > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* BARページ コンセプト・ドリンク・ボトル・フード 1カラム */
  #concept > div > div[style*="grid-template-columns:repeat(3"],
  #drink > div > div[style*="grid-template-columns:repeat(3"],
  #bottle > div > div[style*="grid-template-columns:repeat(3"],
  #food > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* ヒーロー説明文：左寄せ・白・太く */
  .hero section > div p,
  section[style*="min-height:50vh"] p {
    text-align: left !important;
    color: rgba(245,239,228,0.95) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8) !important;
  }
}

@media (max-width: 768px) {
  /* ヒーロー説明文：白・太く */
  section[style*="min-height:50vh"] p {
    color: rgba(245,239,228,0.95) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8) !important;
  }
}

/* Instagram フィード 正方形統一 */
.sbi_photo_wrap,
.sbi_photo,
.sbi-media-wrapper {
  aspect-ratio: 1/1 !important;
  overflow: hidden !important;
}
.sbi_photo img,
.sbi-media-wrapper img,
.sbi-media-wrapper video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
