/* ========================================
   居酒屋 三太 LP - 和モダンスタイル
   ======================================== */

/* --- 変数 --- */
:root {
  --color-bg: #F7F2E8;
  --color-wood: #6B4226;
  --color-green: #005A32;
  --color-green-dark: #004528;
  --color-red: #C8102E;
  --color-text: #222222;
  --color-sub: #EFE3D0;
  --color-warm: #E8D5C4;
  --color-white: #ffffff;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-mincho: "Shippori Mincho B1", "Shippori Mincho", "Noto Serif JP", serif;
  --header-height: 72px;
  --fixed-cta-height: 56px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 8px 32px rgba(0, 90, 50, 0.1);
  --shadow-float: 0 16px 48px rgba(0, 90, 50, 0.14);
  --texture-dots: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='0.7' fill='%23005A32' fill-opacity='0.07'/%3E%3C/svg%3E");
  --texture-grid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cpath d='M44 0H0V44' fill='none' stroke='%236B4226' stroke-opacity='0.055' stroke-width='0.45'/%3E%3C/svg%3E");
  --texture-wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28' viewBox='0 0 56 28'%3E%3Cpath d='M0 28 Q14 0 28 28 Q42 0 56 28' fill='none' stroke='%23005A32' stroke-opacity='0.06' stroke-width='0.55'/%3E%3C/svg%3E");
  --texture-paper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* --- リセット --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(255,255,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 80%, rgba(0,90,50,0.035) 0%, transparent 50%),
    var(--texture-dots),
    var(--texture-paper);
  background-size: 100% 100%, 100% 100%, 22px 22px, 180px 180px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- 見出し（明朝体） --- */
.hero__title,
.hero__title-line,
.about__title,
.section-intro__title,
.dish-feature__name,
.drink-feature__name,
.drink-card__name,
.otsumami__title,
.scenes__title,
.access__title,
.rec-card__name {
  font-family: var(--font-mincho);
  font-weight: 800;
}

/* --- ヘッダー --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--header-height);
  background-color: rgba(247, 242, 232, 0.92);
  background-image: var(--texture-dots);
  background-size: 22px 22px;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 90, 50, 0.12);
  transition: background 0.3s, box-shadow 0.3s;
}

.header--scrolled {
  background-color: rgba(247, 242, 232, 0.98);
  box-shadow: 0 2px 16px rgba(0, 90, 50, 0.08);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo {
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.header__logo:hover { opacity: 0.8; }

.header__logo-img {
  height: 48px;
  width: auto;
}

.brand-logo {
  filter: drop-shadow(0 4px 12px rgba(0, 90, 50, 0.18));
}

.header__nav {
  flex: 1;
}

.header__nav-list {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.header__nav-list a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-green);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.header__nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width 0.3s var(--ease);
}
.header__nav-list a:hover,
.header__nav-list a.is-active {
  color: var(--color-red);
}
.header__nav-list a:hover::after,
.header__nav-list a.is-active::after {
  width: 100%;
}

.header__tel {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.3s;
}
.header__tel:hover {
  background: #a30d24;
  transform: translateY(-1px);
}

.header__toggle {
  display: none;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  flex-shrink: 0;
}
.header__toggle span {
  display: block;
  height: 2px;
  background: var(--color-green);
  transition: transform 0.3s, opacity 0.3s;
}
.header__toggle.is-open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* --- モバイルメニュー --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 290;
  background-color: rgba(247, 242, 232, 0.98);
  background-image: var(--texture-grid);
  background-size: 44px 44px;
  backdrop-filter: blur(16px);
  padding: 32px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  pointer-events: none;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.mobile-menu__logo-img {
  height: 80px;
  width: auto;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-green);
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(0, 90, 50, 0.1);
  padding: 18px 0;
  display: block;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--color-red); }
.mobile-menu__tel {
  color: var(--color-red) !important;
  font-weight: 700;
}

/* --- ページ本体 --- */
.page {
  padding-top: var(--header-height);
}

/* --- ボタン --- */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-green);
  border: 1px solid var(--color-green);
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.btn-ghost:hover {
  background: var(--color-green);
  color: var(--color-white);
}
.btn-ghost--light {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost--light:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-circle:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-float);
}
.btn-circle--red {
  background: var(--color-red);
}
.btn-circle--red:hover {
  background: #a30d24;
}

