/* =========================================================
  page-eat.php 専用CSS
  追加先例：テーマ/css/page-eat.css など
  角丸は5px以下で統一 / 一部パララックス使用
========================================================= */

.eat-page-renewal {
  --eat-orange: #f47b20;
  --eat-deep-orange: #d94f00;
  --eat-red: #e9342f;
  --eat-yellow: #ffd34d;
  --eat-blue: #00a6d6;
  --eat-deep-blue: #0077a8;
  --eat-brown: #3b2412;
  --eat-cream: #fff7e8;
  --eat-border: rgba(107, 63, 23, .18);
  --eat-shadow: 0 16px 36px rgba(72, 40, 15, .15);
  color: var(--eat-brown);
  overflow: hidden;
  background: #fff;
}

.eat-page-renewal *,
.eat-page-renewal *::before,
.eat-page-renewal *::after {
  box-sizing: border-box;
}

.eat-page-renewal img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.eat-page-renewal a {
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.eat-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--eat-red), var(--eat-orange));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(233, 52, 47, .2);
}

.eat-section-kicker::before,
.eat-section-kicker::after {
  content: "✦";
  font-size: 11px;
}

.eat-outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  margin-top: 18px;
  padding: 10px 20px;
  border: 1px solid var(--eat-red);
  border-radius: 5px;
  color: var(--eat-red);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.eat-outline-link:hover {
  transform: translateY(-3px);
  background: var(--eat-red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(233, 52, 47, .18);
}

.eat-outline-link--light {
  border-color: rgba(255, 255, 255, .75);
  background: rgba(0, 0, 0, .22);
  color: #fff;
}

.eat-outline-link--light:hover {
  background: #fff;
  color: var(--eat-red);
}

/* =========================================================
  FV
========================================================= */
.eat-hero {
  position: relative;
  min-height: 760px;
  background: #120902;
  isolation: isolate;
  overflow: hidden;
}

.eat-hero__bg,
.eat-hero__overlay {
  position: absolute;
  inset: 0;
}

.eat-hero__bg {
  z-index: -3;
}

.eat-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.18) contrast(1.05);
}

.eat-hero__overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 123, 32, .46), transparent 28%),
    radial-gradient(circle at 18% 68%, rgba(0, 166, 214, .34), transparent 27%),
    linear-gradient(90deg, rgba(23, 11, 3, .88) 0%, rgba(45, 22, 5, .72) 44%, rgba(17, 9, 2, .24) 100%);
}

.eat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.eat-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  min-height: 760px;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
}

.eat-hero__content {
  position: relative;
  z-index: 2;
}

.eat-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.eat-hero__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 5px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.eat-hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 110px;
  height: 38px;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 18px;

  color: #fff;
  background: linear-gradient(180deg, #ff8a35 0%, #f25b19 100%);

  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;

  border: none;
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.eat-hero__title {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(48px, 6.2vw, 86px);
  font-family: "Mochiy Pop One", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: .02em;
  text-shadow: 0 9px 24px rgba(0,0,0,.4);
}

.eat-hero__lead {
  max-width: 720px;
  margin: 0 0 30px;
  color: #fff9ee;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 800;
  line-height: 2;
  text-shadow: 0 4px 14px rgba(0,0,0,.35);
}

.eat-hero__actions,
.eat-reserve-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.eat-btn {
  border-radius: 5px !important;
  font-weight: 900;
}

.eat-btn--orange {
  background: var(--eat-orange);
  color: #fff;
}

.eat-btn--white {
  background: #fff;
  color: var(--eat-brown);
}

.eat-btn--yellow {
  background: var(--eat-yellow);
  color: var(--eat-brown);
}

.eat-hero__mini {
  display: grid;
  grid-template-columns: repeat(4, 92px);
  gap: 10px;
  margin-top: 28px;
}

.eat-hero__mini figure {
  margin: 0;
  height: 92px;
  border: 3px solid #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0,0,0,.28);
}

.eat-hero__mini figure:nth-child(even) {
  transform: translateY(-8px);
}

.eat-hero__mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eat-hero__side {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 10px;
}

.eat-hero__logo {
  display: block;
  width: 245px;
  margin-left: auto;
  margin-bottom: 230px;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.42));
  transform: rotate(3deg);
}

