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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    "MS Mincho",
    serif;
  background: #fff;
  font-size: 20px;
  color: #0E050B;
  line-height: 2;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

section {
  background: transparent;
  padding: 40px 20px;
  scroll-margin-top: 100px;
}

/* =========================
   Utility / Animation
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Layout / Wrapper
========================= */
.sakura-wrapper {
  position: relative;
  overflow: hidden;
  z-index: -5;
}

.sakura-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image: url("../images/deco-sakura.webp");
  background-repeat: repeat;
  background-size: 1200px auto;
  background-position: 0 0;
  opacity: 0.8;
}


/* =========================
   Header
========================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.fv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 50px;
  background-color: #0cb69dd5;
}


/* =========================
   Header Logo
========================= */
.header-logo {
  width: 300px;
}

/* =========================
   Header Right Layout
========================= */
.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #F1ECD6;
}

.header-right a {
  color: #F1ECD6;
}

.header-right a:hover {
  filter: brightness(2);
}

/* =========================
   Header Navigation（MAP / ACCESS）
========================= */
.header-nav ul {
  display: flex;
  align-items: start;
  gap: 16px;
  list-style: none;
}

.header-nav li {
  display: flex;
  align-items: center;
}

.header-nav li+li::before {
  content: "|";
  margin-right: 16px;
  color: #F1ECD6;
}

.header-nav a {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: 0.2s ease;
}

/* =========================
   SNS Icons
========================= */
.icon-sns {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.icon-sns li {
  display: flex;
  align-items: center;
}

.icon-sns img {
  width: 20px;
  transition: opacity 0.2s ease;
}

.icon-sns a:hover img {
  opacity: 1;
}

/* =========================
   Language Switch
========================= */
.language {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  letter-spacing: 0.06em;
}

.language .lang-icon {
  width: 20px;
}

.language a {
  color: inherit;
}

/* =========================
   Hamburger Button
========================= */
.hamburger {
  position: relative;
  z-index: 9999;
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #f3a1b3;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* Hamburger Lines */
.hamburger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform .35s ease, opacity .25s ease;
}

.hamburger span:nth-child(1) {
  top: 15px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 27px;
}

/* Open State */
.hamburger.is-open span:nth-child(1) {
  transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

/* =========================
   Drawer Menu
========================= */
.drawer-menu {
  position: fixed;
  top: 110px;
  right: 24px;
  z-index: 900;
  width: 320px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}

.drawer-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.drawer-menu ul {
  list-style: none;
  text-align: center;
}

.drawer-menu li+li {
  margin-top: 22px;
}

.drawer-menu a {
  position: relative;
  font-size: 20px;
  letter-spacing: .12em;
  color: #6b4b2a;
  text-decoration: none;
}

.drawer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .3s ease;
}

.drawer-menu a:hover::after {
  transform: scaleX(1);
}

/* =========================
   FV / Hero
========================= */
.fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  z-index: 1;
}

/* FV Background */
.fv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/mv-bg.webp") center bottom / cover no-repeat;
  filter: brightness(95%);
}

/* FV Inner */
.fv-inner {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* =========================
   FV Layers
========================= */
/* Main Visual */
.fv-visual {
  margin: 0 auto;
  z-index: 9;
  height: calc(100vh - 80px);
}

.fv-visual img {
  height: calc(100vh - 300px);
  width: auto;
  margin: 100px auto 0;
}

.fv-sub {
  z-index: 9;
  position: absolute;
  top: 100px;
  left: 25vw;
  width: 10vw;
}

/* Free Label */
.fv-free {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 11;
  width: 300px;
  padding: 10px 28px;
  background: #FAEFC7;
  color: #5C3610;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .8);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.event-end {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: #fff;
  color: #e56a8a;
  width: 90%;
  max-width: 1200px;
  font-size: clamp(16px, 5vw, 48px);
  font-weight: 900;
  text-align: center;
  padding: 10px;
  outline: 2px solid #e56a8a;
  outline-offset: -10px;
}

/* =========================
   Event Bar
========================= */
.event-bar {
  padding: 10px;
  background: #D6FFF7;
}

.event-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 26px;
  color: #5C3610;
  line-height: 1.6;
}