.btn-circle--outline {
  background: transparent;
  color: var(--color-red);
  border: 1px solid var(--color-red);
}
.btn-circle--outline:hover {
  background: var(--color-red);
  color: var(--color-white);
}

/* --- セクション共通 --- */
.section-intro {
  text-align: center;
  margin-bottom: 48px;
}
.section-intro__en {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--color-red);
  margin-bottom: 16px;
}
.section-intro__title {
  font-size: clamp(22px, 3.5vw, 30px);
  color: var(--color-green);
  line-height: 1.7;
  margin-bottom: 12px;
}
.section-intro__lead {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
}
.section-intro--light .section-intro__title { color: var(--color-green); }

/* --- ファーストビュー --- */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__visual {
  position: absolute;
  inset: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 69, 40, 0.65) 0%,
    rgba(0, 90, 50, 0.45) 50%,
    rgba(34, 34, 34, 0.4) 100%
  );
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-sub);
}

/* 湯気 */
.hero__steam {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  pointer-events: none;
}
.hero__steam span {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  filter: blur(16px);
  animation: steam-rise 5s ease-in-out infinite;
}
.hero__steam span:nth-child(1) { left: 5%;  width: 70px; height: 70px; animation-delay: 0s; }
.hero__steam span:nth-child(2) { left: 25%; width: 90px; height: 90px; animation-delay: 1s; }
.hero__steam span:nth-child(3) { left: 45%; width: 60px; height: 60px; animation-delay: 2s; }
.hero__steam span:nth-child(4) { left: 65%; width: 80px; height: 80px; animation-delay: 0.5s; }
.hero__steam span:nth-child(5) { left: 80%; width: 50px; height: 50px; animation-delay: 1.5s; }

@keyframes steam-rise {
  0%   { opacity: 0; transform: translateY(0) scale(0.7); }
  25%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-160px) scale(1.5); }
}

.hero__copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 48px;
  max-width: 680px;
}

