/* =====================================================
   丸港水産 新宿本店 — styles.css
   参照: 海鮮とうや (kaisen-touya-niigata.com)
   Font: 游明朝体 / Yu Mincho
===================================================== */

/* =====================================================
   CSS Variables
===================================================== */
:root {
  --dark:       #111111;
  --text:       #222222;
  --bg:         #f4f4f4;
  --white:      #ffffff;
  --navy:       #1e3a6e;
  --border:     #333333;
  --accent:     #ad0a0a;
  --hover:      darkorange;
  --font-serif: 游明朝体, "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/* =====================================================
   Reset & Base
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  letter-spacing: 0.05em;
}

img { max-width: 100%; height: auto; vertical-align: top; display: block; }

a { color: var(--text); text-decoration: none; transition: color 0.3s, opacity 0.3s; }
a:hover { color: var(--hover); }

ul, ol { list-style: none; }

/* =====================================================
   Container
===================================================== */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   Section Common
===================================================== */
.section-pad { padding: 60px 0; }

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
  font-family: var(--font-serif);
}

/* =====================================================
   Button
===================================================== */
.button {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 10px 40px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  background: transparent;
  position: relative;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}
.button::after {
  content: " >";
  display: inline;
}
.button:hover { background: var(--hover); color: #fff !important; border-color: var(--hover); }

.btn-reserve-pill {
  display: inline-block;
  background: var(--navy);
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background 0.3s;
  line-height: 1;
}
.btn-reserve-pill:hover { background: #2a52a0; color: #fff !important; }

/* =====================================================
   Fade Up Animation
===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0) 100%);
  padding: 0 16px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 10px;
}

.header-logo { text-decoration: none; flex-shrink: 0; }
.header-logo .logo-img { height: 48px; width: auto; object-fit: contain; display: block; }
.header-logo .logo-main {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-serif);
}
.header-logo .logo-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

/* 言語スイッチャー（ヘッダー内）— TranslatePress v2対応 */
.header-lang-switcher {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 400;
  flex-shrink: 0;
}
/* ラッパーのインラインCSS変数を上書き（白背景→透明） */
.header-lang-switcher .trp-shortcode-switcher__wrapper {
  --bg: transparent !important;
  --bg-hover: rgba(255,255,255,0.15) !important;
  --text: #ffffff !important;
  --text-hover: #ffffff !important;
  --border: 1px solid rgba(255,255,255,0.45) !important;
  --border-color: rgba(255,255,255,0.45) !important;
  --border-radius: 4px !important;
  --font-size: 1.3rem !important;
}
/* TranslatePress v2 のanchor/overlayはデフォルト位置のまま維持（壊さない） */
/* ドロップダウンリスト — 開いた時の見た目 */
.header-lang-switcher .trp-switcher-dropdown-list {
  min-width: 180px !important;
  background: #1e3a6e !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 6px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35) !important;
  z-index: 9999 !important;
  --bg: #1e3a6e !important;
  --bg-hover: #2a52a0 !important;
  --text: #ffffff !important;
  --text-hover: #ffffff !important;
  --border: none !important;
}
/* 国旗を非表示 → テキスト略称を表示 */
.header-lang-switcher .trp-flag-image { display: none !important; }
.header-lang-switcher .trp-language-item-name { display: inline !important; font-size: 1.2rem !important; font-weight: 600; letter-spacing: 0.05em; }
.header-lang-switcher .trp-language-item { gap: 0 !important; }

/* フローティングボタンを非表示 */
.trp-floating-switcher { display: none !important; }

/* モバイル固定フッターボタンバー */
.mobile-footer-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-footer-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    height: 56px;
    background: #111;
    border-top: 1px solid #333;
  }
  .mobile-footer-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
    text-decoration: none;
  }
  .mobile-footer-bar .mobile-footer-tel {
    background: #1a3a6e;
    border-right: 1px solid #333;
  }
  .mobile-footer-bar .mobile-footer-reserve {
    background: #ad0a0a;
  }
  .mobile-footer-bar .mfb-icon { font-size: 1.6rem; }
  /* モバイル固定バー分の余白 */
  body { padding-bottom: 56px; }

  /* モバイルヘッダー: 予約ボタン非表示、言語スイッチャーも非表示（モバイルメニュー内で代替） */
  .btn-reserve-pill { display: none; }
  .header-lang-switcher { display: none; }
}

/* Desktop nav — hidden on mobile */
.header-nav { display: none; }

/* Right side: reserve button + hamburger */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* =====================================================
   Mobile Menu
===================================================== */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--dark);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 80px 30px 40px;
  overflow-y: auto;
}
.mobile-menu.is-open { right: 0; }

.mobile-menu .mobile-nav ul { display: flex; flex-direction: column; }
.mobile-menu .mobile-nav ul li a {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-serif);
}
.mobile-menu .mobile-nav ul li a:hover { color: var(--hover); }

