/*
Theme Name: Sotonomori
Theme URI: https://sotonomori.jp/
Description: 桑都の杜 公式サイトテーマ
Version: 1.0.0
Author: 八王子ミライテラスパートナーズ
Author URI: https://sotonomori.jp/
Text Domain: sotonomori
*/

/* ========================================
   駐車場予約ボタン 無効化フィルター
   URL決定後、このブロックを削除するだけでOK
   ======================================== */
.is-parking-disabled {
  filter: grayscale(100%) brightness(0.8);
  pointer-events: none;
  cursor: default;
}

/* ============================================================
   SELECTION COLOR
   ============================================================ */
::selection {
  background-color: #e6b422;
  color: #fff;
}
::-moz-selection {
  background-color: #e6b422;
  color: #fff;
}

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg: #faf7f1;
  --color-text: #272925;
  --color-green: #3e7249;
  --color-olive: #8bac50;
  --color-yellow: #db9e16;
  --color-pink: #c5989a;
  --color-lightblue: #6da5b8;
  --color-blue: #2c5599;
  --color-red: #ca6042;
  --color-brown: #8e7c73;
  --color-yellowgreen: #9fbb3f;
  --color-white: #fff;
  --header-height: 56px;
}

/* ============================================================
   ANCHOR LINK OFFSET
   ============================================================ */
a:hover {
  opacity: 0.55;
}

body.logged-in.admin-bar {
  margin-top: -30px;
}

/* AOS: fade-up の移動距離を半分に */
[data-aos="fade-up"] {
  transform: translate3d(0, 50px, 0);
}

.anc-wrap {
  position: relative;
}

.anc-wrap span {
  position: absolute;
  top: -60px;
}

/* ============================================================
   80% SCALE: PC font-size base override
   62.5% → 50% (1rem = 8px instead of 10px)
   ============================================================ */
@media only screen and (min-width: 768px) {
  html {
    font-size: 50%;
  }
}

/* ============================================================
   BASE / OVERRIDE
   ============================================================ */
body {
  font-family:
    "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Meiryo", sans-serif;
  font-size: 2.5rem;
  line-height: 2.4;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.main {
  flex: 1;
}

.inner {
  padding: 0 24px;
}

/* ============================================================
   FIRSTVIEW OVERLAY
   ============================================================ */
#firstview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-inner {
  text-align: center;
}

.fv-logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#fv-logo-objects {
  width: 214px;
  margin-left: auto;
  margin-right: auto;
}

#fv-logo-objects svg {
  width: 100%;
  height: auto;
}

#fv-logo-objects svg path {
  opacity: 0;
}

#fv-logo-text {
  width: 214px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}

#fv-logo-text svg {
  width: 100%;
  height: auto;
}

/* ============================================================
   SP FIRSTVIEW 2 OVERLAY
   ============================================================ */
#sp-fv2-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  z-index: 9999;
  display: none;
  overflow: hidden;
}

#sp-fv2-objects {
  width: 100%;
}

#sp-fv2-objects svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   HEADER (PC)
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-height: 80px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.header.is-visible {
  opacity: 1;
  visibility: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 20px 270px 20px 30px;
  max-width: 100%;
}

.header-logo {
  flex-shrink: 0;
  margin-right: 16px;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.sp-only {
  display: none;
}

.sp-i {
  display: none;
}

.tb-i {
  display: none;
}

/* Mini elements: hidden on PC */
.header-logo-mini {
  display: none;
}

.nav-text-mini {
  display: none;
}

.nav-link {
  display: flex;
  align-items: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 8px;
  line-height: 1.5;
}

.nav-bar {
  display: block;
  width: 4px;
  align-self: stretch;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 12px;
  border-radius: 0;
  flex-shrink: 0;
}

.nav-park .nav-bar {
  background-color: var(--color-green);
}
.nav-museum .nav-bar {
  background-color: var(--color-pink);
}
.nav-library .nav-bar {
  background-color: var(--color-lightblue);
}
.nav-spot .nav-bar {
  background-color: var(--color-red);
}
.nav-restaurant .nav-bar {
  background-color: var(--color-brown);
}

/* ============================================================
   FIXED TOP-RIGHT (hamburger, lang, SNS - always visible)
   ============================================================ */
#fixed-top-right {
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 2500;
  display: flex;
  align-items: center;
}

.icon-insta-fixed {
  margin-right: 37px;
}

.icon-insta-fixed img {
  height: 25px;
  display: block;
}

/* Google Translate (proxy方式): 翻訳バー分のヘッダー位置調整 */
body.is-en {
  letter-spacing: 0;
}

body.is-en .header,
body.is-en .header-sub {
  top: 56px;
}

body.is-en #fixed-top-right {
  top: 72px;
}

.is-en .btn-cta--md {
  font-size: 1.8rem;
}

.is-en .about-hero-body p br {
  display: none;
}