.eat-hero__message {
  width: 100%;
  padding: 26px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 5px;
  background: rgba(255, 247, 232, .9);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.eat-hero__message span {
  display: block;
  margin-bottom: 8px;
  color: var(--eat-red);
  font-weight: 900;
  letter-spacing: .08em;
}

.eat-hero__message strong {
  display: block;
  color: var(--eat-brown);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.35;
}

.eat-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  line-height: 0;
}

/* =========================================================
  FLOW NAV / INFO
========================================================= */
.eat-flow-nav-wrap {
  position: relative;
  z-index: 8;
  margin-top: -38px;
}

.eat-flow-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 14px;
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--eat-shadow);
}

.eat-flow-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px;
  border-radius: 5px;
  background: linear-gradient(180deg, #fff7e7, #ffe2a4);
  color: var(--eat-brown);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.eat-flow-nav a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(244,123,32,.2);
}

.eat-info-strip {
  padding: 34px 0 20px;
  background: #fff;
}

.eat-info-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--eat-border);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(72, 40, 15, .09);
  overflow: hidden;
}

.eat-info-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 28px;
  border-right: 1px solid var(--eat-border);
}

.eat-info-card:last-child {
  border-right: 0;
}

.eat-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background: #fff7e8;
  color: var(--eat-red);
  font-size: 32px;
}

.eat-info-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.eat-info-card p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
}

.eat-info-card a {
  color: var(--eat-red);
  font-weight: 800;
}

/* =========================================================
  CONCEPT
========================================================= */
.eat-concept-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 18%, rgba(255,211,77,.28), transparent 25%),
    radial-gradient(circle at 96% 78%, rgba(0,166,214,.16), transparent 28%),
    #fffaf0;
}

.eat-concept-section::before,
.eat-concept-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: url('../imgs/ph34.png') center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}

.eat-concept-section::before {
  left: 3%;
  top: 8%;
  transform: rotate(-12deg);
}

.eat-concept-section::after {
  right: 4%;
  bottom: 5%;
  transform: rotate(12deg);
}

.eat-concept-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.eat-concept-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.28;
  letter-spacing: .03em;
}

.eat-concept-copy p {
  margin: 0 0 18px;
  line-height: 2;
  font-weight: 600;
}

.eat-concept-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.eat-concept-collage figure {
  margin: 0;
  min-height: 190px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--eat-shadow);
}

.eat-concept-collage__large {
  grid-row: span 2;
}

.eat-concept-collage figure:nth-child(4) {
  grid-column: span 2;
  min-height: 210px;
}

.eat-concept-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
  CARD GRID / MENU / DRINK / SCENE
========================================================= */
.eat-signature-section,
.eat-drink-section,
.eat-seat-section {
  background: #fff7e8;
}

.eat-signature-section {
  position: relative;
  background:
    linear-gradient(180deg, #fff3d3 0%, #fff8ea 100%);
}

.eat-signature-section::before {
  content: "MENU";
  position: absolute;
  right: -16px;
  top: 34px;
  color: rgba(233, 52, 47, .065);
  font-size: clamp(90px, 14vw, 180px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.eat-card-grid {
  display: grid;
  gap: 20px;
}

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

.eat-menu-card,
.eat-scene-card {
  position: relative;
  border: 1px solid rgba(218, 96, 37, .28);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--eat-shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}

.eat-menu-card:hover,
.eat-scene-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(92,44,10,.2);
}

.eat-menu-card figure,
.eat-scene-card figure {
  margin: 0;
  height: 245px;
  overflow: hidden;
}

.eat-menu-card img,
.eat-scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.eat-menu-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 5px;
  background: var(--eat-red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(255,211,77,.9);
}

.eat-menu-card__body,
.eat-scene-card__body {
  padding: 22px;
}

.eat-menu-card__body span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--eat-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.eat-menu-card__body h3,
.eat-scene-card__body h3 {
  margin: 0 0 10px;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.35;
}

.eat-menu-card__body p,
.eat-scene-card__body p {
  margin: 0;
  line-height: 1.85;
  font-weight: 600;
}

/* =========================================================
  DAILY PARALLAX
========================================================= */
.eat-daily-parallax {
  position: relative;
  min-height: 360px;
  padding: 70px 0;
  background-image:
    linear-gradient(90deg, rgba(35, 17, 5, .86), rgba(35, 17, 5, .25)),
    url('../imgs/ph21.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.eat-daily-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.eat-daily-parallax__inner {
  position: relative;
  z-index: 2;
}

.eat-daily-parallax__copy {
  max-width: 560px;
}

.eat-daily-parallax h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.3;
}

.eat-daily-parallax p {
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 2;
}

/* =========================================================
  DRINK
========================================================= */
.eat-drink-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,166,214,.12), rgba(255,255,255,.96)),
    #fff;
}