.hero__area {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.hero__title {
  margin-bottom: 28px;
}

.hero__title-line {
  display: block;
  font-size: clamp(36px, 6vw, 58px);
  color: var(--color-white);
  line-height: 1.45;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__lead {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255,255,255,0.88);
  line-height: 2.2;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero__actions .btn-ghost {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.hero__actions .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* --- 三太とは --- */
.about {
  position: relative;
  padding: 72px 48px 88px;
  background-color: var(--color-bg);
  background-image: var(--texture-grid);
  background-size: 44px 44px;
}

.about__deco--steam {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,227,208,0.6) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 48px 56px;
  align-items: start;
}

.about__title {
  grid-column: 1 / 3;
  font-size: clamp(22px, 3.5vw, 30px);
  color: var(--color-green);
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 16px;
}

.about__content {
  grid-column: 1;
  grid-row: 2;
}

.about__text {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  color: #444;
}

.about__brand {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.about__logo {
  height: clamp(180px, 22vw, 260px);
  width: auto;
}

/* --- 名物料理（編集レイアウト） --- */
.signature {
  padding: 72px 48px 88px;
  background-color: #b8956a;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%),
    url("../images/bg-wood.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(0, 90, 50, 0.12);
}

.dish-feature {
  max-width: 960px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.dish-feature:last-child { margin-bottom: 0; }

.dish-feature--right .dish-feature__body { order: -1; }

.dish-feature__visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  overflow: visible;
}

.dish-feature__steam {
  position: absolute;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
  width: 88%;
  height: 26%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.dish-feature__steam span {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.26) 42%, transparent 72%);
  filter: blur(18px);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.dish-feature__steam span:nth-child(1) {
  left: 19%;
  width: 88px;
  height: 62px;
  filter: blur(16px);
  animation: dish-steam-a 4.6s ease-in-out infinite;
  animation-delay: 0.2s;
}
.dish-feature__steam span:nth-child(2) {
  left: 47%;
  width: 58px;
  height: 92px;
  filter: blur(22px);
  animation: dish-steam-b 5.4s ease-in-out infinite;
  animation-delay: 1.9s;
}
.dish-feature__steam span:nth-child(3) {
  left: 68%;
  width: 104px;
  height: 74px;
  filter: blur(14px);
  animation: dish-steam-c 3.8s ease-in-out infinite;
  animation-delay: 0.7s;
}
.dish-feature__steam span:nth-child(4) {
  left: 8%;
  width: 48px;
  height: 56px;
  filter: blur(20px);
  animation: dish-steam-d 4.1s ease-in-out infinite;
  animation-delay: 2.6s;
}
.dish-feature__steam span:nth-child(5) {
  left: 36%;
  width: 72px;
  height: 110px;
  filter: blur(18px);
  animation: dish-steam-b 5.8s ease-in-out infinite;
  animation-delay: 3.2s;
}
.dish-feature__steam span:nth-child(6) {
  left: 81%;
  width: 64px;
  height: 48px;
  filter: blur(15px);
  animation: dish-steam-a 4.3s ease-in-out infinite;
  animation-delay: 1.1s;
}

.dish-feature:nth-of-type(2) .dish-feature__steam span:nth-child(1) { animation-delay: 1.4s; }
.dish-feature:nth-of-type(2) .dish-feature__steam span:nth-child(3) { animation-delay: 2.2s; }
.dish-feature:nth-of-type(2) .dish-feature__steam span:nth-child(5) { animation-delay: 0.5s; }
.dish-feature:nth-of-type(3) .dish-feature__steam span:nth-child(2) { animation-delay: 0.9s; }
.dish-feature:nth-of-type(3) .dish-feature__steam span:nth-child(4) { animation-delay: 2.8s; }
.dish-feature:nth-of-type(3) .dish-feature__steam span:nth-child(6) { animation-delay: 1.6s; }

@keyframes dish-steam-a {
  0%   { opacity: 0; transform: translate(0, 4px) scale(0.55, 0.8); }
  16%  { opacity: 0.88; }
  100% { opacity: 0; transform: translate(-18px, -285px) scale(1.45, 1.85); }
}

@keyframes dish-steam-b {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.65, 0.55); }
  20%  { opacity: 0.82; }
  100% { opacity: 0; transform: translate(22px, -310px) scale(1.75, 1.35); }
}

@keyframes dish-steam-c {
  0%   { opacity: 0; transform: translate(0, 6px) scale(0.75, 0.65); }
  14%  { opacity: 0.92; }
  100% { opacity: 0; transform: translate(-8px, -265px) scale(1.25, 1.55); }
}

@keyframes dish-steam-d {
  0%   { opacity: 0; transform: translate(0, 2px) scale(0.5, 0.7); }
  22%  { opacity: 0.75; }
  100% { opacity: 0; transform: translate(14px, -295px) scale(1.6, 1.2); }
}

.dish-feature__frame {
  overflow: hidden;
  box-shadow: var(--shadow-float);
  background: var(--color-sub);
}
.dish-feature__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-feature__frame--circle {
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.dish-feature__frame--organic {
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  aspect-ratio: 6 / 5;
  max-width: 420px;
  margin: 0 auto;
}

.dish-feature__frame--cutout {
  overflow: visible;
  box-shadow: none;
  background: transparent;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.dish-feature__frame--cutout img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 14px 28px rgba(0, 90, 50, 0.18));
}

.dish-feature__num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: 12px;
}

.dish-feature__name {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-green);
  margin-bottom: 20px;
  line-height: 1.5;
}