.mobile-reserve {
  display: block;
  margin-top: 30px;
  text-align: center;
  background: var(--navy);
  color: #fff !important;
  padding: 14px;
  border-radius: 4px;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.mobile-reserve:hover { background: #2a52a0; }

/* モバイルメニュー内言語スイッチャー */
.mobile-lang-switcher {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.mobile-lang-switcher .trp-language-switcher {
  position: static; bottom: auto; right: auto; transform: none;
  --bg: transparent !important;
  --bg-hover: rgba(255,255,255,0.1) !important;
  --text: #fff !important;
  --text-hover: #fff !important;
  --border: 1px solid rgba(255,255,255,0.4) !important;
  --border-color: rgba(255,255,255,0.4) !important;
}
.mobile-lang-switcher select {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 1.3rem;
}

.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.8rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-overlay.is-open { display: block; }

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 80px;
}

/* 丸ロゴマーク */
.hero-logo-mark {
  width: 120px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-logo-mark .hero-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}
.hero-logo-mark .mark-name {
  color: #fff;
  font-size: 1.6rem;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.hero-logo-mark .mark-en {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 4px;
  text-align: center;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  font-style: italic;
}

.hero-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.7);
  font-family: var(--font-serif);
}
.hero-title span { display: block; }

.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.55);
  animation: scrollLine 1.6s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =====================================================
   TOPICS Swiper
===================================================== */
.section-topics {
  background: var(--bg);
  padding: 60px 0;
  overflow: hidden;
}

.section-topics .section-title { margin-bottom: 30px; }

.topics-swiper {
  padding: 8px 4px 50px !important;
}

.topic-swiper-slide {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.tss-img { width: 100%; overflow: hidden; }
.tss-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.topic-swiper-slide:hover .tss-img img { transform: scale(1.04); }

.tss-body {
  padding: 20px 20px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tss-body h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: left;
}
.tss-body p {
  font-size: 1.3rem;
  color: #444;
  line-height: 2;
  flex: 1;
  text-align: left;
  min-height: 100px;
}

.tss-link {
  margin-top: 14px;
  text-align: right;
}
.tss-link a {
  font-size: 1.3rem;
  color: var(--text);
  font-family: var(--font-serif);
}
.tss-link a::after { content: " >>"; }
.tss-link a:hover { color: var(--hover); }

.swiper-button-prev,
.swiper-button-next {
  color: var(--text) !important;
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 1.8rem !important; }

/* =====================================================
   ABOUT
===================================================== */
.section-about {
  background: var(--dark);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.sptop-about { max-width: 680px; margin: 0 auto; }

.sptop-about-child h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 50px;
  font-family: var(--font-serif);
  color: #fff;
}

.about-blocks { display: flex; flex-direction: column; gap: 0; }

.about-block { margin-bottom: 32px; }

.about-deco {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  display: block;
}

.about-block p {
  font-size: 1.4rem;
  line-height: 2.2;
  color: rgba(255,255,255,0.8);
}

/* =====================================================
   POINT
===================================================== */
.section-point { background: var(--white); }

.sptop-points {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.sptop-points-child {
  padding: 50px 0;
  border-bottom: 1px solid #ebebeb;
}
.sptop-points-child:first-child { padding-top: 60px; }
.sptop-points-child:last-child  { border-bottom: none; padding-bottom: 60px; }

.points-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.points-text-container { width: 100%; }
.points-text-container h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  font-family: var(--font-serif);
}
.points-text-container p {
  font-size: 1.4rem;
  line-height: 2;
  color: #555;
  margin-bottom: 20px;
}

.points-image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}
.points-image-container img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.points-image-container img:first-child {
  grid-column: 1 / span 2;
  height: 200px;
}

/* =====================================================
   BLOG
===================================================== */
.section-blog {
  background: var(--bg);
  padding: 60px 0;
}

.newsblog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.newsblog li a {
  display: flex;
  align-items: stretch;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--text);
}
.newsblog li a:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  color: var(--text);
}

.newsblog .thumbnail {
  flex: 0 0 110px;
  width: 110px;
  min-height: 110px;
  background-size: cover;
  background-position: center;
  background-color: #ccc;
}

.newsblog .txt {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.newsblog .txt .date {
  font-size: 1.1rem;
  color: #888;
}
.newsblog .txt .category {
  display: inline-block;
  font-size: 1.0rem;
  background: #e0e0e0;
  color: var(--text);
  padding: 1px 10px;
  border-radius: 3px;
  width: fit-content;
}
.newsblog .txt h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  text-align: left;
}

.blog-view-more {
  padding-top: 36px;
  display: flex;
  justify-content: center;
}

/* =====================================================
   CTA
===================================================== */
.section-cta {
  background: var(--white);
  padding: 60px 20px;
}