.eat-drink-card figure {
  height: 220px;
}

/* =========================================================
  SEAT：画像＋テキスト3カラム
========================================================= */
.eat-seat-section {
  background:
    linear-gradient(180deg, #fff8ea 0%, #f7ecda 100%);
}

.eat-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.eat-scene-card figure {
  height: 255px;
}

.eat-scene-card__body h3::before {
  content: "🌺 ";
}

/* =========================================================
  GALLERY
========================================================= */
.eat-gallery-section {
  background: #fff;
}

.eat-photo-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.eat-photo-gallery figure {
  margin: 0;
  height: 170px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(74,43,19,.12);
}

.eat-photo-gallery figure:nth-child(1),
.eat-photo-gallery figure:nth-child(6) {
  grid-column: span 2;
}

.eat-photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.eat-photo-gallery figure:hover img {
  transform: scale(1.08);
}

/* =========================================================
  CTA
========================================================= */
.eat-reserve-cta {
  position: relative;
  padding: 52px 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(202, 36, 24, .92), rgba(244, 123, 32, .88)),
    url('../imgs/ph28.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.eat-reserve-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.eat-reserve-cta__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.eat-reserve-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
}

.eat-reserve-cta p {
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
}

/* =========================================================
  RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .eat-hero__inner {
    grid-template-columns: 1fr;
  }

  .eat-hero__side {
    display: none;
  }

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

  .eat-info-strip__grid,
  .eat-concept-layout,
  .eat-card-grid--3,
  .eat-scene-grid,
  .eat-reserve-cta__inner {
    grid-template-columns: 1fr;
  }

  .eat-info-card {
    border-right: 0;
    border-bottom: 1px solid var(--eat-border);
  }

  .eat-info-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .eat-hero {
    min-height: 680px;
  }

  .eat-hero__inner {
    min-height: 680px;
    padding-top: 110px;
    padding-bottom: 120px;
  }

  .eat-hero__badges {
    gap: 7px;
  }

  .eat-hero__badges span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .eat-hero__title {
    font-size: 44px;
  }

  .eat-hero__lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .eat-hero__actions,
  .eat-reserve-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .eat-hero__mini {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }

  .eat-hero__mini figure {
    height: 68px;
  }

  .eat-flow-nav-wrap {
    margin-top: -26px;
  }

  .eat-flow-nav {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .eat-flow-nav a {
    min-height: 48px;
    font-size: 13px;
  }

  .eat-info-card {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }

  .eat-info-card__icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .eat-concept-collage,
  .eat-photo-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .eat-concept-collage figure,
  .eat-concept-collage figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 150px;
  }

  .eat-menu-card figure,
  .eat-scene-card figure,
  .eat-drink-card figure {
    height: 220px;
  }

  .eat-daily-parallax {
    background-attachment: scroll;
    padding: 54px 0;
  }

  .eat-photo-gallery figure,
  .eat-photo-gallery figure:nth-child(1),
  .eat-photo-gallery figure:nth-child(6) {
    grid-column: auto;
    height: 130px;
  }
}

/* =========================
   EAT HERO：横100%・比率1440×500
========================= */

.eat-hero {
  position: relative;
  width: 100vw;
  height: clamp(600px, calc(100vw * 500 / 1440), 680px);
  min-height: 600px !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #061b28;
}

.eat-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0 !important;
  overflow: hidden;
}

.eat-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.eat-hero__inner {
  position: relative;
  z-index: 2;
  display: block !important;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 0 !important;
}

.eat-hero__content {
  position: absolute;
  left: 300px;
  top: 40%;
  z-index: 4;
  color: #fff;
  width: max-content;
  max-width: min(760px, 90vw);
}

@media (max-width: 767px) {
  .eat-hero {
    height: 72svh;
    min-height: 520px !important;
  }
}

 /* =========================
   EAT HERO：文字サイズを画面幅に応じて可変
========================= */