.is-en .about-hero-body {
  max-width: 600px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.is-en .catch-text br {
  display: none;
}

.fixed-lang {
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-text);
  letter-spacing: 0.15rem;
  margin-right: 40px;
  transition: font-size 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.lang-current {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   HEADER ACTIONS (CSS buttons inside header)
   ============================================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: 12px;
  margin-bottom: auto;
}

.btn-header {
  display: inline-block;
  padding: 8px 20px;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
  background-color: #f6f8ec;
  border: 2px solid #a4ba53;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.5;
}

/* ============================================================
   KV RIGHT BUTTONS (absolute, vertical stack)
   ============================================================ */
.kv-right-buttons {
  position: absolute;
  top: 80px;
  right: 63px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kv-reserve-btn img {
  height: auto;
  display: block;
}

/* Hamburger Button */
.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-button.active {
  gap: 4px;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.menu-button.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   SP STICKY TABS
   ============================================================ */
.sp-sticky-tabs {
  display: none;
}

/* ============================================================
   TOGGLE MENU
   ============================================================ */
.toggle-menu {
  min-height: 720px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #fafafa;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  overflow-y: scroll;
  border: 4px solid var(--color-olive);
}

.toggle-menu.active {
  opacity: 1;
  visibility: visible;
  box-shadow: none;
}

.toggle-menu-inner {
  padding: 40px 44px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
}

.toggle-menu-vcenter {
  width: 100%;
}

.toggle-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 40px;
  left: 48px;
}

.toggle-menu-logo img {
  height: 40px;
  width: auto;
}

.toggle-menu-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-insta img {
  height: 19px;
}

.toggle-lang {
  font-size: 1.4rem;
  font-weight: 500;
}

.toggle-close {
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: var(--color-text);
}

/* PC menu body */
.toggle-menu-body--pc {
  max-width: 1060px;
  display: flex;
  gap: 72px;
}

/* SP menu body: hidden on PC */
.toggle-menu-body--sp {
  display: none;
}

.toggle-menu-col {
  flex: 1;
}

.menu-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  border-bottom: 1px solid #ced5c7;
  padding: 0 0 26px;
}

.menu-heading span {
  font-size: 1.5rem;
  font-weight: 400;
  margin-left: 6px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.menu-list li {
  margin-bottom: 32px;
}

.menu-link {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.6;
}

.menu-heading a {
  color: inherit;
  text-decoration: none;
}

/* PC footer */
.toggle-menu-footer--pc {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

/* SP footer: hidden on PC */
.toggle-menu-footer--sp {
  display: none;
}

/* SP Instagram: hidden on PC */
.sp-menu-insta {
  display: none;
}

.btn-menu-cta {
  display: inline-block;
}

.btn-menu-cta img {
  background: #f6f8ec;
}

/* ============================================================
   SP FIRSTVIEW 3 (SP only)
   ============================================================ */
.sp-fv3 {
  display: none;
}

/* ============================================================
   KV SECTION
   ============================================================ */
.section-kv {
  position: relative;
  padding: 0 0 48px;
  overflow: visible;
}

/* KV Objects (L/R SVG) */
.kv-objects-wrap {
  position: absolute;
  top: 340px;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.kv-obj-left {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.kv-obj-left.is-visible {
  opacity: 1;
}

.kv-obj-right {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.kv-obj-right.is-visible {
  opacity: 1;
}

.kv-obj-left img,
.kv-obj-right img {
  display: block;
}

.kv-obj-left svg,
.kv-obj-right svg {
  display: block;
  transform: scale(0.9);
  transform-origin: top left;
}

.kv-obj-right svg {
  transform-origin: top right;
}

/* Continuous Scroll Track */
.kv-scroll-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  margin-top: -10px;
}

.kv-scroll-track {
  display: flex;
  visibility: hidden;
}

.kv-scroll-item {
  flex-shrink: 0;
  width: 53.3vw;
  padding: 0 24px;
}

.kv-scroll-item img {
  width: 100%;
  height: auto;
  display: block;
}

.kv-center-logo {
  position: relative;
  z-index: 4;
  text-align: center;
  margin-bottom: 16px;
}

.kv-center-logo img {
}

.kv-left-nav {
  position: absolute;
  top: 40px;
  left: 80px;
  z-index: 5;
}

.kv-nav-link {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  margin-bottom: 24px;
}

.kv-nav-link .nav-bar {
  display: none;
}

.kv-nav-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-left: 13px;
}

.kv-nav-en {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.kv-nav-ja {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-top: 3px;
}

/* Nav colors: border on kv-nav-text, no radius */
.kv-nav-park .kv-nav-text {
  border-left: 3px solid #3e724a;
}
.kv-nav-park .kv-nav-en {
  color: #3e724a;
}

.kv-nav-museum .kv-nav-text {
  border-left: 3px solid #c5989a;
}
.kv-nav-museum .kv-nav-en {
  color: #c5989a;
}

.kv-nav-library .kv-nav-text {
  border-left: 3px solid #6da4b8;
}
.kv-nav-library .kv-nav-en {
  color: #6da4b8;
}

.kv-nav-spot .kv-nav-text {
  border-left: 3px solid #ca6042;
}
.kv-nav-spot .kv-nav-en {
  color: #ca6042;
}

/* SP: Static KV */
.kv-static {
  display: none;
}

/* ============================================================
   CATCH SECTION (Title + Description 2-column)
   ============================================================ */
.section-catch {
  position: relative;
  z-index: 5;
}

.catch-row {
  align-items: flex-start;
}

.catch-title {
  width: 30%;
  padding-right: 24px;
  margin-top: -32px;
  /* flex-shrink: 0; */
}

/* PC: hide logo-objects in catch-title */
.catch-logo-objects {
  display: none;
}

/* PC: hide SP enjoy clone */
.section-enjoy-sp {
  display: none;
}

.catch-right {
  flex: 1.2;
}

.catch-text {
  font-size: 2.7rem;
  line-height: 1.9;
}

.catch-btn-col {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding-left: 24px;
  margin-top: auto;
}

/* btn-about は .btn-round に統合済み */

/* ============================================================
   SHARED: Section Title (.sec-title) - 下層ページでも流用
   ============================================================ */
.sec-title {
  flex-shrink: 0;
}

.sec-title-obj {
  display: block;
  margin-bottom: -8px;
  margin-left: -2px;
}

.sec-title.sec-title--block .sec-title-obj {
  margin-bottom: 0;
}

.sec-title-en {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  display: inline;
}

.sec-title-ja {
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 10px;
  vertical-align: baseline;
  line-height: 1.5;
}

/* Block variant: Japanese title below English */
.sec-title--block .sec-title-en {
  display: block;
}

.sec-title--block .sec-title-ja {
  display: inline-block;
  margin-left: 0;
  margin-top: 3px;
}

.sec-title-note {
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 16px;
}

/* ============================================================
   SHARED: Round Button (.btn-round) - ページ共通
   ============================================================ */
.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 48px 13px 38px;
  background-color: #fff;
  border: 1px solid #272925;
  border-radius: 99px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.btn-round-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.section-info {
  padding: 160px 0 40px;
}

.info-list {
  flex: 1;
  max-width: 600px;
  margin-left: 48px;
  margin-right: 48px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px solid #ced5c7;
  margin: 0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row-meta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 16px;
}

.info-date {
  width: 90px;
  flex-shrink: 0;
  font-size: 2.2rem;
  font-weight: 400;
  margin-top: -2px;
}

.info-row-cat {
  flex-shrink: 0;
}

.info-text {
  font-size: 2.2rem;
  line-height: 2;
  font-weight: 400;
  margin: 3px 0 0 0;
}

/* Info / Event list & detail link styles */
a.info-row,
.info-row a,
.info-page-row a,
.info-single-nav a {
  color: #272925;
  text-decoration: none;
  transition: none;
}

a.info-row:hover,
.info-row a:hover,
.info-page-row a:hover,
.info-single-nav a:hover {
  opacity: 0.6;
}

/* Info Single Pager (Prev / Next) */
.info-single-pager a {
  color: #272925;
  font-size: 2rem;
  text-decoration: none;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-single-pager a:hover {
  opacity: 0.6;
}

.info-pager-prev .info-pager-arrow {
  transform: rotate(180deg);
}

.info-pager-arrow {
  width: 10px;
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 1.6rem;
}

.post-nav-links a {
  color: #272925;
  text-decoration: none;
}

.post-nav-links a:hover {
  opacity: 0.7;
}

.info-btn-wrap {
  flex-shrink: 0;
}

/* ============================================================
   BG PATTERN WRAPPER (bg.svg repeat)
   ============================================================ */
.bg-pattern-wrapper {
  background-image: url("images/home/bg.svg");
  background-repeat: repeat-y;
  background-size: 1954px auto;
  background-position: top center;
  padding-bottom: 100px;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-heading-en {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}

.section-heading-sub {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  color: #888;
  margin-top: 4px;
  line-height: 1.6;
}

/* ============================================================
   START SECTION
   5px方眼: 画像幅520px, バッジ160px, 間隔64px
   ============================================================ */
.section-start {
  padding: 80px 0 96px;
}

.start-img-wrap {
  flex-shrink: 0;
  margin-right: 0;
}

/* .start-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.start-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: var(--color-olive);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.start-badge-date {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.start-badge-slash {
  font-size: 3.6rem;
}

.start-badge-label {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: 3px;
}

.start-heading {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.start-title {
  font-size: 10.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
}

.start-desc {
  font-size: 2.4rem;
  line-height: 2;
}

.start-reserve-btn {
  display: inline-block;
}

.start-btn .btn-cta {
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
}

.start-btn .btn-cta--lg {
  width: 320px;
  height: 70px;
  padding: 0 20px;
  margin: auto;
}

.start-btn .btn-cta--lg span {
  font-size: 2.8rem;
}

.start-note {
  font-size: 2rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
/* ============================================================
   ENJOY SECTION (「桑都の杜」の楽しみ方)
   5px方眼分析: 画像幅1440px = 288グリッド基準
   ============================================================ */
.section-enjoy {
  padding: 64px 0;
}

.enjoy-logo img {
}

.enjoy-title {
}

.enjoy-sub {
}

.enjoy-icon-list {
  justify-content: center;
  gap: 24px;
}

.enjoy-icon-item {
  text-align: center;
  width: 112px;
}

.enjoy-icon-img {
  width: 112px;
  height: 112px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.enjoy-icon-img img {
}

.enjoy-icon-label {
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.enjoy-desc {
  font-size: 2.6rem;
  line-height: 2;
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   OPEN SECTION
   ============================================================ */
.open-content {
  text-align: center;
  position: relative;
}

.open-over {
  position: absolute;
  left: 48px;
  top: -88px;
  width: 214px;
  z-index: 2;
  pointer-events: none;
}

.open-over svg {
  width: 100%;
  height: auto;
  display: block;
}

.open-over-obj {
  opacity: 0;
  transition: opacity 1s ease;
}

.open-over-obj.is-visible {
  opacity: 1;
}

.open-img {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.open-notice {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 10px;
}

@media only screen and (min-width: 768px) {
  .open-notice {
    font-size: 1.8rem;
  }
}

.open-date {
  font-size: 4rem;
  font-weight: 700;
  margin-top: 24px;
  line-height: 1.2;
}

.open-label {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

/* ============================================================
   FLOOR MAP SECTION (Swiper Slider)
   ============================================================ */
.section-floormap {
  padding: 0px 0 64px;
}

.floormap-slider-area {
  position: relative;
  overflow: hidden;
}

.floormap-swiper {
  overflow: hidden;
  padding-bottom: 16px;
}

.floormap-swiper .swiper-slide {
  width: 1076px;
}

.floormap-card {
  background-color: var(--color-white);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  padding: 40px 48px 48px;
  position: relative;
  border-left: 32px solid transparent;
}

.floormap-card--green {
  border-left-color: var(--color-green);
}

.floormap-card--pink {
  border-left-color: var(--color-pink);
}

.floormap-card--blue {
  border-left-color: var(--color-lightblue);
}

.floormap-card--red {
  border-left-color: var(--color-red);
}

.floormap-card-en {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
}

.floormap-card--green .floormap-card-en {
  color: var(--color-green);
}

.floormap-card--pink .floormap-card-en {
  color: var(--color-pink);
}

.floormap-card--blue .floormap-card-en {
  color: var(--color-lightblue);
}

.floormap-card--red .floormap-card-en {
  color: var(--color-red);
}

.floormap-card-ja {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 4px;
}

.floormap-card--green .floormap-card-ja {
  color: var(--color-green);
}

.floormap-card--pink .floormap-card-ja {
  color: var(--color-pink);
}

.floormap-card--blue .floormap-card-ja {
  color: var(--color-lightblue);
}

.floormap-card--red .floormap-card-ja {
  color: var(--color-red);
}

.floormap-card-body {
  margin-top: 20px;
  gap: 32px;
  align-items: flex-start;
}

.floormap-card-img {
  flex-shrink: 0;
}

.floormap-card-img img {
  border-radius: 4px;
  display: block;
}

.floormap-card-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 100%;
}

.floormap-card-desc {
  font-size: 2.4rem;
  line-height: 2.2;
  font-weight: 500;
}

.floormap-card-btn-wrap {
  margin-top: 24px;
  text-align: right;
}

/* Swiper Nav Arrows */
.floormap-prev,
.floormap-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}

.floormap-prev:hover,
.floormap-next:hover {
  opacity: 0.5;
}

/* 矢印はスライド(1060px)の両端から-15pxはみ出す位置
   中央配置スライドの左端 = 50% - 530px、そこから-26px */
.floormap-prev {
  left: calc(50% - 544px - 26px);
}

.floormap-prev img {
  transform: rotate(180deg);
}

.floormap-next {
  right: calc(50% - 544px - 26px);
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.section-event {
  /* padding: 80px 0; */
}

.event-list {
  gap: 32px;
}

.event-item {
  width: calc(50% - 16px);
  margin-bottom: 24px;
}

.event-link {
  text-decoration: none;
  color: var(--color-text);
  display: block;
}

.event-thumb {
  overflow: hidden;
}

.event-thumb img {
  display: block;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.event-cat {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-white);
  padding: 5px 12px;
  line-height: 1;
  position: relative;
  top: -5px;
}

.event-cat--olive {
  background-color: var(--color-olive);
}

.event-cat--pink {
  background-color: var(--color-pink);
}

.event-cat--blue {
  background-color: var(--color-lightblue);
}

.event-cat--red {
  background-color: var(--color-red);
}

.event-cat--green {
  background-color: var(--color-green);
}

.event-cat--brown {
  background-color: var(--color-brown);
}

.event-date {
  font-size: 1.6rem;
  font-weight: 400;
}

.event-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  /* margin-top: 8px; */
}

/* ============================================================
   OPENING HOURS SECTION
   ============================================================ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 14px 16px;
  border-top: 1px solid #ced5c7;
  border-bottom: 1px solid #ced5c7;
  border-left: none;
  border-right: none;
  text-align: center;
  line-height: 1.5;
}

.hours-table tr:nth-child(odd) td {
  background-color: #fafafa;
}

.hours-table tr:nth-child(even) td {
  background-color: var(--color-white);
}

.hours-name {
  font-size: 2rem;
  font-weight: 900;
  width: 50%;
}

.hours-time {
  font-size: 2.5rem;
  font-weight: 900;
}

/* ============================================================
   LOGO DESIGN SECTION
   ============================================================ */
.section-logodesign {
  padding: 64px 0;
}

.section-logodesign .inner {
  max-width: 1120px;
}

.logodesign-heading {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.logodesign-heading-en {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
}

.logodesign-heading-ja {
  font-size: 2.5rem;
  font-weight: 600;
}

.logodesign-row {
  gap: 66px;
  align-items: flex-start;
}

.logodesign-img-wrap {
  flex-shrink: 0;
}

.logodesign-text {
  flex: 1;
}

.logodesign-text p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
  text-indent: 1em;
}

.logodesign-text p:first-child {
  text-indent: 0;
}

.section-logodesign .btn-round {
  min-width: 232px;
}

/* ============================================================
   OPEN NOTICE
   ============================================================ */
.section-open-notice {
  padding: 0 20px;
}

.open-notice-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 30px 20px;
}

.open-notice-text {
  font-size: 2rem;
  line-height: 1.7;
  font-weight: normal;
  text-align: center;
}

/* ============================================================
   TOP YOUTUBE
   ============================================================ */
.top-youtube-inner {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.top-youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

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

/* ============================================================
   BANNERS SECTION
   ============================================================ */
.banner-list {
  gap: 32px;
}

.banner-item {
  display: block;
  width: calc(33.333% - 22px);
}

.banner-img {
  border-radius: 8px;
  display: block;
  width: 100%;
}

/* ============================================================
   MISC SECTION (placeholder)
   ============================================================ */
.misc-placeholder {
  font-size: 2rem;
  line-height: 2;
}

/* PC: hide SP CTA buttons */
.sp-cta-buttons {
  display: none;
}

/* ============================================================
   PAGE TOP BUTTON
   ============================================================ */
.page-top {
  position: fixed;
  bottom: 77px;
  right: 40px;
  z-index: 1500;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.page-top.is-show:hover {
  opacity: 0.6;
}

.page-top img {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-bg);
  padding: 100px 0 0;
  margin-top: 0px;
}

.footer-wrap {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.footer-nav {
  gap: 32px;
}

/* PC: hide SP footer nav */
.footer-nav-sp {
  display: none;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-link {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  line-height: 1.4;
}

.footer-link-en {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-right: 10px;
}

.footer-link-ja {
  font-size: 1.6rem;
  font-weight: 400;
}

.footer-logo {
  text-align: center;
}

.footer-address {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom img {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 1560px) {
  .is-en .nav-link {
    font-size: 1.6rem;
  }
}

/* ============================================================
   HEADER COMPACT (max-width: 1440px)
   ============================================================ */
@media only screen and (max-width: 1460px) {
  .nav-link {
    font-size: 1.6rem;
    padding: 6px 5px;
  }

  .header-actions {
    gap: 0 26px;
    margin-bottom: auto;
    margin-top: 0;
    right: 200px;
    margin-right: 220px;
  }

  .is-visible .header-actions {
    gap: 0 26px;
    margin-bottom: 0;
    margin-top: auto;
    right: 200px;
    margin-right: 0;
  }
}

@media only screen and (max-width: 1440px) {
  .header-inner {
    padding: 20px 37px 20px 30px;
  }

  .header-nav {
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .is-en .header-nav {
    padding: 8px 196px 8px 0;
  }
}

@media only screen and (max-width: 1420px) {
  .btn-header {
    padding: 8px 10px;
  }
}

/* ============================================================
   TABLET PORTRAIT (768px - 1024px)
   ============================================================ */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .kv-left-nav {
    left: 20px;
  }

  .kv-nav-ja {
    font-size: 2.2rem;
  }

  .kv-obj-left svg,
  .kv-obj-right svg {
    transform: scale(0.675);
  }

  .kv-scroll-item {
    width: 75vw;
    padding: 0 16px;
  }

  .catch-btn-col {
    width: 100%;
  }

  .catch-btn-col .btn-round {
    margin-top: 30px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .catch-row {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .kv-right-buttons {
    right: 35px;
  }

  .catch-text {
    font-size: 2.4rem;
  }

  .open-over {
    left: 20px;
    width: 180px;
  }

  .menu-heading span {
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }

  .header-sub-logo img {
    width: 100px;
  }

  .header-sub-logo {
    padding-right: 19px;
  }

  .header-sub-name {
    font-size: 1.9rem !important;
  }

  .header-sub-inner {
    padding: 3px 24px 0px 20px !important;
  }

  .map-nav-inner {
    flex-wrap: wrap;
  }

  .map-nav-btn {
    width: calc(50% - 3px);
    flex: none !important;
  }

  .map-nav-ja br {
    display: none;
  }

  .map-nav-btn:first-child {
    width: calc(100% - 1px);
    flex-direction: row !important;
    justify-content: center;
    gap: 8px;
  }

  .map-nav-btn:first-child .map-nav-ja {
    width: auto;
    flex: none;
    padding-left: 20px;
  }

  .info-nav-btn {
    padding: 14px 5px;
  }

  .info-nav-btn .info-nav-btn-ja {
    font-size: 1.5rem !important;
  }

  .event-nav-btn-bottom {
    padding: 8px 2px !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
  }

  .access-nav-btn {
    padding: 16px 4px !important;
  }

  .info-single-related {
    padding: 140px 0 80px;
  }

  .map-detail-map {
    margin-bottom: 30px;
  }

  .section-info .flex-between {
    flex-wrap: wrap;
  }

  .section-info .info-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .enjoy-icon-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .enjoy-icon-item {
    width: calc(25% - 18px);
    margin-bottom: 16px;
  }

  .tb-i {
    display: inline;
  }

  .floormap-swiper .swiper-slide {
    width: calc(100vw - 120px);
  }

  .floormap-card {
    padding: 30px 32px 36px;
  }

  /* About: key-objects 70% */
  .about-hero-obj-l {
    width: 160px !important;
  }

  .about-hero-obj-r {
    width: 170px !important;
  }

  /* About: 2-column 50/50 */
  .about-block-cols {
    gap: 30px;
  }

  .about-block-img {
    width: 50%;
  }

  .about-block-img img {
    width: 100%;
  }

  .about-block-body {
    width: 50%;
  }

  .floormap-prev {
    left: calc(50% - 354px - 26px);
  }

  .floormap-next {
    right: calc(50% - 354px - 26px);
  }

  .floormap-card-img {
    width: 50%;
  }

  .floormap-card-img img {
    width: 100%;
  }

  .floormap-card-right {
    width: 50%;
  }

  .is-en .kv-nav-ja {
    font-size: 1.9rem;
  }

  .is-en .header-actions {
    bottom: 20px;
    position: absolute;
    right: 34px;
  }

  .is-en .btn-sub-cta {
    width: auto;
  }

  .is-en .header-sub-buttons {
    margin-right: 8px;
  }

  .about-block--no-heading .about-block-body {
    padding-top: 40px;
  }

  .is-en .about-hero-body {
    max-width: 390px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .is-en .fixed-lang {
    margin-right: 20px;
  }

  .is-en .icon-insta-fixed {
    margin-right: 20px;
  }
}

/* ============================================================
   MOBILE (max-width: 767px)
   ============================================================ */
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }

  .inner {
    padding: 0 30px;
  }

  .anc-wrap span {
    top: -50px;
  }

  .main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .main.is-scrollable,
  .subpage .main {
    position: static;
  }

  /* Header: SP - reuse PC header */
  .header {
    min-height: auto;
    height: 80px;
    opacity: 1;
    visibility: visible;
    transition: height 0.5s ease;
  }

  .header-inner {
    padding: 10px 15px;
    background-color: #faf7f1;
    /* transition: padding 0.5s ease; */
  }

  .header-logo {
    margin-right: auto;
    position: relative;
  }

  .header-logo-full {
    width: 140px;
    transition: opacity 0s;
  }

  .header-logo-mini {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .header-actions {
    display: none;
  }

  .header-nav {
    gap: 0;
    padding-top: 0;
    margin-top: 0;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: none;
  }

  .sp-only {
    display: inline;
  }

  .sp-i {
    display: inline;
  }

  .nav-link {
    width: 25%;
    flex: none;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 7px 1px 7px;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
    border-right: 1px solid #e3e3e3;
    border-top: 4px solid transparent;
    letter-spacing: 0;
    /* transition:
      width 0.5s ease,
      padding 0.5s ease,
      font-size 0.5s ease,
      border-top-width 0.5s ease; */
  }

  .nav-link.nav-park {
    border-top-color: var(--color-green);
  }

  .nav-link.nav-museum {
    border-top-color: var(--color-pink);
  }

  .nav-link.nav-library {
    border-top-color: var(--color-lightblue);
  }

  .nav-link.nav-spot {
    border-top-color: var(--color-red);
  }

  .nav-link:last-child {
    border-right: none;
  }

  .nav-bar {
    display: none;
  }

  /* SP: default state - full text, mini hidden */
  .nav-text-mini {
    display: none;
  }

  .header-logo-mini {
    display: none;
  }

  /* SP: scrolled state */
  .header-scrolled .header-inner {
    padding: 5px 0 5px 10px;
    background-color: #fff;
  }

  .header-scrolled .header-logo-full {
    opacity: 1;
    pointer-events: none;
    display: none;
  }

  .header-scrolled .header-logo-mini {
    display: block;
    position: static;
    transform: none;
  }

  .header-scrolled .header-nav {
    top: 0;
    position: fixed;
    left: 50px;
    background: none;
    box-shadow: none;
    justify-content: flex-start;
  }

  .header-scrolled .nav-text-full {
    display: none;
  }

  .header-scrolled .nav-text-mini {
    display: inline;
  }

  .header-scrolled .nav-link {
    width: 70px;
    flex: none;
    font-size: 1rem;
    padding: 7px 1px 7px;
    border-top-width: 2px;
  }

  .header-scrolled.header {
    max-width: 331px;
    height: auto;
  }

  .header-scrolled ~ #fixed-top-right .menu-button {
    background-color: #fafafa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .toggle-menu.active ~ #fixed-top-right .menu-button {
    box-shadow: none;
  }

  /* SP Sticky Tabs: hide (using header instead) */
  .sp-sticky-tabs {
    display: none;
  }

  /* Toggle Menu SP adjustments */
  .toggle-menu {
    min-height: auto;
    border: 2px solid #9fbb3f;
  }

  .toggle-menu-header {
    position: relative;
    top: auto;
    left: auto;
    padding: 20px 14px 0;
  }

  .toggle-menu-logo img {
    height: 36px;
  }

  .toggle-menu-inner {
    padding: 0 20px 30px;
  }

  /* Hide PC menu body on SP */
  .toggle-menu-body--pc {
    display: none;
  }

  /* Show SP menu body */
  .toggle-menu-body--sp {
    display: block;
    margin-top: 15px;
  }

  /* SP menu items */
  .sp-menu-item {
    border-bottom: 1px solid #ced5c7;
  }

  .sp-menu-item--last {
    border-bottom: none;
  }

  .sp-menu-link {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    padding: 8px 0 8px 40px;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    line-height: 1.6;
  }

  button.sp-menu-link {
    font-family: inherit;
    letter-spacing: inherit;
  }

  .sp-menu-arrow {
    flex-shrink: 0;
  }

  /* Accordion arrow control */
  .sp-menu-item--accordion .sp-menu-arrow--right {
    display: none;
  }

  .sp-menu-item--accordion .sp-menu-arrow--bottom {
    display: inline;
  }

  .sp-menu-item--accordion:not(.is-open) .sp-menu-arrow--bottom {
    display: none;
  }

  .sp-menu-item--accordion:not(.is-open) .sp-menu-arrow--right {
    display: inline;
  }

  /* Sub menu */
  .sp-menu-sub {
    list-style: none;
    padding: 0 0 6px 0;
    margin: 0;
  }

  .sp-menu-item--accordion:not(.is-open) .sp-menu-sub {
    display: none;
  }

  .sp-menu-sub li {
    margin-bottom: 0;
    padding: 7px 0 7px 75px;
    border-top: 1px solid #ced5c7;
  }

  .sp-menu-sublink {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.6;
  }

  .sp-menu-sublink .nav-bar {
    display: block;
    width: 3px;
    height: 16px;
    align-self: auto;
    margin-right: 10px;
  }

  /* Hide PC footer on SP */
  .toggle-menu-footer--pc {
    display: none;
  }

  /* SP footer */
  .toggle-menu-footer--sp {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
  }

  .sp-menu-cta {
    display: block;
    flex: 1;
    background-color: #f2f4e8;
  }

  .sp-menu-cta img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* SP Instagram */
  .sp-menu-insta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .sp-menu-insta-link {
    display: block;
  }

  /* SP FV3 */
  .sp-fv3 {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 2500;
    overflow: hidden;
  }

  .sp-fv3-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .sp-fv3-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sp-fv3-content {
    position: relative;
    z-index: 2;
    padding: 60px 30px 0;
    text-align: center;
    height: 100vh;
    height: 100dvh;
  }

  .sp-fv3-logo-area {
    margin-bottom: 140px;
  }

  .sp-fv3-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .sp-fv3-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0px;
    position: absolute;
    width: calc(100% - 60px);
    bottom: 170px;
  }

  .sp-fv3-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    border-width: 1px;
    border-style: solid;
    border-radius: 30px;
    background-color: var(--color-white);
    color: #272925;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
  }

  .sp-fv3-link--park {
    border-color: var(--color-green);
  }

  .sp-fv3-link--museum {
    border-color: var(--color-pink);
  }

  .sp-fv3-link--library {
    border-color: var(--color-lightblue);
  }

  .sp-fv3-link--spot {
    border-color: var(--color-red);
  }

  .sp-fv3-link {
    position: relative;
  }

  .sp-fv3-link-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .sp-fv3-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    position: absolute;
    width: calc(100% - 60px);
    bottom: 60px;
  }

  .sp-fv3-btn {
    flex: 1;
    /* background-color: var(--color-white);
    border-radius: 8px; */
  }

  .sp-fv3-btn img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sp-fv3-scroll {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
  }

  .sp-fv3-scroll img {
    width: 9px;
    margin-left: auto;
    margin-right: auto;
    animation: scroll-bounce 1.5s ease-in-out infinite;
    left: 5px;
    position: relative;
  }

  @keyframes scroll-bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(8px);
    }
  }

  /* Fixed top-right: SP layout — same layer relationship as PC
     z-index: 2500 (above toggle-menu z-index: 2000) */
  #fixed-top-right {
    position: fixed;
    top: 17px;
    right: 20px;
    display: flex;
  }

  #fixed-top-right .icon-insta-fixed {
    display: none;
  }

  .fixed-lang {
    margin-right: 10px;
    transition: opacity 0.5s ease;
  }

  .header.header-scrolled ~ #fixed-top-right .fixed-lang {
    opacity: 0;
    pointer-events: none;
  }

  .toggle-menu.active ~ #fixed-top-right .fixed-lang {
    opacity: 1;
    pointer-events: auto;
  }

  .kv-right-buttons {
    display: none;
  }

  /* KV Section SP */
  .section-kv {
    padding: 20px 0;
    margin-top: 80px;
  }

  .kv-scroll-wrapper {
    display: none;
  }

  .kv-objects-wrap {
    display: none;
  }

  .kv-center-logo {
    display: none;
  }

  .kv-left-nav {
    display: none;
  }

  .kv-static {
    display: block;
  }

  .kv-static img {
    width: 100%;
    height: auto;
  }

  /* Catch Section SP: stack vertically */
  .section-catch {
    margin-top: 0;
  }

  .catch-row {
    flex-direction: column;
  }

  .catch-title {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: row-reverse;
  }

  .catch-title .main-title-img {
    width: 140px;
  }

  .catch-logo-objects {
    display: block;
    align-self: flex-start;
    margin-top: auto;
    margin-right: auto;
    margin-left: 10px;
    width: 100px;
  }

  .catch-logo-objects svg {
    width: 100%;
    height: auto;
  }

  .catch-logo-objects svg path {
    opacity: 0;
  }

  .catch-right {
    padding-left: 0;
    margin-top: 40px;
  }

  .catch-btn-col {
    padding-left: 0;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
  }

  .catch-text {
    font-size: 1.5rem;
    line-height: 2;
  }

  .catch-text br {
    display: none;
  }

  /* BG Pattern: hide on SP */
  .bg-pattern-wrapper {
    background-image: none;
    padding-bottom: 50px;
  }

  /* Enjoy: hide original on SP, show SP clone */
  .section-enjoy:not(.section-enjoy-sp) {
    display: none;
  }

  .section-enjoy-sp {
    display: block;
  }

  .section-enjoy {
    padding: 0 0;
  }

  /* Enjoy SP */
  .section-enjoy .enjoy-logo {
    display: none;
  }

  .enjoy-title {
    width: 220px;
  }

  .enjoy-sub {
    width: 166px;
  }

  .enjoy-icon-item {
    width: 22%;
    margin-bottom: 16px;
  }

  .enjoy-icon-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .enjoy-icon-label {
    font-size: 1.25rem;
    margin-top: 0;
  }

  .enjoy-desc {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 16px;
    font-weight: normal;
  }

  /* Floor Map SP */
  .section-floormap {
    padding: 50px 0;
  }

  .floormap-slider-area {
    overflow-x: hidden;
  }

  .floormap-swiper .swiper-slide {
    width: 90vw;
  }

  .floormap-card {
    padding: 25px 20px 30px;
    border-left: none;
    border-top: 15px solid transparent;
  }

  .floormap-card--green {
    border-top-color: var(--color-green);
  }

  .floormap-card--pink {
    border-top-color: var(--color-pink);
  }

  .floormap-card--blue {
    border-top-color: var(--color-lightblue);
  }

  .floormap-card--red {
    border-top-color: var(--color-red);
  }

  .floormap-card-en {
    font-size: 3.2rem;
  }

  .floormap-card-ja {
    font-size: 1.8rem;
  }

  .floormap-card-body {
    flex-direction: column;
    gap: 20px;
  }

  .floormap-card-img img {
    width: 100%;
  }

  .floormap-card-desc {
    font-size: 1.4rem;
    line-height: 2;
  }

  .floormap-card-btn-wrap {
    margin-top: 40px;
    text-align: center;
  }

  .floormap-prev {
    left: 11px;
  }

  .floormap-next {
    right: 11px;
  }

  .floormap-prev img {
    width: 16px;
  }

  .floormap-next img {
    width: 16px;
  }

  /* Opening Hours SP */
  .hours-name {
    font-size: 1.2rem;
    font-weight: normal;
    text-align: left !important;
    width: 60%;
  }

  .hours-time {
    font-size: 1.6rem;
    padding-left: 40px;
  }

  .hours-table td {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    padding: 4px 10px 4px 0;
    border-left: 1px solid #ced5c7;
  }

  .hours-table td.hours-name {
    padding-left: 5px;
    border-left: none;
  }

  .hours-table td.hours-time {
    padding-left: 34px;
  }

  /* Logo Design SP */
  .logodesign-heading {
    flex-direction: column;
    gap: 5px;
  }

  .logodesign-heading-en {
    font-size: 3.2rem;
    width: 100%;
    text-align: center;
  }

  .logodesign-heading-ja {
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
    font-weight: bold;
  }

  .section-logodesign {
    padding: 64px 0 40px;
  }

  .logodesign-row {
    flex-direction: column;
    gap: 40px;
  }

  .logodesign-img-wrap {
    text-align: center;
    width: 100%;
  }

  .logodesign-img-wrap img {
    width: 220px;
  }

  .logodesign-text p {
    font-size: 1.4rem;
  }

  /* Event SP */
  .section-event {
    padding: 50px 0 0;
  }

  .event-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .event-list {
    gap: 0;
  }

  .event-meta {
    margin-top: 8px;
  }

  .event-cat {
    font-size: 1.1rem;
    padding: 2px 8px;
  }

  .event-date {
    font-size: 1.4rem;
    line-height: 1;
  }

  .event-title {
    font-size: 1.4rem;
  }

  /* Section Title SP */
  .sec-title {
    color: #272925;
  }

  .sec-title-en {
    font-size: 1.8rem;
  }

  .sec-title-ja {
    font-size: 1rem;
    margin-left: 5px;
  }

  .sec-title-obj {
    display: block;
    margin-bottom: -4px;
    width: 13px;
  }

  .sec-title--block .sec-title-en {
    display: inline-block;
  }

  .sec-title--block .sec-title-ja {
    display: inline-block;
  }

  .sec-title-note {
    font-size: 1rem;
    margin-left: 0;
    display: block;
  }

  /* Inner SP */
  .inner {
    padding: 0 20px;
  }

  /* Info Section SP */
  .section-info {
    padding: 50px 0 0;
  }

  .info-list {
    margin-left: 0;
    margin-right: 0;
    min-width: 100%;
  }

  .info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #9fbb3f;
    align-items: center;
  }

  .info-row:last-child {
    border-bottom: 1px solid #9fbb3f;
  }

  .info-row-meta {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }

  .info-row-cat {
    flex-shrink: 0;
    margin-right: 0;
    margin-top: 5px;
    order: 1;
    line-height: 1;
  }

  .info-date {
    font-size: 1.2rem;
    width: auto;
    flex-shrink: 0;
    line-height: 1;
    order: 2;
  }

  .info-text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 0px;
  }

  .info-btn-wrap {
    width: 100%;
    margin-top: 35px;
    text-align: center;
  }

  /* Start Section SP */
  .section-start {
    padding: 80px 0 26px;
  }

  .start-img-wrap {
    margin-right: 0;
  }

  .start-right img {
    width: 130px;
    position: absolute;
    top: -325px;
    left: 10px;
  }

  .start-right {
    position: relative;
  }

  .start-heading {
    font-size: 2.2rem;
  }

  .start-title {
    font-size: 5.8rem;
  }

  .start-desc--lead {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
  }

  .start-desc--body {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 30px;
  }

  .start-btn img {
    width: 250px;
  }

  .start-btn .btn-cta--lg {
    width: 280px;
  }

  .start-btn .btn-cta--lg span {
    font-size: 2.2rem;
  }

  .start-note {
    font-size: 1.2rem;
    font-weight: 400;
  }

  /* Footer SP */
  .footer {
    padding: 40px 0 0;
    display: none;
  }

  .main.is-scrollable ~ .footer {
    display: block;
  }

  .subpage .footer {
    display: block;
  }

  .footer-nav {
    display: none;
  }

  .footer-nav-sp {
    display: block;
  }

  .footer-nav-sp-grid {
    display: flex;
    background-color: transparent;
    overflow: hidden;
  }

  .footer-nav-sp-col {
    width: 50%;
  }

  .footer-nav-sp-link {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.4;
    border-bottom: 1px solid #ced5c7;
  }

  .footer-nav-sp-col .footer-nav-sp-link:last-child {
    border-bottom: none;
  }

  .footer-nav-sp-arrow {
    width: 6px;
    margin-right: 8px;
  }

  .footer-logo img {
    width: 80px;
  }

  .footer-address {
    font-size: 1rem;
  }

  /* SP CTA Buttons */
  .sp-cta-buttons {
    display: flex;
    gap: 12px;
    padding: 0 20px;
  }

  .sp-cta-buttons a {
    background: #fff;
  }

  .open-notice-text {
    font-size: 1.4rem;
    text-align: left;
  }

  .btn-cta--sp-cta {
    width: calc(50% - 6px);
    height: 50px;
    font-size: 1.4rem;
    padding: 0 12px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Banners SP */
  .banner-item {
    width: 100%;
  }

  .banner-list {
    gap: 20px;
  }

  /* FV Overlay SP adjustments */
  #fv-logo-objects {
    width: 108px;
  }

  #fv-logo-text {
    width: 108px;
    margin-top: 12px;
  }

  /* SP: btn-round */
  .btn-round {
    font-size: 1.4rem;
    letter-spacing: 0;
    padding: 11px 30px 11px 20px;
  }

  .about-role-head {
    gap: 5px;
  }

  .btn-round-arrow {
    right: 15px;
  }
}

/* ============================================================
   iPhone SE (max-width: 390px)
   ============================================================ */
@media only screen and (max-width: 390px) {
  .sp-fv3-logo-area {
    margin-bottom: 20%;
    margin-top: -28px;
  }
}

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  z-index: 99999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.page-transition-overlay.is-hidden {
  opacity: 0;
}

/* Home: FVオーバーレイが制御するのでpage-transition-overlayは不要 */
.home .page-transition-overlay {
  display: none;
}

.page-transition-overlay.is-leaving {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   SUBPAGE: Sub-page expanded header
   ============================================================ */
.header-sub {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.header-sub.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-sub-inner {
  display: flex;
  align-items: unset;
  padding: 3px 34px 0px 30px;
}

.header-sub-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 28px;
}

.header-sub-logo img {
  height: auto;
  display: block;
}

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

.header-sub-nav-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 30px;
}

.header-sub-nav-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
}

.header-sub-bar {
  display: block;
  width: 3px;
  align-self: stretch;
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 0;
}

.header-sub-nav-text {
  display: flex;
  flex-direction: column;
}

.header-sub-label {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.header-sub-name {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  white-space: nowrap;
}

.header-sub-buttons {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
  padding-bottom: 22px;
}

.btn-sub-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  height: 46px;
  padding: 0 40px;
  background-color: #f6f8ec;
  border: 2px solid #a4ba53;
  border-radius: 3px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
}

.btn-sub-cta img {
  height: auto;
  display: block;
}

/* Common CTA button (CSS version of image buttons) */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #f6f8ec;
  border: 2px solid #a4ba53;
  border-radius: 3px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.btn-cta:hover {
  opacity: 0.7;
}

.btn-cta img {
  height: auto;
  display: block;
}

/* Size: large (toggle menu PC / start section) */
.btn-cta--lg {
  width: 284px;
  height: 56px;
  font-size: 2rem;
  padding: 0 20px;
}

.btn-cta--lg img {
  width: 30px;
}

/* Size: medium (header KV buttons) */
.btn-cta--md {
  width: 172px;
  height: 90px;
  font-size: 2.4rem;
  padding: 12px 12px;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
}

/* Size: small (SP toggle menu / FV3) */
.btn-cta--sm {
  width: 100%;
  height: 46px;
  font-size: 1.4rem;
  padding: 0 12px;
}

.btn-cta--sm img {
  width: 22px;
}

/* Access parking CTA */
.btn-cta--parking {
  width: 375px;
  height: 64px;
  font-size: 2.2rem;
  padding: 0 24px;
}

.btn-cta--parking img {
  width: 38px;
}

@media only screen and (max-width: 1160px) {
  .header-sub-inner {
    flex-wrap: wrap;
  }

  .btn-sub-cta {
    width: 160px;
  }
}

/* Compact header: hidden initially on subpage */
.subpage .header {
  transform: translateY(0);
}

.subpage .main {
  padding-top: 148px;
}

/* ============================================================
   ABOUT: Wave Top
   ============================================================ */
.about-wave-top {
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}

.about-wave-top img {
  width: 100%;
  display: block;
}

/* ============================================================
   ABOUT: Hero Section
   ============================================================ */
.about-hero {
  position: relative;
  overflow: visible;
  padding-bottom: 100px;
}

.about-hero--map {
  padding-bottom: 30px;
}

.about-hero--narrow {
  padding-bottom: 20px;
}

/* About color items – border-left colors */
.about-color-item--moegi {
  border-left-color: #9fbb3f;
}
.about-color-item--kogane {
  border-left-color: #db9e16;
}
.about-color-item--usugaki {
  border-left-color: #c5989a;
}
.about-color-item--gunjo {
  border-left-color: #2c5599;
}
.about-color-item--nikkei {
  border-left-color: #ca6042;
}
.about-color-item--rokusho {
  border-left-color: #3e7249;
}
.about-color-item--kurumi {
  border-left-color: #937b72;
}
.about-color-item--asahanada {
  border-left-color: #6da5b8;
}

/* Google Maps iframe */
.map-iframe {
  border: 0;
}

/* Shared content width for sub-pages (1080px) */
.content-inner {
  position: relative;
  z-index: 2;
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

/* Scattered objects (left / right) - PC */
.about-hero-objects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1360px) {
  .about-hero-objects {
    top: 80px;
  }
}

/* SP objects container - hidden on PC */
.about-hero-objects-sp {
  display: none;
}

.about-hero-obj-l {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 326px;
}

.about-hero-obj-l svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero-obj-l svg > g > g,
.about-hero-obj-l svg > g > path {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-hero-obj-r {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 346px;
}

.about-hero-obj-r svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero-obj-r svg > g > g,
.about-hero-obj-r svg > g > path {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* About hero: sec-title color override */
.about-hero .sec-title {
  padding-top: 50px;
  padding-bottom: 0;
}

.about-hero .sec-title-en {
  color: #272925;
}

.about-hero .sec-title-ja {
  color: #272925;
}

/* Catch copy (logo image) */
.about-hero-catch {
  text-align: center;
  padding: 20px 0 90px;
}

.about-hero-catch img {
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Body text */
.about-hero-body {
  text-align: center;
  padding: 0 0 140px;
  font-size: 2.2rem;
}

.about-hero-body p {
  margin-bottom: 2em;
  line-height: 2.4;
}

.about-hero-body p:last-child {
  margin-bottom: 0;
}

/* Navigation grid */
.about-hero-nav {
  padding: 0;
}

.about-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 40px;
}

.about-nav-col {
  display: contents;
}

.about-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background-color: var(--color-white);
  text-decoration: none;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.about-nav-item:hover {
  opacity: 0.7;
}

.about-nav-item img {
  height: auto;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT: Block Sections (Concept, History, etc.)
   ============================================================ */
.about-block {
  padding: 80px 0;
}

.about-block-heading {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 13px;
  z-index: 2;
}

.about-block-heading--left {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.about-block-heading--wide {
  margin-left: 15%;
  position: relative;
}

.about-block-heading--right {
  max-width: 1260px;
  margin-left: auto;
}

.about-block-heading-obj-wrap {
  position: absolute;
  left: -90px;
  top: -55px;
  z-index: -1;
  pointer-events: none;
}

.about-block-heading-obj {
  display: block;
}

.about-block-heading-obj img {
  display: block;
}

.about-block--history .about-block-heading-obj-wrap {
  left: -109px;
  top: -90px;
}

.about-block--overview .about-block-heading-obj-wrap {
  left: -75px;
  top: -108px;
}

.about-block--facility .about-block-heading-obj-wrap {
  left: -64px;
  top: -96px;
}

.about-block--role .about-block-heading-obj-wrap {
  left: -57px;
}

.about-block--efforts .about-block-heading-obj-wrap {
  left: -77px;
  top: -110px;
}

.about-block-heading-en {
  position: relative;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-block-heading-ja {
  font-size: 2.5rem;
  font-weight: 600;
}

.about-block--no-heading .about-block-cols {
  margin-top: 0;
}

.about-block--no-heading .about-block-body {
  padding-top: 120px;
}

.about-block-cols {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1260px;
  margin-top: 50px;
}

.about-block-cols--left {
  margin-right: auto;
}

.about-block-cols--right {
  margin-left: auto;
}

.about-block-img {
  flex-shrink: 0;
}

.about-block-img--pull {
  margin-top: -100px;
}

.about-block-body {
  flex: 1;
  padding-top: 30px;
}

.about-block-body p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
}

.about-block-sub {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 12px;
  border-bottom: 6px solid #ced5c7;
  margin-bottom: 30px;
  display: inline-block;
}

.about-history-table {
  margin-top: 30px;
  border-collapse: collapse;
}

.about-history-table th,
.about-history-table td {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  padding: 2px 0;
  text-align: left;
  vertical-align: top;
}

.about-history-table th {
  padding-right: 24px;
  white-space: nowrap;
}

/* About block inner content (1080px) */
.about-block-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

/* Our Role */
.about-role-content {
  margin-top: 60px;
}

.about-role-item {
  padding: 50px 0;
}

.about-role-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-role-icon {
  flex-shrink: 0;
  margin-left: -10px;
}

.about-role-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.about-role-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
  margin-top: 20px;
}

/* Our Efforts */
.efforts-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  margin-top: 60px;
}

.efforts-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.efforts-card-title {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #333;
}

.efforts-card-desc {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0;
  color: #444;
  font-weight: normal;
}

/* Detail Table (Facility Overview / Overall Overview) */
.about-table-content {
  margin-top: 60px;
}

.about-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
}

.about-detail-table th,
.about-detail-table td {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  padding: 24px 30px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}

.about-detail-table th {
  width: 220px;
  white-space: normal;
  text-align: left;
  vertical-align: middle;
}

.about .about-detail-table th {
  width: 180px;
}

.about-detail-table td {
  border-left: 1px solid #ccc;
  vertical-align: top;
}

.about-detail-table tr:first-child th,
.about-detail-table tr:first-child td {
  border-top: 1px solid #ccc;
}

/* Guide Sub Heading (green left border) */
.guide-sub-heading {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 14px;
  border-left: 4px solid var(--color-green);
}

.guide-sub-heading-link {
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 20px;
  color: var(--color-text);
  text-decoration: underline;
}

.guide-link-arrow {
  vertical-align: baseline !important;
  width: 7px;
  position: relative;
  left: 6px;
}

.guide-sub-heading-link:hover {
  opacity: 0.6;
}

/* Overall Overview */
.about-overview-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
  margin-top: 30px;
}

.about-overview-sub-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 0;
}

