/* ============================================================
   とりや 公式サイト — メインスタイルシート
   カラー：オレンジ・黄色 + ホワイト背景（ファミリー向け）
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
  --orange:       #F47B20;
  --orange-dark:  #D96010;
  --orange-light: #FFA040;
  --yellow:       #FFD600;
  --yellow-light: #FFF3A3;
  --white:        #FFFFFF;
  --off-white:    #FFF9F0;
  --bg-light:     #FFFBF2;
  --text-dark:    #2B1A00;
  --text-mid:     #5A3E10;
  --text-light:   #9A7240;
  --border:       #FFE0A0;
  --shadow:       rgba(244, 123, 32, 0.15);
  --font-serif:   'Noto Serif JP', 'Yu Mincho', serif;
  --font-sans:    'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
  --radius:       12px;
  --radius-sm:    6px;
  --transition:   0.25s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Utility ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 72px 0; }
.section-padding-sm { padding: 48px 0; }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== Section Heading ===== */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading .en {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-heading .ja {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.section-heading .ja span {
  color: var(--orange);
}
.section-heading .desc {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px var(--shadow);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.btn-yellow {
  background: var(--yellow);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(255,214,0,0.3);
}
.btn-yellow:hover { background: #e6c000; transform: translateY(-2px); }

/* ===== Badge / Tag ===== */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-orange { background: var(--orange); color: var(--white); }
.badge-yellow { background: var(--yellow); color: var(--text-dark); }
.badge-new    { background: #E53935; color: var(--white); }
.badge-season { background: #43A047; color: var(--white); }
.badge-osusume{ background: var(--orange-light); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header-logo-text .sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.header-logo-text .name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.header-logo-text .name span {
  color: var(--text-dark);
}

/* Global Nav */
.global-nav { display: flex; align-items: center; gap: 4px; }
.global-nav a {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
  position: relative;
}
.global-nav a:hover,
.global-nav a.active {
  background: var(--orange-light);
  color: var(--white);
}
.global-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
/* Uber Eats リンク */
.global-nav a.nav-ubereats {
  background: #06C167;
  color: var(--white);
  font-weight: 700;
}
.global-nav a.nav-ubereats:hover {
  background: #04a857;
  color: var(--white);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.header-tel i { font-size: 14px; }

/* Hamburger */
/* ハンバーガーボタン */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  box-shadow: 0 2px 10px rgba(244,123,32,0.35);
  transition: background var(--transition), transform var(--transition);
}
.hamburger:hover { background: var(--orange-dark); transform: scale(1.05); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.hamburger.open { background: var(--orange-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Mobile Nav — フルスクリーンオーバーレイ
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #fff9f0 0%, #fff3d0 100%);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* 開閉アニメーション用 */
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* 閉じるボタン */
.mobile-nav-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(244,123,32,0.4);
  transition: background var(--transition), transform var(--transition);
}
.mobile-nav-close:hover { background: var(--orange-dark); transform: rotate(90deg) scale(1.1); }

/* ロゴエリア */
.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.mobile-nav-logo img { width: 52px; height: 52px; object-fit: contain; }
.mobile-nav-logo-text { line-height: 1.2; }
.mobile-nav-logo-text .sub { font-size: 10px; color: var(--text-light); letter-spacing: 0.1em; }
.mobile-nav-logo-text .name { font-family: var(--font-serif); font-size: 22px; font-weight: 900; color: var(--text-dark); }

/* ナビリンクリスト */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  border-radius: 14px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.mobile-nav-links a i.arrow {
  color: var(--orange);
  font-size: 13px;
  transition: transform var(--transition);
}
.mobile-nav-links a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(244,123,32,0.3);
}
.mobile-nav-links a:hover i.arrow { color: var(--white); transform: translateX(4px); }

/* 電話ボタン */
.mobile-nav-tel {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.mobile-nav-tel a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(244,123,32,0.4);
  transition: all var(--transition);
}
.mobile-nav-tel a:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,123,32,0.45); }
.mobile-nav-tel span { font-size: 12px; color: var(--text-light); }

/* ============================================================
   HERO （トップページ）
   ============================================================ */
.hero {
  margin-top: 72px;
  position: relative;
  min-height: 540px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF3D0 50%, #FFE8B0 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,214,0,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,123,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.hero-catch em {
  color: var(--orange);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img > img:first-child {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 20px 40px rgba(244,123,32,0.3));
  animation: float 4s ease-in-out infinite;
  border-radius: var(--radius);
  object-fit: cover;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero-chara {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  animation: float 3.5s ease-in-out infinite reverse;
}

/* Ticker */
.ticker {
  background: var(--orange);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-label {
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 12px;
  border-radius: 3px;
  margin-right: 20px;
  flex-shrink: 0;
}
.ticker-item {
  font-size: 13px;
  font-weight: 600;
  padding-right: 60px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SEASONAL SECTION（季節の商品）
   ============================================================ */
.seasonal { background: var(--bg-light); }
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px var(--shadow);
  border-color: var(--orange-light);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-card-body {
  padding: 18px;
}
.product-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.product-card-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.product-card-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}
.product-card-content {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.content-tag {
  background: var(--yellow-light);
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--yellow);
}
.product-card-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
}
.product-card-price small {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

/* ============================================================
   RECOMMEND（おすすめ商品）
   ============================================================ */
.recommend { background: var(--white); }
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rec-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.rec-card:hover {
  border-color: var(--orange-light);
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-4px);
}
.rec-card-rank {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  color: var(--white);
}
.rec-card-rank.rank1 { background: #D4AF37; }
.rec-card-rank.rank2 { background: #A8A8A8; }
.rec-card-rank.rank3 { background: #CD7F32; }
.rec-card-rank.rank4 { background: var(--orange-light); }
.rec-card-img {
  width: 160px;
  flex-shrink: 0;
  object-fit: cover;
}
.rec-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.rec-card-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}
.rec-card-desc { font-size: 13px; color: var(--text-light); }
.rec-card-price { font-size: 20px; font-weight: 900; color: var(--orange); }
.rec-card-price small { font-size: 12px; color: var(--text-light); font-weight: 400; }

/* ============================================================
   NEWS（新着情報）
   ============================================================ */
.news { background: var(--off-white); }
.news-list { max-width: 800px; margin: 0 auto; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.news-item:hover { padding-left: 8px; }
.news-item:last-child { border-bottom: none; }
.news-date {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 88px;
}
.news-cat { flex-shrink: 0; padding-top: 2px; }
.news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  transition: color var(--transition);
}
.news-item:hover .news-title { color: var(--orange); }
.news-more { text-align: center; margin-top: 32px; }

/* ============================================================
   SHOP INTRO（店舗紹介）
   ============================================================ */
.shop-intro { background: var(--white); }
.shop-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.shop-intro-img {
  position: relative;
}
.shop-intro-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.shop-intro-img .chara-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 90px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.shop-intro-body {}
.shop-intro-body .section-heading { text-align: left; margin-bottom: 20px; }
.shop-intro-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 28px;
}
.shop-info-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-light);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.info-item i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.info-item-body {}
.info-item-label { font-size: 11px; color: var(--text-light); font-weight: 600; }
.info-item-value { font-size: 14px; font-weight: 700; color: var(--text-dark); }

/* ============================================================
   SNS SECTION
   ============================================================ */
.sns-section { background: var(--bg-light); }
.sns-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.sns-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.sns-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.sns-item:hover img { transform: scale(1.08); }
.sns-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244,123,32,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.sns-item:hover .sns-item-overlay { opacity: 1; }
.sns-item-overlay i { color: var(--white); font-size: 24px; }
.sns-links { display: flex; justify-content: center; gap: 16px; }
.sns-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}
.sns-link-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.sns-link-btn.ubereats { background: #06C167; color: var(--white); }
.sns-link-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ============================================================
   PAGE HERO（サブページ共通）
   ============================================================ */
.page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E") repeat;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-desc { font-size: 15px; color: rgba(255,255,255,0.85); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-intro {
  background: var(--bg-light);
  padding: 48px 0;
  text-align: center;
}
.menu-intro-img {
  max-width: 680px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.gosanke-section { background: var(--white); }
.gosanke-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.gosanke-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 3px solid transparent;
  transition: all var(--transition);
}
.gosanke-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px var(--shadow); }
.gosanke-card.kiyohara { border-color: var(--orange); }
.gosanke-card.amatare  { border-color: var(--yellow); }
.gosanke-card.shio     { border-color: #F4C87A; }
.gosanke-label {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
}
.kiyohara .gosanke-label { background: var(--orange); color: var(--white); }
.amatare  .gosanke-label { background: var(--yellow); color: var(--text-dark); }
.shio     .gosanke-label { background: #E8850A; color: var(--white); }
.gosanke-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gosanke-body { padding: 14px 16px; background: var(--white); }
.gosanke-copy { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.gosanke-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.gosanke-unit { font-size: 13px; color: var(--text-mid); }
.gosanke-price { font-size: 22px; font-weight: 900; color: var(--orange); }
.gosanke-price small { font-size: 12px; color: var(--text-light); font-weight: 400; }

/* セット価格ボックス */
.set-box {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: var(--radius);
  padding: 28px 32px;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}
.set-box-title { font-size: 14px; font-weight: 700; margin-bottom: 16px; opacity: 0.9; }
.set-box-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.set-item {}
.set-item-name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.set-item-price { font-size: 32px; font-weight: 900; }
.set-item-price span { font-size: 14px; font-weight: 400; opacity: 0.8; }
.set-item-save {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

/* 弁当メニュー */
.bento-section { background: var(--off-white); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.bento-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.bento-card:hover { border-color: var(--orange-light); box-shadow: 0 8px 28px var(--shadow); transform: translateY(-4px); }
.bento-card-img { width: 160px; flex-shrink: 0; object-fit: cover; }
.bento-card-noimg {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow-light), var(--off-white));
  font-size: 40px;
  color: var(--orange-light);
}
.bento-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.bento-card-name { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--text-dark); }
.bento-card-contents { display: flex; flex-wrap: wrap; gap: 4px; }
.bento-card-price { font-size: 22px; font-weight: 900; color: var(--orange); margin-top: 4px; }
.bento-card-price small { font-size: 12px; color: var(--text-light); font-weight: 400; }

/* からあげ弁当テーブル */
.karaage-bento-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.karaage-bento-table thead tr { background: var(--orange); color: var(--white); }
.karaage-bento-table thead th {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.karaage-bento-table tbody tr:nth-child(even) { background: var(--bg-light); }
.karaage-bento-table tbody tr:nth-child(odd)  { background: var(--white); }
.karaage-bento-table tbody td {
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.karaage-bento-table tbody td:first-child { font-weight: 700; color: var(--text-dark); text-align: left; }
.karaage-bento-table .price-cell { font-weight: 900; color: var(--orange); font-size: 16px; }

/* サイドメニュー */
.side-menu-section { background: var(--white); }
.side-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.side-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}
.side-card:hover { border-color: var(--orange-light); transform: translateY(-4px); }
.side-card-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.side-card-noimg {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow-light), var(--off-white));
  font-size: 36px;
  color: var(--orange-light);
}
.side-card-body { padding: 14px; }
.side-card-name { font-family: var(--font-serif); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.side-card-desc { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.side-card-price { font-size: 20px; font-weight: 900; color: var(--orange); }
.side-card-price small { font-size: 12px; color: var(--text-light); font-weight: 400; }

/* ============================================================
   ABOUT PAGE — 店舗情報
   ============================================================ */
.about-info-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-table-wrap {}
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  width: 110px;
  padding: 16px 18px;
  background: var(--bg-light);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  vertical-align: top;
  white-space: nowrap;
  border-right: 2px solid var(--border);
}
.info-table th i { color: var(--orange); margin-right: 6px; }
.info-table td {
  padding: 16px 18px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.map-wrap iframe { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: var(--off-white); }
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group label .required {
  color: #E53935;
  font-size: 11px;
  margin-left: 4px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--orange); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-submit { text-align: center; margin-top: 28px; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
}
.footer-main {
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { width: 52px; }
.footer-logo-text {}
.footer-logo-text .sub { font-size: 10px; color: rgba(255,255,255,0.5); }
.footer-logo-text .name { font-family: var(--font-serif); font-size: 20px; color: var(--white); font-weight: 900; }
.footer-logo-text .name span { color: var(--white); }
.footer-desc { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
.footer-sns { display: flex; gap: 12px; }
.footer-sns a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all var(--transition);
}
.footer-sns a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.05em;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--orange-light);
}
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-hours { font-size: 13px; line-height: 1.9; }
.footer-hours strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ============================================================
   PAGE TOP BUTTON
   ============================================================ */
.page-top-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
  border: none;
}
.page-top-btn.visible { opacity: 1; pointer-events: all; }
.page-top-btn:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gosanke-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .recommend-grid { grid-template-columns: 1fr; }
  .shop-intro-inner { grid-template-columns: 1fr; }
  .shop-intro-img { max-width: 500px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .sns-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-grid { grid-template-columns: 1fr; }
  .side-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section-padding { padding: 48px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-img { display: none; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .recommend-grid { grid-template-columns: 1fr; }
  .rec-card { flex-direction: column; }
  .rec-card-img { width: 100%; height: 200px; }
  .rec-card-rank { width: 100%; height: 36px; writing-mode: horizontal-tb; }
  .global-nav { display: none; }
  .header-tel { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .sns-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-form-wrap { padding: 28px 20px; }
  .karaage-bento-table { font-size: 12px; }
  .karaage-bento-table thead th,
  .karaage-bento-table tbody td { padding: 10px 8px; }
  .side-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card { flex-direction: column; }
  .bento-card-img { width: 100%; height: 180px; }
  .header-logo-text .name { font-size: 18px; }
}
