/* ==========================================================================
   SAMPLE MALL OSAKA - Portfolio Demo Stylesheet
   ========================================================================== */

/* ----- CSS Variables ----- */
:root {
  --color-text: #333;
  --color-text-light: #bcc6c8;
  --color-line-dark: #bcc6c8;
  --color-line-light: #e3e8e9;
  --color-bg-light: #e3e8e9;
  --color-main: #333;
  --color-accent: #3B82F6;
  --color-accent-light: #DBEAFE;
  --color-sub1: #005160;
  --color-sub2: #8B5CF6;
  --color-sub2-light: #F5F3FF;
  --font-base: "Noto Sans JP", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Cantarell", sans-serif;
  --inner-max: 1400px;
  --inner-min: 960px;
  --inner-width: 80%;
  --radius-s: 5px;
  --radius-m: 10px;
  --radius-l: 15px;
}

/* ----- Reset ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: var(--color-text); }
a:hover { opacity: 0.8; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
button { border: none; background: none; cursor: pointer; font-family: inherit; font-size: inherit; color: inherit; }
address { font-style: normal; }

/* Disclaimer Bar */
.disclaimer-bar {
  background: #1e293b;
  color: #f1f5f9;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1.5;
  position: sticky;
  top: 0;
  z-index: 10000;
  letter-spacing: 0.5px;
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 48;
  vertical-align: middle;
}

/* Accessibility */
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.skip-link {
  position: absolute; top: -100%; left: 16px; background: var(--color-accent); color: #fff;
  padding: 12px 24px; z-index: 100000; border-radius: 0 0 8px 8px; font-size: 13px;
  font-weight: 500; transition: top .3s;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255, 255, 255, 0.97); border-bottom: 3px solid var(--color-accent);
}
.header__inner {
  position: relative; max-width: var(--inner-max);
  width: var(--inner-width); min-width: var(--inner-min);
  margin: 0 auto;
}

/* Language */
.header__lang {
  position: absolute; top: 0; right: 80px; z-index: 10;
}
.header__lang-link {
  display: inline-block; background: var(--color-main); color: #fff;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  padding: 4px 16px; letter-spacing: .5px;
}
.header__lang-link:hover { opacity: .8; }

/* Logo */
.header__logo {
  text-align: center; padding: 18px 0 8px;
}
.header__logo-img {
  width: 150px; height: auto;
}

/* SNS */
.header__sns {
  position: absolute; top: 24px; right: 0; display: flex; gap: 10px; z-index: 10;
}
.header__sns-link { display: flex; align-items: center; }
.header__sns-link img { width: 20px; height: 20px; border-radius: 50%; }

/* Mobile Menu */
.header__menu-btn { display: none; }

/* Global Navigation */
.gnav { border-top: 1px solid var(--color-line-light); }
.gnav__list {
  display: flex; justify-content: space-around; align-items: stretch;
}
.gnav__item { position: relative; }
.gnav__item > a {
  display: flex; align-items: center; padding: 14px 0; font-size: 14px;
  font-weight: 700; color: var(--color-text); white-space: nowrap;
  position: relative; transition: color .2s;
}
.gnav__item > a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 100%;
  height: 3px; background: var(--color-accent); transform: scaleX(0);
  transition: transform .3s;
}
.gnav__item--active > a::after,
.gnav__item > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.gnav__sub {
  display: none; position: absolute; top: 100%; left: -20px;
  min-width: 600px; background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-line-light); z-index: 100;
  padding: 16px; flex-wrap: wrap; gap: 10px;
}
.gnav__item--has-child:hover .gnav__sub { display: flex; }
.gnav__sub li {
  width: calc(33.333% - 8px);
}
.gnav__sub li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: #fff; border: 1px solid var(--color-line-light);
  font-size: 14px; font-weight: 500; transition: border-color .2s;
}
.gnav__sub li a:hover { border-color: var(--color-accent); opacity: 1; }
.gnav__sub-arrow { font-size: 18px; color: var(--color-accent); }

/* ==========================================================================
   MAIN BANNER
   ========================================================================== */
.main-banner {
  width: 100%; padding: 190px 0 20px; position: relative; overflow: hidden;
  background: transparent no-repeat center / cover;
  transition: background-image 0.8s ease;
}
.main-banner__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.main-banner__content {
  position: relative; z-index: 2;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}

/* Banner Swiper */
.banner-swiper {
  width: 100%; border-radius: var(--radius-m); overflow: hidden;
  aspect-ratio: 16 / 7;
}
.banner-swiper .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.8s ease;
}
.banner-swiper .swiper-slide-active {
  opacity: 1 !important;
}
.banner-swiper .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.banner-swiper .swiper-pagination {
  bottom: 16px !important;
}
.banner-swiper .swiper-pagination-bullet {
  background: #fff; opacity: .5; width: 10px; height: 10px;
  margin: 0 5px !important; transition: opacity .3s;
}
.banner-swiper .swiper-pagination-bullet-active {
  background: #fff; opacity: 1;
}
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  color: #fff; background: rgba(0,0,0,.25); width: 44px; height: 44px; border-radius: 50%;
  transition: background .2s;
}
.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
  background: rgba(0,0,0,.45);
}
.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after { font-size: 16px; font-weight: 700; }

/* Small Banners */
.small-banner-swiper {
  position: relative; z-index: 2;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 20px auto 0; overflow: hidden;
}
.small-banner-swiper .swiper-slide {
  width: calc(33.333% - 10px);
}
.small-banner-swiper .swiper-slide img {
  width: 100%; height: 80px; object-fit: cover; border-radius: var(--radius-s);
  display: block;
}
.small-banner-swiper .swiper-button-next,
.small-banner-swiper .swiper-button-prev {
  color: var(--color-text); width: 30px; height: 30px;
}
.small-banner-swiper .swiper-button-next::after,
.small-banner-swiper .swiper-button-prev::after { font-size: 14px; }

/* ==========================================================================
   GUIDE NAV
   ========================================================================== */
.guide-nav {
  background: #fff; border-bottom: 1px solid var(--color-line-light);
  padding: 0 0 20px;
}
.guide-nav__buttons {
  display: flex; justify-content: center;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto; border-bottom: 1px solid var(--color-line-light);
}
.guide-nav__btn {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 20px 10px; text-align: center;
  border-right: 1px solid var(--color-line-light); font-size: 13px;
  font-weight: 500; color: var(--color-text); transition: background .2s;
}
.guide-nav__btn:first-child { border-left: 1px solid var(--color-line-light); }
.guide-nav__btn:hover { background: var(--color-bg-light); opacity: 1; }
.guide-nav__icon {
  font-size: 36px; color: var(--color-text); margin-bottom: 6px;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' -25, 'opsz' 48;
}
.guide-nav__label { line-height: 1.4; }

/* Sub Guide */
.guide-nav__sub {
  display: flex; justify-content: center; gap: 20px;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 20px auto 0;
}
.guide-nav__sub-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 36px; border: 2px solid var(--color-main);
  border-radius: 100px; font-size: 15px; font-weight: 700;
  color: var(--color-text); transition: all .2s;
}
.guide-nav__sub-btn:hover { background: var(--color-main); color: #fff; opacity: 1; }
.guide-nav__sub-btn em { font-style: normal; }

/* ==========================================================================
   CONTENT AREA
   ========================================================================== */
.content-wrap { padding: 0; }
.content-inner {
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}

/* Section */
.section { margin: 0 0 50px; }
.section--white { background: #fff; }

/* Section Title */
.section__title {
  position: relative; text-align: center;
  border-bottom: 4px solid var(--color-line-light);
  padding: 12px 0; margin-bottom: 20px;
}
.section__title::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%); width: 160px; height: 4px;
  background: var(--color-accent);
}
.section__title h2 {
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  letter-spacing: 1px;
}
.section__title h2::before {
  content: attr(data-sub);
  display: block; font-family: var(--font-base);
  font-size: 11px; font-weight: 400; color: #999;
  margin-bottom: 2px; letter-spacing: 0;
}
.section__title--umeyoko::after { background: var(--color-sub2); }
.section__title--umeyoko h2 { color: var(--color-sub2); }
.section__title--umeyoko .umeyoko-logo-inline {
  height: 32px; width: auto; vertical-align: middle;
}