/* Logo Design Section */
.about-block--logodesign .about-block-heading-obj-wrap {
  left: -55px;
  top: -60px;
}

.about-logo-content {
  margin-top: 120px;
}

.about-logo-row {
  gap: 60px;
  align-items: center;
}

.about-logo-img-wrap {
  flex-shrink: 0;
}

.about-logo-text {
  flex: 1;
}

.about-logo-text p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
  text-indent: 1em;
}

.about-logo-text p:first-child {
  text-indent: 0;
}

.about-symbol-row {
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-symbol-logos {
  flex-shrink: 0;
}

.about-symbol-text {
  flex: 1;
}

.about-symbol-text p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
}

.about-color-grid {
  display: flex;
  gap: 60px;
}

.about-color-col--left {
  width: 60%;
}

.about-color-col--right {
  width: 40%;
}

.about-color-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-color-item {
  border-left-width: 20px;
  border-left-style: solid;
  padding-left: 16px;
}

.about-color-name {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
}

.about-color-desc {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 4px;
}

/* Origin of the Nickname */
.about-block--nickname .about-block-heading-obj-wrap {
  left: -30px;
  top: -50px;
}

.about-nickname-content {
  margin-top: 60px;
}

.about-nickname-logo {
  padding: 70px 0 90px;
}