.dish-feature__desc {
  font-size: 14px;
  line-height: 2.2;
  color: #555;
  letter-spacing: 0.03em;
}

/* --- おすすめメニュー --- */
.recommended {
  position: relative;
  padding: 72px 48px 88px;
  overflow: hidden;
}

.recommended__bg {
  position: absolute;
  inset: 0;
  background:
    var(--texture-dots),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(0,90,50,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(200,16,46,0.04) 0%, transparent 50%);
  background-size: 22px 22px, 100% 100%, 100% 100%;
  pointer-events: none;
}

.recommended__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.recommended__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

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

.rec-card__img {
  width: 280px;
  height: 280px;
  margin: 0 auto 20px;
  background: transparent;
  overflow: visible;
}

.rec-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  filter: drop-shadow(0 8px 16px rgba(0, 90, 50, 0.14));
}

.rec-card__img--cutout {
  box-shadow: none;
}

.rec-card__name {
  font-size: 15px;
  color: var(--color-green);
  margin-bottom: 8px;
}

.rec-card__desc {
  font-size: 12px;
  line-height: 1.8;
  color: #666;
}

.recommended__cta {
  display: flex;
  justify-content: center;
  gap: 32px;
}

/* --- 名物お通し --- */
.otsumami {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.otsumami__visual {
  position: absolute;
  inset: 0;
  background: var(--color-warm);
}
.otsumami__bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}
.otsumami__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 69, 40, 0.82) 0%,
    rgba(0, 90, 50, 0.7) 50%,
    rgba(0, 69, 40, 0.55) 100%
  );
}

.otsumami__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 56px 48px;
  max-width: 720px;
}

.otsumami__title {
  font-size: clamp(28px, 4.5vw, 42px);
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.otsumami__title span { display: block; }

.otsumami__text {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 2.2;
  margin-bottom: 40px;
}

/* --- お酒 --- */
.drinks {
  padding: 72px 48px 88px;
  background-color: var(--color-bg);
  background-image:
    var(--texture-grid),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-sub) 100%);
  background-size: 44px 44px, 100% 100%;
}

.drinks__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.drink-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
  padding: 32px;
  background: #111;
  border-radius: 12px;
  box-shadow: var(--shadow-float);
}

.drink-feature__visual {
  overflow: hidden;
  border-radius: 8px;
}

.drink-feature__img {
  width: 100%;
  height: auto;
  display: block;
}

.drink-feature__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: 12px;
}

.drink-feature__name {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.5;
}

.drink-feature__desc {
  font-size: 14px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.03em;
}

.drinks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.drink-card__img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-sub);
  box-shadow: var(--shadow-soft);
}

.drink-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drink-card__name {
  font-size: 17px;
  color: var(--color-green);
  margin-bottom: 12px;
}

.drink-card__desc {
  font-size: 12px;
  line-height: 2;
  color: #666;
}

/* --- 利用シーン --- */
.scenes {
  padding: 72px 48px;
  background-color: var(--color-bg);
  background-image: var(--texture-wave);
  background-size: 56px 28px;
}

.scenes__inner {
  max-width: 720px;
  margin: 0 auto;
}

.scenes__title {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--color-green);
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 48px;
}

.scenes__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-sub);
}

.scenes__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-sub);
  font-size: 15px;
  color: var(--color-text);
  letter-spacing: 0.05em;
  transition: color 0.3s, padding-left 0.3s;
}
.scenes__item:hover {
  color: var(--color-red);
  padding-left: 8px;
}

.scenes__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-red);
  flex-shrink: 0;
}

/* --- 店舗情報 --- */
.access {
  padding: 72px 48px 88px;
  background-color: var(--color-sub);
  background-image: var(--texture-dots);
  background-size: 22px 22px;
}

.access__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.access__title {
  font-size: 28px;
  color: var(--color-green);
  margin-bottom: 32px;
}

.access__list { margin-bottom: 32px; }