/* Pseudo subtitle via section-specific styling */
#event .section__title h2::before { content: "イベント＆ニュース"; }
#open-renewal .section__title h2::before { content: "オープン＆リニューアル"; }
#gourmet .section__title h2::before { content: "グルメガイド"; }
#shopnews .section__title h2::before { content: "ショップニュース"; }

/* More Button */
.btn-more {
  position: absolute; top: 12px; right: 0;
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 13px; font-weight: 500; color: var(--color-text);
}
.btn-more .material-symbols-outlined {
  font-size: 18px; color: var(--color-accent);
}
.btn-more:hover { color: var(--color-accent); opacity: 1; }

/* Tabs */
.section__tabs {
  display: flex; gap: 0; margin-bottom: 16px;
  border-bottom: 1px solid var(--color-line-light);
}
.section__tab {
  padding: 8px 20px; font-size: 13px; font-weight: 500;
  color: var(--color-text-light); border-bottom: 2px solid transparent;
  transition: all .2s;
}
.section__tab--active,
.section__tab:hover {
  color: var(--color-text); border-bottom-color: var(--color-accent);
  opacity: 1;
}

/* Tag List */
.tag-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: 16px;
}
.tag-list__item {
  display: inline-block; padding: 4px 14px; font-size: 12px;
  border: 2px solid var(--color-line-dark); border-radius: 20px;
  color: var(--color-text); font-weight: 500; transition: all .2s;
}
.tag-list__item:hover { opacity: .7; }
/* Tag Color Variants */
.tag-list__item--green { border-color: #4caf50; color: #2e7d32; }
.tag-list__item--red { border-color: #e53935; color: #c62828; }
.tag-list__item--blue { border-color: #1e88e5; color: #1565c0; }
.tag-list__item--orange { border-color: #fb8c00; color: #e65100; }
.tag-list__item--purple { border-color: #8e24aa; color: #6a1b9a; }
.tag-list__item--teal { border-color: #00897b; color: #00695c; }
.tag-list__item--pink { border-color: #e91e63; color: #c2185b; }

/* Badge */
.badge-new {
  display: inline-block; background: var(--color-accent); color: #fff;
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  padding: 1px 8px; border-radius: 2px; margin-bottom: 4px;
}

/* ==========================================================================
   EVENT CARDS
   ========================================================================== */
.event-list {
  display: flex; gap: 0;
}
.event-card {
  width: 25%; border-right: 1px solid var(--color-line-light);
}
.event-card:last-child { border-right: none; }
.event-card__link {
  display: block; padding: 0 12px;
}
.event-card__link:hover { opacity: 1; }
.event-card__link:hover .event-card__img img { transform: scale(1.05); }
.event-card__img {
  width: 100%; height: 200px; overflow: hidden;
  margin-bottom: 10px;
}
.event-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.event-card__cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 2px 10px; border-radius: 2px; margin-bottom: 6px;
}
.event-card__cat--event {
  background: #fce1de; color: var(--color-accent);
}
.event-card__cat--news {
  background: #e0f2f1; color: var(--color-sub1);
}
.event-card__title {
  font-size: 14px; font-weight: 500; line-height: 1.6; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.event-card__date {
  font-size: 12px; color: #999;
}

/* ==========================================================================
   OPEN & RENEWAL SWIPER
   ========================================================================== */
.open-swiper {
  padding: 10px 50px; overflow: hidden; position: relative;
}
.open-card {
  display: block;
}
.open-card__img {
  width: 100%; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius-s); margin-bottom: 8px;
}
.open-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.open-card:hover .open-card__img img { transform: scale(1.05); }
.open-card__name {
  font-size: 13px; font-weight: 500; line-height: 1.5; text-align: center;
}

/* ==========================================================================
   GOURMET SWIPER / SHOP CARDS
   ========================================================================== */
.gourmet-swiper {
  padding: 10px 40px; overflow: hidden; position: relative;
  margin-bottom: 20px;
}
.shop-card {
  display: block; border: 1px solid var(--color-line-light);
  border-radius: var(--radius-s); overflow: hidden;
  transition: border-color .2s;
}
.shop-card:hover { border-color: var(--color-line-dark); opacity: 1; }
.shop-card:hover .shop-card__img img { transform: scale(1.05); }
.shop-card__img {
  width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
}
.shop-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.shop-card__info {
  padding: 10px 12px; text-align: center;
}
.shop-card__name {
  display: block; font-size: 13px; font-weight: 500; line-height: 1.4;
  margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.shop-card__floor {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--color-sub1); margin-right: 6px;
}
.shop-card__genre {
  font-size: 11px; color: #999;
}

/* Shop card floor display in gourmet swiper */
.gourmet-swiper .shop-card__info {
  text-align: center;
}
.gourmet-swiper .shop-card__name {
  font-size: 12px; white-space: normal;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  text-align: center; min-height: 34px;
}
.gourmet-swiper .shop-card__floor {
  display: block; font-size: 11px; margin: 2px 0 0;
}

/* Swiper Nav Buttons */
.open-swiper .swiper-button-next,
.open-swiper .swiper-button-prev,
.gourmet-swiper .swiper-button-next,
.gourmet-swiper .swiper-button-prev {
  color: var(--color-text); width: 36px; height: 36px;
  background: rgba(255,255,255,.8); border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.open-swiper .swiper-button-next::after,
.open-swiper .swiper-button-prev::after,
.gourmet-swiper .swiper-button-next::after,
.gourmet-swiper .swiper-button-prev::after {
  font-size: 14px;
}

/* ==========================================================================
   NEWS CARDS
   ========================================================================== */
.news-list {
  display: flex; flex-wrap: wrap; gap: 0;
}
.news-card {
  width: calc(100% / 3 - 1px); border-bottom: 1px solid var(--color-line-light);
  border-right: 1px solid var(--color-line-light);
}
.news-card:nth-child(3n) { border-right: none; }
.news-card__link {
  display: flex; align-items: flex-start; padding: 16px 12px; gap: 12px;
}
.news-card__link:hover { opacity: 1; background: #fafafa; }
.news-card__body { flex: 1; min-width: 0; }
.news-card__title {
  font-size: 13px; font-weight: 500; line-height: 1.6; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card__date {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #999; margin-bottom: 6px;
}
.news-card__date .badge-new {
  margin-bottom: 0;
}
.news-card__shop {
  font-size: 12px; color: #999;
}
.news-card__floor {
  display: inline-block; margin-left: 8px;
  font-size: 11px; font-weight: 700; color: var(--color-sub1);
}
.news-card__img {
  width: 100px; height: 100px; flex-shrink: 0; overflow: hidden;
  border-radius: var(--radius-s);
}
.news-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.news-card__link:hover .news-card__img img { transform: scale(1.05); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #fff; border-top: 4px solid var(--color-line-light); }

/* Footer Banners */
.footer__banners {
  border-bottom: 1px solid var(--color-line-light);
}
.footer__banners-inner {
  display: flex; gap: 20px; justify-content: center;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto; padding: 30px 0;
}
.footer__banner-card {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: #f5f5f5; border: 1px solid var(--color-line-light);
  border-radius: var(--radius-s); font-size: 14px; font-weight: 500;
  transition: border-color .2s;
}
.footer__banner-card:hover { border-color: var(--color-accent); opacity: 1; }
.footer__banner-icon { font-size: 18px; color: var(--color-accent); }

/* Footer Menu */
.footer__menu {
  border-bottom: 1px solid var(--color-line-light);
}
.footer__menu-inner {
  display: flex; justify-content: space-around;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto; padding: 30px 0;
}
.footer__col dt {
  font-size: 14px; font-weight: 700; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--color-line-light);
}
.footer__col dd {
  margin-bottom: 6px;
}
.footer__col dd a {
  font-size: 13px; color: var(--color-text);
  display: flex; align-items: center; gap: 4px;
}
.footer__col dd a::before {
  content: 'chevron_right'; font-family: 'Material Symbols Outlined';
  font-size: 16px; color: var(--color-accent);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 48;
}
.footer__col dd a:hover { color: var(--color-accent); opacity: 1; }

/* Footer Links */
.footer__links {
  padding: 16px 0; border-bottom: 1px solid var(--color-line-light);
}
.footer__links ul {
  display: flex; justify-content: center; gap: 0;
}
.footer__links li {
  padding: 0 16px; border-right: 1px solid var(--color-text);
}
.footer__links li:last-child { border-right: none; }
.footer__links a {
  font-size: 12px; color: var(--color-text);
}
.footer__links a:hover { color: var(--color-accent); opacity: 1; }

/* Footer Bottom */
.footer__bottom {
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto 12px;
}
.footer__address {
  display: flex; align-items: center; gap: 20px;
}
.footer__logo img { width: 120px; }
.footer__address address { font-size: 12px; color: #999; }
.footer__others {
  display: flex; align-items: center; gap: 12px;
}
.footer__others-label {
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  color: #999;
}
.footer__others-link {
  display: inline-block; padding: 6px 14px; border: 1px solid var(--color-line-dark);
  font-size: 12px; border-radius: var(--radius-s);
}
.footer__others-link:hover { border-color: var(--color-accent); opacity: 1; }
.footer__copyright {
  text-align: center; font-family: var(--font-en); font-size: 11px;
  font-weight: 700; color: #999; letter-spacing: .5px;
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.to-top {
  position: fixed; bottom: 24px; right: 24px; width: 50px; height: 50px;
  background: var(--color-main); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.15); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all .3s; z-index: 900;
}
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: #555; }
.to-top .material-symbols-outlined { font-size: 28px; }

/* ==========================================================================
   SUBPAGES - Common
   ========================================================================== */
.page-hero {
  padding: 150px 0 30px; border-bottom: 4px solid var(--color-line-light);
}
.page-hero .container {
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px; font-size: 12px;
  color: #999; margin-bottom: 12px; flex-wrap: wrap;
}
.breadcrumb a { color: #999; }
.breadcrumb a:hover { color: var(--color-accent); opacity: 1; }
.breadcrumb__sep { color: #ccc; }
.page-hero__title {
  font-family: var(--font-en); font-size: 24px; font-weight: 700;
  letter-spacing: 1px;
}
.page-hero__title-ja {
  font-size: 12px; color: #999; margin-top: 2px;
}

.container {
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}
.page-content {
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto; padding: 40px 0 60px;
}
.page-content.section--white {
  width: 100%; max-width: none; min-width: 0; padding-top: 0;
}
.page-content > .container {
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}
.page-content p { margin-bottom: 1.2em; line-height: 1.8; }
.page-content h2 {
  font-size: 18px; font-weight: 700; color: var(--color-text);
  margin: 36px 0 16px; padding-bottom: 8px;
  border-bottom: 4px solid var(--color-line-light); position: relative;
}
.page-content h2::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 80px; height: 4px; background: var(--color-accent);
}
.page-content h3 { font-size: 16px; font-weight: 700; margin: 24px 0 12px; }

/* Info Table */
.info-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.info-table th, .info-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--color-line-light);
  font-size: 14px; text-align: left; vertical-align: top;
}
.info-table th {
  background: #f9f9f9; font-weight: 600; width: 180px;
}

/* Info Cards */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.info-card {
  background: #f9f9f9; border-radius: var(--radius-m); padding: 24px 20px;
  text-align: center; border: 1px solid var(--color-line-light);
}
.info-card__icon { color: var(--color-sub1); margin-bottom: 10px; }
.info-card__icon .material-symbols-outlined { font-size: 36px; }
.info-card__title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.info-card__text { font-size: 12px; color: #999; line-height: 1.6; }

/* Map */
.map-embed {
  width: 100%; height: 400px; border-radius: var(--radius-m);
  overflow: hidden; margin: 20px 0;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Access Route */
.access-route {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--color-line-light);
}
.access-route__icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--color-bg-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.access-route__icon .material-symbols-outlined { font-size: 20px; color: var(--color-sub1); }
.access-route__body h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.access-route__body p { font-size: 13px; color: #999; line-height: 1.6; margin: 0; }

/* ==========================================================================
   FLOOR GUIDE - Tab Navigation & Page Layout
   ========================================================================== */

/* Floor Tab Navigation Bar */
.floor-tabs {
  background: var(--color-accent);
  padding: 10px 0;
}
.floor-tabs__inner {
  display: flex; align-items: center; gap: 8px;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}
.floor-tabs__btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 20px; border: 1px solid rgba(255,255,255,.6);
  border-radius: 100px; font-size: 14px; font-weight: 700;
  color: #fff; background: transparent;
  font-family: var(--font-en); letter-spacing: .5px;
  transition: all .2s; cursor: pointer; white-space: nowrap;
}
.floor-tabs__btn:hover { background: rgba(255,255,255,.2); opacity: 1; }
.floor-tabs__btn--active {
  background: #fff; color: var(--color-accent); border-color: #fff;
}
.floor-tabs__btn--active:hover { background: #fff; }

/* Floor Content Panels */
.floor-panel { display: none; }
.floor-panel--active { display: block; }

/* Floor Current Indicator */
.floor-current {
  text-align: center; padding: 16px 0 8px;
  font-family: var(--font-en); font-size: 16px; font-weight: 700;
  color: var(--color-text); border-bottom: 1px solid var(--color-line-light);
}

/* ==========================================================================
   FLOOR OVERVIEW (一覧)
   ========================================================================== */
.floor-overview {
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto; padding: 30px 0 40px;
}
.floor-overview__row {
  display: flex; align-items: center; padding: 24px 0;
  border-bottom: 1px solid var(--color-line-light);
}
.floor-overview__left {
  width: 280px; text-align: center; flex-shrink: 0;
}
.floor-overview__number {
  font-family: var(--font-en); font-size: 40px; font-weight: 700;
  color: var(--color-text); letter-spacing: 2px; margin-bottom: 8px;
}
.floor-overview__icons {
  display: flex; justify-content: center; gap: 4px; flex-wrap: wrap;
}
.floor-overview__icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; color: #fff;
}
.floor-overview__icon--wc { background: #5c9e31; }
.floor-overview__icon--accessible { background: #2d7dba; }
.floor-overview__icon--ostomate { background: #8e44ad; }
.floor-overview__icon--male { background: #3498db; }
.floor-overview__icon--female { background: #e74c8c; }
.floor-overview__icon--baby { background: #f39c12; }
.floor-overview__icon--smoking { background: #95a5a6; }
.floor-overview__icon--locker { background: #1abc9c; }
.floor-overview__icon--shoes { background: #e67e22; }
.floor-overview__icon--info { background: #3498db; }
.floor-overview__icon--ticket { background: #e74c3c; }
.floor-overview__icon--aed { background: #e74c3c; }
.floor-overview__right {
  flex: 1; padding-left: 40px;
}
.floor-overview__link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 30px;
  background: var(--color-accent-light); border-radius: 100px;
  font-size: 15px; font-weight: 500; color: var(--color-text);
  transition: background .2s;
}
.floor-overview__link:hover { background: #f8cac5; opacity: 1; }
.floor-overview__link .material-symbols-outlined {
  font-size: 20px; color: var(--color-accent);
}
.floor-overview__subtitle {
  display: block; font-size: 12px; color: #999; margin-top: 2px;
}

/* Facility Legend Bar */
.facility-legend {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; padding: 16px 0; margin: 20px 0;
  border-top: 1px solid var(--color-line-light);
  border-bottom: 1px solid var(--color-line-light);
  font-size: 12px; color: #666;
}
.facility-legend__item {
  display: inline-flex; align-items: center; gap: 4px;
}
.facility-legend__dot {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff;
}

/* ==========================================================================
   FLOOR DETAIL (Individual Floor)
   ========================================================================== */

/* Floor Map */
.floor-map {
  width: 100%; max-width: 800px; margin: 30px auto;
  text-align: center;
}
.floor-map img {
  width: 100%; height: auto; border-radius: var(--radius-m);
}

/* ==========================================================================
   SEARCH METHOD TABS (Shop Guide)
   ========================================================================== */
.search-method {
  background: #f5f5f5; border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
}
.search-method__inner {
  display: flex; align-items: center; gap: 0;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}
.search-method__tab {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 28px; font-size: 14px; font-weight: 700;
  color: #666; background: #fff; border: 1px solid #ccc;
  text-decoration: none; transition: all .2s; cursor: pointer;
  white-space: nowrap;
}
.search-method__tab:first-child { border-radius: 4px 0 0 4px; }
.search-method__tab:last-child { border-radius: 0 4px 4px 0; }
.search-method__tab + .search-method__tab { border-left: none; }
.search-method__tab:hover { background: #fafafa; color: #333; opacity: 1; }
.search-method__tab--active {
  background: var(--color-accent); color: #fff; border-color: var(--color-accent);
}
.search-method__tab--active:hover { background: var(--color-accent); color: #fff; }

/* ==========================================================================
   SHOP FLOOR SECTION HEADERS (Shop Guide)
   ========================================================================== */
.shop-floor-section {
  padding: 0 0 20px;
}
.shop-floor-header {
  display: flex; align-items: center; gap: 12px;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto; padding: 28px 0 14px;
  font-size: 18px; font-weight: 700; color: var(--color-text);
  border-bottom: 3px solid var(--color-accent);
}
.shop-floor-header__num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 10px;
  background: var(--color-accent); color: #fff; border-radius: 6px;
  font-family: var(--font-en); font-size: 20px; font-weight: 700;
  letter-spacing: .5px;
}

/* ==========================================================================
   SHOP TABLE (Floor Detail)
   ========================================================================== */
.shop-table {
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}
.shop-table__row {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--color-line-light);
  transition: background .2s;
  color: var(--color-text);
}
.shop-table__row:hover { background: #fafafa; opacity: 1; }
.shop-table__num {
  width: 70px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 14px 0;
}
.shop-table__num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 8px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
}
.shop-table__info {
  flex: 1; padding: 14px 12px; min-width: 0;
}
.shop-table__name {
  font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 2px;
}
.shop-table__genre {
  font-size: 12px; color: #999;
}
.shop-table__logo {
  width: 100px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 8px;
}
.shop-table__logo img {
  max-width: 80px; max-height: 40px; object-fit: contain;
}
.shop-table__phone {
  width: 140px; display: flex; align-items: center;
  flex-shrink: 0; padding: 14px 8px;
  font-size: 12px; color: #666;
}
.shop-table__hours {
  width: 280px; display: flex; align-items: center;
  flex-shrink: 0; padding: 14px 8px;
  font-size: 11px; color: #666; line-height: 1.5;
}
.shop-table__arrow {
  width: 40px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--color-accent);
}
.shop-table__arrow .material-symbols-outlined { font-size: 20px; }

/* Umeyoko Header (Floor Guide B1) */
.umeyoko-header {
  display: flex; align-items: center; gap: 16px;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 30px auto 12px; padding: 16px 0;
  border-bottom: 3px solid var(--color-sub2);
}
.umeyoko-logo {
  height: 40px; width: auto;
}
.umeyoko-label {
  font-size: 16px; font-weight: 700; color: var(--color-sub2);
}
.umeyoko-desc {
  font-size: 14px; color: #666; line-height: 1.8; margin: 12px auto 20px;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
}

/* Floor Bottom Tabs (repeat at bottom) */
.floor-tabs--bottom {
  background: #fff; padding: 20px 0; border-top: 1px solid var(--color-line-light);
}
.floor-tabs--bottom .floor-tabs__btn {
  color: var(--color-text); border-color: var(--color-line-dark);
}
.floor-tabs--bottom .floor-tabs__btn--active {
  background: var(--color-accent); color: #fff; border-color: var(--color-accent);
}

/* ==========================================================================
   SHOP GUIDE - Search Method Tabs & Floor Sections
   ========================================================================== */

/* Search Method Tabs */
.search-method {
  background: #f5f5f5;
  border-bottom: 1px solid var(--color-line-light);
}
.search-method__inner {
  display: flex;
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}
.search-method__tab {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 14px 20px; font-size: 14px; font-weight: 700;
  color: #999; background: #f5f5f5;
  border-right: 1px solid var(--color-line-light);
  transition: all .2s;
}
.search-method__tab:last-child { border-right: none; }
.search-method__tab:hover { color: var(--color-text); background: #eee; opacity: 1; }
.search-method__tab--active {
  color: #fff; background: var(--color-accent);
}
.search-method__tab--active:hover { background: var(--color-accent); color: #fff; }

/* Shop Floor Section Headers */
.shop-floor-section {
  width: var(--inner-width); max-width: var(--inner-max); min-width: var(--inner-min);
  margin: 0 auto;
}
.shop-floor-header {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0 12px; margin: 0;
  border-bottom: 3px solid var(--color-accent);
  font-size: 16px; font-weight: 700; color: var(--color-text);
}
.shop-floor-header__num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 10px;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  border-radius: var(--radius-s);
}

/* Shop guide floor section shop-table override (full width inside section) */
.shop-floor-section .shop-table {
  width: 100%; min-width: 0;
}

/* Legacy Floor Section (kept for compatibility) */
.floor-section { margin-bottom: 40px; }
.floor-section__title {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 4px solid var(--color-line-light);
  position: relative;
}
.floor-section__title::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 80px; height: 4px; background: var(--color-accent);
}
.floor-section__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--color-sub1); color: #fff;
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  border-radius: var(--radius-s); flex-shrink: 0;
}
.floor-section__label {
  font-size: 13px; font-weight: 400; color: #999; margin-left: auto;
  font-family: var(--font-en);
}
.shop-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Concept Page (legacy) */
.concept-visual {
  width: 100%; height: 300px; border-radius: var(--radius-l);
  overflow: hidden; margin-bottom: 30px;
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-line-dark));
  display: flex; align-items: center; justify-content: center;
}
.concept-visual__text { text-align: center; color: var(--color-text); }
.concept-visual__text h2 {
  font-size: 28px; font-weight: 700; margin-bottom: 8px; border: none; padding: 0;
}
.concept-visual__text h2::after { display: none; }
.concept-visual__text p { font-size: 14px; color: #999; }

/* ==========================================================================
   CONCEPT PAGE (New)
   ========================================================================== */

/* Concept Hero Visual */
.concept-hero { padding: 0; }
.concept-hero__visual {
  position: relative; width: 100%; height: 520px; overflow: hidden;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}
.concept-hero__visual--fallback {
  background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 40%, #34495e 100%);
}
.concept-hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.concept-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex; align-items: center; justify-content: center;
}
.concept-hero__tagline {
  font-size: 32px; font-weight: 700; color: #fff;
  text-align: center; line-height: 2; letter-spacing: 2px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

/* Concept Section Titles */
.concept-section-title {
  text-align: center; margin-bottom: 36px; padding-bottom: 20px;
  border-bottom: 4px solid var(--color-line-light); position: relative;
}
.concept-section-title::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%); width: 120px; height: 4px;
  background: var(--color-accent);
}
.concept-section-title__en {
  display: block; font-family: var(--font-en); font-size: 22px;
  font-weight: 700; letter-spacing: 1.5px; color: var(--color-text);
}
.concept-section-title__ja {
  display: block; font-size: 12px; color: #999; margin-top: 4px;
}

/* Concept Encounter */
.concept-encounter {
  text-align: center; padding: 60px 0 50px;
  border-bottom: 1px solid var(--color-line-light);
  margin-bottom: 50px;
}
.concept-encounter__heading {
  font-size: 20px; font-weight: 700; color: var(--color-text);
  margin-bottom: 36px; display: flex; align-items: center;
  justify-content: center; gap: 8px;
  border: none; padding: 0;
}
.concept-encounter__heading::after { display: none; }
.concept-encounter__icon { font-size: 28px; color: var(--color-accent); }
.concept-encounter__body { max-width: 600px; margin: 0 auto; }
.concept-encounter__lead {
  font-size: 20px; font-weight: 500; line-height: 2.4;
  letter-spacing: 1px; color: var(--color-text); margin-bottom: 0;
}

/* Concept Narrative */
.concept-narrative { margin-bottom: 60px; }
.concept-narrative__block {
  display: flex; align-items: stretch; gap: 40px;
}
.concept-narrative__block--reverse { flex-direction: row-reverse; }
.concept-narrative__img-wrap {
  flex: 0 0 45%; overflow: hidden; border-radius: var(--radius-m);
  min-height: 280px;
  background: linear-gradient(135deg, var(--color-bg-light), #d5dfe0);
}
.concept-narrative__img-wrap--fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #c8d3d5 100%);
}
.concept-narrative__img-wrap--fallback::after {
  content: ''; display: block; width: 60px; height: 60px;
  background: rgba(255,255,255,0.4); border-radius: 50%;
}
.concept-narrative__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.concept-narrative__text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 20px 0;
}
.concept-narrative__title {
  font-size: 22px; font-weight: 700; color: var(--color-text);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
  border: none; padding: 0;
}
.concept-narrative__title::after { display: none; }
.concept-narrative__title .material-symbols-outlined {
  font-size: 28px; color: var(--color-sub1);
}
.concept-narrative__text p {
  font-size: 15px; line-height: 2; color: #555; margin-bottom: 1em;
}

/* Concept Movie */
.concept-movie {
  padding: 60px 0; border-top: 1px solid var(--color-line-light);
}
.concept-movie__player { max-width: 800px; margin: 0 auto; }
.concept-movie__thumb {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden; border-radius: var(--radius-m);
  background: #1a1a1a; cursor: pointer;
}
.concept-movie__thumb--fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}
.concept-movie__thumb-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0.85; transition: opacity 0.3s;
}
.concept-movie__thumb:hover .concept-movie__thumb-img { opacity: 0.7; }
.concept-movie__play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(233, 55, 34, 0.85); color: #fff;
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.concept-movie__play-btn .material-symbols-outlined {
  font-size: 48px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
.concept-movie__thumb:hover .concept-movie__play-btn {
  background: rgba(233, 55, 34, 1);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Concept Monument */
.concept-monument {
  padding: 60px 0 40px; border-top: 1px solid var(--color-line-light);
}
.concept-monument__content {
  display: flex; gap: 40px; align-items: flex-start; margin-bottom: 50px;
}
.concept-monument__img-wrap {
  flex: 0 0 40%; overflow: hidden; border-radius: var(--radius-m);
  min-height: 300px;
  background: linear-gradient(135deg, #f5e6e0, #e8d5cf);
}
.concept-monument__img-wrap--fallback {
  display: flex; align-items: center; justify-content: center;
}
.concept-monument__img-wrap--fallback::after {
  content: '\7D50'; display: flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; font-size: 36px; font-weight: 700;
  color: var(--color-accent); background: rgba(255,255,255,0.6);
  border-radius: 50%;
}
.concept-monument__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.concept-monument__detail { flex: 1; }
.concept-monument__name {
  font-size: 28px; font-weight: 700; color: var(--color-text);
  margin-bottom: 16px; letter-spacing: 2px;
}
.concept-monument__desc {
  font-size: 15px; line-height: 2; color: #555; margin-bottom: 24px;
}
.concept-monument__detail .info-table { margin-top: 0; }
.concept-monument__detail .info-table th { width: 140px; font-size: 13px; }
.concept-monument__detail .info-table td { font-size: 14px; }

/* Monument Workshop */
.concept-monument__workshop {
  padding-top: 40px; border-top: 1px solid var(--color-line-light);
}
.concept-monument__workshop-title {
  font-size: 18px; font-weight: 700; color: var(--color-text);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.concept-monument__workshop-title .material-symbols-outlined {
  font-size: 24px; color: var(--color-sub1);
}
.concept-monument__workshop-text {
  font-size: 14px; line-height: 1.9; color: #555; margin-bottom: 24px;
  max-width: 800px;
}
.concept-monument__gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.concept-monument__gallery-item {
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-s);
  background: linear-gradient(135deg, var(--color-bg-light), #d0d8da);
}
.concept-monument__gallery-item--fallback {
  display: flex; align-items: center; justify-content: center;
}
.concept-monument__gallery-item--fallback::after {
  content: ''; display: block; width: 40px; height: 40px;
  background: rgba(255,255,255,0.5); border-radius: 50%;
}
.concept-monument__gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.concept-monument__gallery-item:hover img { transform: scale(1.05); }

/* Concept Letters (Instagram) */
.concept-letters {
  padding: 60px 0 80px; border-top: 1px solid var(--color-line-light);
}
.concept-letters__content {
  text-align: center; max-width: 640px; margin: 0 auto;
}
.concept-letters__icon { margin-bottom: 20px; }
.concept-letters__icon img { width: 48px; height: 48px; border-radius: 12px; }
.concept-letters__text {
  font-size: 14px; line-height: 2; color: #555; margin-bottom: 28px;
}
.concept-letters__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 36px; border: 2px solid var(--color-main);
  border-radius: 100px; font-size: 15px; font-weight: 700;
  color: var(--color-text); transition: all 0.2s;
}
.concept-letters__btn:hover {
  background: var(--color-main); color: #fff; opacity: 1;
}
.concept-letters__btn .material-symbols-outlined { font-size: 18px; }

/* Text Pages */
.text-page { max-width: 800px; }
.text-page h3 { font-size: 15px; font-weight: 600; margin: 24px 0 10px; }
.text-page p, .text-page li { font-size: 14px; color: #555; line-height: 1.8; }
.text-page ul { padding-left: 1.2em; margin-bottom: 1em; }
.text-page ul li { list-style: disc; margin-bottom: 4px; }
.text-page ol { padding-left: 1.4em; margin-bottom: 1em; }
.text-page ol li { list-style: decimal; margin-bottom: 4px; }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 20px; }
.sitemap-col h3 {
  font-size: 14px; font-weight: 700; margin: 0 0 10px;
  padding-bottom: 6px; border-bottom: 2px solid var(--color-accent);
}
.sitemap-col li { margin-bottom: 4px; }
.sitemap-col a { font-size: 13px; color: #666; }
.sitemap-col a:hover { color: var(--color-accent); opacity: 1; }

/* Recruit */
.recruit-card {
  background: #f9f9f9; border-radius: var(--radius-m); padding: 28px;
  margin-bottom: 16px; border: 1px solid var(--color-line-light);
}
.recruit-card__title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.recruit-card__text { font-size: 14px; color: #666; line-height: 1.7; }
.recruit-card__btn {
  display: inline-block; margin-top: 14px; background: var(--color-accent); color: #fff;
  padding: 10px 28px; border-radius: 100px; font-size: 13px; font-weight: 500;
}
.recruit-card__btn:hover { background: #c12e1c; color: #fff; opacity: 1; }

/* App Page */
.app-page-hero {
  background: var(--color-main); border-radius: var(--radius-l);
  padding: 48px; display: flex; align-items: center; gap: 40px; color: #fff;
  margin-bottom: 30px;
}
.app-page-hero__title { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.app-page-hero__desc { font-size: 14px; color: #bbb; line-height: 1.7; margin-bottom: 20px; }

/* Event List Page */
.event-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Event/News Tab Switcher */
.eventnews-tabs {
  display: flex; gap: 0; margin-bottom: 32px;
  border-bottom: 2px solid var(--color-line-light);
}
.eventnews-tabs__btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 16px 20px; font-size: 15px; font-weight: 700;
  color: #999; background: #f5f5f5;
  border: none; cursor: pointer;
  transition: all .2s; position: relative;
}
.eventnews-tabs__btn::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%;
  height: 3px; background: transparent; transition: background .2s;
}
.eventnews-tabs__btn:hover { color: var(--color-text); background: #eee; opacity: 1; }
.eventnews-tabs__btn--active {
  color: var(--color-accent); background: #fff;
}
.eventnews-tabs__btn--active::after {
  background: var(--color-accent);
}
.eventnews-tabs__btn--active:hover { color: var(--color-accent); background: #fff; }

/* Event/News Tab Panels */
.eventnews-panel { display: none; }
.eventnews-panel--active { display: block; }

/* Card Event (Event List Page) */
.card-event {
  display: block; overflow: hidden;
  border-radius: var(--radius-m); background: #fff;
  border: 1px solid var(--color-line-light);
  transition: box-shadow .3s, border-color .3s;
}
.card-event:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border-color: var(--color-line-dark);
  opacity: 1;
}
.card-event:hover .card-event__img {
  transform: scale(1.05);
}
.card-event__thumb {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  overflow: hidden; background: #f0f0f0;
}
.card-event__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.card-event__date-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,.7); color: #fff;
  padding: 6px 10px; border-radius: 4px;
  font-family: var(--font-en); font-size: 13px; font-weight: 700;
  line-height: 1.2; text-align: center;
  display: flex; align-items: baseline; gap: 2px;
}
.card-event__month {
  font-size: 16px; font-weight: 700;
}
.card-event__day {
  font-size: 16px; font-weight: 700;
}
.card-event__dow {
  font-size: 10px; font-weight: 400; margin-left: 3px;
  text-transform: uppercase;
}
.card-event__date-range {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,.7); color: #fff;
  padding: 6px 10px; border-radius: 4px;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  line-height: 1.3;
}
.card-event__info {
  padding: 14px 16px 18px;
}
.card-event__cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 2px; margin-bottom: 8px;
}
.card-event__cat--event {
  background: #fce1de; color: var(--color-accent);
}
.card-event__cat--news {
  background: #e0f2f1; color: var(--color-sub1);
}
.card-event__title {
  font-size: 14px; font-weight: 500; line-height: 1.6; color: var(--color-text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-event__location {
  font-size: 12px; color: #999; margin-top: 6px;
  display: flex; align-items: center; gap: 4px;
}
.card-event__location .material-symbols-outlined {
  font-size: 14px;
}

/* See More Button (bottom of event list) */
.btn-see-more {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 280px; margin: 40px auto 0; padding: 16px 0;
  border: 2px solid var(--color-main); border-radius: 100px;
  font-size: 14px; font-weight: 700; color: var(--color-text);
  background: #fff; transition: all .2s; cursor: pointer;
}
.btn-see-more:hover {
  background: var(--color-main); color: #fff; opacity: 1;
}
.btn-see-more .material-symbols-outlined {
  font-size: 18px; transition: color .2s;
}
.btn-see-more:hover .material-symbols-outlined {
  color: #fff;
}

/* ==========================================================================
   HOURS PAGE - Floor Hours List
   ========================================================================== */
.hours-floor-list {
  margin: 20px 0 32px;
}
.hours-floor-list__row {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-line-light);
  transition: background .2s;
}
.hours-floor-list__row:first-child {
  border-top: 1px solid var(--color-line-light);
}
.hours-floor-list__row:hover {
  background: #fafafa;
}
.hours-floor-list__badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 52px; height: 52px; padding: 0 12px;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-en); font-size: 20px; font-weight: 700;
  border-radius: var(--radius-s); letter-spacing: .5px;
  flex-shrink: 0;
}
.hours-floor-list__badge--b1 {
  background: var(--color-sub2);
}
.hours-floor-list__name {
  flex: 1; font-size: 14px; font-weight: 500; color: #666;
  min-width: 0;
}
.hours-floor-list__time {
  font-size: 18px; font-weight: 700; color: var(--color-text);
  font-family: var(--font-en); letter-spacing: .5px;
  flex-shrink: 0; min-width: 160px; text-align: right;
}

/* Hours Note */
.hours-note {
  font-size: 13px; color: #999; line-height: 1.8;
  padding: 16px 0; margin-bottom: 16px;
  border-bottom: 1px solid var(--color-line-light);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .header__inner,
  .main-banner__content,
  .small-banner-swiper,
  .guide-nav__buttons,
  .guide-nav__sub,
  .content-inner,
  .footer__banners-inner,
  .footer__menu-inner,
  .footer__bottom-inner,
  .container,
  .page-hero .container,
  .page-content,
  .page-content > .container {
    min-width: 0; width: 92%;
  }
  .event-list { flex-wrap: wrap; }
  .event-card { width: 50%; }
  .news-card { width: calc(50% - 1px); }
  .news-card:nth-child(3n) { border-right: 1px solid var(--color-line-light); }
  .news-card:nth-child(2n) { border-right: none; }
  .gnav__sub { min-width: 400px; }
  .gnav__sub li { width: calc(50% - 6px); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-list-grid { grid-template-columns: repeat(2, 1fr); }
  .page-content.section--white { width: 100%; min-width: 0; }
  /* Floor Guide Tabs */
  .floor-tabs__inner { min-width: 0; width: 92%; }
  .floor-overview { min-width: 0; width: 92%; }
  .shop-table { min-width: 0; width: 92%; }
  .shop-table__hours { width: 200px; }
  .umeyoko-header, .umeyoko-desc { min-width: 0; width: 92%; }
  .search-method__inner { min-width: 0; width: 92%; }
  .shop-floor-section { min-width: 0; width: 92%; }
  /* Concept page 1024 */
  .concept-hero__visual { height: 420px; }
  .concept-hero__tagline { font-size: 26px; }
  .concept-narrative__block { gap: 30px; }
  .concept-monument__content { gap: 30px; }
}

@media (max-width: 768px) {
  .header__inner { min-width: 0; width: 100%; padding: 0 16px; }
  .header__lang { position: static; text-align: right; padding: 4px 0; }
  .header__logo { padding: 10px 0 6px; }
  .header__logo-img { width: 120px; }
  .header__sns { top: 8px; right: 50px; }

  /* Mobile Menu */
  .header__menu-btn {
    display: block; position: absolute; top: 30px; right: 16px;
    width: 30px; height: 30px; z-index: 1010;
  }
  .header__menu-bar,
  .header__menu-bar::before,
  .header__menu-bar::after {
    display: block; width: 24px; height: 2px; background: var(--color-text);
    transition: all .3s; position: absolute;
  }
  .header__menu-bar { top: 14px; left: 3px; }
  .header__menu-bar::before { content: ''; top: -7px; left: 0; }
  .header__menu-bar::after { content: ''; top: 7px; left: 0; }
  .header__menu-btn.active .header__menu-bar { background: transparent; }
  .header__menu-btn.active .header__menu-bar::before { top: 0; transform: rotate(45deg); }
  .header__menu-btn.active .header__menu-bar::after { top: 0; transform: rotate(-45deg); }

  /* Mobile Nav */
  .gnav {
    position: fixed; inset: 0; background: rgba(255,255,255,.98);
    z-index: 1005; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .3s;
  }
  .gnav.open { opacity: 1; visibility: visible; }
  .gnav__list { flex-direction: column; width: 100%; max-width: 320px; padding: 0 20px; }
  .gnav__item > a {
    padding: 14px 0; font-size: 16px;
    border-bottom: 1px solid var(--color-line-light);
  }
  .gnav__item > a::after { display: none; }
  .gnav__sub {
    position: static; display: block; min-width: auto;
    border: none; padding: 0; background: transparent;
  }
  .gnav__sub li { width: 100%; }
  .gnav__sub li a { border: none; border-bottom: 1px solid var(--color-line-light); padding: 10px 16px; }

  /* Banner */
  .main-banner { padding: 120px 0 16px; }
  .main-banner__content { width: 92%; min-width: 0; }
  .banner-swiper { aspect-ratio: 16 / 8; }
  .small-banner-swiper { width: 92%; min-width: 0; }
  .small-banner-swiper .swiper-slide img { height: 60px; }

  /* Guide Nav */
  .guide-nav__buttons { min-width: 0; width: 92%; flex-wrap: wrap; }
  .guide-nav__btn { width: calc(100% / 3); flex: none; }
  .guide-nav__sub { min-width: 0; width: 92%; flex-direction: column; align-items: center; }
  .guide-nav__sub-btn { width: 100%; justify-content: center; }

  /* Content */
  .content-inner { min-width: 0; width: 92%; }
  .event-card { width: 50%; }
  .news-card { width: 100%; border-right: none !important; }

  /* Open/Gourmet Swiper */
  .open-swiper, .gourmet-swiper { padding: 10px 30px; }

  /* Footer */
  .footer__banners-inner { min-width: 0; width: 92%; flex-direction: column; }
  .footer__menu-inner { min-width: 0; width: 92%; flex-wrap: wrap; gap: 20px; }
  .footer__col { width: calc(50% - 10px); }
  .footer__bottom-inner { min-width: 0; width: 92%; flex-direction: column; gap: 16px; text-align: center; }
  .footer__address { flex-direction: column; }
  .footer__others { flex-wrap: wrap; justify-content: center; }
  .footer__links ul { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .footer__links li { border-right: none; padding: 0 8px; }

  /* Subpages */
  .page-hero { padding: 120px 0 20px; }
  .container { min-width: 0; width: 92%; }
  .page-hero .container { min-width: 0; width: 92%; }
  .page-content { min-width: 0; width: 92%; }
  .page-content.section--white { width: 100%; }
  .page-content > .container { min-width: 0; width: 92%; }
  .info-grid { grid-template-columns: 1fr; }
  .event-list-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .eventnews-tabs__btn { font-size: 14px; padding: 14px 16px; }
  .btn-see-more { width: 240px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .shop-list-grid { grid-template-columns: 1fr; }
  /* Floor Guide responsive */
  .floor-tabs__inner { min-width: 0; width: 92%; flex-wrap: wrap; }
  .floor-tabs__btn { padding: 6px 14px; font-size: 12px; }
  .floor-overview { min-width: 0; width: 92%; }
  .floor-overview__row { flex-direction: column; text-align: center; }
  .floor-overview__left { width: 100%; }
  .floor-overview__right { padding-left: 0; padding-top: 12px; width: 100%; }
  .shop-table { min-width: 0; width: 92%; }
  .shop-table__row { flex-wrap: wrap; }
  .shop-table__logo { display: none; }
  .shop-table__phone { width: auto; }
  .shop-table__hours { width: 100%; padding: 0 12px 12px 72px; }
  .umeyoko-header, .umeyoko-desc { min-width: 0; width: 92%; }
  .app-page-hero { flex-direction: column; text-align: center; padding: 30px 20px; }
  .map-embed { height: 250px; }
  .search-method__inner { min-width: 0; width: 100%; }
  .search-method__tab { padding: 12px 10px; font-size: 12px; }
  .shop-floor-section { min-width: 0; width: 92%; }
  /* Hours page */
  .hours-floor-list__row { padding: 12px 12px; gap: 12px; }
  .hours-floor-list__badge { min-width: 44px; height: 44px; font-size: 16px; }
  .hours-floor-list__time { font-size: 15px; min-width: 120px; }
  /* Concept page 768 */
  .concept-hero__visual { height: 360px; }
  .concept-hero__tagline { font-size: 22px; line-height: 1.9; letter-spacing: 1px; padding: 0 20px; }
  .concept-encounter { padding: 40px 0 36px; }
  .concept-encounter__lead { font-size: 17px; }
  .concept-narrative__block,
  .concept-narrative__block--reverse { flex-direction: column; }
  .concept-narrative__img-wrap { flex: none; width: 100%; min-height: 220px; }
  .concept-monument__content { flex-direction: column; }
  .concept-monument__img-wrap { flex: none; width: 100%; min-height: 240px; }
  .concept-monument__gallery { grid-template-columns: 1fr; gap: 12px; }
  .concept-movie__play-btn { width: 60px; height: 60px; }
  .concept-movie__play-btn .material-symbols-outlined { font-size: 36px; }
}

@media (max-width: 480px) {
  .event-card { width: 100%; border-right: none; }
  .event-card__img { height: 160px; }
  .guide-nav__btn { width: calc(100% / 3); }
  .banner-swiper { aspect-ratio: 16 / 9; }
  .banner-swiper .swiper-button-next,
  .banner-swiper .swiper-button-prev { display: none; }
  /* Floor Guide 480px */
  .floor-tabs__btn { padding: 5px 10px; font-size: 11px; }
  .floor-overview__number { font-size: 28px; }
  .shop-table__num { width: 50px; }
  .shop-table__num-badge { min-width: 34px; height: 34px; font-size: 10px; padding: 0 4px; }
  .shop-table__phone { display: none; }
  .shop-table__hours { padding: 0 8px 10px 54px; font-size: 10px; }
  .search-method__tab { padding: 10px 6px; font-size: 11px; }
  /* Hours page 480px */
  .hours-floor-list__row { flex-wrap: wrap; gap: 8px; padding: 10px 8px; }
  .hours-floor-list__badge { min-width: 38px; height: 38px; font-size: 14px; }
  .hours-floor-list__name { font-size: 12px; }
  .hours-floor-list__time { font-size: 14px; min-width: auto; width: 100%; text-align: left; padding-left: 58px; }
  /* Event list 480px */
  .event-list-grid { grid-template-columns: 1fr; }
  .eventnews-tabs__btn { font-size: 13px; padding: 12px 10px; }
  .btn-see-more { width: 100%; max-width: 280px; }
  /* Concept page 480 */
  .concept-hero__visual { height: 300px; }
  .concept-hero__tagline { font-size: 18px; letter-spacing: 0.5px; }
  .concept-encounter__lead { font-size: 15px; line-height: 2.2; }
  .concept-narrative__title { font-size: 18px; }
  .concept-monument__name { font-size: 22px; }
}

/* ==========================================================================
   SHOP NEWS - Tags & Card Grid
   ========================================================================== */
.tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.tag {
  display: inline-block; padding: 8px 20px;
  border: 1px solid var(--color-line-dark); border-radius: 30px;
  background: #fff; color: var(--color-text);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
  line-height: 1.4;
}
.tag:hover { border-color: var(--color-accent); color: var(--color-accent); opacity: 1; }
.tag--active,
.tag.is-active {
  background: var(--color-accent); color: #fff;
  border-color: var(--color-accent);
}

/* Card Grid */
.card-grid {
  display: grid; gap: 24px;
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Card News */
.card-news {
  display: block; text-decoration: none; color: var(--color-text);
  background: #fff; border-radius: var(--radius-m); overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
}
.card-news:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-2px); opacity: 1;
}
.card-news__thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.card-news__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.card-news:hover .card-news__img { transform: scale(1.05); }
.card-news__new {
  position: absolute; top: 8px; left: 8px;
  background: var(--color-accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  padding: 3px 10px; border-radius: 3px;
}
.card-news__info {
  padding: 14px 16px 18px;
}
.card-news__date {
  display: block; font-size: 12px; color: #999;
  font-family: var(--font-en); margin-bottom: 4px;
}
.card-news__shop {
  display: block; font-size: 12px; color: var(--color-sub1);
  font-weight: 600; margin-bottom: 6px;
}
.card-news__title {
  font-size: 14px; font-weight: 500; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Card Grid Responsive */
@media (max-width: 960px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tags { gap: 8px; }
  .tag { font-size: 12px; padding: 6px 14px; }
}

/* ==========================================================================
   EVENT SPACE PAGE
   ========================================================================== */

/* Introduction */
.es-intro { margin-bottom: 40px; }
.es-intro p { font-size: 15px; line-height: 2; color: #555; }

/* Floor Anchor Navigation */
.es-floor-nav {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 48px; padding: 24px; background: #f9f9f9;
  border-radius: var(--radius-m); border: 1px solid var(--color-line-light);
}
.es-floor-nav__item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #fff; border-radius: var(--radius-s);
  border: 1px solid var(--color-line-light); transition: all .2s;
}
.es-floor-nav__item:hover { border-color: var(--color-accent); opacity: 1; }
.es-floor-nav__badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 26px; padding: 0 8px;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  border-radius: 3px; letter-spacing: .5px; flex-shrink: 0;
}
.es-floor-nav__name {
  font-size: 13px; font-weight: 600; color: var(--color-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Event Space Card */
.es-card {
  margin-bottom: 40px; border: 1px solid var(--color-line-light);
  border-radius: var(--radius-m); overflow: hidden; background: #fff;
  scroll-margin-top: 160px;
}
.es-card__header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; background: #fafafa;
  border-bottom: 1px solid var(--color-line-light);
}
.es-card__floor-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 48px; height: 30px; padding: 0 12px;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-en); font-size: 13px; font-weight: 700;
  border-radius: 4px; letter-spacing: .5px;
}
.es-card__name {
  font-size: 18px; font-weight: 700; color: var(--color-text);
  margin: 0; padding: 0; border: none;
}
.es-card__name::after { display: none; }
.es-card__tag {
  display: inline-block; padding: 3px 12px;
  background: var(--color-accent-light); color: var(--color-accent);
  font-size: 12px; font-weight: 700; border-radius: 100px;
}
.es-card__body {
  display: flex; gap: 24px; padding: 24px;
}
.es-card__visual {
  width: 320px; flex-shrink: 0;
}
.es-card__photo-placeholder {
  width: 100%; aspect-ratio: 4 / 3;
  background: var(--color-bg-light); border-radius: var(--radius-s);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; color: #999; font-size: 13px;
  border: 2px dashed var(--color-line-dark);
}
.es-card__photo-placeholder .material-symbols-outlined {
  font-size: 40px; color: #ccc;
}
.es-card__details { flex: 1; min-width: 0; }
.es-card__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin: 0 0 16px; border: 1px solid var(--color-line-light);
  border-radius: var(--radius-s); overflow: hidden;
}
.es-card__grid-item {
  padding: 12px 16px; border-bottom: 1px solid var(--color-line-light);
}
.es-card__grid-item:nth-last-child(-n+2) { border-bottom: none; }
.es-card__grid-item:nth-child(odd) { border-right: 1px solid var(--color-line-light); }
.es-card__grid-item dt {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #999; margin-bottom: 4px;
}
.es-card__grid-item dt .material-symbols-outlined {
  font-size: 18px; color: var(--color-accent);
}
.es-card__grid-item dd {
  font-size: 14px; font-weight: 500; color: var(--color-text);
}
.es-card__price {
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  color: var(--color-accent);
}
.es-card__desc { margin: 0; }
.es-card__desc p {
  font-size: 14px; line-height: 1.8; color: #555; margin: 0;
}

/* Comparison Table */
.es-comparison { margin: 48px 0 40px; }
.es-comparison__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.es-comparison .info-table th { white-space: nowrap; }
.es-comparison__note {
  font-size: 12px; color: #999; margin-top: 8px;
}

/* Required Documents */
.es-documents { margin-bottom: 40px; }
.es-documents__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 4px;
}
.es-documents__item {
  background: #f9f9f9; border-radius: var(--radius-m);
  padding: 24px 20px; text-align: center;
  border: 1px solid var(--color-line-light);
}
.es-documents__icon { color: var(--color-sub1); margin-bottom: 10px; }
.es-documents__icon .material-symbols-outlined { font-size: 36px; }
.es-documents__title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.es-documents__text { font-size: 12px; color: #666; line-height: 1.6; margin: 0; }

/* Contact Box */
.es-contact { margin-bottom: 20px; }
.es-contact__box {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 28px; background: #f9f9f9;
  border-radius: var(--radius-m); border: 1px solid var(--color-line-light);
}
.es-contact__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.es-contact__icon .material-symbols-outlined { font-size: 28px; }
.es-contact__body { flex: 1; }
.es-contact__name {
  font-size: 16px; font-weight: 700; margin: 0 0 8px; padding: 0; border: none;
}
.es-contact__name::after { display: none; }
.es-contact__text {
  font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 12px;
}
.es-contact__link {
  display: inline-flex; align-items: center; gap: 4px; font-size: 14px;
}
.es-contact__link a { color: var(--color-accent); font-weight: 500; }
.es-contact__link a:hover { text-decoration: underline; opacity: 1; }
.es-contact__link .material-symbols-outlined {
  font-size: 18px; color: var(--color-accent);
}

/* Event Space Responsive - 1024px */
@media (max-width: 1024px) {
  .es-floor-nav { grid-template-columns: repeat(2, 1fr); }
  .es-card__body { flex-direction: column; }
  .es-card__visual { width: 100%; max-width: 400px; }
}

/* Event Space Responsive - 768px */
@media (max-width: 768px) {
  .es-floor-nav { grid-template-columns: 1fr; padding: 16px; }
  .es-card__header { padding: 12px 16px; }
  .es-card__body { padding: 16px; }
  .es-card__visual { max-width: 100%; }
  .es-card__grid { grid-template-columns: 1fr; }
  .es-card__grid-item:nth-child(odd) { border-right: none; }
  .es-card__grid-item { border-bottom: 1px solid var(--color-line-light); }
  .es-card__grid-item:last-child { border-bottom: none; }
  .es-documents__grid { grid-template-columns: 1fr; }
  .es-contact__box { flex-direction: column; align-items: center; text-align: center; }
}

/* Fade-in Animation */
.js-fade {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-fade--delay1 {
  transition-delay: .15s;
}
.js-fade.is-visible {
  opacity: 1; transform: translateY(0);
}

/* ==========================================================================
   CARD GOURMET (Gourmet / Gift Guide)
   ========================================================================== */
.card-gourmet {
  display: block; border-radius: var(--radius-m); overflow: hidden;
  background: #fff; border: 1px solid var(--color-line-light);
  transition: box-shadow .25s ease, transform .25s ease;
}
.card-gourmet:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-3px); opacity: 1;
}
.card-gourmet__thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.card-gourmet__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.card-gourmet:hover .card-gourmet__img {
  transform: scale(1.05);
}
.card-gourmet__info {
  padding: 14px 16px 16px;
}
.card-gourmet__floor {
  display: inline-block; font-family: var(--font-en); font-size: 11px;
  font-weight: 700; color: #fff; background: var(--color-sub1);
  padding: 2px 10px; border-radius: 3px; margin-bottom: 6px;
  letter-spacing: .5px;
}
.card-gourmet__name {
  font-size: 14px; font-weight: 700; line-height: 1.5; margin-bottom: 4px;
}
.card-gourmet__genre {
  font-size: 12px; color: #999; margin: 0;
}

/* ==========================================================================
   GIFT GUIDE SPECIFIC
   ========================================================================== */

/* Gift Banner */
.gift-banner {
  background: linear-gradient(135deg, #fdf6f0 0%, #f0f4f8 50%, #fef7fa 100%);
  border-radius: var(--radius-l); padding: 48px 32px; text-align: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--color-line-light);
}
.gift-banner__visual {
  position: absolute; inset: 0; pointer-events: none;
}
.gift-banner__deco {
  position: absolute; border-radius: 50%; opacity: .12;
}
.gift-banner__deco--1 {
  width: 200px; height: 200px; background: var(--color-accent);
  top: -60px; right: -40px;
}
.gift-banner__deco--2 {
  width: 120px; height: 120px; background: var(--color-sub1);
  bottom: -30px; left: -20px;
}
.gift-banner__deco--3 {
  width: 80px; height: 80px; background: var(--color-sub2);
  top: 40%; left: 10%;
}
.gift-banner__body {
  position: relative; z-index: 1;
}
.gift-banner__lead {
  font-size: 18px; font-weight: 700; line-height: 1.8; margin-bottom: 12px;
  color: var(--color-text);
}
.gift-banner__sub {
  font-size: .85rem; color: #777; line-height: 1.8; max-width: 560px;
  margin: 0 auto;
}

/* Category Filter Tabs */
.category-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 36px 0 12px;
}
.category-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; border: 2px solid var(--color-line-dark);
  border-radius: 100px; font-size: 14px; font-weight: 600;
  color: var(--color-text); background: #fff;
  transition: all .2s ease; cursor: pointer; white-space: nowrap;
}
.category-tab:hover {
  border-color: var(--color-accent); color: var(--color-accent); opacity: 1;
}
.category-tab--active {
  background: var(--color-accent); color: #fff;
  border-color: var(--color-accent);
}
.category-tab--active:hover {
  background: #c12e1c; border-color: #c12e1c; color: #fff;
}
.category-tab .material-symbols-outlined {
  font-size: 18px;
}

/* Section Header */
.section-header {
  display: flex; align-items: flex-end; gap: 16px; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 4px solid var(--color-line-light);
  position: relative;
}
.section-header::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 80px; height: 4px; background: var(--color-accent);
}
.section-header__en {
  font-family: var(--font-en); font-size: 22px; font-weight: 700;
  letter-spacing: .5px; margin: 0; padding: 0; border: none;
}
.section-header__en::after { display: none; }
.section-header__ja {
  font-size: 13px; color: #999; margin: 0;
}

/* Floor Section Headers */
.gift-floor-section { margin-bottom: 40px; }
.gift-floor-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 3px solid var(--color-line-light);
  position: relative;
}
.gift-floor-header::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 60px; height: 3px; background: var(--color-accent);
}
.gift-floor-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--color-sub1); color: #fff;
  font-family: var(--font-en); font-size: 17px; font-weight: 700;
  border-radius: var(--radius-s); flex-shrink: 0;
}
.gift-floor-badge--b1 { background: var(--color-accent); }
.gift-floor-name {
  font-size: 15px; font-weight: 700; color: var(--color-text);
}
.gift-floor-count {
  margin-left: auto; font-size: 12px; color: #999;
  font-family: var(--font-en);
}

@media (max-width: 960px) {
  .category-tabs { gap: 8px; }
  .category-tab { padding: 8px 16px; font-size: 13px; }
}
@media (max-width: 600px) {
  .category-tabs { flex-direction: column; align-items: stretch; }
  .category-tab { justify-content: center; }
  .gift-banner { padding: 32px 20px; }
  .gift-banner__lead { font-size: 16px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