.about-nickname-content > p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
}

/* Publications and Products */
.about-block--publications .about-block-heading-obj-wrap {
  left: -55px;
  top: -45px;
}

.about-publications-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
  margin-top: 40px;
}

/* ============================================================
   MAP PAGES (map-all, map-a, etc.)
   ============================================================ */
/* Facility Nav */
.map-nav {
  padding: 0 0 60px;
}

.map-nav-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  display: flex;
  gap: 5px;
}

.map-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 24px;
  background-color: var(--color-white);
  border: none;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  transition: all 0.2s ease;
  flex: 1;
}

.map-nav-btn:hover {
  opacity: 1;
}

.map-nav-btn:hover,
.map-nav-btn.is-current {
  background-color: var(--color-text);
  color: var(--color-white);
}

.map-nav-btn--green:hover,
.map-nav-btn--green.is-current {
  background-color: var(--color-green);
}

.map-nav-btn--pink:hover,
.map-nav-btn--pink.is-current {
  background-color: var(--color-pink);
}

.map-nav-btn--blue:hover,
.map-nav-btn--blue.is-current {
  background-color: var(--color-lightblue);
}

.map-nav-btn--red:hover,
.map-nav-btn--red.is-current {
  background-color: var(--color-red);
}

.map-nav-btn--brown:hover,
.map-nav-btn--brown.is-current {
  background-color: var(--color-brown);
}

