/* ================================================================
   米粉と鉄板 — Unified Stylesheet
   Design base: 1440px  |  Responsive: mobile-first breakpoints
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700;900&display=swap");

/* ================================================================
   TOKENS
   ================================================================ */
:root {
  --dark: #292220;
  --accent: #f53c08;
  --cream: #f4f1ee;
  --white: #ffffff;
  --gray: #f4f4f4;
  --font: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --pad: 40px;
}

/* ================================================================
   RESET
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font);
  background: #f4f1ee;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  background: var(--accent);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 200;
  isolation: isolate;
}
.nav__inner {
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.nav__logo-text {
  font-family: var(--font);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav__links li a {
  font-family: var(--font);
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.06em;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.nav__links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.2s ease;
}
.nav__links li a:hover::after,
.nav__links li a.active::after {
  width: 100%;
}

/* ── ハンバーガーボタン ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── NAV レスポンシブ ── */
@media (max-width: 900px) {
  .nav__links {
    gap: 24px;
  }
}
@media (max-width: 678px) {
  .nav__inner {
    height: 72px;
  }
  .nav__logo-text {
    font-size: 20px;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__links {
    position: absolute;
    top: 72px;
    left: auto;
    right: 0;
    width: 220px;
    background: var(--accent);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 199;
  }
  .nav__links.is-open {
    max-height: 400px;
  }
  .nav__links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .nav__links li a {
    display: block;
    font-size: 18px;
    padding: 18px 24px;
    text-align: left;
  }
  .nav__links li a::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .nav__inner {
    height: 64px;
  }
  .nav__logo-text {
    font-size: 15px;
  }
  .nav__links {
    gap: 14px;
  }
  .nav__links li a {
    font-size: 13px;
  }
}

/* ================================================================
   CATEGORY NAV（メニューページ — 3タブ）
   ================================================================ */
.cat-nav {
  background: var(--white);
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.cat-nav__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 72px;
  display: flex;
  align-items: stretch;
}
.cat-nav__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 900;
  font-size: 18px;
  color: #555;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  transition:
    color 0.15s,
    background 0.15s;
  white-space: nowrap;
}
.cat-nav__item:last-child {
  border-right: none;
}
.cat-nav__item:hover {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.02);
}
.cat-nav__item.active {
  color: var(--accent);
}
.cat-nav__item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--accent);
}
@media (max-width: 640px) {
  /* スマホ: 3つのタブを横並びのまま綺麗に収める */
  .cat-nav__inner {
    padding-inline: 0;
    height: 60px;
  }
  .cat-nav__item {
    font-size: 14px;
    white-space: nowrap;
    padding: 0 4px;
  }
  /* 中央の「数量限定・一品料理」だけ 80% サイズに縮小 */
  .cat-nav__item:nth-child(2) {
    font-size: 80%;
  }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1vw, 13px) clamp(16px, 2vw, 28px);
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition:
    opacity 0.15s,
    transform 0.1s;
  line-height: 1;
}
.btn:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* ================================================================
   PAGE: トップ (index.html)
   ================================================================ */

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  height: 80vh;
  min-height: 600px;
  background-color: #000;
}

/* スライドショー背景 */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ケンバーンズ — スライドごとに方向を変える */
@keyframes kb-1 {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-2%, -1%);
  }
}
@keyframes kb-2 {
  from {
    transform: scale(1.05) translate(2%, 1%);
  }
  to {
    transform: scale(1.12) translate(-1%, -2%);
  }
}
@keyframes kb-3 {
  from {
    transform: scale(1) translate(0, 2%);
  }
  to {
    transform: scale(1.12) translate(2%, -1%);
  }
}
@keyframes kb-4 {
  from {
    transform: scale(1.05) translate(-2%, -1%);
  }
  to {
    transform: scale(1.12) translate(1%, 2%);
  }
}