.sptop-cta {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.cta-label {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 8px;
  text-align: center;
}

.cta-left { text-align: center; }
.cta-left a {
  display: block;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px;
  text-decoration: underline;
  font-family: var(--font-serif);
  transition: background 0.3s, color 0.3s;
}
.cta-left a:hover { background: var(--hover); color: #fff !important; border-color: var(--hover); }

.cta-right { text-align: center; }
.cta-right a {
  display: block;
  background: var(--accent);
  color: #fff !important;
  font-size: 1.8rem;
  padding: 14px;
  text-align: center;
  transition: background 0.3s;
}
.cta-right a:hover { background: var(--hover); }

/* =====================================================
   STORE INFO
===================================================== */
.section-store {
  background: var(--bg);
  padding: 60px 0;
}

.store-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.store-map { width: 100%; height: 260px; }
.store-map iframe { width: 100%; height: 100%; border: none; display: block; }

.store-name {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.store-dl { width: 100%; }
.store-dl dt {
  font-size: 1.2rem;
  font-weight: 700;
  color: #666;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ddd;
}
.store-dl dt:first-child { margin-top: 0; }
.store-dl dd {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 5px 0 0 4px;
  color: var(--text);
}
.store-dl dd a { text-decoration: underline; color: var(--text); }
.store-dl dd a:hover { color: var(--hover); }

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.pay-badge {
  display: inline-block;
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 1.1rem;
  color: #555;
}

.store-reserve-btn {
  display: inline-block;
  margin-top: 24px;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 40px;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.store-reserve-btn:hover { background: var(--hover); }

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 40px;
}

.footer-logo .logo-main {
  font-size: 1.8rem;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 500;
}
.footer-logo .logo-sub {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.footer-logo .footer-address {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

.footer-nav ul { display: flex; flex-wrap: wrap; gap: 0 20px; }
.footer-nav ul li a {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  display: block;
}
.footer-nav ul li a:hover { color: var(--hover); }

.footer-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-sns-link {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-sns-link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
}

/* =====================================================
   Page Top Button
===================================================== */
.page-top {
  position: fixed;
  bottom: 24px; right: 20px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, background 0.3s;
  z-index: 500;
}
.page-top.is-visible { opacity: 1; visibility: visible; }
.page-top:hover { background: var(--hover); }

/* =====================================================
   INNER PAGES — Page Hero
===================================================== */
.page-hero {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.page-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 500;
  font-family: var(--font-serif);
  margin-bottom: 6px;
}
.page-hero-content p {
  font-size: 1.2rem;
  opacity: 0.8;
  letter-spacing: 0.15em;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 1.2rem;
  color: #888;
  padding: 10px 0 0;
}
.breadcrumb a { color: #888; text-decoration: underline; }

/* =====================================================
   INNER PAGES — Menu / Drink
===================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.menu-card { background: var(--white); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.menu-card-img img { width: 100%; height: 150px; object-fit: cover; }
.menu-card-body { padding: 14px; }
.menu-card-body h3 { font-size: 1.5rem; margin-bottom: 6px; font-weight: 700; }
.menu-card-body p  { font-size: 1.2rem; color: #666; line-height: 1.6; }
.menu-price { display: inline-block; font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-top: 8px; }

.drink-grid { display: flex; flex-direction: column; gap: 30px; }
.drink-category h3 {
  font-size: 1.8rem; font-weight: 700;
  border-left: 4px solid var(--navy);
  padding-left: 12px; margin-bottom: 16px;
}
.drink-item {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid #eee; font-size: 1.4rem;
}
.drink-price { font-weight: 700; color: var(--accent); }

.happy-hour-box {
  background: var(--dark); color: #fff;
  text-align: center; padding: 30px 20px; margin-bottom: 40px;
}
.hh-label { font-size: 1.5rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.hh-time  { font-size: 3rem; font-weight: 700; margin-bottom: 8px; }
.hh-desc  { font-size: 1.5rem; color: rgba(255,255,255,0.85); }

/* =====================================================
   INNER PAGES — Banquet
===================================================== */
.course-grid { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.course-card { border: 1px solid #ddd; padding: 24px; }
.course-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.course-name { font-size: 1.8rem; font-weight: 700; }
.course-price { font-size: 2rem; font-weight: 700; color: var(--accent); }
.course-price span { font-size: 1.2rem; font-weight: 400; color: #666; }
.course-desc { font-size: 1.4rem; color: #555; line-height: 1.8; }
.course-includes { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.course-tag { background: var(--bg); padding: 4px 12px; font-size: 1.2rem; border-radius: 2px; }

.banquet-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.banquet-table th,
.banquet-table td { padding: 12px 14px; font-size: 1.4rem; border-bottom: 1px solid #eee; text-align: left; vertical-align: top; }
.banquet-table th { width: 30%; color: #666; font-weight: 500; }

/* =====================================================
   INNER PAGES — Space
===================================================== */
.space-gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px; margin-bottom: 24px;
}
.space-gallery img { width: 100%; height: 150px; object-fit: cover; }
.space-gallery img:first-child { grid-column: 1 / span 2; height: 220px; }

.space-info-table { width: 100%; border-collapse: collapse; }
.space-info-table th,
.space-info-table td { padding: 12px 14px; font-size: 1.4rem; border-bottom: 1px solid #eee; text-align: left; }
.space-info-table th { width: 35%; color: #666; font-weight: 500; }

/* =====================================================
   INNER PAGES — Blog / News
===================================================== */
.blog-list { display: flex; flex-direction: column; gap: 20px; }
.blog-card { background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden; }
.blog-card-img img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 16px; }
.blog-cat-badge {
  display: inline-block; font-size: 1.1rem;
  background: var(--navy); color: #fff;
  padding: 2px 10px; border-radius: 3px; margin-bottom: 8px;
}
.blog-card-body h2 { font-size: 1.6rem; margin-bottom: 8px; line-height: 1.5; font-weight: 700; }
.blog-card-body time { font-size: 1.2rem; color: #888; }

.blog-single-header { margin-bottom: 28px; }
.blog-single-header h1 { font-size: 2.2rem; line-height: 1.5; margin-bottom: 10px; }
.blog-single-body { font-size: 1.5rem; line-height: 2; }
.blog-single-body p { margin-bottom: 20px; }

.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid #eee;
}
.news-date { font-size: 1.2rem; color: #888; white-space: nowrap; flex-shrink: 0; }
.news-title a { font-size: 1.4rem; color: var(--text); }
.news-title a:hover { color: var(--hover); text-decoration: underline; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-block; padding: 6px 14px;
  border: 1px solid #ddd; font-size: 1.4rem; color: var(--text);
}
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination a:hover  { background: var(--hover); color: #fff; border-color: var(--hover); }

/* Access (inner pages) */
.access-table { width: 100%; border-collapse: collapse; }
.access-table th,
.access-table td { padding: 12px 14px; font-size: 1.4rem; border-bottom: 1px solid #eee; text-align: left; vertical-align: top; }
.access-table th { width: 28%; color: #666; font-weight: 500; }
.access-table td a { text-decoration: underline; }
.access-table td a:hover { color: var(--hover); }

.no-posts { text-align: center; padding: 40px; color: #888; font-size: 1.4rem; }

/* =====================================================
   Responsive — Tablet (min-width: 768px)
===================================================== */
@media (min-width: 768px) {
  .section-pad { padding: 80px 0; }

  /* Header */
  .hamburger { display: none; }
  .header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
  .header-nav .nav-list { display: flex; gap: 2px; list-style: none; }
  .header-nav .nav-list li a {
    color: rgba(255,255,255,0.88);
    font-size: 1.2rem;
    padding: 6px 10px;
    display: block;
  }
  .header-nav .nav-list li a:hover { color: var(--hover); }

  /* Hero */
  .hero-logo-mark { width: 130px; height: auto; }
  .hero-logo-mark .hero-logo-img { width: 130px; height: 130px; }
  .hero-logo-mark .mark-name { font-size: 2rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-sub { font-size: 1.5rem; }

  /* Topics */
  .section-topics .section-title { font-size: 3.2rem; }
  .tss-img img { height: 220px; }

  /* About */
  .sptop-about-child h2 { font-size: 2.4rem; }
  .about-block p { font-size: 1.6rem; }

  /* Point */
  .points-container {
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
  }
  .sptop-points-child:nth-child(even) .points-container { flex-direction: row-reverse; }
  .points-text-container { width: 40%; flex-shrink: 0; }
  .sptop-points-child:nth-child(odd)  .points-text-container { padding-right: 16px; }
  .sptop-points-child:nth-child(even) .points-text-container { padding-left: 16px; }
  .points-text-container h2 { font-size: 2.8rem; }
  .points-image-container {
    flex: 1;
    grid-template-columns: repeat(3, 1fr);
  }
  .points-image-container img { height: 120px; }
  .points-image-container img:first-child {
    grid-column: 1 / span 3;
    height: 260px;
  }

  /* Blog */
  .newsblog { grid-template-columns: 1fr 1fr; }
  .newsblog .thumbnail { flex: 0 0 140px; width: 140px; min-height: 140px; }

  /* CTA */
  .sptop-cta {
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 44px 50px;
  }
  .cta-left, .cta-right { flex: 1; }

  /* Store */
  .store-inner { flex-direction: row; gap: 36px; align-items: flex-start; }
  .store-map { width: 46%; height: 380px; flex-shrink: 0; }

  /* Menu */
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-card-img img { height: 170px; }

  /* Space */
  .space-gallery { grid-template-columns: repeat(3, 1fr); }
  .space-gallery img { height: 180px; }
  .space-gallery img:first-child { height: 280px; }

  /* Blog list */
  .blog-list { flex-direction: row; flex-wrap: wrap; }
  .blog-card { width: calc(50% - 10px); }
}

/* =====================================================
   Responsive — Desktop (min-width: 1024px)
===================================================== */
@media (min-width: 1024px) {
  .section-pad { padding: 100px 0; }

  .header-inner { height: 70px; }
  .header-logo .logo-main { font-size: 1.7rem; }
  .header-nav .nav-list li a { font-size: 1.3rem; padding: 6px 12px; }

  .hero-logo-mark { width: 160px; height: auto; }
  .hero-logo-mark .hero-logo-img { width: 160px; height: 160px; }
  .hero-logo-mark .mark-name { font-size: 2.4rem; }
  .hero-title { font-size: 3.4rem; }
  .hero-sub { font-size: 1.6rem; }

  .section-topics .section-title { font-size: 3.6rem; }

  .sptop-about-child h2 { font-size: 2.8rem; }
  .about-block p { font-size: 1.8rem; }

  .points-image-container img { height: 140px; }
  .points-image-container img:first-child { height: 360px; }

  .sptop-cta { padding: 56px 80px; }
  .cta-left a { font-size: 3.2rem; }

  .store-map { height: 440px; }

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

/* =====================================================
   Utility — Background helpers
===================================================== */
.bg-light { background: var(--bg); }
.bg-dark  { background: var(--dark); }
.bg-dark .section-title { color: #fff; }

/* Section title English subtitle */
.section-title .section-en {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #aaa;
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.section-sub {
  text-align: center;
  color: #666;
  font-size: 1.5rem;
  margin-top: -30px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.section-btn-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
}

/* =====================================================
   INNER PAGES — Banquet Extras
===================================================== */
.banquet-lead {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
}

.banquet-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 40px;
}
.bnq-badge { background: var(--bg); padding: 20px; text-align: center; }
.bnq-badge-num { display: block; font-size: 2.4rem; font-weight: 700; font-family: var(--font-serif); }
.bnq-badge-label { display: block; font-size: 1.2rem; color: #666; margin-top: 4px; }

.banquet-notes ul { list-style: disc; padding-left: 20px; }
.banquet-notes li { font-size: 1.4rem; line-height: 2.2; }

.course-recommended-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  padding: 3px 14px;
  margin-bottom: 10px;
}
.course-card--recommended { border-color: var(--accent); }

/* =====================================================
   INNER PAGES — Drink Extras
===================================================== */
.drink-items-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.drink-item-name { font-size: 1.4rem; }
.drink-item-price { font-size: 1.4rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.drink-intro { margin-bottom: 24px; font-size: 1.4rem; color: #555; line-height: 1.8; }

.happy-hour-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--dark);
  color: #fff;
  padding: 36px;
  text-align: center;
}
.hhs-en { display: block; font-size: 1.2rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.hhs-time { display: block; font-size: 2.8rem; font-weight: 700; margin-bottom: 8px; }
.hhs-price { font-size: 1.5rem; }
.hhs-info h2 { font-size: 2rem; margin-bottom: 12px; color: #fff; }
.hhs-info p { font-size: 1.4rem; line-height: 2; color: rgba(255,255,255,0.8); }

.nomihodai-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
.nomihodai-card { border: 1px solid #ddd; padding: 28px 24px; text-align: center; }
.nomihodai-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.nomi-price { font-size: 3rem; font-weight: 700; color: var(--accent); margin: 10px 0; }
.nomi-price span { font-size: 1.4rem; font-weight: 400; color: #666; }
.nomihodai-card > p { font-size: 1.4rem; color: #555; line-height: 1.8; }
.nomihodai-card--premium { background: var(--dark); border-color: var(--dark); color: #fff; }
.nomihodai-card--premium .nomi-price { color: darkorange; }
.nomihodai-card--premium > p { color: rgba(255,255,255,0.8); }

/* =====================================================
   INNER PAGES — Space Extras
===================================================== */
.space-lead { max-width: 700px; margin: 0 auto 36px; font-size: 1.5rem; line-height: 2; text-align: center; }

.space-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.space-feature { background: var(--bg); padding: 20px; text-align: center; }
.sf-icon { font-size: 2.4rem; margin-bottom: 10px; }
.space-feature h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.space-feature p { font-size: 1.3rem; color: #555; line-height: 1.7; }

.space-floor-grid { display: flex; flex-direction: column; gap: 24px; }
.space-floor-info h3 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.space-floor-info p { font-size: 1.4rem; line-height: 2; color: #555; margin-bottom: 16px; }
.space-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.space-thumb img { width: 100%; height: 140px; object-fit: cover; display: block; }

.space-table { width: 100%; border-collapse: collapse; }
.space-table th, .space-table td { padding: 10px 12px; font-size: 1.4rem; border-bottom: 1px solid #eee; text-align: left; }
.space-table th { width: 30%; color: #666; font-weight: 500; }

.space-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.gal-item img { width: 100%; height: 140px; object-fit: cover; display: block; }

/* =====================================================
   INNER PAGES — Blog Page Extras
===================================================== */
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn {
  background: none;
  border: 1px solid #ddd;
  padding: 6px 16px;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: var(--font-serif);
  color: var(--text);
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

.blog-page-layout { display: flex; flex-direction: column; gap: 40px; }
.blog-main { flex: 1; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.blog-sidebar { width: 100%; }

.sidebar-widget { margin-bottom: 28px; }
.sidebar-widget-title {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}
.recent-posts li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 1.3rem; }
.recent-posts li a { color: var(--text); }
.recent-posts li a:hover { color: var(--hover); }
.sidebar-cats li { border-bottom: 1px solid #eee; }
.filter-btn-side {
  background: none; border: none;
  padding: 10px 0; font-size: 1.4rem;
  width: 100%; text-align: left;
  cursor: pointer; font-family: var(--font-serif); color: var(--text);
}
.filter-btn-side:hover { color: var(--hover); }
.sidebar-reserve p { font-size: 1.3rem; color: #555; margin-bottom: 10px; }
.sidebar-reserve .button { display: block; text-align: center; }

/* Blog Admin */
.admin-fab {
  position: fixed; bottom: 80px; right: 20px;
  width: 50px; height: 50px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer;
  z-index: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.admin-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 1100;
  display: flex; align-items: flex-start;
  justify-content: center;
  padding: 40px 20px; overflow-y: auto;
}
.admin-modal { background: #fff; max-width: 560px; width: 100%; padding: 36px; position: relative; }
.admin-modal--wide { max-width: 740px; }
.modal-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none;
  font-size: 2.4rem; cursor: pointer; color: #666; line-height: 1;
}
.admin-modal-title { font-size: 2rem; margin-bottom: 24px; font-family: var(--font-serif); }
.admin-form .form-group { margin-bottom: 18px; }
.admin-form label { display: block; font-size: 1.3rem; margin-bottom: 6px; font-weight: 500; }
.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form select,
.admin-form textarea { width: 100%; border: 1px solid #ddd; padding: 10px 12px; font-size: 1.4rem; font-family: var(--font-serif); }
.admin-form textarea { resize: vertical; }
.required { color: var(--accent); }
.form-error { color: var(--accent); font-size: 1.3rem; margin-bottom: 12px; min-height: 1em; }
.image-upload-label {
  display: block; border: 2px dashed #ddd;
  padding: 24px; text-align: center;
  cursor: pointer; font-size: 1.3rem; color: #888;
}
.image-preview { margin-top: 10px; text-align: center; color: #888; font-size: 1.3rem; }
.image-preview img { max-width: 100%; max-height: 200px; margin-top: 8px; }
.form-group--checkbox label { display: flex; align-items: center; gap: 8px; font-weight: 400; cursor: pointer; }
.form-actions { display: flex; gap: 12px; margin-top: 6px; }

/* Single post layout — no sidebar, centred column */
.single-wrap { max-width: 760px; margin: 0 auto; }
.single-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.single-title { font-size: 2.4rem; font-weight: 700; line-height: 1.5; margin-bottom: 24px; }
.single-eyecatch { margin-bottom: 28px; }
.single-eyecatch img { width: 100%; height: auto; display: block; }
.single-body { font-size: 1.6rem; line-height: 2; }
.single-body p { margin-bottom: 1.8em; }
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 24px; border-top: 1px solid #e0e0e0; font-size: 1.4rem; }
.post-nav a { color: var(--accent); text-decoration: none; }
.post-nav a:hover { opacity: 0.75; }
.post-back { text-align: center; margin-top: 32px; }

/* =====================================================
   Responsive — Inner Page Extras (min-width: 768px)
===================================================== */
@media (min-width: 768px) {
  .banquet-badges { grid-template-columns: repeat(4, 1fr); }
  .drink-items-grid { grid-template-columns: repeat(2, 1fr); }
  .happy-hour-section { flex-direction: row; text-align: left; }
  .nomihodai-grid { grid-template-columns: repeat(2, 1fr); }
  .space-features { grid-template-columns: repeat(4, 1fr); }
  .space-floor-grid { flex-direction: row; gap: 40px; align-items: flex-start; }
  .space-floor-grid--reverse { flex-direction: row-reverse; }
  .space-floor-info { flex: 1; min-width: 0; }
  .space-photos { flex: 1; }
  .space-photo-single { flex: 0 0 55%; max-width: 55%; }
  .space-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-item img { height: 180px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   WP Banquet course layout (page-banquet.php)
===================================================== */
.bnq-course { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.bnq-course-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.bnq-course-en { font-size: 1.1rem; letter-spacing: 0.2em; color: #999; margin-bottom: 4px; display: block; }
.bnq-course-name { font-size: 2.2rem; font-weight: 700; margin-bottom: 8px; font-family: var(--font-serif); }
.bnq-course-badge {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 1.2rem; padding: 2px 10px;
  margin-left: 10px; vertical-align: middle;
}
.bnq-course-price { font-size: 3rem; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.bnq-course-unit { font-size: 1.4rem; font-weight: 400; color: #666; }
.bnq-course-time { font-size: 1.4rem; color: #666; margin-bottom: 14px; }
.bnq-course-divider { border-top: 1px solid #ddd; margin: 14px 0; }
.bnq-course-count { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.bnq-course-desc { font-size: 1.4rem; line-height: 2; color: #555; margin-bottom: 20px; }

@media (min-width: 768px) {
  .bnq-course { flex-direction: row; align-items: flex-start; gap: 40px; }
  .bnq-course--reverse { flex-direction: row-reverse; }
  .bnq-course-img { width: 46%; flex-shrink: 0; }
  .bnq-course-info { flex: 1; }
}

/* =====================================================
   Menu Category Sections — kobeya style (mcat-*)
===================================================== */
.mcat-section + .mcat-section { border-top: none; }

.mcat-head { text-align: center; margin-bottom: 36px; }
.mcat-en {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: var(--font-serif);
}
.mcat-title { font-size: 2rem; font-weight: 700; margin: 0 0 12px; font-family: var(--font-serif); }
.mcat-category-desc {
  font-size: 1.4rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* Simple item list (name + price) */
.mcat-items { border-top: 1px solid #e0e0e0; }
.mcat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid #e0e0e0;
  gap: 16px;
}
.mcat-row-name { font-size: 1.5rem; flex: 1; line-height: 1.5; }
.mcat-row-desc { display: block; font-size: 1.2rem; color: #888; margin-top: 3px; }
.mcat-row-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Image cards for featured items */
.mcat-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.mcat-img-card { border: 1px solid #e0e0e0; overflow: hidden; }
.mcat-img-card-img { aspect-ratio: 4/3; overflow: hidden; }
.mcat-img-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.mcat-img-card:hover .mcat-img-card-img img { transform: scale(1.05); }
.mcat-img-card-body {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.mcat-img-card-name { font-size: 1.4rem; flex: 1; line-height: 1.4; }
.mcat-img-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .mcat-title { font-size: 2.6rem; }
  .mcat-img-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================
   Space Features — numbered (no emoji)
===================================================== */
.sf-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
  margin: 0 auto 12px;
  letter-spacing: 0.02em;
}

/* =====================================================
   Blog List — kobeya style (bls-*)
===================================================== */
.blog-list-simple { display: flex; flex-direction: column; }
.bls-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
  align-items: flex-start;
}
.bls-item:first-child { border-top: 1px solid #e0e0e0; }
.bls-thumb {
  width: 130px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}
.bls-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.bls-item:hover .bls-thumb img { transform: scale(1.05); }
.bls-body { flex: 1; padding-top: 2px; }
.bls-date {
  font-size: 1.3rem;
  color: #888;
  display: block;
  margin-bottom: 6px;
}
.bls-title { font-size: 1.7rem; font-weight: 700; line-height: 1.5; margin: 0 0 8px; }
.bls-title a { color: var(--dark); text-decoration: none; }
.bls-title a:hover { color: var(--accent); }
.bls-excerpt { font-size: 1.3rem; color: #666; line-height: 1.7; margin: 0; }

@media (min-width: 768px) {
  .bls-thumb { width: 220px; }
  .bls-title { font-size: 2rem; }
  .bls-excerpt { font-size: 1.4rem; }
}

/* =====================================================
   News List — kobeya/information style (nlc-*)
===================================================== */
.news-list-clean { list-style: none; padding: 0; margin: 0; }
.nlc-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid #e0e0e0;
}
.nlc-item:first-child { border-top: 1px solid #e0e0e0; }
.nlc-date {
  font-size: 1.4rem;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 90px;
}
.nlc-title { font-size: 1.6rem; line-height: 1.6; }
.nlc-title a { color: var(--dark); text-decoration: none; }

/* =====================================================
   Menu hero slider
===================================================== */
.menu-hero-section { padding-top: 40px; padding-bottom: 40px; }
.menu-hero-swiper { width: 100%; }
.mhs-slide { position: relative; overflow: hidden; border-radius: 4px; }
.mhs-slide img { width: 100%; height: 240px; object-fit: cover; display: block; }
.mhs-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.55); padding: 12px 16px; }
.mhs-name { color: #fff; font-size: 1.4rem; margin-bottom: 2px; }
.mhs-price { color: var(--accent); font-size: 1.6rem; font-weight: 700; }
.menu-hero-swiper .swiper-button-prev,
.menu-hero-swiper .swiper-button-next { color: #fff; }
.menu-hero-swiper .swiper-pagination-bullet-active { background: var(--accent); }
@media (min-width: 768px) {
  .mhs-slide img { height: 360px; }
  .mhs-name { font-size: 1.6rem; }
}
.nlc-title a:hover { color: var(--accent); }

/* Space single large photo */
.space-photo-single { width: 100%; overflow: hidden; border-radius: 4px; }
.space-photo-single img { width: 100%; height: 320px; object-fit: cover; display: block; }
@media (min-width: 768px) { .space-photo-single img { height: 420px; } }

/* =====================================================
   Responsive — Smartphone (max-width: 480px)
===================================================== */
@media (max-width: 480px) {

  /* --- セクション余白 --- */
  .section-pad { padding: 40px 0; }

  /* --- セクションタイトル --- */
  .section-title { font-size: 2.2rem; margin-bottom: 24px; }

  /* --- ヘッダー --- */
  .header-logo .logo-sub { display: none; }
  .btn-reserve-pill { font-size: 1.1rem; padding: 7px 12px; }

  /* --- ヒーロー（TOPページ） --- */
  .hero-content { padding: 60px 16px 60px; }
  .hero-title { font-size: 1.8rem; line-height: 1.6; }
  .hero-logo-mark { width: 90px; height: auto; margin-bottom: 14px; }
  .hero-logo-mark .hero-logo-img { width: 90px; height: 90px; }
  .hero-sub { font-size: 1.2rem; }
  .hero-scroll { bottom: 12px; }

  /* --- ページヒーロー（内部ページ） --- */
  .page-hero { height: 180px; }
  .page-hero-content h1 { font-size: 2rem; }
  .page-hero-content p { font-size: 1.1rem; }

  /* --- トピックス Swiper --- */
  .topics-swiper { padding: 8px 32px 50px !important; }
  .tss-body p { min-height: unset; }

  /* --- About --- */
  .sptop-about-child h2 { font-size: 1.7rem; line-height: 1.7; }

  /* --- POINTセクション --- */
  .points-text-container h2 { font-size: 2rem; }
  .points-image-container { grid-template-columns: 1fr; }
  .points-image-container img { height: 200px; }
  .points-image-container img:first-child { grid-column: 1; height: 220px; }

  /* --- ニュース・ブログ（TOP） --- */
  .newsblog .thumbnail { flex: 0 0 90px; width: 90px; min-height: 90px; }
  .newsblog .txt { padding: 10px 12px; }
  .newsblog .txt h3 { font-size: 1.3rem; }

  /* --- CTA --- */
  .sptop-cta { padding: 24px 16px; }
  .cta-left a { font-size: 2.2rem; padding: 10px; }
  .cta-right a { font-size: 1.6rem; padding: 12px; }

  /* --- CTAボタン共通 --- */
  .section-btn-wrap { flex-direction: column; align-items: center; }
  .section-btn-wrap .button { width: 100%; max-width: 320px; text-align: center; padding: 12px 20px; }

  /* --- メニュー・ドリンク --- */
  .mcat-head { margin-bottom: 24px; }
  .mcat-title { font-size: 1.8rem; }
  .mcat-row-name { font-size: 1.4rem; }
  .mcat-row-price { font-size: 1.4rem; }

  /* --- ハッピーアワー --- */
  .happy-hour-section { padding: 24px 20px; gap: 16px; }
  .hhs-time { font-size: 2.2rem; }
  .hhs-info h2 { font-size: 1.7rem; }
  .hhs-info p { font-size: 1.3rem; }

  /* --- メニューページ ヒーロースライダー --- */
  .mhs-slide img { height: 200px; }
  .menu-hero-swiper .swiper-button-prev,
  .menu-hero-swiper .swiper-button-next { top: 42%; }

  /* --- 店内・空間 --- */
  .space-features { grid-template-columns: 1fr; gap: 12px; }
  .space-photo-single img { height: 220px; }
  .space-table th, .space-table td { padding: 8px 8px; font-size: 1.3rem; }
  .space-table th { width: 35%; }

  /* --- ブログ一覧 --- */
  .bls-item { gap: 14px; }
  .bls-thumb { width: 100px; }
  .bls-title { font-size: 1.5rem; }
  .bls-excerpt {
    font-size: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* --- 新着情報一覧 --- */
  .nlc-item { gap: 12px; align-items: flex-start; }
  .nlc-date { min-width: 80px; font-size: 1.2rem; padding-top: 2px; }
  .nlc-title { font-size: 1.4rem; }

  /* --- ブログ詳細 --- */
  .single-title { font-size: 1.9rem; }
  .post-nav { flex-direction: column; gap: 12px; }
  .post-nav-next { text-align: right; }

  /* --- テーブル 横スクロール --- */
  .banquet-table,
  .access-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