.access__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(107,66,38,0.12);
}
.access__row dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-green);
  letter-spacing: 0.1em;
}
.access__row dd {
  font-size: 14px;
}
.access__row dd a {
  color: var(--color-red);
  text-decoration: underline;
}

.access__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.access__map {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  background: var(--color-bg);
}

/* --- フッター --- */
.footer {
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.05) 3px,
      rgba(0,0,0,0.05) 5px
    ),
    linear-gradient(180deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: rgba(255,255,255,0.85);
  padding: 56px 48px 32px;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer__logo-img {
  height: 88px;
  width: auto;
  display: block;
}

.footer__tel {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer__tel:hover { color: #f5c0c8; }

.footer__address,
.footer__hours {
  font-size: 12px;
  line-height: 1.9;
  opacity: 0.7;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer__nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.footer__nav a:hover { opacity: 1; }

.footer__copy {
  text-align: center;
  font-size: 11px;
  opacity: 0.4;
  letter-spacing: 0.1em;
}

/* --- スマホ固定CTA --- */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: var(--fixed-cta-height);
}

.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background 0.3s;
}
.fixed-cta__btn--phone {
  background: var(--color-red);
  color: var(--color-white);
}
.fixed-cta__btn--map {
  background: var(--color-green);
  color: var(--color-white);
}

/* --- フェードイン --- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 画像プレースホルダー --- */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, var(--color-sub), var(--color-warm));
  color: var(--color-green);
  font-size: 12px;
  text-align: center;
  padding: 20px;
  letter-spacing: 0.05em;
}

/* --- レスポンシブ --- */
@media (max-width: 1024px) {
  .recommended__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__title {
    grid-column: 1;
    margin-bottom: 8px;
  }
  .about__content {
    grid-column: 1;
    grid-row: auto;
  }
  .about__brand {
    grid-column: 1;
    grid-row: auto;
    min-height: 200px;
    margin: 0 auto;
  }
  .about__logo {
    height: clamp(150px, 22vw, 220px);
  }
  .header__nav-list { gap: 16px; }
  .header__nav-list a { font-size: 12px; }
  .header__tel-num { display: none; }
  .header__tel { padding: 10px 12px; }
  .drink-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
  .drink-feature__body { text-align: center; }
  .drinks__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
    gap: 16px;
  }

  .header__nav { display: none; }
  .header__tel { display: none; }
  .header__toggle { display: flex; }
  .mobile-menu { display: block; }

  .header__logo-img { height: 40px; }

  .hero__copy { padding: 0 24px; }
  .hero__scroll { display: none; }

  .about {
    padding: 56px 24px 72px;
  }
  .about__inner {
    gap: 32px;
  }
  .about__title {
    font-size: 22px;
  }
  .about__content {
    text-align: center;
  }
  .about__brand {
    min-height: 160px;
  }
  .about__logo {
    height: 150px;
  }

  .signature { padding: 56px 24px; }
  .dish-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
  .dish-feature--right .dish-feature__body { order: 0; }
  .dish-feature__body { text-align: center; }

  .recommended { padding: 56px 24px; }
  .recommended__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .recommended__cta { gap: 20px; }
  .btn-circle { width: 110px; height: 110px; font-size: 13px; }

  .otsumami__content { padding: 48px 24px; }

  .drinks { padding: 56px 24px; }
  .drink-feature { margin-bottom: 48px; }
  .drinks__grid { grid-template-columns: 1fr; gap: 40px; }

  .scenes { padding: 56px 24px; }
  .scenes__title { margin-bottom: 32px; }

  .access { padding: 56px 24px; }
  .access__inner { grid-template-columns: 1fr; }

  .footer { padding: 48px 24px 24px; }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer__nav { align-items: center; }

  .fixed-cta { display: flex; }
  body { padding-bottom: var(--fixed-cta-height); }
}

@media (max-width: 480px) {
  .recommended__grid { grid-template-columns: 1fr; }
  .rec-card__img { width: 220px; height: 220px; }
  .access__row { grid-template-columns: 1fr; gap: 4px; }
}
