/* =========================
   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;
}

.mt-30 {
  margin-top: 30px;
}

.petal {
  position: fixed;
  width: 200px;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
  z-index: 2;
}

.petal.show {
  opacity: 0.9;
}

/* =========================
   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);
}

/* =========================
   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: rgba(76, 138, 197, 0.8);
}


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

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

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

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

/* =========================
   Header Navigation
========================= */
.header-nav ul {
  display: flex;
  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: #FFF402;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* Hamburger Lines */
.hamburger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #4C8AC5;
  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: 70px;
  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;
  overflow-y: scroll;
}

.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: 10px;
}

.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: 5;
}

/* FV Background */
.fv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../../../assets/images/fv-bg.webp") center top / cover repeat;
  margin-top: -5vw;
}

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

/* Free Label */
.fv-free {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 11;
  width: 300px;
  padding: 10px 28px;
  background: #F5DF6F;
  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: linear-gradient(90deg,
      #d8c2e6 0%,
      #cbbce6 40%,
      #b8c6ec 70%,
      #adc9ef 100%);
  z-index: 5;
}

.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("../../../assets/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(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

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

.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;
}

.concept-lead {
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: 600;
}

.concept-text {
  line-height: 2;
}

/* =========================
   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;
}

.kome {
  font-size: 16px;
  margin: 20px 0 0;
}

.owabi-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.owabi-text {
  font-size: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #cfcfcf;
}

/* =========================
   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: 1;
  background: url("../../../assets/images/sky-bg.png") center / cover no-repeat;
  margin-top: -10px;
}

/* =========================
   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);
  z-index: 3;
}

.section-title {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 30px;
  font-size: 40px;
  color: #0E050B;
  line-height: 1.5;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 1px;
  background: #0E050B;
  bottom: 0px !important;
}

.title-sub {
  display: block;
  font-size: 24px;
}

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

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

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

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

/* Title */
.content-title {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

/* Body Layout */
.content-body {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  gap: 20px;
}

.content-body.mt-30 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.content-body.mt-30 img {
  height: auto;
  width: 100%;
  display: block;
}

.content-body.mt-30 img:first-child {
  flex: 3.3;
  min-width: 0;
}

.content-body.mt-30 img:last-child {
  flex: 6.7;
  min-width: 0;
}

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

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

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

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

.content-text img {
  margin-top: 20px;
}

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

.contents-section .content-item:last-of-type {
  padding-bottom: 0;
}

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

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

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

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

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

.stamp-list li::before {
  content: "✿";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.9em;
  color: #074ec5;
}

/* ========================
   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 {
  max-width: 300px;
  margin: 20px auto 0;
}

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

.novelty-image {
  position: relative;
  height: 300px;
  align-items: center;
  justify-content: center;
  background: #D5F0FF;
  color: #111;
  font-size: 20px;
  font-weight: 600;
}

.novelty-image img {
  position: absolute;
  height: 80%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.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-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;
  justify-content: space-between;
  margin-bottom: 12px;
}

.day-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: var(--pill);
  color: #111;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 10px 20px;
  line-height: 1;
}

.day-text {
  display: block;
  line-height: 1.1;
}

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

.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: 25px;
  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 {
  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-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 0 20px;
  left: 50%;
  transform: translateX(-50%);
}

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

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

.kitchen-car-section .kitchen-day .day-head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.kitchen-car-section .kitchen-day .day-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pill);
  color: #111;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 10px 20px;
  line-height: 1.1;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, .10),
    0 2px 0 rgba(255, 255, 255, .55) inset;
}

.kitchen-car-section .kitchen-day .day-text {
  display: block;
  line-height: 1.1;
}

/* タブの親コンテナ */
.kitchen-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.kitchen-tabs-container::-webkit-scrollbar {
  display: none;
}

.tabs-row {
  display: flex;
  gap: 8px;
  list-style: none;
  width: max-content;
  padding: 0 16px;
  flex-wrap: nowrap;
  /* 絶対に折り返さない */
}

.kitchen-tabs {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 75px;
  gap: 10px;
  list-style: none;
  padding: 0 20px;
  width: max-content;
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 50px) !important;
}

.tab-item {
  flex-shrink: 0;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn:hover {
  background: #0084ff;
  color: #fff;
}

.tab-btn.is-active {
  background: #0084ff;
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-date-head {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0 10px;
}

.nav-title {
  text-align: center !important;
  font-weight: bold;
}

/* =========================
   期間限定メニュー
========================= */
.limited-card {
  background: #F7E6E3;
  border-radius: 20px;
  position: relative;
}

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

.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;
}

/* ===============================
   開花状況
=============================== */
.flower-status-section .section-card {
  background-color: #D5F0FF;
}

.flower-status-section .section-title {
  color: #074ec5;
}

.flower-status-section .section-title::after {
  background: #074ec5;
}

.flower-status-section .status-lead {
  text-align: center;
  margin: 30px 0 40px;
  line-height: 1.8;
}

.vote-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.vote-left {
  width: 60px;
}

.vote-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #074ec5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.vote-button:hover {
  background: #1489c3;
  transform: scale(1.05);
}

.vote-button .check {
  width: 18px;
  height: 10px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
}

.vote-bar-area {
  flex: 1;
}

.vote-bar {
  position: relative;
  background: #dcdcdc;
  border-radius: 30px;
  height: 48px;
  overflow: hidden;
}

.vote-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1fa0cc, #074ec5);
  border-radius: 30px;
  transition: width 0.5s ease;
}