/* Labels */
.event-label {
  display: inline-block;
  padding: 6px 14px;
  background: none;
  border: 1px solid #5C3610;
  border-radius: 10px;
  font-size: 26px;
  text-align: center;
  white-space: nowrap;
}

/* Text */
.event-text {
  white-space: nowrap;
}

/* Time */
.event-time {
  margin-left: 6px;
  font-size: 16px;
}

.event-time span {
  font-size: 24px;
}

/* =========================
   Concept Section
========================= */
.concept-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.concept-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/concept-bg.webp") center / cover no-repeat;
}

.concept-panel {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 70px auto;
  padding: 50px 20px;
  background: rgba(80, 170, 200, 0.8);
  border-radius: 8px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.concept-inner {
  text-align: center;
  color: #fff;
}

.concept-flower {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.concept-flower img {
  width: 220px;
}

.concept-title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 600;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 1),
    0 0 12px rgba(255, 255, 255, 1);
}

.concept-lead {
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: 600;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 1),
    0 0 12px rgba(255, 255, 255, 1);
}

.concept-lead ruby {
  ruby-position: over;
}

.concept-text {
  line-height: 2;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 1),
    0 0 12px rgba(255, 255, 255, 1);
}

/* =========================
   News Section
========================= */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 10px 0;
}

.news-date {
  font-size: 16px;
  white-space: nowrap;
  text-align: right;
  min-width: 200px;
}

.news-text {
  margin: 0;
  font-size: 16px;
}

/* =========================
   Map
========================= */
.map-thumb {
  cursor: zoom-in;
  max-width: 100%;
}

/* モーダル */
.map-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.map-modal.is-open {
  display: flex;
}

.map-modal img {
  max-width: 90vw;
  max-height: 90vh;
}