.eat-hero__label {
  font-size: clamp(10px, 0.9vw, 13px);
  height: clamp(30px, 2.8vw, 38px);
  min-height: clamp(30px, 2.8vw, 38px);
  padding: 0 clamp(12px, 1.3vw, 18px);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35);
}

.eat-hero__title {
  font-size: clamp(34px, 4vw, 82px);
  line-height: 1.22;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.72),
    2px 2px 0 rgba(0, 32, 58, 0.55);
}

.eat-hero__lead {
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.75;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.45),
    0 5px 12px rgba(0, 0, 0, 0.75);
}



/* =========================
   EAT HERO：ノートPC文字位置調整
========================= */

@media (max-width: 1366px) and (min-width: 768px) {
  .eat-hero {
    height: 500px;
    min-height: 500px !important;
  }

  .eat-hero__inner {
    height: 500px;
    min-height: 500px !important;
  }

  .eat-hero__content {
    left: 300px;
    top: 190px;
    transform: none;
  }
}

/* =========================
   EAT MENU INTRO
========================= */

.eat-menu-intro {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 40px 0 58px;
  overflow: hidden;
  background: #fff;
}

.eat-menu-intro__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  height: 230px;
  pointer-events: none;
  overflow: hidden;
}

.eat-menu-intro__bg img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center top;
}

/* 花背景の下端を自然に白へなじませる */
.eat-menu-intro__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 248, 239, 0) 0%,
    rgba(255, 248, 239, 0.45) 38%,
    rgba(255, 255, 255, 0.82) 72%,
    #fff 100%
  );
}

.eat-menu-intro__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}