.vote-label {
  position: relative;
  z-index: 2;
  padding-left: 20px;
  line-height: 48px;
  font-weight: bold;
}

.vote-percent {
  width: 80px;
  text-align: right;
  font-size: 32px;
  color: #074ec5;
}

.vote-total {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
}

/* ===============================
   FLOWER MOVEMENT
=============================== */
.flower-movement {
  position: relative;
  overflow: hidden;
}

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

.flower-movement h2 {
  color: #FFCB38;
}

.flower-movement .section-title::after {
  background: #FFCB38;
}

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

.flower-movement h3 {
  margin: 30px 0 20px;
  border-bottom: 1px solid #074ec5;
  color: #074ec5;
}

.schedule-table {
  background-color: #fff;
  padding: 10px;
  margin: 20px auto;
  border-radius: 20px;
}

.park-name,
.event-date {
  padding: 10px;
}

.flower-movement td {
  border-bottom: 1px solid #999;
}

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

.access-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 50px 20px;
  color: #222;
  background-color: #F7F6F2;
  border-radius: 20px;
}

.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: #7EC0E7;
  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("../../../assets/images/icon-subway.webp");
}

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

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

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

.info-block .marker {
  color: rgb(240, 15, 15);
  font-weight: bold;
}

/* ===== 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;
  padding: 50px 20px;
}

.section-inner {
  max-width: 840px;
  padding: 50px 20px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 2;
}

.note-section h2 {
  color: #fff;
}

.note-section .section-title::after {
  background: #fff;
}

/* ===============================
   ORGANIZER
=============================== */
.organizer-section {
  position: relative;
  padding: 0 0 70px;
  color: #F1ECD6;
  margin-top: -10px;
}

.organizer-inner {
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.organizer-section .section-title {
  color: #fff;
}

.organizer-section .section-title::after {
  background: #fff;
}

.organizer-section li {
  list-style: none;
}

.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) {
  .pc-s {
    display: none !important;
  }

  .header-logo {
    width: 200px;
  }

  .fv {
    height: 50vh;
  }

  .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 !important;
  }

  .sp {
    display: block;
  }

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

  .header-logo {
    width: 140px;
  }

  .drawer-menu {
    top: 60px;
  }

  .fv {
    margin-top: 50px;
  }

  /* ----- 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;
  }

  .concept-title {
    font-size: 32px;
  }

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

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

  .tab-btn:hover {
    background: #f0f0f0;
    color: #0084ff;
  }

  .tab-btn.is-active {
    background: #0084ff !important;
    color: #fff !important;
  }

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

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

  /* ----- Note ----- */

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

@media (max-width: 800px) {
  .header-nav a {
    font-size: 16px;
  }
}

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

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

  body {
    font-size: 18px !important;
    background-color: #074ec5;
  }

  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;
    padding: 10px 20px 0;
  }

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

  .drawer-menu li+li {
    margin-top: 10px;
    font-size: 16px;
  }

  .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: 100vw;
    margin-top: 50px;
  }

  .fv-bg {
    margin-top: -6vw;
  }

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

  /* ----- Event Bar ----- */

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

  .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-panel {
    margin: 0;
  }

  .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;
  }

  /* ----- 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-title {
    font-size: 20px;
  }

  .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;
  }

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

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

  .menu-image {
    width: 100%;
  }

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

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

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

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


  .flower-status-section .section-title::after {
    width: 300px;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .vote-button {
    width: 36px;
    height: 36px;
  }

  .vote-bar {
    display: flex;
  }

  .vote-label {
    font-size: 12px;
    display: flex;
    align-items: center;
    line-height: 1;
  }

  .vote-item {
    gap: 10px;
  }

  .vote-percent {
    font-size: 20px;
    width: 50px;
  }

  /* ----- Flower Movement ----- */

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

  .flower-movement__inner {
    padding: 0;
  }

  .flower-movement .section-title {
    font-size: 24px;
  }

  .flower-movement .title-sub {
    font-size: 14px;
  }

  .flower-movement .section-title::after {
    bottom: 20px;
  }

  .park-name,
  .event-date {
    display: block;
    padding: 0;
  }

  .flower-movement tr {
    display: block;
    padding: 20px 0;
  }

  .flower-movement td {
    border: none;
    font-size: 15px;
  }

  .event-date {
    border-bottom: 1px solid #999 !important;
  }

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

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

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

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

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

  .note-section ul {
    width: 100%;
  }

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

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