/* Nav icon on/off */
.map-nav-icon--on {
  display: none;
}

.map-nav-btn:hover .map-nav-icon--off,
.map-nav-btn.is-current .map-nav-icon--off {
  display: none;
}

.map-nav-btn:hover .map-nav-icon--on,
.map-nav-btn.is-current .map-nav-icon--on {
  display: inline;
}

.map-nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 0;
}

.map-nav-en {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.map-nav-ja {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  flex: 1;
  padding-top: 6px;
  display: table;
  width: 100%;
}

.map-nav-ja span {
  display: table-cell;
  vertical-align: middle;
  justify-content: center;
}

/* Facility Sections */
.map-sections {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.map-section {
  padding: 70px 0;
}

.map-section-inner {
  /* inner wrapper */
}

.map-section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.map-section-badge {
  flex-shrink: 0;
}

.map-section-title {
  display: flex;
  flex-direction: column;
}

.map-section-en {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

#section-a .map-section-en {
  color: #3e724a;
}
#section-b .map-section-en {
  color: #c5989a;
}
#section-c .map-section-en {
  color: #6fa1b8;
}
#section-d .map-section-en {
  color: #ca6042;
}
#section-e .map-section-en {
  color: #707070;
}

.map-section-name {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Map detail page */
.map-detail-hero {
  padding: 30px 0 60px;
}

.map-detail-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.map-detail-inner .map-section-heading {
  display: none;
}

.map-detail-map {
  margin-top: 0;
  margin-bottom: 100px;
  text-align: left;
}

.map-detail-map img {
  max-width: 100%;
  height: auto;
}

.map-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
  margin-top: 50px;
}

.map-detail-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.map-gallery-item {
}

.map-gallery-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.map-gallery-label-num {
  display: inline-block;
  width: 70px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 0 7px;
  background-color: var(--color-green);
  color: #fff;
}

#section-b .map-gallery-label-num {
  background-color: var(--color-pink);
}
#section-c .map-gallery-label-num {
  background-color: var(--color-lightblue);
}
#section-d .map-gallery-label-num {
  background-color: var(--color-red);
}
#section-e .map-gallery-label-num {
  background-color: var(--color-brown);
}

.map-gallery-label-name {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.map-gallery-desc {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 20px;
}

.map-gallery-caption {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.map-section-desc {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.4;
  margin-bottom: 140px;
}

.map-guide-section {
  margin-top: 160px;
}

.map-guide-section .sec-title {
  padding-bottom: 0;
}

/* ============================================================
   ACCESS PAGE
   ============================================================ */
.access-nav {
  padding: 0 0 50px;
}

.access-nav-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  display: flex;
  gap: 2px;
}

.access-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  flex: 1;
  text-decoration: none;
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 400;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  /* transition: opacity 0.2s ease; */
}

.access-nav-btn:hover {
  opacity: 0.7;
}

.access-nav-btn img {
  flex-shrink: 0;
  display: block;
  align-self: center;
}

/* Google Map */
.access-map {
  padding: 0 0 60px;
}

.access-map-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.access-map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 45%;
  overflow: hidden;
}

.access-map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Access Sections */
.access-sections {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px 80px;
}

.access-address {
  margin-bottom: 60px;
}

.access-section {
  padding: 50px 0;
}