.hero__slide--active {
  opacity: 1;
}
.hero__slide:nth-child(1).hero__slide--running {
  animation: kb-1 5.5s ease-in-out forwards;
}
.hero__slide:nth-child(2).hero__slide--running {
  animation: kb-2 5.5s ease-in-out forwards;
}
.hero__slide:nth-child(3).hero__slide--running {
  animation: kb-3 5.5s ease-in-out forwards;
}
.hero__slide:nth-child(4).hero__slide--running {
  animation: kb-4 5.5s ease-in-out forwards;
}
.hero__slide--paused {
  animation-play-state: paused !important;
}

/* テキスト + ボタンエリア */
.hero__body {
  position: relative;
  z-index: 1;
  margin-left: clamp(40px, 8vw, 160px);
  padding-top: clamp(120px, 25vh, 290px);
}
.hero__location {
  font-family: var(--font);
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 64px);
  color: var(--white);
  line-height: 1.212;
  margin-bottom: 24px;
}
.hero__sub {
  font-family: var(--font);
  font-size: clamp(13px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* ── CTA ボタン ── */
.hero-cta-btn {
  display: flex;
  align-items: center;
  height: 96px;
  width: 400px;
  max-width: 100%;
  border-radius: 92px;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    opacity 0.18s,
    transform 0.18s;
}
.hero-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-3px);
}
.hero-cta-btn--filled {
  background: #ee6c1a;
}
.hero-cta-btn--outline {
  background: #ffffff;
  border: 2px solid #ee6c1a;
}
.hero-cta-btn__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 100%;
}
.hero-cta-btn__icon {
  max-height: 64px;
  width: auto;
  display: block;
}
.hero-cta-btn__icon--tabelog {
  max-height: 64px;
  max-width: 64px;
}
.hero-cta-btn__divider {
  display: block;
  width: 1px;
  height: 69px;
  flex-shrink: 0;
}
.hero-cta-btn--filled .hero-cta-btn__divider {
  background: rgba(255, 255, 255, 0.5);
}
.hero-cta-btn--outline .hero-cta-btn__divider {
  background: rgba(238, 108, 26, 0.35);
}
.hero-cta-btn__label {
  flex: 1;
  text-align: center;
  font-family: var(--font);
  font-weight: 900;
  font-size: 24px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1.212;
}
.hero-cta-btn--filled .hero-cta-btn__label {
  color: #ffffff;
}
.hero-cta-btn--outline .hero-cta-btn__label {
  color: #292220;
}
.hero-cta-btn__arrow {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  margin-right: 20px;
  display: block;
}

/* ── ヒーロー内ボタンコンテナ・上書き ── */
.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__btns .hero-cta-btn {
  height: clamp(48px, 4.5vw, 62px);
  width: auto;
  min-width: 0;
  flex-shrink: 1;
  border-radius: 62px;
}
.hero__btns .hero-cta-btn__icon-wrap {
  width: clamp(44px, 4vw, 58px);
  flex-shrink: 0;
}
.hero__btns .hero-cta-btn__label {
  font-size: clamp(12px, 0.95vw, 14px);
  padding-inline: clamp(8px, 0.8vw, 10px);
  white-space: nowrap;
}
.hero__btns .hero-cta-btn__arrow {
  width: clamp(26px, 2.4vw, 34px);
  height: clamp(26px, 2.4vw, 34px);
  margin-right: clamp(8px, 0.8vw, 10px);
  flex-shrink: 0;
}
.hero__btns .hero-cta-btn__icon {
  max-height: clamp(28px, 3.2vw, 40px);
  max-width: clamp(28px, 3.2vw, 40px);
}

/* ── scroll インジケーター ── */
.hero__scroll {
  position: absolute;
  left: clamp(40px, 8vw, 160px);
  bottom: clamp(24px, 5vh, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.hero__scroll-text {
  font-family: var(--font);
  font-weight: 900;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: clamp(40px, 6vh, 68px);
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, 0.9);
  animation: scroll-line 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(280%);
    opacity: 0;
  }
}