/* 閉じるボタン */
.map-close {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* =========================
   Gradient Wrap
========================= */
.gradient-wrap {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom,
      #C6EDE5 0%,
      #EDF8F9 20%,
      #F7EEEC 40%,
      #F8F8EB 60%,
      #EEF8EB 80%);
  background-size: 100% 400%;
  background-position: 0% 0%;
}

/* =========================
   Movie Section
========================= */
.movie-section {
  text-align: center;
}

.movie-lead {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 600;
  color: #53B9AA;
}

.movie-lead span {
  font-size: 25px;
}

.movie-sub {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #53B9AA;
}

.movie-frame {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 10px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.movie-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 10px solid #53B9AA;
  border-radius: 16px;
}

.movie-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =========================
   Section Common
========================= */
.section-card {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 30px 30px 50px;
  background: #F7F6F2;
  border-radius: 20px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.section-title {
  position: relative;
  left: 50%;
  display: inline-block;
  padding: 0 100px;
  margin-bottom: 30px;
  font-size: 40px;
  color: #0E050B;
  text-align: center;
  transform: translateX(-50%);
}

/* Lines */
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: currentColor;
}

.section-title::before {
  left: 0;
  transform: translateY(-50%);
}

.section-title::after {
  right: 0;
  transform: translateY(-50%);
}

.title-flower {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.title-flower img {
  width: 220px;
}

/* =========================
   CONTENTS Section
========================= */
.contents-lead {
  margin-bottom: 30px;
  line-height: 2;
}

.contents-lead img {
  margin-top: 20px;
  max-height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: 0 30%;
}

/* Content Item */
.content-item {
  padding: 50px 0;
  border-bottom: 1px solid #cfcfcf;
}

/* Title */
.content-title {
  margin-bottom: 20px;

  font-size: 24px;
  text-align: center;
}

/* Body Layout */
.content-body {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

/* Image */
.content-image {
  flex: 4;
}

.content-image img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* Text */
.content-text {
  flex: 6;
  height: 225px;
  max-height: 100%;
  padding-right: 12px;
  overflow-y: auto;
}

.content-text p {
  font-size: 18px;
  line-height: 1.8;
}

/* Reverse */
.content-item.reverse .content-body {
  flex-direction: row-reverse;
}

/* =========================
   Scrollbar (Webkit)
========================= */
.content-text::-webkit-scrollbar {
  width: 6px;
}

.content-text::-webkit-scrollbar-track {
  background: linear-gradient(to right,
      transparent 2px,
      #ffb3cf 2px,
      #ffb3cf 3px,
      transparent 3px);
}

.content-text::-webkit-scrollbar-thumb {
  min-height: 40px;
  background: #ffb3cf;
  border-radius: 0;
}

/* =========================
   Daytime Section
========================= */
.daytime-block {
  margin-top: 50px;
  text-align: center;
}

.daytime-block p {
  margin-bottom: 30px;
}

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

/* =========================
   STAMP RALLY
========================= */
.stamp-section img {
  width: 200px;
}

.stamp-section .content-image {
  flex: 3;
}

.stamp-section .content-text {
  flex: 7;
  height: inherit;
  max-height: 100%;
}

.stamp-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.5;
}

.stamp-list li {
  position: relative;
  padding-left: 1em;
}

.stamp-list li::before {
  content: "✿";
  position: absolute;
  top: 0;
  left: 0;

  font-size: 0.9em;
  color: #f3a1b3;
}

.stamp-section .content-text p {
  line-height: 2;
}

.stamp-section .content-text span {
  font-size: 16px;
}

/* =========================
   NOVELTY
========================= */
.mg-t-60 {
  margin-top: 60px;
}

.novelty-area h3 {
  text-align: center;
}

.novelty-area ul,
.kitchen-info ul {
  justify-self: start;
  margin: 20px auto;
  text-align: left;
}

.novelty-area .content-text {
  margin-bottom: 30px;
}

.novelty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.novelty-card {
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.novelty-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3a1b3;
  color: #111;
  font-size: 20px;
  font-weight: 600;
}

.novelty-text {
  padding: 20px;
}

.novelty-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #111;
}

/* =========================
   KITCHEN CAR
========================= */
.kitchen-car-section {
  --card: #ffffff;
  --text: #1b1b1b;
  --muted: rgba(0, 0, 0, .65);
  --line: rgba(0, 0, 0, .18);
  --shadow: 0 10px 22px rgba(0, 0, 0, .08);
  --shadow-soft: 0 8px 18px rgba(0, 0, 0, .06);
  --radius: 18px;
  --radius-sm: 14px;
  --accent: #2a6fd8;
  --pill: #f5e46b;
  --pin: #ff5a7b;
  background: var(--bg);
  padding: 56px 16px 64px;
}

.kitchen-car-section .section-card {
  margin: 0 auto;
  padding: 24px 18px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.kitchen-car-section .section-title {
  text-align: center;
  letter-spacing: .08em;
  font-weight: 700;
  margin: 6px 0 14px;
  font-size: clamp(26px, 3.2vw, 40px);
}

.kitchen-car-section .section-lead {
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, .75);
  border-radius: 16px;
  padding: 14px 14px;
  line-height: 1.9;
  color: var(--text);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .65);
}

.kitchen-days {
  display: grid;
  gap: 18px;
}

.kitchen-day {
  padding: 18px 12px 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .25);
}

.day-head {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-bottom: 12px;
}

.day-pill {
  background: var(--pill);
  color: #111;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: clamp(18px, 2.5vw, 28px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  max-width: 300px;
  margin: 0 auto;
}

.day-place {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  position: relative;
}

.day-place::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 0;
  height: 2px;
  background: rgba(42, 111, 216, .45);
  border-radius: 2px;
}

.pin {
  width: 12px;
  height: 12px;
  background: var(--pin);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: inline-block;
  position: relative;
  margin-left: 2px;
}

.pin::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  transform: rotate(45deg);
}

.place-text {
  font-size: 18px;
  color: rgba(0, 0, 0, .78);
  letter-spacing: .02em;
}

.vendor-list {
  display: grid;
  gap: 14px;
  padding: 8px 6px 14px;
}

.vendor-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 12px 12px 14px;
}

.vendor-name {
  margin: 2px 2px 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
}

.vendor-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 10px;
}

.vendor-desc {
  margin: 0;
  line-height: 1.85;
  color: var(--text);
  letter-spacing: .02em;
  font-size: 18px;
}

.kitchen-day .vendor-card+.vendor-card {
  margin-top: 0;
}

.day-pill {
  box-shadow:
    0 10px 18px rgba(0, 0, 0, .10),
    0 2px 0 rgba(255, 255, 255, .55) inset;
}