.access-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.access-section-icon {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.access-section-desc {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
  margin-bottom: 30px;
}

.access-section-note {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: right;
}

/* Access page: table th bold, no top/bottom borders */
.access-sections .about-detail-table th {
  font-weight: 700;
}

.access-sections .about-detail-table th,
.access-sections .about-detail-table td {
  border-bottom: 1px solid #ccc;
}

.access-sections .about-detail-table tr:first-child th,
.access-sections .about-detail-table tr:first-child td {
  border-top: none;
}

.access-sections .about-detail-table tr:last-child th,
.access-sections .about-detail-table tr:last-child td {
  border-bottom: none;
}

/* Parking CTA */
.access-parking-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.access-parking-btn {
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.access-parking-btn:hover {
  opacity: 0.7;
}

.access-parking-note {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ============================================================
   INFO PAGE
   ============================================================ */
/* Info Nav (Category Tabs) */
.info-nav {
  padding: 10px 0 80px;
}

.info-nav-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.info-nav-cats {
  display: flex;
  gap: 2px;
  width: 100%;
}

.info-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  text-decoration: none;
  flex: 1;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: none;
}

.info-nav-btn .info-nav-btn-en {
  font-size: 2.2rem;
  font-weight: 700;
  color: #9fbb3f;
  line-height: 1.3;
}

.info-nav-btn .info-nav-btn-ja {
  font-size: 1.8rem;
  font-weight: 400;
  color: #2e302c;
  line-height: 1.3;
  margin-top: 4px;
}

.info-nav-btn:hover {
  opacity: 0.55;
}

.info-nav-btn.is-current {
  background-color: #9fbb3f;
}

.info-nav-btn.is-current .info-nav-btn-en,
.info-nav-btn.is-current .info-nav-btn-ja {
  color: #fff;
}

.info-nav-sort {
  display: flex;
  justify-content: flex-end;
  gap: 80px;
  padding-top: 30px;
}

.info-nav-sort-item {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
}

.info-nav-sort-item.is-current {
  border-bottom: 4px solid #ced5c7;
}

.info-nav-sort-item:hover {
  opacity: 0.7;
}

/* Info List */
.info-page-list {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 0px;
}

.info-page-list .info-list {
  max-width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}

.info-single-related .info-list {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.info-page-row {
  display: flex;
  align-items: center;
  gap: 39px;
  padding: 16px 0 16px 10px;
  border-bottom: 1px solid #ddd;
}

.info-page-row:first-child {
  border-top: 1px solid #ddd;
}

.info-page-row:last-child {
  border-bottom: none;
}

.info-page-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.info-page-date {
  font-size: 2rem;
  font-weight: 400;
  color: #333631;
  flex-shrink: 0;
  width: 90px;
}

.info-page-cat {
  flex-shrink: 0;
}

.info-cat-tag {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  padding: 5px 12px;
  color: #fff;
  background-color: #9fbb3f;
  position: relative;
  white-space: nowrap;
  top: -5px;
}

.info-page-row .info-cat-tag {
  top: -3px;
}

.info-cat-tag--green {
  background-color: #9fbb3f;
}

.info-cat-tag--pink {
  background-color: var(--color-pink);
}

.info-cat-tag--blue {
  background-color: var(--color-lightblue);
}

.info-cat-tag--red {
  background-color: var(--color-red);
}

.info-page-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  flex: 1;
  padding-left: 20px;
}

.info-page-title a {
  color: var(--color-text);
  text-decoration: none;
}

.info-page-title a:hover {
  text-decoration: underline;
}

/* Pagination dots */
.info-page-pagination {
  padding: 40px 0 80px;
}

.info-page-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 6px;
  cursor: pointer;
}

.info-page-dot.is-current {
  background-color: var(--color-text);
}

/* ============================================================
   EVENT PAGE
   ============================================================ */
.event-slider-wrap {
  position: relative;
  padding: 0 0 100px;
}

.event-slider-area {
  position: relative;
}

.event-swiper {
  overflow: hidden;
  padding-bottom: 16px;
}

.event-swiper .swiper-slide {
  width: 1076px;
}

.event-swiper .swiper-slide img {
  width: 100%;
  display: block;
}

.event-slider-prev,
.event-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}

.event-slider-prev:hover,
.event-slider-next:hover {
  opacity: 0.5;
}

.event-slider-prev {
  left: calc(50% - 530px - 45px);
}

.event-slider-prev img {
  transform: rotate(180deg);
}

.event-slider-next {
  right: calc(50% - 530px - 45px);
}

/* Event Nav */
.event-nav {
  padding: 10px 0 60px;
}

.event-nav-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.event-nav-cats {
  display: flex;
  gap: 5px;
  width: 100%;
}

.event-nav-btn {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex: 1;
  min-width: 0;
  width: calc(100% / 7);
  text-align: center;
  transition: opacity 0.2s ease;
  overflow: hidden;
}

.event-nav-btn:hover {
  opacity: 0.8;
}

.event-nav-btn-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 6px;
  height: 38px;
  font-size: clamp(1rem, 1.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Top bar colors - always colored bg + white text */
.event-nav-btn[data-color="yellowgreen"] .event-nav-btn-top {
  background-color: #db9e16;
}

.event-nav-btn[data-color="olive"] .event-nav-btn-top {
  background-color: var(--color-olive);
}

.event-nav-btn[data-color="green"] .event-nav-btn-top {
  background-color: var(--color-green);
}

.event-nav-btn[data-color="pink"] .event-nav-btn-top {
  background-color: var(--color-pink);
}

.event-nav-btn[data-color="lightblue"] .event-nav-btn-top {
  background-color: var(--color-lightblue);
}

.event-nav-btn[data-color="red"] .event-nav-btn-top {
  background-color: var(--color-red);
}

.event-nav-btn-top--cs {
  font-size: 0.9vw;
}

@media only screen and (min-width: 1520px) {
  .event-nav-btn-top--cs {
    font-size: 1.6rem;
  }
}

.event-nav-btn[data-color="brown"] .event-nav-btn-top {
  background-color: var(--color-brown);
}

.event-nav-btn-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #2e302c;
  line-height: 1.3;
  background-color: #fff;
}

/* Current state - bottom matches top color */
.event-nav-btn.is-current[data-color="yellowgreen"] .event-nav-btn-bottom {
  background-color: #db9e16;
  color: #fff;
}
.event-nav-btn.is-current[data-color="olive"] .event-nav-btn-bottom {
  background-color: var(--color-olive);
  color: #fff;
}
.event-nav-btn.is-current[data-color="green"] .event-nav-btn-bottom {
  background-color: var(--color-green);
  color: #fff;
}
.event-nav-btn.is-current[data-color="pink"] .event-nav-btn-bottom {
  background-color: var(--color-pink);
  color: #fff;
}
.event-nav-btn.is-current[data-color="lightblue"] .event-nav-btn-bottom {
  background-color: var(--color-lightblue);
  color: #fff;
}
.event-nav-btn.is-current[data-color="red"] .event-nav-btn-bottom {
  background-color: var(--color-red);
  color: #fff;
}
.event-nav-btn.is-current[data-color="brown"] .event-nav-btn-bottom {
  background-color: var(--color-brown);
  color: #fff;
}

.event-nav-btn.is-current:hover {
  opacity: 1;
}

.event-nav-sort {
  display: flex;
  justify-content: flex-end;
  gap: 80px;
  padding-top: 30px;
}

.event-nav-sort-item {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
}

.event-nav-sort-item.is-current {
  border-bottom: 4px solid #ced5c7;
}

.event-nav-sort-item:hover {
  opacity: 0.7;
}

/* Event Page Grid */
.event-page-list {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.event-page-inner {
  padding-bottom: 80px;
}

.event-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 32px;
}

.event-page-grid .event-page-item:nth-child(-n + 2) {
  width: calc(50% - 16px);
  margin-bottom: 8px;
}

.event-page-grid .event-page-item:nth-child(n + 3) {
  width: calc(33.333% - 22px);
  margin-bottom: 8px;
}

.event-page-item .event-thumb img {
  width: 100%;
}

.event-page-item .event-cat {
  font-size: 1.6rem;
}

.event-page-item .event-date {
  font-size: 1.8rem;
  font-weight: 400;
  position: relative;
  top: -6px;
}

.event-page-grid:not(.event-page-grid--3col)
  .event-page-item:nth-child(n + 3)
  .event-title {
  font-size: 1.5rem;
}

.event-page-grid--3col .event-page-item,
.event-page-grid--3col .event-page-item:nth-child(-n + 2),
.event-page-grid--3col .event-page-item:nth-child(n + 3) {
  width: calc(33.333% - 22px);
}

/* EVENT CALENDAR */
.event-calendar-section {
  padding: 0 0 80px;
}

.event-calendar-preparing {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text);
}

/* ============================================================
   INFO SINGLE PAGE
   ============================================================ */
.info-single {
  padding: 0 0 100px;
}

.info-single-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.info-single-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.info-single-date {
  font-size: 2.2rem;
  font-weight: 400;
  color: #707070;
  margin-top: -10px;
}

.info-single-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 0;
  margin-bottom: 40px;
  border-top: 4px solid #ced5c7;
  border-bottom: 4px solid #ced5c7;
}

.info-single-img {
  margin-bottom: 120px;
}

.info-single-img img {
  width: 100%;
  height: auto;
  display: block;
}

.info-single-img.is-portrait {
  display: flex;
  justify-content: center;
}

.info-single-img.is-portrait img {
  width: auto;
  max-width: 560px;
}

.info-single-img-placeholder {
  width: 100%;
  padding-bottom: 50%;
  background-color: #e5e5e5;
}

.info-single-body {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
}

.info-single-body a {
  color: #d2a03b;
  text-decoration: underline;
}

.info-single-body p a {
  color: #3e7249;
  text-decoration: underline;
}

.info-single-body p {
  margin-bottom: 1.5em;
}

.info-single-body p:last-child {
  margin-bottom: 0;
}

.info-single-body h2 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.5;
  border-left: 12px solid #9fbb3f;
  padding-left: 12px;
  margin-top: 2.8em;
  margin-bottom: 2.4em;
}

.info-single-body h3 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 2.8em;
  margin-bottom: 2.4em;
}

.info-single-body h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}

/* Gutenberg table */
.info-single-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  font-size: 2rem;
  line-height: 2;
  background-color: #fff;
}

.info-single-body table th,
.info-single-body table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ccc;
}

.info-single-body table tr:first-child th,
.info-single-body table tr:first-child td {
  border-top: 1px solid #ccc;
}

.info-single-body table th {
  font-weight: 400;
  white-space: nowrap;
}

.info-single-body table td {
  border-left: 1px solid #ccc;
}

/* Info Single Pager */
.info-single-pager {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
}

/* Separator HR */
.info-single-hr {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-top: 4px solid #ced5c7;
}

/* Related articles */
.info-single-related {
  padding: 140px 0 160px;
}

.info-related-heading {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.info-related-obj {
  display: block;
  margin-bottom: -6px;
  margin-left: -2px;
}

.info-page-list--compact .info-page-row {
  padding: 14px 0;
}

/* ============================================================
   LINK PAGE
   ============================================================ */
.link-banners {
  padding: 20px 0 120px;
}

.link-banners-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.link-banner-item {
  display: block;
  transition: opacity 0.2s ease;
}

.link-banner-item:hover {
  opacity: 0.7;
}

.link-banner-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   POLICY PAGE
   ============================================================ */

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-content {
  padding: 20px 0 120px;
}

.contact-content-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.contact-lead {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2;
  margin-bottom: 50px;
}

.contact-form-group {
  margin-bottom: 30px;
}

.contact-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 8px;
}

.contact-input {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  font-size: 1.6rem;
  font-family: inherit;
  border: 1px solid #707070;
  border-radius: 0;
  background-color: #fff;
  box-sizing: border-box;
}

.contact-textarea {
  width: 100%;
  padding: 16px;
  font-size: 1.6rem;
  font-family: inherit;
  border: 1px solid #707070;
  border-radius: 0;
  background-color: #fff;
  box-sizing: border-box;
  resize: vertical;
}

.contact-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border: 1px solid #707070;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.contact-checkbox input[type="checkbox"]:checked {
  background-color: #e6b422;
  border-color: #e6b422;
}

.contact-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form-submit {
  text-align: center;
  margin-top: 50px;
}

.contact-submit-btn {
  display: inline-block;
  min-width: 200px;
  height: 56px;
  padding: 0 40px;
  background-color: #333;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-submit-btn:hover {
  opacity: 0.7;
}

/* WPCF7 overrides */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  font-size: 1.6rem;
  font-family: inherit;
  border: 1px solid #707070;
  border-radius: 0;
  background-color: #fff;
  box-sizing: border-box;
}

.wpcf7 textarea {
  width: 100%;
  padding: 16px;
  font-size: 1.6rem;
  font-family: inherit;
  border: 1px solid #707070;
  border-radius: 0;
  background-color: #fff;
  box-sizing: border-box;
  resize: vertical;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0 0 12px 0;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border: 1px solid #707070;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked {
  background-color: #e6b422;
  border-color: #e6b422;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  justify-content: center;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border: 1px solid #707070;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked {
  background-color: #e6b422;
  border-color: #e6b422;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wpcf7 input[type="submit"] {
  display: inline-block;
  min-width: 200px;
  height: 56px;
  padding: 0 40px;
  background-color: #333;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  opacity: 0.7;
}