.eat-menu-intro__heading {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.eat-menu-intro__heading p {
  margin: 0 0 10px;
  color: #3a302a;
  font-family: "Mochiy Pop One", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.eat-menu-intro__heading h2 {
  margin: 0;
  color: #f15b1a;
  font-family: "Noto Sans", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.eat-menu-intro__content {
  position: relative;
  min-height: 510px;
}

.eat-menu-intro__text {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 5;
  width: 420px;
}

.eat-menu-intro__text h3 {
  margin: 0 0 24px;
  color: #070707;
  font-family: "Mochiy Pop One", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  width: 480px;
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.95), -2px 2px 0 rgba(255, 255, 255, 0.95), 2px -2px 0 rgba(255, 255, 255, 0.95), -2px -2px 0 rgba(255, 255, 255, 0.95), 0 6px 10px rgba(0, 60, 90, 0.28);
}

.eat-menu-intro__text p {
  margin: 0;
  color: #202020;
  font-size: 14px;
  line-height: 2;
  font-weight: 700;
  text-align: justify;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.95), -2px 2px 0 rgba(255, 255, 255, 0.95), 2px -2px 0 rgba(255, 255, 255, 0.95), -2px -2px 0 rgba(255, 255, 255, 0.95), 0 6px 10px rgba(0, 60, 90, 0.28);
}

.eat-menu-intro__photo {
  position: absolute;
  right: 70px;
  top: 22px;
  z-index: 3;
  width: 520px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(75, 35, 10, 0.18);
}

.eat-menu-intro__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.eat-menu-intro__flower {
  position: absolute;
  left: 370px;
  top: -30px;
  z-index: 6;
  width: 150px;
  margin: 0;
  pointer-events: none;
}

.eat-menu-intro__flower img {
  display: block;
  width: 100%;
  height: auto;
}

.eat-menu-intro__food {
  position: absolute;
  z-index: 4;
  margin: 0;
  pointer-events: none;
}

.eat-menu-intro__food img {
  display: block;
  width: 100%;
  height: auto;
}

.eat-menu-intro__food--tacorice {
  left: 18px;
  bottom: -40px;
  width: 330px;
  z-index: 6;
}

.eat-menu-intro__food--goya {
  left: 400px;
  bottom: 60px;
  width: 290px;
  z-index: 9;
}

.eat-menu-intro__food--umibudo {
  left: 235px;
  bottom: -45px;
  width: 220px;
  z-index: 8;
}

.eat-menu-intro__food--carrot {
  right: -270px;
  bottom: -50px;
  width: 500px;
  z-index: 2;
  opacity: 0.56;
}

.eat-menu-intro__button {
  position: absolute;
  left: 520px;
  bottom: 24px;
  z-index: 9;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 280px;
  height: 46px;
  padding: 0 26px;

  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;

  background: linear-gradient(180deg, #ff8a35 0%, #f25b19 100%);
  border-radius: 999px;
  box-shadow: 0 9px 18px rgba(230, 88, 20, 0.22);
}

.eat-menu-intro__button::after {
  content: "›";
  display: inline-block;
  margin-left: 18px;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.sp-only-br {
  display: none;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) and (min-width: 768px) {
  .eat-menu-intro__inner {
    width: calc(100% - 44px);
  }

  .eat-menu-intro__content {
    min-height: 500px;
  }

  .eat-menu-intro__photo {
    right: 0;
    top: 30px;
    width: 470px;
  }

  .eat-menu-intro__flower {
    left: 330px;
    width: 128px;
  }

  .eat-menu-intro__food--tacorice {
    left: 0;
    width: 300px;
  }

  .eat-menu-intro__food--goya {
    left: 330px;
    width: 235px;
  }

  .eat-menu-intro__food--umibudo {
    left: 235px;
    width: 185px;
  }

  .eat-menu-intro__button {
    left: 450px;
  }
  .eat-hero__content {
    left: clamp(30px, 22vw, 270px);
    top: 190px;
  }
}

/* =========================
   SP
========================= */

@media (max-width: 767px) {
  .eat-menu-intro {
    padding: 28px 0 42px;
  }

  .eat-menu-intro__inner {
    width: calc(100% - 32px);
  }

  .eat-menu-intro__heading {
    margin-bottom: 20px;
  }

  .eat-menu-intro__heading p {
    font-size: 24px;
    line-height: 1.55;
  }

  .eat-menu-intro__heading h2 {
    font-size: 23px;
  }

  .eat-menu-intro__content {
    min-height: 700px;
  }

  .eat-menu-intro__text {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    z-index: 8;
    margin-bottom: 20px;
  }

  .eat-menu-intro__text h3 {
    font-size: 21px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .eat-menu-intro__text p {
    font-size: 12px;
    line-height: 1.9;
  }

  .eat-menu-intro__photo {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    z-index: 3;
    margin: 0;
    border-radius: 8px;
  }

  .eat-menu-intro__flower {
    top: 185px;
    width: 95px;
    transform: translateX(-110%);
  }

  .eat-menu-intro__food--tacorice {
    left: -10px;
    bottom: 120px;
    width: 210px;
  }

  .eat-menu-intro__food--goya {
    right: -10px;
    left: auto;
    bottom: 150px;
    width: 195px;
    }

  .eat-menu-intro__food--umibudo {
    left: 100px;
    bottom: 90px;
    width: 160px;
  }

  .eat-menu-intro__food--carrot {
    right: -140px;
    bottom: -10px;
    width: 400px;
    opacity: 0.45;
  }

  .eat-menu-intro__button {
    left: 50%;
    bottom: 18px;
    width: 82%;
    max-width: 300px;
    height: 44px;
    transform: translateX(-50%);
    font-size: 12px;
  }
  .sp-only-br {
    display: block;
  }
}

/* =========================
   EAT DRINK INTRO：PC配置修正版
========================= */

.eat-drink-intro {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 38px 0 48px;
  overflow: hidden;
  background: #fff;
}

.eat-drink-intro__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  height: 155px;
  overflow: hidden;
  pointer-events: none;
}

.eat-drink-intro__bg img {
  display: block;
  width: 100%;
  height: 155px;
  object-fit: cover;
  object-position: center top;
}

.eat-drink-intro__inner {
  position: relative;
  z-index: 2;
  width: 1120px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.eat-drink-intro__heading {
  position: relative;
  z-index: 20;
  margin: 28px 0 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.eat-drink-intro__heading h2 {
  margin: 0 0 10px;
  color: #111;
  font-family: "Mochiy Pop One", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.eat-drink-intro__heading p {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 800;
}

.eat-drink-intro__content {
  position: relative;
  min-height: 620px;
}

/* 左上の赤い花 */
.eat-drink-intro__flower {
  position: absolute;
  left: 36px;
  top: 0;
  z-index: 12;
  width: 142px;
  margin: 0;
  pointer-events: none;
}

.eat-drink-intro__flower img {
  display: block;
  width: 100%;
  height: auto;
}

.eat-drink-intro__main-photo {
  position: absolute;
  left: clamp(0px, 1.4vw, 20px);
  top: clamp(80px, 7.6vw, 110px);
  z-index: 4;

  width: clamp(360px, 36vw, 520px);

  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(75, 35, 10, 0.18);
}

.eat-drink-intro__main-photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* 右上の乾杯丸写真 */
.eat-drink-intro__circle-group {
  position: absolute;
  right: clamp(20px, 5vw, 78px);
  top: 0;
  z-index: 9;

  width: clamp(340px, 33vw, 480px);
  aspect-ratio: 480 / 320;
}

/* 左の丸画像 */
.eat-drink-intro__bottle-circle {
  position: absolute;
  left: 13%;
  top: 34%;

  width: 40%;
  aspect-ratio: 1 / 1;

  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

/* 右の大きい丸画像 */
.eat-drink-intro__cheers {
  position: absolute;
  right: 0;
  top: 0;

  width: 53%;
  aspect-ratio: 1 / 1;

  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}

.eat-drink-intro__bottle-circle img,
.eat-drink-intro__cheers img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eat-drink-intro__awamori {
  position: absolute;
  left: 210px;
  bottom: 32px;
  z-index: 7;
  width: 245px;
  height: 245px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.eat-drink-intro__awamori img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .eat-drink-intro__awamori img {
    opacity: 0.35;
  }
}

/* 左下の薄いボトル背景 */
.eat-drink-intro__bottle-left {
  position: absolute;
  left: calc((100vw - min(1120px, calc(100vw - 56px))) / -2 + 30px);
  bottom: -28px;
  width: 400px;
  opacity: 0.28;
  z-index: 1;
  margin: 0;
  pointer-events: none;
}

.eat-drink-intro__bottle-left img {
  display: block;
  width: 100%;
  height: auto;
}

.eat-drink-intro__bottle-left {
  opacity: 1;
}

.eat-drink-intro__bottle-left img {
  opacity: 0.34;

  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.75) 45%,
    rgba(0, 0, 0, 0.28) 75%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.75) 45%,
    rgba(0, 0, 0, 0.28) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* 追加ボトル装飾 */
.eat-drink-intro__bottle-deco {
  position: absolute;
  left: -76px;
  bottom: 64px;
  z-index: 2;
  width: 210px;
  margin: 0;
  opacity: 0.28;
  pointer-events: none;
}

.eat-drink-intro__bottle-deco img {
  display: block;
  width: 100%;
  height: auto;
}

/* 左下の丸泡盛 */
.eat-drink-intro__awamori {
  position: absolute;
  left: 100px;
  bottom: -25px;
  z-index: 7;
  width: 240px;
  height: 240px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}

.eat-drink-intro__awamori img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* シーサー */
.eat-drink-intro__shisa {
  position: absolute;
  left: 275px;
  bottom: 36px;
  z-index: 10;
  width: 260px;
  margin: 0;
  pointer-events: none;
}

.eat-drink-intro__shisa img {
  display: block;
  width: 100%;
  height: auto;
}

/* 右側テキスト */
.eat-drink-intro__text {
  position: absolute;
  right: 20px;
  top: 315px;
  z-index: 11;
  width: 480px;
}

.eat-drink-intro__text h3 {
  margin: 0 0 20px;
  color: #111;
  font-family: "Mochiy Pop One", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 27px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.95), -2px 2px 0 rgba(255, 255, 255, 0.95), 2px -2px 0 rgba(255, 255, 255, 0.95), -2px -2px 0 rgba(255, 255, 255, 0.95), 0 6px 10px rgba(0, 60, 90, 0.28);
}

.eat-drink-intro__text p {
  margin: 0;
  color: #202020;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 700;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.95), -2px 2px 0 rgba(255, 255, 255, 0.95), 2px -2px 0 rgba(255, 255, 255, 0.95), -2px -2px 0 rgba(255, 255, 255, 0.95), 0 6px 10px rgba(0, 60, 90, 0.28);
}

.eat-drink-intro__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 46px;
  margin: 28px auto 0;
  padding: 0 26px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, #ff8a35 0%, #f25b19 100%);
  border-radius: 999px;
  box-shadow: 0 9px 18px rgba(230, 88, 20, 0.22);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) and (min-width: 768px) {
  .eat-drink-intro__inner {
    width: calc(100% - 44px);
  }

  .eat-drink-intro__content {
    min-height: 540px;
  }


  .eat-drink-intro__flower {
    left: 10px;
    width: 130px;
  }

  .eat-drink-intro__text {
    top: 280px;
  }
}

/* =========================
   SP
========================= */

@media (max-width: 767px) {
  .eat-drink-intro {
    padding: 30px 0 44px;
  }

  .eat-drink-intro__bg,
  .eat-drink-intro__bg img {
    height: 170px;
  }

  .eat-drink-intro__inner {
    width: calc(100% - 32px);
  }

  .eat-drink-intro__heading {
    margin-bottom: 26px;
  }

  .eat-drink-intro__heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .eat-drink-intro__heading p {
    font-size: 12px;
    line-height: 1.7;
  }

  .eat-drink-intro__content {
    min-height: 700px;
  }

  .eat-drink-intro__main-photo {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin: 0;
    border-radius: 8px;
  }

  .eat-drink-intro__flower {
    left: -8px;
    top: -27px;
    width: 92px;
  }

  .eat-drink-intro__cheers {
    right: 0;
    top: 185px;
    width: 180px;
  }

  .eat-drink-intro__bottle-circle {
    left: 40px;
    top: 255px;
    width: 140px;
  }

  .eat-drink-intro__shisa {
    left: -25px;
    bottom: 415px;
    width: 160px;
  }

  .eat-drink-intro__bottle-left {
    left: -30px;
    top: 235px;
    width: 230px;
    opacity: 1.38;
  }

  .eat-drink-intro__bottle-deco {
    left: -42px;
    bottom: 220px;
    width: 160px;
    opacity: 0.28;
  }

  .eat-drink-intro__text {
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    width: 100%;
  }

  .eat-drink-intro__text h3 {
    font-size: 21px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .eat-drink-intro__text p {
    font-size: 12px;
    line-height: 1.85;
  }

  .eat-drink-intro__button {
    width: 82%;
    max-width: 300px;
    height: 44px;
    margin-top: 22px;
    font-size: 12px;
  }
  .eat-hero__content {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -35%);
    width: calc(100% - 40px);
    max-width: none;
  }
}

/* =========================
   FOOD MENU POPUP
========================= */

.food-menu-modal .drink-menu-modal__content {
  width: min(760px, calc(100vw - 60px));
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  overflow-x: hidden;
}

.food-menu-modal__images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 0;
}

.food-menu-modal__images img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .food-menu-modal .drink-menu-modal__content {
    width: calc(100vw - 32px);
    max-height: calc(100svh - 32px);
  }

  .food-menu-modal__images {
    gap: 10px;
  }
}

/* =========================
   DRINK MENU POPUP
========================= */

.drink-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.drink-menu-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drink-menu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}

.drink-menu-modal__content {
  position: relative;
  z-index: 1;

  width: min(760px, calc(100vw - 60px));
  max-height: calc(100vh - 60px);
  overflow: auto;

  background: #fff;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.drink-menu-modal__image {
  width: 100%;
}

.drink-menu-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.drink-menu-modal__close {
  position: sticky;
  top: 12px;
  float: right;
  z-index: 3;

  width: 44px;
  height: 44px;
  margin: 12px 12px -56px 0;
  padding: 0;

  background: rgba(0, 0, 0, 0.75);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.drink-menu-modal__close span {
  position: absolute;
  left: 11px;
  top: 21px;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.drink-menu-modal__close span:first-child {
  transform: rotate(45deg);
}

.drink-menu-modal__close span:last-child {
  transform: rotate(-45deg);
}

body.is-drink-menu-open {
  overflow: hidden;
}

/* SP */
@media screen and (max-width: 767px) {
  .drink-menu-modal {
    padding: 16px;
  }

  .drink-menu-modal__content {
    width: calc(100vw - 32px);
    max-height: calc(100svh - 32px);
    border-radius: 4px;
  }

  .drink-menu-modal__close {
    width: 40px;
    height: 40px;
    margin: 8px 8px -48px 0;
  }

  .drink-menu-modal__close span {
    left: 10px;
    top: 19px;
    width: 20px;
  }
}