.day-place {
  padding: 4px 10px;
}

.day-place::after {
  height: 1px;
  background: rgba(42, 111, 216, .35);
}

.vendor-card {
  padding: 14px 14px 16px;
}

.vendor-name {
  margin: 2px 2px 12px;
}

.vendor-desc {
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(0, 0, 0, .82);
}

.vendor-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg,
      #f6f9fd 0%,
      #e9f1f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .06);
}

.vendor-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  height: auto;
  width: 100%;
}

.kitchen-day {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
}

@media (max-width: 560px) {
  .kitchen-car-section {
    padding: 44px 12px 56px;
  }

  .kitchen-car-section .section-card {
    padding: 18px 12px 22px;
  }

  .vendor-name {
    font-size: 18px;
  }

  .vendor-media {
    grid-template-columns: 1fr;
  }

  .vendor-photo img {
    height: 210px;
  }

  .place-text {
    font-size: 12px;
  }
}

.kitchen-car-section {
  padding-bottom: 50px;
}

.kitchen-car-section .section-card {
  z-index: 5;

  background-color: #D5F0FF;
  text-align: center;
}

.kitchen-car-section .section-title {
  margin: 0;
  left: 0;
  transform: translateX(0);
}

.kitchen-car-section p {
  text-align: left;
}

.kitchen-car-section a {
  font-size: 20px;
  color: #3A5891;
}

.limited-card {
  background: #F7E6E3;
  border-radius: 20px;
  position: relative;
}

/* メニュー共通 */
.limited-card .menu-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 90px;
}

.limited-card .menu-item.reverse {
  flex-direction: row-reverse;
  margin-bottom: 0;
}

/* 画像 */
.menu-image {
  width: 150px;
  height: auto;
  display: block;
}

.menu-image.large {
  width: 200px;
  height: auto;
  display: block;
}


/* テキスト */
.menu-text {
  flex: 1;
}

.menu-text h3 {
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.limited-card .menu-text p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}


/* セクション背景 */
.kibaco-section {
  position: relative;
}

/* カード */
.kibaco-section .section-card {
  background: #CFE7E2;
}

.kibaco-section .section-title {
  line-height: 1.2;
  margin-bottom: 50px;
}

.section-title .cross {
  font-size: 50px;
  opacity: 0.7;
}

/* 説明文 */
.lead-text {
  margin: 0 auto 40px;
  line-height: 2;
}

/* リスト */
.menu-list-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.menu-group h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.circle-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 18px;
}

.circle-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  line-height: 1.9;
}

.circle-list li:nth-child(1)::before {
  content: "①";
}

.circle-list li:nth-child(2)::before {
  content: "②";
}

.circle-list li:nth-child(3)::before {
  content: "③";
}

.circle-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.menu-note {
  margin: 40px 0;
}

.menu-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.menu-item img {
  width: 100%;
  border-radius: 10px;
}