.wpcf7-spinner {
  display: block !important;
  margin: 10px auto !important;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #c00;
  font-size: 1.4rem;
  margin-top: 4px;
}

.wpcf7 .wpcf7-response-output {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 20px;
  padding: 16px;
}

.contact-acceptance {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* ============================================================
   POLICY PAGE
   ============================================================ */
.policy-content {
  padding: 20px 0 120px;
}

.policy-content-inner {
  max-width: calc(1080px + 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4;
}

.policy-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.policy-item {
  display: flex;
  margin-bottom: 2em;
}

.policy-item:last-of-type {
  margin-bottom: 0;
}

.policy-num {
  flex-shrink: 0;
  width: 2.4em;
}

.policy-text {
  flex: 1;
}

.policy-text > p:first-child {
  font-weight: 400;
  margin-bottom: 0.5em;
}

.policy-sub-item {
  display: flex;
  margin-top: 0.5em;
}

.policy-sub-num {
  flex-shrink: 0;
  width: 3em;
  padding-left: 0.5em;
}

.policy-sub-text {
  flex: 1;
}

.policy-sns-link {
  margin-top: 3em;
}

.policy-sns-link a {
  color: var(--color-green);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.policy-sns-link a:hover {
  opacity: 0.7;
}

/* SP: Sub page adjustments */
@media only screen and (max-width: 767px) {
  .header-sub {
    display: none;
  }

  .subpage .header {
    opacity: 1;
    visibility: visible;
  }

  .about-wave-top {
    display: none;
  }

  .subpage .main {
    padding-top: 128px;
  }
}

/* SP: About Hero */
@media only screen and (max-width: 767px) {
  .about-hero {
    padding: 0 20px 0px !important;
  }

  .about-hero .content-inner {
    padding: 0;
  }

  .about-hero-objects {
    display: none;
  }

  .about-hero-objects-sp {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
  }

  .about-hero-obj-l-sp {
    position: absolute;
    top: 20px;
    left: 8px;
    width: 115px;
  }

  .about-hero-obj-l-sp svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .about-hero-obj-l-sp svg > g > g,
  .about-hero-obj-l-sp svg > g > path {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .about-hero-obj-r-sp {
    position: absolute;
    top: 10px;
    right: 8px;
    width: 120px;
  }

  .about-hero-obj-r-sp svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .about-hero-obj-r-sp svg > g > g,
  .about-hero-obj-r-sp svg > g > path {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .about-hero .sec-title {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .about-hero-catch {
    padding: 70px 0 80px;
  }

  .about-hero-catch img {
    width: 200px !important;
  }

  .about-hero-body {
    padding: 0 0 60px;
    font-size: 1.2rem;
    width: calc(100% + 30px);
    margin-left: -10px;
  }

  .about-hero-body {
    text-align: center;
  }

  .about-hero-body p {
    line-height: 2.2;
  }

  .about-nav-grid {
    display: flex;
    gap: 8px;
    margin-bottom: 50px;
  }

  .about-nav-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }

  .about-nav-item {
    padding: 8px 10px;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .about-nav-item img {
    width: 4px !important;
  }
}

/* SP: About Block Sections */
@media only screen and (max-width: 767px) {
  .about-block {
    padding: 40px 0 70px;
  }

  .about-block-heading {
    padding-left: 20px;
  }

  .about-block-heading--left,
  .about-block-heading--right {
    padding: 0 20px 0 50px;
    max-width: 100%;
    margin-left: 0;
  }

  .about-block-heading--wide {
    padding: 0 20px 0 50px;
    max-width: 100%;
    margin-left: 0;
  }

  .about-nav-item {
    padding: 8px 8px;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .about-detail-table {
    margin-top: 15px;
  }

  .about-block-heading-en {
    font-size: 2.6rem;
  }

  .about-block-heading-obj-wrap {
    left: 1px !important;
    top: -62px !important;
  }

  .about-block--concept .about-block-heading-obj-wrap {
    left: 10px !important;
    top: -38px !important;
  }

  .about-block--history .about-block-heading-obj-wrap {
    left: 13px !important;
    top: -86px !important;
  }

  .about-block--overview .about-block-heading-obj-wrap {
    left: 7px !important;
    top: -60px !important;
  }

  .about-block--facility .about-block-heading-obj-wrap {
    left: 7px !important;
    top: -110px !important;
  }

  .about-block--role .about-block-heading-obj-wrap {
    left: 0px !important;
    top: -60px !important;
  }

  .about-block-heading-obj img {
    width: 100% !important;
  }

  .about-block-heading-en {
    font-size: 2.8rem;
  }

  .about-block-heading-ja {
    font-size: 1.4rem;
  }

  .about-block-heading--long {
    display: inline-block;
  }

  .about-block-heading--long .about-block-heading-ja {
    display: block;
    text-align: right;
  }

  /* 2-column → 1-column stacking */
  .about-block-cols {
    flex-direction: column;
    gap: 40px;
    margin-top: 16px;
    max-width: 100%;
    padding: 0;
  }

  .about-block-cols--right {
    flex-direction: column;
  }

  .about-block-img {
    width: 100%;
  }

  .about-block-img img {
    width: 100%;
  }

  .about-block-img--pull {
    margin-top: 0;
  }

  .about-block-body {
    padding: 0 20px;
  }

  .about-block-body p {
    font-size: 1.4rem;
    line-height: 2;
  }

  .about-block--no-heading .about-block-cols {
    margin-top: 0;
  }

  .about-block--no-heading .about-block-body {
    padding-top: 0;
  }

  .about-block-sub {
    font-size: 2rem;
    border-bottom-width: 4px;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }

  /* History: image first, then text on SP */
  .about-block--history .about-block-cols {
    flex-direction: column;
  }

  .about-block--history .about-block-img {
    order: -1;
  }

  .about-history-table th,
  .about-history-table td {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .about-history-table th {
    padding-right: 16px;
  }

  /* Inner content */
  .about-block-inner {
    max-width: 100%;
    padding: 0 20px;
  }

  /* Role */
  .about-role-content {
    margin-top: 24px;
  }

  .about-role-item {
    padding: 24px 0;
  }

  .about-role-icon {
    margin-left: -10px;
  }

  .about-role-icon img {
    width: 80px !important;
  }

  .about-role-title {
    font-size: 2rem;
  }

  .about-role-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 12px;
  }

  /* Efforts */
  .efforts-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .efforts-card {
    padding: 20px 16px;
  }

  .efforts-card-title {
    font-size: 1.8rem;
    margin: 0 0 4px 0;
  }

  .efforts-card-desc {
    font-size: 1.3rem;
  }

  .about-detail-table th,
  .about-detail-table td {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 5px 8px;
  }

  .about-detail-table th {
    width: 80px;
    white-space: normal;
    text-align: left;
  }

  .guide-sub-heading {
    font-size: 1.5rem;
    padding-left: 10px;
    border-left: 3px solid var(--color-green);
  }

  .guide-sub-heading-link {
    font-size: 1.2rem;
    margin-left: 14px;
  }

  .guide-link-arrow {
    width: 5px;
  }

  .about-table-content {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .about-overview-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 0;
  }

  .about-overview-sub-title {
    font-size: 1.6rem;
    margin-top: 36px;
  }

  /* Logo design */
  .about-logo-content {
    margin-top: 50px;
  }

  .about-logo-row {
    flex-direction: column;
    gap: 24px;
  }

  .about-logo-img-wrap {
    text-align: center;
  }

  .about-logo-img-wrap img {
    width: 280px !important;
    margin-bottom: 30px;
  }

  .about-logo-text p {
    font-size: 1.4rem;
    line-height: 2;
  }

  .about-symbol-row {
    flex-direction: column;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
  }

  .about-symbol-logos {
    text-align: center;
  }

  .about-symbol-logos img {
    width: 260px !important;
  }

  .about-symbol-text p {
    font-size: 1.4rem;
    line-height: 2;
  }

  .about-color-grid {
    flex-direction: column;
    gap: 0;
  }

  .about-color-col--left,
  .about-color-col--right {
    width: 100%;
    gap: 24px;
  }

  .about-color-col--right {
    margin-top: 24px;
  }

  .about-color-item {
    padding-left: 12px;
  }

  .about-color-name {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .about-color-desc {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  /* Nickname */
  .about-nickname-content {
    margin-top: 30px;
  }

  .about-nickname-logo {
    padding: 60px 0 80px;
  }

  .about-nickname-logo img {
    width: 300px !important;
  }

  .about-nickname-content > p {
    font-size: 1.4rem;
    line-height: 2;
  }

  /* Publications */
  .about-publications-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 24px;
  }
}

/* SP: Event Page */
@media only screen and (max-width: 767px) {
  .event-slider-wrap {
    padding: 0 0 30px;
  }

  .event-slider-area {
    overflow-x: hidden;
  }

  .event-swiper .swiper-slide {
    width: 90vw;
  }

  .event-slider-prev {
    left: 4px;
  }

  .event-slider-next {
    right: 4px;
  }

  /* Event Nav SP */
  .event-nav {
    padding: 0 0 30px;
  }

  .event-nav-inner {
    padding: 0 20px;
  }

  .event-nav-cats {
    flex-wrap: wrap;
    gap: 5px;
    border: none;
  }

  .event-nav-btn-top {
    display: none;
  }

  .event-nav-btn-bottom {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 10px 6px;
    background-color: #fff;
    border-bottom: none;
  }

  .event-nav-btn:first-child {
    width: 100%;
    flex: none;
  }

  .event-nav-btn.is-current[data-color="yellowgreen"] .event-nav-btn-bottom {
    background-color: #db9e16;
    color: #fff;
    font-weight: 700;
  }
  .event-nav-btn.is-current[data-color="olive"] .event-nav-btn-bottom {
    background-color: var(--color-olive);
    color: #fff;
    font-weight: 700;
  }
  .event-nav-btn.is-current[data-color="green"] .event-nav-btn-bottom {
    background-color: var(--color-green);
    color: #fff;
    font-weight: 700;
  }
  .event-nav-btn.is-current[data-color="pink"] .event-nav-btn-bottom {
    background-color: var(--color-pink);
    color: #fff;
    font-weight: 700;
  }
  .event-nav-btn.is-current[data-color="lightblue"] .event-nav-btn-bottom {
    background-color: var(--color-lightblue);
    color: #fff;
    font-weight: 700;
  }
  .event-nav-btn.is-current[data-color="red"] .event-nav-btn-bottom {
    background-color: var(--color-red);
    color: #fff;
    font-weight: 700;
  }
  .event-nav-btn.is-current[data-color="brown"] .event-nav-btn-bottom {
    background-color: var(--color-brown);
    color: #fff;
    font-weight: 700;
  }

  .event-nav-btn:not(:first-child) {
    width: calc(50% - 3px);
    flex: none;
    border-right: none;
  }

  .event-nav-btn[data-color="olive"] .event-nav-btn-bottom {
    color: var(--color-olive);
    font-weight: 700;
  }

  .event-nav-btn[data-color="green"] .event-nav-btn-bottom {
    color: var(--color-green);
    font-weight: 700;
  }

  .event-nav-btn[data-color="pink"] .event-nav-btn-bottom {
    color: var(--color-pink);
    font-weight: 700;
  }

  .event-nav-btn[data-color="lightblue"] .event-nav-btn-bottom {
    color: var(--color-lightblue);
    font-weight: 700;
  }

  .event-nav-btn[data-color="red"] .event-nav-btn-bottom {
    color: var(--color-red);
    font-weight: 700;
  }

  .event-nav-btn[data-color="brown"] .event-nav-btn-bottom {
    color: var(--color-brown);
    font-weight: 700;
  }

  /* Info Nav SP */
  .info-nav-cats {
    flex-wrap: wrap;
    gap: 5px;
  }

  .info-nav-btn .info-nav-btn-en {
    display: none;
  }

  .info-nav-btn {
    padding: 14px 10px;
    background-color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: none;
  }

  .info-nav-btn .info-nav-btn-ja {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0;
  }

  .info-nav-btn:first-child {
    width: 100%;
    flex: none;
  }

  .info-nav-btn:not(:first-child) {
    width: calc(50% - 3px);
    flex: none;
  }

  .info-nav-btn.is-current {
    background-color: #9fbb3f;
  }

  .info-nav-btn.is-current .info-nav-btn-ja {
    color: #fff;
  }

  .info-nav-cats--info .info-nav-btn:first-child {
    width: calc(50% - 3px);
  }

  /* Info Page SP */
  .info-nav {
    padding: 10px 0 30px;
  }

  .info-nav-inner {
    padding: 0 20px;
  }

  .info-nav-sort {
    justify-content: right;
    padding-top: 20px;
    gap: 30px;
  }

  .info-nav-sort-item {
    font-size: 1.2rem;
  }

  .info-nav-sort-item.is-current {
    border-bottom: 2px solid #ced5c7;
  }

  .info-page-list {
    padding: 0 20px;
  }

  .info-page-list .info-list {
    margin-left: 0px;
    margin-right: 0px;
  }

  .info-page-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }

  .info-page-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    flex-shrink: 0;
  }

  .info-page-row .info-page-date {
    font-size: 1.2rem;
    width: auto;
    line-height: 1;
  }

  .info-page-row .info-page-title {
    flex: 1;
    font-size: 1.4rem;
    line-height: 1.5;
    padding-left: 0;
  }

  .info-cat-tag {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1;
    padding: 2px 8px 4px;
    box-shadow: none;
  }

  .info-page-row .info-cat-tag {
    top: 0;
  }

  .info-page-pagination {
    padding: 30px 0 40px;
  }

  /* Info Single SP */
  .info-single {
    padding: 0 0 40px;
  }

  .info-single-inner {
    padding: 0 20px;
  }

  .info-single-meta {
    gap: 0 10px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .info-single-date {
    font-size: 1.4rem;
  }

  .info-single-title {
    font-size: 1.8rem;
    padding: 5px 0;
    margin-bottom: 20px;
  }

  .info-single-img {
    margin-bottom: 20px;
  }

  .info-single-img.is-portrait img {
    width: 100%;
    max-width: 560px;
  }

  .info-single-body {
    font-size: 1.4rem;
    line-height: 2;
  }

  .info-single-body h2 {
    font-size: 1.7rem;
    padding-left: 10px;
  }

  .info-single-body h3 {
    font-size: 1.55rem;
  }

  .info-single-body h4 {
    font-size: 1.4rem;
  }

  .info-single-body table {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .info-single-body table th,
  .info-single-body table td {
    padding: 12px 14px;
  }

  .info-single-pager {
    padding: 24px 2px;
  }

  .info-single-pager a {
    font-size: 1.5rem;
  }

  .info-pager-arrow {
    width: 8px;
  }

  .info-single-hr {
    margin-left: 20px;
    margin-right: 20px;
    border-top: 2px solid #ced5c7;
  }

  .info-single-related {
    padding: 40px 0 20px;
  }

  .info-related-heading {
    font-size: 1.6rem;
  }

  .event-nav-sort {
    justify-content: right;
    padding-top: 20px;
    gap: 30px;
  }

  .event-nav-sort-item {
    font-size: 1.4rem;
  }

  .event-nav-sort-item.is-current {
    border-bottom: 2px solid #ced5c7;
  }

  /* Event Grid SP */
  .event-page-list {
    padding: 0 20px;
  }

  .event-page-inner {
    padding-bottom: 60px;
  }

  .event-page-grid {
    flex-direction: column;
    gap: 40px;
  }

  .event-page-grid .event-page-item,
  .event-page-grid .event-page-item:nth-child(-n + 2),
  .event-page-grid .event-page-item:nth-child(n + 3) {
    width: 100%;
    margin-bottom: 0;
  }

  .event-page-item .event-meta {
    margin-top: 10px;
  }

  .event-page-item .event-title {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 6px;
  }

  .event-page-item .event-cat {
    font-size: 1.1rem;
  }

  .event-page-item .event-date {
    font-size: 1.3rem;
  }

  .event-calendar-section {
    padding: 0 0 40px;
  }

  .event-calendar-preparing {
    font-size: 1.4rem;
    line-height: 2;
  }

  /* Access SP */
  .access-nav-inner {
    flex-wrap: wrap;
    gap: 5px;
  }

  .access-nav-btn {
    box-shadow: none;
    width: calc(50% - 3px);
    padding: 6px 5px;
    flex: unset;
    font-size: 1.4rem;
    gap: 0;
  }

  .access-nav-btn .img-wrap img {
    transform: scale(0.9);
  }

  .access-nav-btn .img-wrap {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .access-nav-btn > span:last-child {
    width: calc(100% - 60px);
    text-align: center;
  }

  .access-map {
    padding: 0 0 20px;
  }

  .access-map-embed {
    padding-bottom: 0;
    height: 480px;
  }

  .access-address {
    margin-bottom: 20px;
  }

  .access-sections {
    padding: 0 24px 40px;
  }

  .access-section {
    padding: 20px 0;
  }

  .access-section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
  }

  .access-section-icon {
    width: 50px;
  }

  #sec-train .access-section-icon img {
    width: 30px;
  }

  #sec-parking .access-section-icon img {
    width: 35px;
  }

  .access-section-title {
    font-size: 1.8rem;
  }

  .access-section-desc {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
  }

  .access-section-note {
    font-size: 1.4rem;
    line-height: 2;
  }

  .access-parking-cta {
    display: block;
    text-align: center;
  }

  .access-parking-btn img {
    width: 280px;
  }

  .access-parking-note {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 16px;
  }

  .access-sections .about-detail-table th {
    width: 115px;
    font-weight: 700;
  }

  .access-sections .about-detail-table tr:first-child th,
  .access-sections .about-detail-table tr:first-child td {
    font-size: 1.4rem;
    border-top: none;
  }

  .access-sections .about-detail-table tr:last-child th,
  .access-sections .about-detail-table tr:last-child td {
    font-size: 1.4rem;
  }

  .btn-cta--parking {
    font-size: 1.8rem;
    width: 100%;
    max-width: 320px;
  }

  /* Link Page SP */
  .link-banners {
    padding: 20px 0 60px;
  }

  .link-banners-inner {
    grid-template-columns: unset;
  }
}

/* SP: Map Pages
   ============================================================ */
@media only screen and (max-width: 767px) {
  /* Base text */
  .map-sections,
  .map-sections,
  .map-detail-inner {
    margin-bottom: 40px;
  }

  .map-detail-inner {
    padding: 0 20px;
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 400;
  }

  /* Nav */
  .map-nav {
    padding: 0 0 40px;
  }

  .map-nav-inner {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .map-nav-btn {
    padding: 7px 5px;
    flex: 1 1 calc(50% - 4px);
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .map-nav-btn:not(.map-nav-btn--green) .map-nav-top {
    margin-right: auto;
  }

  .map-nav-btn.map-nav-btn--green {
    width: 100%;
    flex: none;
    display: flex;
  }

  .map-nav-en {
    font-size: 1.4rem;
  }

  .map-nav-btn--green .map-nav-en {
    color: var(--color-green);
  }
  .map-nav-btn--pink .map-nav-en {
    color: var(--color-pink);
  }
  .map-nav-btn--blue .map-nav-en {
    color: var(--color-lightblue);
  }
  .map-nav-btn--red .map-nav-en {
    color: var(--color-red);
  }
  .map-nav-btn--brown .map-nav-en {
    color: var(--color-brown);
  }

  .map-nav-btn:hover .map-nav-en,
  .map-nav-btn.is-current .map-nav-en {
    color: #fff;
  }

  .map-nav-ja {
    font-size: 1.1rem;
    padding-top: 0;
    flex: none;
    display: contents;
  }

  .map-nav-btn.map-nav-btn--red {
    padding: 7px 3% 7px 5px;
  }

  .map-nav-btn.map-nav-btn--brown {
    padding: 7px 8% 7px 5px;
  }

  .map-nav-btn--brown .map-nav-ja {
    margin-right: 10%;
  }

  .map-nav-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .map-nav-top img {
    width: 24px !important;
  }

  /* Section */
  .map-section {
    margin: 0 0 40px;
    padding: 0;
  }

  .map-section-heading {
    gap: 10px;
    margin-bottom: 20px;
  }

  .map-detail-inner .map-section-heading {
    display: none;
  }

  .map-section-inner .map-section-heading {
    display: none;
  }

  .guide .map-section-inner .map-section-heading {
    display: flex;
  }

  .map-section-heading--sp {
    display: flex;
    margin-bottom: 20px;
  }

  .map-detail-inner .map-section-heading--sp {
    display: flex;
  }

  #section-a-sp .map-section-en {
    color: #3e724a;
  }
  #section-b-sp .map-section-en {
    color: #c5989a;
  }
  #section-c-sp .map-section-en {
    color: #6fa1b8;
  }
  #section-d-sp .map-section-en {
    color: #ca6042;
  }
  #section-e-sp .map-section-en {
    color: #707070;
  }

  .map-section-badge {
    width: 32px !important;
  }

  .map-section-en {
    font-size: 1.1rem;
  }

  .map-section-name {
    font-size: 1.5rem;
  }

  .map-section-desc {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 70px;
  }

  /* Detail hero */
  .map-detail-hero {
    padding: 15px 0 30px;
  }

  .map-detail-map {
    margin-bottom: 10px;
  }

  /* Gallery */
  .map-detail-gallery {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
  }

  .map-gallery-label {
    gap: 8px;
    margin-bottom: 8px;
  }

  .map-gallery-label-num {
    width: auto;
    font-size: 1.5rem;
    padding: 2px 8px 4px;
  }

  .map-gallery-label-name {
    font-size: 1.6rem;
  }

  .map-gallery-desc {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 12px;
  }

  .map-gallery-caption {
    font-size: 1.3rem;
    margin-top: 8px;
  }

  /* Guide section */
  .map-guide-section {
    margin-top: 80px;
  }

  /* Contact SP */
  .contact-lead {
    font-size: 1.4rem;
  }

  .contact-label {
    font-size: 1.4rem;
  }

  .contact-input {
    font-size: 1.4rem;
    height: 50px;
  }

  .contact-textarea {
    font-size: 1.4rem;
  }

  .contact-checkbox {
    font-size: 1.4rem;
  }

  .contact-content {
    padding: 20px 0 60px;
  }

  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"] {
    font-size: 1.4rem;
    height: 50px;
  }

  .wpcf7 textarea {
    font-size: 1.4rem;
  }

  .wpcf7 .wpcf7-checkbox .wpcf7-list-item label,
  .wpcf7 .wpcf7-acceptance label {
    font-size: 1.4rem;
  }

  /* Google Translate bar: SP adjustments */
  .is-en .sp-fv3-link {
    font-size: 1.3rem;
  }

  .is-en .sp-fv3-content {
    height: calc(100% - 60px);
    top: 56px;
  }

  .is-en .header-nav {
    top: 80px;
  }

  .is-en .nav-link {
    font-size: 1.1rem !important;
    padding: 2px 1px 2px;
  }

  .is-en #fixed-top-right {
    top: 72px !important;
  }

  .is-en .header-scrolled .header-nav {
    top: 0;
  }

  .is-en.home .header-nav {
    top: 137px;
  }

  .is-en.home .header-scrolled .header-nav {
    top: 57px;
  }

  .is-en .header-scrolled .nav-link {
    font-size: 1.1rem !important;
    padding: 2px 1px 2px;
    line-height: 1;
  }

  .is-en .toggle-menu {
    top: 56px;
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
  }

  .is-en .map-nav-btn {
    flex-direction: column;
    justify-content: flex-start;
    padding: 7px 4px;
    gap: 0px;
  }

  .page-top {
    bottom: 35px;
    right: 10px;
  }

  .page-top img {
    width: 60px;
  }
}

@media only screen and (max-width: 390px) {
  .header-scrolled.header {
    width: 298px;
  }

  .header-scrolled .nav-link {
    width: 62px;
    letter-spacing: 0;
    padding: 8px 0px 2px;
  }
}