/* ── ドットページネーション ── */
.hero__dots {
  position: absolute;
  bottom: clamp(20px, 3vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.hero__dot--active {
  background: #fff;
  width: 26px;
  border-radius: 4px;
}

/* ── Hero レスポンシブ ── */
@media (max-width: 1040px) {
  .hero {
    height: 72vh;
  }
  .hero__slide {
    background-position: 75% 40%;
  }
  .hero-cta-btn {
    width: calc(50% - 12px);
    min-width: 320px;
  }
  .hero-cta-btn__label {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .hero {
    height: 65vh;
    min-height: 520px;
  }
  .hero__body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: 0;
    padding-left: clamp(16px, 4vw, 32px);
    padding-top: 0;
    padding-bottom: clamp(48px, 8vh, 80px);
    background: radial-gradient(
      ellipse 70% 60% at 0% 80%,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0) 75%
    );
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__scroll {
    display: none;
  }
}
@media (max-width: 720px) {
  .hero {
    height: 58vh;
    min-height: 460px;
  }
  .hero-cta-btn {
    width: 50%;
    max-width: 472px;
    height: 100px;
  }
  .hero-cta-btn__icon-wrap {
    width: 100px;
  }
  .hero-cta-btn__label {
    font-size: 18px;
  }
  .hero-cta-btn__arrow {
    width: 44px;
    height: 44px;
    margin-right: 14px;
  }
}
@media (max-width: 640px) {
  .hero {
    height: 52vh;
    min-height: 420px;
  }
  .hero__body {
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: clamp(44px, 8vh, 72px);
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__sub {
    display: none;
  }
  .hero__btns {
    gap: 8px;
    padding-bottom: 16px;
  }
  .hero__btns .hero-cta-btn {
    height: clamp(36px, 8vw, 56px);
    border-radius: 56px;
  }
  .hero__btns .hero-cta-btn__icon-wrap {
    width: clamp(32px, 7vw, 48px);
  }
  .hero__btns .hero-cta-btn__icon {
    max-height: clamp(20px, 4.5vw, 32px);
    max-width: clamp(20px, 4.5vw, 32px);
  }
  .hero__btns .hero-cta-btn__label {
    font-size: clamp(10px, 3vw, 14px);
    padding-inline: clamp(4px, 1.5vw, 8px);
  }
  .hero__btns .hero-cta-btn__arrow {
    width: clamp(20px, 4.5vw, 30px);
    height: clamp(20px, 4.5vw, 30px);
    margin-right: clamp(6px, 1.5vw, 10px);
  }
  .hero__scroll {
    display: none;
  }
}
@media (max-width: 430px) {
  .hero__body {
    margin-left: 0;
    padding-inline: clamp(16px, 4vw, 32px);
  }
  .hero__btns {
    justify-content: center;
  }
}

/* ================================================================
   こだわりの食材
   ================================================================ */
.ingr-section {
  position: relative;
  overflow: hidden;
  background: #f5eede;
}
.ingr-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.ingr-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 96px;
}

/* ヘッダー */
.ingr-header {
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--pad);
  margin-bottom: 48px;
}
.ingr-eyebrow {
  font-family: var(--font-jkt);
  font-size: 13px;
  font-weight: 500;
  color: #bf8743;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}
.ingr-eyebrow-line {
  width: 116px;
  height: 1.5px;
  background: #bf8743;
  margin: 0 0 20px 0;
}
.ingr-title {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: 1.7rem;
  color: #000;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ingr-desc {
  font-family: var(--font-zen);
  font-size: 18px;
  color: #000;
  line-height: 1.9;
}

/* グリッド */
.ingr-grid {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.ingr-col {
  display: flex;
  flex-direction: column;
}
.ingr-photo {
  width: 100%;
  aspect-ratio: 352 / 219;
  object-fit: cover;
  display: block;
}

/* カード */
.ingr-card {
  background: #fff;
  padding: 14px 25px 28px;
  flex: 1;
}
.ingr-num {
  display: block;
  font-family: var(--font-zen);
  font-size: 1rem;
  font-weight: 600;
  color: #bf8743;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.ingr-num-line {
  width: 20px;
  height: 1px;
  background: #bf8743;
  margin-bottom: 10px;
}
.ingr-name {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: 18px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 10px;
}
.ingr-text {
  font-family: var(--font-zen);
  font-size: 12px;
  color: #000;
  line-height: 1.9;
}

/* レスポンシブ */
@media (max-width: 1100px) {
  .ingr-inner {
    padding: 64px 0 72px;
  }
  .ingr-header {
    padding-inline: var(--pad);
  }
  .ingr-eyebrow,
  .ingr-eyebrow-line {
    margin-left: 0;
  }
  .ingr-desc {
    font-size: 16px;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .ingr-inner {
    padding: 48px 0 56px;
  }
  .ingr-title {
    margin-left: 0;
  }
  .ingr-desc {
    font-size: 14px;
    margin-left: 0;
  }
  .ingr-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ingr-col {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
  }
  .ingr-photo {
    width: 40%;
    flex-shrink: 0;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .ingr-card {
    flex: 1;
  }
}
@media (max-width: 390px) {
  .ingr-header {
    display: flex;
    align-items: center;
  }
  .ingr-eyebrow,
  .ingr-eyebrow-line {
    margin-left: 0;
  }
  .ingr-desc {
    text-align: center;
  }
}

/* ================================================================
   おすすめメニュー
   ================================================================ */
.rec-menu {
  background: #ffffff;
  padding: 80px 0 96px;
}
.rec-menu__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}
.rec-menu__eyebrow {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #bf8743;
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}
.rec-menu__eyebrow-line {
  width: 60px;
  height: 2px;
  background: #bf8743;
  margin-bottom: 22px;
}
.rec-menu__title {
  font-family: var(--font);
  font-weight: 900;
  font-size: 1.8rem;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.rec-menu__grid {
  max-width: 1600px;
  margin: 0 auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.menu-card {
  background: #fbf9f8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-card__img {
  width: 100%;
  aspect-ratio: 352 / 330;
  object-fit: cover;
  display: block;
}
.menu-card__body {
  padding: 20px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card__name {
  font-family: var(--font);
  font-weight: 900;
  font-size: 20px;
  color: #000;
  margin-bottom: 8px;
  display: block;
}
.menu-card__name-line {
  height: 1.5px;
  background: #000;
  margin: 0 auto 18px;
  max-width: 210px;
}
.menu-card__desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  color: #000;
  line-height: 2;
  margin-bottom: 20px;
}
.menu-card__price {
  font-family: var(--font);
  font-weight: 600;
  color: #b89361;
  white-space: nowrap;
  margin-top: auto;
}
.menu-card__price-yen {
  font-size: 22px;
}
.menu-card__price-amount {
  font-size: 30px;
  font-weight: 900;
}
.menu-card__price-tax {
  font-size: 14px;
  margin-left: 4px;
}

/* レスポンシブ */
@media (max-width: 1100px) {
  .rec-menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .rec-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .menu-card__body {
    padding: clamp(10px, 2vw, 20px) clamp(10px, 2.5vw, 24px)
      clamp(16px, 3vw, 32px);
  }
  .menu-card__name {
    font-size: clamp(13px, 3.2vw, 20px);
  }
  .menu-card__desc {
    font-size: clamp(10px, 2.4vw, 15px);
    line-height: 1.7;
    margin-bottom: clamp(10px, 2vw, 20px);
  }
  .menu-card__price-yen {
    font-size: clamp(12px, 3.4vw, 22px);
  }
  .menu-card__price-amount {
    font-size: clamp(16px, 4.7vw, 30px);
  }
  .menu-card__price-tax {
    font-size: clamp(9px, 2vw, 14px);
  }
}

/* ================================================================
   お知らせ
   ================================================================ */
.news {
  background: #f4f1ee;
  padding: clamp(48px, 8vw, 96px) 0;
}
.news__layout {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 5vw, 40px);
}
.news__header {
  text-align: center;
}
.news__heading {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(17px, 3vw, 24px);
  color: #292220;
  letter-spacing: 0.02em;
  line-height: 1.212;
}
.news__heading-line {
  width: 96px;
  height: 1px;
  background: #292220;
  margin: 12px auto 0;
}
.news__inner {
  width: 100%;
}
.news__item {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 5vw, 40px);
  padding: clamp(10px, 2vw, 16px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.news__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.news__date {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(12px, 2vw, 16px);
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.03em;
  line-height: 1.8;
}
.news__text {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(12px, 2vw, 16px);
  color: #000;
  letter-spacing: -0.03em;
  line-height: 1.8;
}

/* ================================================================
   SECTION: 店舗情報（index / store / contact 共通）
   ================================================================ */
.store-section {
  background: #ffffff;
  padding: 72px 0 88px;
}
.store-section__heading {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--pad);
  font-family: var(--font);
  font-weight: 600;
  font-size: 24px;
  color: #292220;
  letter-spacing: 0.02em;
  padding-bottom: 28px;
  display: block;
}

/* 2×2 グリッド */
.store-section__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "dl      map"
    "actions mapbtn";
  column-gap: 64px;
  row-gap: 0;
}

/* 情報テーブル */
.store-dl {
  grid-area: dl;
  width: 100%;
  background: #ffffff;
}
.store-dl__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 10px 14px;
}
.store-dl__row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.store-dl__label,
.store-dl__value {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  color: #292220;
  letter-spacing: -0.03em;
  line-height: 1.92;
}

/* アクション行 */
.store-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.btn-store-reserve {
  font-family: var(--font);
  font-size: 14px;
  color: #292220;
  background: transparent;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 0 20px;
  width: 127px;
  height: 41px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  /* a要素にも対応 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-store-reserve:hover {
  background: rgba(0, 0, 0, 0.04);
}
.store-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  /* a要素にも対応 */
  text-decoration: none;
  color: inherit;
}
.store-phone svg {
  width: 32px;
  height: 32px;
  fill: #292220;
  flex-shrink: 0;
}
.store-phone__num {
  font-family: var(--font);
  font-size: 24px;
  color: #292220;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.store-phone:hover .store-phone__num {
  opacity: 0.7;
}

/* 地図 + マップボタン */
.store-map-placeholder {
  grid-area: map;
  width: 100%;
  min-height: 320px;
  background: #e6e6e6;
  overflow: hidden;
  position: relative;
}
.store-map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.btn-store-map {
  grid-area: mapbtn;
  align-self: end;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #27241f;
  border: none;
  border-radius: 4px;
  padding: 14px 20px;
  width: 100%;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-store-map:hover {
  opacity: 0.82;
}

/* レスポンシブ */
@media (max-width: 720px) {
  .store-section__heading {
    padding-bottom: 20px;
  }
  .store-section__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "dl"
      "actions"
      "map"
      "mapbtn";
    gap: 0;
  }
  .store-map-placeholder {
    height: 200px;
    margin-top: 24px;
  }
  .btn-store-map {
    margin-top: 16px;
  }
  .store-dl__row {
    grid-template-columns: 76px 1fr;
  }
  .store-dl__label,
  .store-dl__value {
    font-size: 14px;
  }
  /* スマホで「ご予約 + 電話マーク + 電話番号」を横一列に維持 */
  .store-actions {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .store-phone {
    min-width: 0;       /* flex子要素のはみ出し縮小を許可 */
    flex-shrink: 1;
  }
  .store-phone svg {
    width: 26px;        /* 32px × 80% = 20%縮小 */
    height: 26px;
  }
  .store-phone__num {
    font-size: 19px;    /* 24px × 80% = 20%縮小 */
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer-root {
  width: 100%;
  background: #2a2520;
  color: #e9e4dc;
  padding: 56px 80px 28px;
  font-size: 14px;
  line-height: 1.7;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  -webkit-font-smoothing: antialiased;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

/* Brand */
.footer-brand {
  padding-top: 4px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #efe7d6;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #f3ede2;
}
.footer-brand-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.95;
  color: #b8b1a4;
  letter-spacing: 0.04em;
}

/* Social */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  padding-top: 12px;
}
.footer-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #e9e4dc;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.footer-social-item:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}
.footer-social-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.footer-social-label {
  font-family: "Noto Sans JP", "Noto Serif JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #d3ccbf;
  white-space: nowrap;
}

/* Nav */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.footer-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-nav-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-nav-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  color: #e9e4dc;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.12em;
  transition:
    color 0.2s ease,
    padding 0.2s ease;
}
.footer-nav-list a:hover {
  color: #c9a86a;
  padding-left: 8px;
}
.footer-nav-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  color: #8a8278;
  font-weight: 300;
}

/* Info */
.footer-info {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: #e9e4dc;
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.footer-address {
  margin-bottom: 18px;
  line-height: 1.85;
}
.footer-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  row-gap: 6px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-hours-label {
  color: #e9e4dc;
}
.footer-hours-value {
  color: #e9e4dc;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.footer-closed {
  color: #e25b4d;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* Bottom row */
.footer-bottom {
  max-width: 1320px;
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8a8278;
  letter-spacing: 0.04em;
}
.footer-copyright {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 13px;
  color: #9a9286;
  letter-spacing: 0.05em;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-legal a {
  color: #9a9286;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: #d9cfb9;
}
.footer-legal-sep {
  color: #4a443d;
  font-size: 11px;
}

/* レスポンシブ */
@media (max-width: 1180px) {
  .footer-root {
    padding: 56px 56px 26px;
  }
  .footer-inner {
    gap: 40px;
  }
  .footer-social {
    gap: 28px;
  }
}
@media (max-width: 960px) {
  .footer-root {
    padding: 0 auto;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px 40px;
    margin: 0 0 0 80px;
  }
  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-social {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    padding-top: 16px;
  }
  .footer-nav {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-info {
    grid-column: 2;
    grid-row: 2;
  }
  .footer-bottom {
    flex-direction: row;
    gap: 16px;
    margin-top: 44px;
  }
}
@media (max-width: 640px) {
  .footer-root {
    padding: 44px 24px 24px;
    font-size: 13px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    margin: 0 auto;
  }
  .footer-brand,
  .footer-social,
  .footer-nav,
  .footer-info {
    grid-column: 1;
    grid-row: auto;
  }
  .footer-brand {
    text-align: center;
    order: 1;
  }
  .footer-brand-row {
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .footer-brand-name {
    font-size: 20px;
  }
  .footer-social {
    justify-content: center;
    gap: 32px;
    padding-top: 0;
    order: 2;
  }
  .footer-nav {
    order: 3;
  }
  .footer-nav-list a {
    padding: 14px 4px;
    font-size: 14px;
  }
  .footer-info {
    order: 4;
    text-align: center;
  }
  .footer-hours {
    grid-template-columns: auto auto;
    justify-content: center;
    column-gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    margin-top: 36px;
  }
  .footer-legal {
    gap: 18px;
  }
}
@media (max-width: 380px) {
  .footer-root {
    padding: 40px 18px 20px;
  }
  .footer-brand-name {
    font-size: 19px;
  }
  .footer-social {
    gap: 24px;
  }
  .footer-nav-list a {
    font-size: 13px;
  }
  .footer-info {
    font-size: 13px;
  }
  .footer-legal {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ================================================================
   GLOBAL RESPONSIVE（--pad 変更）
   ================================================================ */
@media (max-width: 1120px) {
  :root {
    --pad: 32px;
  }
}
@media (max-width: 900px) {
  :root {
    --pad: 24px;
  }
}
@media (max-width: 640px) {
  :root {
    --pad: 16px;
  }
  .item-list li {
    font-size: 15px;
  }
}