.menu-item p {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.kitchen-section {
  padding: 100px 0;
}

.kitchen-body {
  text-align: center;
}

/* タイトル */
.kitchen-car {
  font-family: "Hiragino Mincho ProN", serif;
  margin: 50px;
  position: relative;
}

/* 画像横並び */
.kitchen-visual {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.kitchen-poster img,
.kitchen-photo img {
  width: 260px;
  height: auto;
  display: block;
  height: 100%;
  object-fit: cover;
}

/* 開催情報 */
.event-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.event-list li {
  margin-bottom: 8px;
  font-size: 16px;
  position: relative;
  padding-left: 22px;
}

/* 花アイコン風 */
.event-list li::before {
  content: "✽";
  position: absolute;
  left: 0;
  color: #e56a8a;
  font-size: 14px;
}

.event-note {
  margin-bottom: 30px;
  font-size: 20px;
}

.kitchen-text {
  margin-bottom: 30px;
  font-size: 20px;
}

/* ゴールドボタン */
.gold-btn {
  display: inline-block;
  padding: 15px 45px;
  background: #FAEFC7;
  color: #5C3610;
  border-radius: 999px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  text-decoration: none;
}

/* ===============================
   FLOWER MOVEMENT
=============================== */
.flower-movement {
  position: relative;
  z-index: -5;
  padding: max(220px, 15vw) 0;
  overflow: hidden;
  background: url("../images/flower-movement-bg.webp") center / cover no-repeat;
}

.flower-movement__inner {
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.flower-movement-content {
  max-width: 840px;
  margin: 50px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

.flower-movement-content a {
  color: #3A5891;
}

/* ===============================
   Wave（共通）
=============================== */
.wave-top,
.wave-bottom {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
}

.wave-top {
  top: -70px;
  fill: #eef8ee;
}

.wave-bottom {
  bottom: 0;
  fill: #0aa39a;
}

.flower-movement .wave-top {
  z-index: -2;
}

/* ===============================
   ACCESS
=============================== */
.access-section {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  background: #429585;
  color: #fff;
}

.access-section .wave-top {
  position: absolute;
  top: -20vw;
  z-index: 0;
}

.access-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
  color: #F1ECD6;
}

.access-title {
  margin-bottom: 16px;
  font-size: 40px;
  text-align: center;
}

.access-title .line {
  display: inline-block;
  width: 80px;
  height: 1px;
  margin: 0 20px;
  vertical-align: middle;
  background: #F1ECD6;
}

.access-sub {
  margin-bottom: 40px;
  font-size: 16px;
  text-align: center;
}

.access-map iframe {
  width: 100%;
  height: 360px;
  margin-bottom: 50px;
  border: none;
}


/* ===== Access Info Blocks ===== */
.info-block {
  position: relative;
  margin-bottom: 36px;
  padding-left: 70px;
}

.info-block h3 {
  position: relative;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

/* Icon Circle */
.info-block h3::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -70px;
  width: 48px;
  height: 48px;
  background: #F1ECD6;
  border-radius: 50%;
}

/* Icon */
.info-block h3::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -70px;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px auto;
}

.access-info .info-block:first-child h3::before,
.access-info .info-block:first-child h3::after {
  display: none;
}

.info-block h3.train::after {
  background-image: url("../images/icon-subway.webp");
}

.info-block h3.bus::after {
  background-image: url("../images/icon-bus.webp");
}

.info-block h3.car::after {
  background-image: url("../images/icon-car.webp");
}

.info-block p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

/* ===== Access Button ===== */
.access-btn {
  margin-top: 60px;
  text-align: center;
}

.access-btn a {
  display: inline-block;
  padding: 15px 45px;
  background: #FAEFC7;
  color: #5C3610;
  border-radius: 999px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  text-decoration: none;
}

/* ===============================
   NOTE
=============================== */
.note-section {
  position: relative;
  margin-top: -10px;
  padding: 0;
  background-color: #D0A8B9;
}

.note-section .wave-top {
  fill: #429585;
}

.note-section .wave-bottom {
  bottom: 0;
  fill: #035DAC;
}

.section-inner {
  max-width: 840px;
  margin: -100px auto 0;
  padding: 0 20px 50px;
}

.note-boat {
  position: absolute;
  top: -50px;
  right: 5%;
  z-index: 3;
  width: 220px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  will-change: opacity, transform;
}

.note-boat.is-show {
  opacity: 1;
  transform: translateY(0);
  animation: boat-float 6s ease-in-out infinite;
}

@keyframes boat-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ===============================
   ORGANIZER
=============================== */
.organizer-section {
  position: relative;
  z-index: 5;
  margin-top: -50px;
  padding: 0 0 70px;
  background: #035DAC;
  color: #F1ECD6;
}

.organizer-inner {
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.organizer-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 40px;
}

.organizer-title .line {
  width: 80px;
  height: 1px;
  background: #F1ECD6;
}

.organizer-lead {
  margin-bottom: 10px;
}

.organizer-visual {
  max-width: 840px;
  margin: 0 auto 40px;
  position: relative;
}

.visual-collage img {
  display: block;
  width: 100%;
  height: auto;
}

.organizer-logo {
  margin: 40px 0 24px;
}

.organizer-logo img {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 32px;
  background: #fff;
}

.organizer-contact .contact-title {
  margin-bottom: 8px;
}

.organizer-contact a {
  color: #F1ECD6;
}

/* ===============================
   FOOTER
=============================== */
.site-footer {
  padding: 14px 0;
  background: #0E050B;
  text-align: center;
}

.site-footer .copyright {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

/* =========================
   Responsive Utilities
========================= */
.sp {
  display: none;
}

.sp-br {
  display: none;
}

.sp-sns {
  display: none;
}

@media (max-width: 1024px) {
  .fv {
    height: 100vw;
  }

  .fv-visual {
    position: relative;
    top: 10%;
  }


  .fv-visual img {
    width: 70%;
    height: auto;
    margin: 50px auto;
  }

  .fv-sub {
    width: 20vw;
    left: 5vw;
  }
}

/* =========================
   Tablet (max-width: 980px)
========================= */
@media (max-width: 980px) {

  /* ----- Visibility ----- */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* ----- Header / FV ----- */
  .fv-header {
    height: 50px;
    padding: 0 20px;
  }

  .header-logo {
    width: 140px;
  }

  .fv {
    height: 75vh;
  }

  .drawer-menu {
    top: 60px;
  }

  /* ----- Event Bar ----- */
  .event-bar-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 10px;
    align-items: start;
  }

  .event-text {
    font-size: 26px;
    line-height: 2;
  }

  /* ----- Contents ----- */
  .content-text h3 {
    font-size: 22px;
  }

  /* ----- Novelty ----- */
  .novelty-name {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }

  /* ----- kibaco ----- */
  .kibaco-section .section-title {
    line-height: 1.2;
    margin-bottom: 50px;
    font-size: 36px;
  }

  .kitchen-car {
    position: relative;
    left: 50%;
    transform: translateX(-60%);
  }

  .menu-list-wrap {
    flex-direction: column;
  }

  .menu-image-grid {
    gap: 25px;
  }

  /* ----- Flower Movement ----- */
  .flower-movement .wave-top {
    padding-top: 50px;
  }

  .flower-movement__inner {
    margin-top: -100px;
  }

  /* ----- Note ----- */
  .note-section .section-inner {
    padding-bottom: 150px;
  }

  .note-section ul {
    max-width: 680px;
    width: 80%;
    margin: 0 auto;
  }

  .note-boat {
    width: 100px;
    top: -20px;
  }
}

/* =========================
   Mobile (max-width: 767px)
========================= */
@media (max-width: 767px) {

  /* ----- Base ----- */
  html {
    width: 100vw;
  }

  body {
    font-size: 18px !important;
  }

  a {
    overflow-wrap: anywhere;
  }

  /* ----- Visibility ----- */
  .sp-only {
    display: none;
  }

  .sp-sns {
    display: block;
  }

  .sp-br {
    display: block;
  }

  /* ----- Header ----- */
  .fv-header {
    width: 100vw;
  }

  .header-right {
    gap: 5px;
  }

  .language {
    font-size: 16px;
    margin-left: 10px;
  }

  .drawer-menu {
    top: 50px;
    right: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .drawer-menu a {
    outline: none !important;
  }

  .drawer-menu a:focus-visible {
    outline: none !important;
  }

  .drawer-menu .icon-sns {
    display: flex !important;
    justify-content: center;
  }

  .drawer-menu .icon-sns li {
    margin: 0 !important;
    margin: 20px !important;
  }

  .drawer-menu .icon-sns img {
    width: 30px !important;
    filter:
      brightness(0);
  }

  /* ----- FV ----- */
  .fv {
    height: 120vw;
  }

  .fv-visual {
    position: relative;
    width: 100vw;
    max-width: none;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .fv-free {
    width: 200px;
    padding: 5px 25px;
    font-size: 18px;
  }

  /* ----- Event Bar ----- */
  .event-bar-inner {
    align-items: center;
  }

  .event-bar-inner> :nth-child(n+3) {
    align-self: start;
  }

  .event-label {
    font-size: 14px;
  }

  .event-text {
    font-size: 18px;
  }

  .event-time {
    margin: 0;
    font-size: 15px;
  }

  .event-time span {
    font-size: 17px;
  }

  /* ----- Concept ----- */
  .concept-lead {
    font-size: 24px;
  }

  .concept-text {
    text-align: left;
  }

  /* ----- Movie ----- */
  .movie-lead {
    font-size: 20px;
  }

  .movie-lead span {
    font-size: 18px;
  }

  .movie-sub {
    font-size: 18px;
    line-height: 1.5;
  }

  /* ----- Section Title ----- */
  .section-card {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.5;
  }

  .section-title::before,
  .section-title::after {
    width: 50px;
  }

  .section-title::before {
    left: 20px;
  }

  .section-title::after {
    right: 20px;
  }

  /* ----- News Section ----- */
  .news-item {
    display: block;
  }

  .news-date {
    text-align: left;
  }

  /* ----- Contents Layout ----- */
  .content-body {
    flex-direction: column;
  }

  .content-item.reverse .content-body {
    flex-direction: column;
  }

  .content-image img {
    margin: 0 auto;
  }

  .daytime-block p {
    text-align: left;
  }

  .daytime-photos {
    grid-template-columns: 1fr;
  }

  /* ----- Stamp ----- */
  .stamp-section .content-body {
    gap: 10px;
  }

  .content-text h3 {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }

  .stamp-list {
    margin: 20px auto;
  }

  /* ----- Novelty ----- */
  .novelty-grid {
    grid-template-columns: 1fr;
  }

  /* ----- Kitchen Car ----- */
  .kitchen-car-section .section-card {
    padding: 30px 10px;
  }

  .kitchen-car-section .section-card p {
    padding: 0 20px;
  }

  .kitchen-car-section .coming {
    font-size: 36px;
  }

  .limited-card .section-title {
    padding: 0;
  }

  .limited-card .section-title::before,
  .limited-card .section-title::after {
    width: 25px;
  }

  .limited-card .section-title::before {
    left: -40px;
  }

  .limited-card .section-title::after {
    right: -40px;
  }

  .limited-card .menu-item {
    flex-direction: column;
  }

  .menu-image {
    width: 100%;
  }

  .menu-image.large {
    width: inherit;
  }

  .menu-text h3 {
    font-size: 20px;
  }

  .limited-card .menu-item.reverse {
    flex-direction: column;
  }

  .kibaco-section .section-title {
    line-height: 1;
    margin: 20px 0 50px;
    font-size: 22px;
    padding: 0;
  }

  .section-title .cross {
    font-size: 40px;
  }

  .kibaco-section .section-title::before,
  .kibaco-section .section-title::after {
    width: 25px;
  }

  .kibaco-section .section-title::before {
    left: -20px;
  }

  .kibaco-section .section-title::after {
    right: -20px;
  }

  .menu-image-grid {
    grid-template-columns: 1fr;
  }

  .section-title.kitchen-car {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    margin-top: 50px;
  }

  .section-title.kitchen-car::before,
  .section-title.kitchen-car::after {
    width: 40px;
  }

  .section-title.kitchen-car::before {
    left: -60px;
  }

  .section-title.kitchen-car::after {
    right: -60px;
  }

  .kitchen-visual {
    flex-direction: column;
  }

  .kitchen-poster img,
  .kitchen-photo img {
    width: 100%;
  }

  .kitchen-text {
    font-size: 18px;
  }

  .gold-btn {
    display: inline-block;
    padding: 15px 15px;
    font-size: 15px;
  }

  /* ----- Flower Movement ----- */
  .flower-movement {
    padding-bottom: 100px;
  }

  .flower-movement .section-title {
    padding: 0;
    font-size: 5vw;
  }

  .flower-movement-content {
    margin-top: 0;
  }

  .flower-movement .section-title::before,
  .flower-movement .section-title::after {
    width: 30px;
  }

  .flower-movement .section-title::before {
    left: -40px;
  }

  .flower-movement .section-title::after {
    right: -40px;
  }

  /* ----- Access ----- */
  .access-title .line {
    width: 50px;
    margin: 0;
  }

  .access-btn {
    margin-top: 30px;
    padding-bottom: 70px;
  }

  .access-btn a {
    font-size: 20px;
  }

  .info-block p {
    width: 80vw;
    left: 37%;
    transform: translateX(-50%);
    position: relative;
  }

  /* ----- Note ----- */
  .note-section .section-inner {
    margin-top: 0;
  }

  .note-bottom {
    position: absolute;
    bottom: 40px;
  }

  /* ----- Footer ----- */
  .copyright {
    font-size: 12px !important;
  }
}