@charset "UTF-8";

/* ===========================================
   爬虫類フェス - 総合案内サイト
   Modern Pop Redesign
   =========================================== */

/* -------------------------------------------
   CSS Variables
   ------------------------------------------- */
:root {
  /* Event Colors */
  --color-fukuoka: #d87a00;
  --color-fukuoka-light: #f0a030;
  --color-fukuoka-petite: #7a4f9e;
  --color-fukuoka-petite-light: #a070c8;
  --color-hiroshima: #ca0915;
  --color-hiroshima-light: #e84050;
  --color-kitakyushu: #1a8023;
  --color-kitakyushu-light: #28c840;

  /* Typography */
  --font-family: 'Noto Sans JP', sans-serif;
  --font-family-rounded: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --line-height: 1.8;

  /* Font Size Scale (1rem = 14px@375vw ~ 18px@PC) */
  --fs-xs: 0.8rem;
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-md: 1.11rem;
  --fs-lg: 1.44rem;
  --fs-xl: 1.67rem;
  --fs-2xl: 2.67rem;
}

/* -------------------------------------------
   Reset / Base
   ------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  /* 375px → 14px, 1080px → 18px で滑らかに補間 */
  font-size: clamp(14px, 3.733vw, 18px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: var(--line-height);
  color: #222;
  background: url("../img/bgWood.png");
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: bold;
}

p {
  margin: 0 0 1em;
}

table {
  border-collapse: collapse;
  width: 100%;
}


/* -------------------------------------------
   Layout
   ------------------------------------------- */
#wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1em;
}
.container > .container{
  padding-left: 0;
  padding-right: 0;
}

/* -------------------------------------------
   Header
   ------------------------------------------- */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* 地域追従バー */
.region-subnav-bar {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 4px 0;
  background: #ddd;
  box-shadow: 0 0 3px rgba(0, 0, 0, .15) inset;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.region-subnav-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.region-subnav-bar__inner {
  display: flex;
  gap: 4px;
}

.region-subnav-bar__inner a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  background: #fff;
}

.region-subnav-bar__inner a:last-child {
  border-right: none;
}


/* Navigation - single row with logo + links */
#nav {
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
}


/* Site logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.4em 0;
}

.site-logo__img {
  height: 36px;
  width: auto;
}

/* Nav links — left-aligned, close to logo */
.nav-links {
  display: flex;
  margin-left: 0.75em;
  gap: 0.3em;
}

.nav-links li {
  /* text-align: center; */
}

.nav-links__item {
  display: flex;
  align-items: center;
  min-width: 6em;
  padding: 0.2em 0.6em 0.2em 2.65em;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: var(--fs-md);
  font-weight: bold;
  color: #fff;
  border-radius: .25em;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  border-left: none;
  border-right: none;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 地域名ラベル */
.nav-links__label {
  flex-shrink: 0;
}

/* PC: 日付・会場の2段メタ情報 */
.nav-links__meta {
  display: none;
  flex-direction: column;
  margin-left: 0.5em;
  font-family: var(--font-family);
  line-height: 1.3;
  white-space: nowrap;
}

.nav-links__date {
  font-size: 0.75em;
  font-weight: bold;
  opacity: 0.95;
}

.nav-links__venue {
  font-size: 0.7em;
  font-weight: bold;
  opacity: 0.85;
}

/* 地域カラー + キャラ背景 */
.nav-links__item--fukuoka {
  background-image: url('../img/character/Leopard_boy_min_square.png'), linear-gradient(135deg, var(--color-fukuoka), var(--color-fukuoka-light));
  background-color: var(--color-fukuoka);
}
.nav-links__item--fukuoka-petite {
  padding-left: 0.6em;
  /* background-image: url('../img/character/Leopard_boy_min_square.png'), linear-gradient(135deg, var(--color-fukuoka-petite), var(--color-fukuoka-petite-light)); */
  background-color: var(--color-fukuoka-petite);
}

.nav-links__item--fukuoka-petite .nav-links__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  font-size: 0.7em;
}

.nav-links__petit {
  display: block;
  font-weight: bold;
  background: #fff;
  color: var(--color-fukuoka-petite);
  text-shadow: none;
  border-radius: 0.2em;
  padding: 0 0.3em;
  line-height: 1.3;
}
.nav-links__item--hiroshima {
  background-image: url('../img/character/snake_girl_min_square.png'), linear-gradient(135deg, var(--color-hiroshima), var(--color-hiroshima-light));
  background-color: var(--color-hiroshima);
}
.nav-links__item--kitakyushu {
  background-image: url('../img/character/chameleon_girl_min_square.png'), linear-gradient(135deg, var(--color-kitakyushu), var(--color-kitakyushu-light));
  background-color: var(--color-kitakyushu);
}

.nav-links__item:hover {
  /* border-top-width: 2px; */
  border-top: 2px solid #fff;
  border-bottom-width: 0;
  filter: saturate(150%);
}

/* カレントがある時、他の地域リンクを控えめに */
.nav-links:has(.is-active) .nav-links__item:not(.is-active) {
  opacity: 0.5;
  filter: grayscale(0.5);
}

/* -------------------------------------------
   Sub Navigation (非追従)
   ------------------------------------------- */
.sub-nav {
  background: #f0f0f0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
  font-size: var(--fs-sm);
  line-height: 1;
}

/* 地域ロゴ */
.sub-nav__logo {
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 1.5em 1em 1.25em;
}

.sub-nav__logo-img {
  height: 120px;
  width: auto;
}

.sub-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}

.sub-nav__links {
  display: flex;
  gap: 1.2em;
}

.sub-nav__links a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sub-nav__links a:hover {
  text-decoration: none;
}

.sub-nav__links--right {
  margin-left: auto;
}

.sub-nav__emphasis {
  font-weight: bold;
  color: #333;
}

.sub-nav__icon {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 0.1em;
  opacity: 0.9;
}

/* バナー風リンク */
.sub-nav__banners {
  display: flex;
  gap: 8px;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 1em;
}

.sub-nav__banner {
  flex: 1;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
  transition: box-shadow 0.2s;
}

.sub-nav__banner:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.sub-nav__banner-bg {
  width: 120px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex-shrink: 0;
}

.sub-nav__banner-label {
  flex: 1;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-family: var(--font-family-rounded);
  font-size: var(--fs-lg);
  font-weight: bold;
  padding: 0 .75em;
}

/* トップページ: サブナビをヒーロー後に移動 */
.tpl-home #header     { order: 1; }
.tpl-home #hero       { order: 2; }
.tpl-home .sub-nav    { order: 3; }
.tpl-home #content    { order: 4; }
.tpl-home #after-main { order: 5; }
.tpl-home #footer     { order: 6; }

/* -------------------------------------------
   Breadcrumb
   ------------------------------------------- */
.breadcrumb {
  background: #f5f5f0;
  border-bottom: 1px solid #e8e8e0;
  padding: 0.5em 0;
  font-size: var(--fs-xs);
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.2em;
}
.breadcrumb__item::after {
  content: ">";
  margin-left: 0.4em;
  color: #aaa;
}
.breadcrumb__item:last-child::after {
  display: none;
}
.breadcrumb__item a {
  color: #444;
  text-decoration: underline;
}
.breadcrumb__item a:hover {
  text-decoration: none;
}
.breadcrumb__item--current {
  color: #666;
}

/* -------------------------------------------
   Hero
   ------------------------------------------- */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: 75%;
  display: block;
}

/* No color overlay - show photos as-is */
/* .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.20) 100%
  );
  z-index: 1;
} */

.hero__body {
  position: relative;
  z-index: 3;
  padding: 4em 2em;
}

.hero__title {
  margin: 0 0 1em;
}

.hero__title-logo {
  max-height: 100px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

/* Hero sub wrapper + characters */
.hero__sub-wrap{
  position: relative;
}
.hero__chara{
  position: absolute;
  bottom: -2em;
  width: 9em;
  z-index: -2;
}
.hero__chara--left{
  left: -6em;
}
.hero__chara--right{
  right: -6em;
}

.hero__sub {
  padding: .35em .75em;
  font-weight: bold;
  background: #fff;
  color: #17580d;
  position: relative;
}
.hero__sub::after{
  content: "";
  position: absolute;
  top: .35em;
  left: .35em;
  width: 100%;
  height: 100%;
  background: #379129;
  z-index: -1;
}

/* -------------------------------------------
   Content Section (汎用セクション)
   ------------------------------------------- */
.content-section {
  margin-bottom: 2em;
  padding: 2em 0;
  background: #fff;
  border-radius: .25em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.content-section__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5em;
}

.content-section__inner > * + * {
  margin-top: 1.5em;
}

.content-section__heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-lg);
  font-weight: bold;
  letter-spacing: -0.02em;
}

.content-section__subheading {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: #666;
}

/* heading + subheading は近づける */
.content-section__heading + .content-section__subheading {
  margin-top: .2em;
}

/* -------------------------------------------
   Region Cards (4-column overview)
   ------------------------------------------- */
.region-cards {
  margin-top: 1.5em;
  margin-bottom: 2em;
  position: relative;
}

.region-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}
.region-cards__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.region-card {
  border-radius: 0 0 .25em .25em;
  background: #fff;
  position: relative;
  border: none;
  min-width: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
}

.region-card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.region-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card label: outlined text overlapping card top */
.region-card__label{
  margin-bottom: 0.25em;
  line-height: 1;
  text-align: center;
  font-family: var(--font-family-rounded);
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--color-fukuoka);
  position: relative;
  z-index: 2;
}

/* 縁取り: data-text + ::before(外縁=地域カラー) + ::after(内縁=白) */
.region-card__label::before,
.region-card__label::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: transparent;
  paint-order: stroke;
}

.region-card__label::before {
  z-index: -2;
  -webkit-text-stroke: 18px var(--color-fukuoka);
}

.region-card__label::after {
  z-index: -1;
  -webkit-text-stroke: 10px #fff;
}

/* 地域別カラー（本文 + 外縁） */
.region-card--fukuoka .region-card__label { color: var(--color-fukuoka); }
.region-card--fukuoka .region-card__label::before { -webkit-text-stroke-color: var(--color-fukuoka); }
.region-card--fukuoka-petite .region-card__label { color: var(--color-fukuoka-petite); }
.region-card--fukuoka-petite .region-card__label::before { -webkit-text-stroke-color: var(--color-fukuoka-petite); }
.region-card--hiroshima .region-card__label { color: var(--color-hiroshima); }
.region-card--hiroshima .region-card__label::before { -webkit-text-stroke-color: var(--color-hiroshima); }
.region-card--kitakyushu .region-card__label { color: var(--color-kitakyushu); }
.region-card--kitakyushu .region-card__label::before { -webkit-text-stroke-color: var(--color-kitakyushu); }

.region-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75em;
}

.region-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
}

.region-card__logo img {
  max-height: 88px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.region-card__body {
  padding: 0.7em 0.8em 0.8em;
}

.region-card__date {
  margin: 0;
  /* font-size: 0.92rem; */
  font-size: var(--fs-md);
  font-weight: bold;
  white-space: nowrap;
}

.region-card__day {
  /* font-size: 0.8em; */
  margin: 0 0.25em;
  font-size: var(--fs-sm);
}

.region-card__time {
  font-size: var(--fs-sm);
  font-weight: bold;
}

.region-card__venue {
  margin: 0.3em 0 0;
  /* font-size: var(--fs-sm); */
  font-weight: bold;
  padding-top: 0.3em;
  border-top: 1px solid #f0f0f0;
}

.region-card__address {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 400;
  color: #555;
}

.region-card__price {
  margin-top: 0.4em;
  padding-top: 0.4em;
  border-top: 1px solid #f0f0f0;
  font-size: var(--fs-xs);
  line-height: 1.6;
}

.region-card__price span {
  display: block;
}

.region-card__body--center {
  text-align: center;
}

.region-card__badge {
  display: inline-block;
  font-family: var(--font-family-rounded);
  font-size: var(--fs-base);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #999;
}

.day-sat { color: #0062c8; }
.day-sun, .day-hol { color: #d42020; }

/* Card action button area */
.region-card__action {
  padding: 0 0.8em 0.8em;
  text-align: center;
  margin-top: auto;
}

/* Region card button */
.region-card__btn {
  display: block;
  width: 100%;
  font-family: var(--font-family-rounded);
  font-size: var(--fs-base);
  font-weight: bold;
  padding: 0.6em 2.5em 0.6em 1em;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  color: #fff;
  position: relative;
}

.region-card__btn::after {
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  width: 0.45em;
  height: 0.45em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.region-card__btn--fukuoka {
  background: linear-gradient(135deg, var(--color-fukuoka), var(--color-fukuoka-light));
}
.region-card__btn--fukuoka-petite {
  background: linear-gradient(135deg, var(--color-fukuoka-petite), var(--color-fukuoka-petite-light));
}
.region-card__btn--hiroshima {
  background: linear-gradient(135deg, var(--color-hiroshima), var(--color-hiroshima-light));
}
.region-card__btn--kitakyushu {
  background: linear-gradient(135deg, var(--color-kitakyushu), var(--color-kitakyushu-light));
}

/* Content Section 内のテキスト */
.content-section__text {
  font-size: var(--fs-sm);
  text-align: justify;
}

.content-section__note {
  font-size: var(--fs-xs);
  margin-top: .5em;
}

/* Gallery */
.gallery__heading {
  font-size: var(--fs-md);
  font-weight: 600;
  margin: 0 0 0.5em;
}

.gallery + .gallery {
  margin-top: 1.5em;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------
   Photo Modal
   ------------------------------------------- */
.photo-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: flex-start;
  justify-content: center;
  padding: 60px 0 40px;
}

.photo-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  object-fit: contain;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.photo-modal-close {
  position: fixed;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
}

.photo-modal-close:hover,
.photo-modal-close:focus {
  color: #bbb;
  background: rgba(0, 0, 0, 0.8);
}

.photo-modal-prev,
.photo-modal-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
}

.photo-modal-prev::before,
.photo-modal-next::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
}

.photo-modal-prev::before {
  border-width: 12px 20px 12px 0;
  border-color: transparent #fff transparent transparent;
}

.photo-modal-next::before {
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}

.photo-modal-prev { left: 20px; }
.photo-modal-next { right: 20px; }

.photo-modal-prev:hover,
.photo-modal-prev:focus,
.photo-modal-next:hover,
.photo-modal-next:focus {
  background: rgba(0, 0, 0, 0.8);
}

.photo-modal-prev:hover::before,
.photo-modal-prev:focus::before {
  border-color: transparent #bbb transparent transparent;
}

.photo-modal-next:hover::before,
.photo-modal-next:focus::before {
  border-color: transparent transparent transparent #bbb;
}


/* -------------------------------------------
   Footer
   ------------------------------------------- */
#footer {
  margin-top: auto;
  padding: 2.5em 1.5em 2em;
  background: #e8e8e4;
  color: #333;
  text-align: center;
}

.footer-placeholder {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-sm);
  color: #888;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5em 2.5em;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left;
}

.footer-sitemap__group {
  min-width: 0;
}

.footer-sitemap__heading {
  color: #222;
  text-decoration: none;
  font-family: var(--font-family-rounded);
  font-size: var(--fs-sm);
  font-weight: bold;
  display: block;
  padding-bottom: 0.4em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  margin-bottom: 0.4em;
}

.footer-sitemap__heading:hover {
  color: #555;
}

.footer-sitemap__children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-sitemap__children li::before {
  content: "›";
  margin-right: 0.3em;
  color: #aaa;
}

.footer-sitemap__children li {
  margin: 0.25em 0;
}

.footer-sitemap__children a {
  color: #555;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.2);
  text-underline-offset: 0.15em;
  font-size: var(--fs-xs);
}

.footer-sitemap__children a:hover {
  color: #222;
  text-decoration-color: #222;
}

/* 公式ショップ */
.footer-shop {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: var(--fs-sm);
}

.footer-shop p {
  margin: 0;
}

.footer-shop__label {
  font-family: var(--font-family-rounded);
  font-weight: bold;
  color: #222;
  margin-bottom: 0.2em;
}

.footer-shop__links a {
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 0.3em;
}

.footer-shop__links a:hover {
  color: #222;
  border-bottom-color: #222;
}

/* 運営情報 */
.footer-org {
  font-size: var(--fs-xs);
  line-height: 1.6;
  margin-bottom: 1em;
}

.footer-org p {
  margin: 0;
}

.copyright {
  font-size: var(--fs-xs);
  opacity: 0.7;
}

/* -------------------------------------------
   Utilities
   ------------------------------------------- */
.text-center { text-align: center; }
.text-right { text-align: right; }

.sp-only { display: none; }

[id] {
  scroll-margin-top: 5em;
}

/* -------------------------------------------
   Responsive: SP (440px以下 = viewport 375px固定)
   ※ 441px以上はPC版をそのまま表示
   ------------------------------------------- */
@media screen and (max-width: 440px) {
  .sp-only { display: inline; }

  /* Sub Nav */
  .sub-nav__logo {
  }

  .sub-nav__logo-img {
    height: 80px;
  }

  .sub-nav__banners {
    flex-direction: column;
    gap: 8px;
    padding: 1em 1em 0.5em;
  }

  .sub-nav__banner {
    border-radius: 4px;
  }

  .sub-nav__banner-bg {
    width: 100px;
  }

  .sub-nav__banner-label {
    font-size: var(--fs-base);
    justify-content: flex-start;
    padding: 0 1.2em;
  }

  .sub-nav__inner {
    flex-wrap: wrap;
    gap: 0.6em 0;
    padding-bottom: 1.5em;
  }

  .sub-nav__links {
    flex-wrap: wrap;
    gap: 0.4em 0.8em;
  }

  .sub-nav__links--right {
    margin-left: 0;
    padding-top: 0.4em;
    border-top: 1px solid #e0e0d8;
    width: 100%;
  }

  .sub-nav__sns {
    width: 100%;
  }

  /* Hero */
  .hero {
    min-height: 380px;
  }

  .hero__title-logo {
    max-height: 70px;
  }

  .hero__chara{
    bottom: auto;
    top: 2em;
    width: 7em;
    z-index: 2;
  }
  .hero__chara--left{
    left: -4.5em;
  }
  .hero__chara--right{
    right: -4.5em;
  }

  .hero__sub span{
    display: block;
  }

  .hero__body {
    padding: 3em 1.5em;
  }

  /* Header / Nav — SP: 非追従、2段グリッド */
  /* 整理したら1行いけたのでやっぱり追従 */
  /* #header {
    position: static;
  } */

  .region-subnav-bar {
    display: none;
  }

  .nav-inner {
    flex-wrap: nowrap;
    height: auto;
    padding: 6px 6px 6px 8px;
    gap: 0;
    align-items: center;
  }

  .site-logo {
    padding: 0;
    flex-shrink: 0;
    width: auto;
    height: auto;
    min-width: 54px;
    margin-right: 1em;
  }

  .site-logo__img {
    height: 44px;
    object-fit: contain;
  }

  .nav-links {
    flex: 1;
    margin-left: 0;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .nav-links li {
    flex: unset;
  }

  .nav-links__item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 0.9rem; */
    padding: 0.2em 0;
    text-align: center;
    border-radius: 0;
    border-top: none;
    border-bottom: 3px solid rgba(0, 0, 0, 0.2);
    box-shadow: none;
    min-width: 0;
    background-image: none !important;
    height: 100%;
  }

  .nav-links__item--fukuoka-petite .nav-links__label {
    flex-direction: row;
    align-items: center;
    font-size: var(--fs-md);
  }

  .nav-links__petit {
    display: inline-block;
    margin-right: 0.15em;
    font-size: 0.75em;
    padding: 0 0.1em;
  }

  /* 4カラム: 角丸 */
  .nav-links li:nth-child(1) .nav-links__item { border-radius: .25em 0 0 .25em; }
  .nav-links li:nth-last-child(1) .nav-links__item { border-radius: 0 .25em .25em 0; }

  /* Content Section */
  .content-section {
    padding: 1.5em 0;
    margin-bottom: 1.5em;
  }

  .content-section__inner {
    padding: 0 1em;
  }

  /* Region Cards */
  .region-cards__grid {
    grid-template-columns: 1fr;
    gap: 4.5em;
  }

  .region-card__logo {
    height: 70px;
  }

  .region-card__logo img {
    max-height: 60px;
  }
  .region-card__date{
    display: inline-block;
    font-size: var(--fs-lg);
  }
  .region-card__date + .region-card__date{
    /* margin-left: 1em;
    padding-left: 1em; */
  }
  .region-card__date + .region-card__date::before{
    content: "／ ";
  }
  .region-card__venue,
  .region-card__address{
    font-size: var(--fs-md);
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Photo Modal */
  .photo-modal-content {
    max-width: 95%;
  }

  .photo-modal-close {
    top: 10px;
    right: 10px;
    font-size: 32px;
    width: 40px;
    height: 40px;
  }

  .photo-modal-prev,
  .photo-modal-next {
    width: 40px;
    height: 40px;
  }

  .photo-modal-prev::before {
    border-width: 10px 16px 10px 0;
  }

  .photo-modal-next::before {
    border-width: 10px 0 10px 16px;
  }

  .photo-modal-prev { left: 10px; }
  .photo-modal-next { right: 10px; }

  /* Footer */
  .footer-sitemap {
    gap: 1em 1.5em;
  }

  .region-card__label{
    font-size: var(--fs-lg);
  }

}

/* -------------------------------------------
   Event Region Page (ev-*)
   ------------------------------------------- */

/* --- Event Hero --- */
.ev-hero {
  background: #fff;
  margin-bottom: 2.5em;
}

.ev-hero__inner {
  display: flex;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.ev-hero__poster {
  flex: 0 0 auto;
  height: 480px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.414;
  cursor: pointer;
}

.ev-hero__poster-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ev-hero__poster-placeholder {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: #ccc;
  letter-spacing: 0.1em;
}

.ev-hero__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5em 2em;
}

/* 2カラム: 開催情報 | 料金・チケット */
.ev-hero__columns {
  display: flex;
  gap: 1.5em;
}

.ev-hero__logo {
  text-align: center;
  margin-bottom: 0.6em;
}

.ev-hero__col-heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-sm);
  font-weight: bold;
  color: #666;
  margin: 0 0 0.3em;
  padding-bottom: 0.2em;
  border-bottom: 2px solid #ddd;
}

.ev-hero__col-event {
  flex: 1;
  min-width: 0;
}

.ev-hero__col-ticket {
  flex: 1;
  min-width: 0;
}

.ev-hero__logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 0.5em;
}

.ev-hero__schedule {
  margin: 0 0 0.5em;
}

.ev-hero__date {
  font-size: var(--fs-md);
  font-weight: bold;
  margin: 0 0 0.2em;
  line-height: 1.6;
}

.ev-hero__wday {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: bold;
  color: #fff;
  background: #666;
  border-radius: 0.2em;
  padding: .25em .35em .35em;
  margin-left: 0.35em;
  margin-right: 0.35em;
  vertical-align: middle;
  line-height: 1;
}

.ev-hero__wday.day-sun {
  background: #d32f2f;
}

.ev-hero__wday.day-sat {
  background: #1565c0;
}

.ev-hero__time {
  /* font-size: var(--fs-sm); */
  font-weight: bold;
}

.ev-hero__venue {
  /* font-size: var(--fs-sm); */
  font-weight: bold;
  margin: 0;
}

.ev-hero__address {
  /* font-size: var(--fs-sm); */
  font-size: var(--fs-base);
  color: #666;
  margin: 0;
}


/* チケット料金テーブル（ヒーロー内） */
.ev-hero__price {
  border-collapse: collapse;
  /* font-size: var(--fs-sm); */
  font-size: var(--fs-xs);
  width: 100%;
}

.ev-hero__price th,
.ev-hero__price td {
  padding: 0.35em 0.6em;
}

.ev-hero__price thead th {
  background: #555;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.ev-hero__price thead th:first-child {
  background: transparent;
  width: 6.5em;
}

.ev-hero__price tbody tr:nth-child(odd) {
  background: #f5f5f5;
}

.ev-hero__price tbody tr:nth-child(even) {
  background: #fff;
}

.ev-hero__price td:first-child {
  font-weight: bold;
}

.ev-hero__price td:not(:first-child) {
  text-align: center;
}

.ev-hero__disability-note {
  font-size: var(--fs-xs);
  color: #666;
  text-align: right;
  margin: 0.3em 0 0;
  line-height: 1.4;
}

.ev-hero__heading-icon {
  height: 1.8em;
  width: auto;
  vertical-align: -0.45em;
  margin-right: 0.4em;
}

.ev-hero__payment {
  font-size: var(--fs-sm);
  font-weight: bold;
  margin: 0.75em 0 0;
  padding-top: 0.75em;
  border-top: 1px dashed #999;
}

.ev-hero__pay-badge {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: bold;
  color: #fff;
  border-radius: 0.2em;
  padding: 0.35em 0.5em .5em;
  margin-left: 0.35em;
  vertical-align: middle;
  line-height: 1;
}

.ev-hero__pay-badge--cash {
  background: #555;
}

.ev-hero__pay-badge--paypay {
  background: #ff0033;
}

.ev-hero__sales-heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-sm);
  font-weight: bold;
  margin-bottom: 0.5em;
}

/* チケット販売先（2カラム） */
.ev-hero__sales {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
}

/* セル: グリッドの各マス */
.ev-hero__sales-cell {
  display: flex;
  align-items: end;
}

/* 共通ボタン */
.ev-hero__sales-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: .75em;
  width: 100%;
  min-height: 4em;
  padding: 0.5em 0.8em;
  border: 3px solid currentColor;
  border-radius: 0.3em;
  text-decoration: none;
  font-family: var(--font-family-rounded);
  font-weight: bold;
}

.ev-hero__sales-preparing {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: var(--fs-base);
  font-weight: 700;
  border-radius: .15em;
  pointer-events: none;
}

/* バナー型（アソビュー・楽天トラベル体験）: 枠なし・画像のみ */
.ev-hero__sales-btn--asoview,
.ev-hero__sales-btn--rakuten_travel {
  border: none;
  padding: 0;
  background: transparent;
  min-height: 0;
}
.ev-hero__sales-btn--asoview img,
.ev-hero__sales-btn--rakuten_travel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.3em;
}

/* ロゴ画像（ローチケ・ぴあ） */
.ev-hero__sales-logo {
  height: 2em;
  width: auto;
  flex-shrink: 0;
}
.ev-hero__sales-btn--pia .ev-hero__sales-logo {
  height: 2.75em;
}

/* テキスト部分（サービス名・コード・追加テキストを縦積み） */
.ev-hero__sales-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 0;
  overflow: hidden;
}

.ev-hero__sales-arrow {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  margin-left: auto;
  margin-right: -0.8em;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  background: currentColor;
}
.ev-hero__sales-arrow::after {
  content: '';
  display: block;
  width: 0.45em;
  height: 0.45em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-15%, 15%);
}

.ev-hero__sales-note-inline {
  font-size: var(--fs-xs);
  line-height: 1.2;
  color: #df200c;
  margin-top: 0.1em;
}

/* 各サービスのカラー */
.ev-hero__sales-btn--seven        { color: #00785e; border-color: #00785e; }
.ev-hero__sales-btn--lawson-ticket { color: #1F5FA8; border-color: #1F5FA8; }
.ev-hero__sales-btn--pia          { color: #2372b1; border-color: #2372b1; }
.ev-hero__sales-btn--eplus        { color: #E95098; border-color: #E95098; }
.ev-hero__sales-btn--other01,
.ev-hero__sales-btn--other02      { color: #555;    border-color: #999; }

.ev-hero__sales-name {
  font-size: var(--fs-sm);
  line-height: 1.4;
  white-space: nowrap;
}

.ev-hero__sales-code {
  line-height: 1.4;
}

.ev-hero__sales-note {
  margin: 0.5em 0 0;
  font-size: var(--fs-xs);
  line-height: 1.4;
}

.ev-hero__sales-note p {
  margin: 0.2em 0;
}

/* 終了オーバーレイ（ポスター部分のみ） */
.ev-hero__poster {
  position: relative;
}

.ev-hero__ended {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  /* font-family: var(--font-family-rounded); */
  text-align: center;
  padding: 1em;
}

.ev-hero__ended-label {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 0.5em;
}

.ev-hero__ended-next {
  font-size: var(--fs-sm);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* 地域カラーの下線 */
.ev-hero--fukuoka { border-bottom: 4px solid var(--color-fukuoka); }
.ev-hero--fukuoka-petite { border-bottom: 4px solid var(--color-fukuoka-petite); }
.ev-hero--hiroshima { border-bottom: 4px solid var(--color-hiroshima); }
.ev-hero--kitakyushu { border-bottom: 4px solid var(--color-kitakyushu); }

/* --- Event Hero SP --- */
@media screen and (max-width: 440px) {
  .ev-hero__inner {
    flex-direction: column;
    min-height: auto;
  }

  .ev-hero__poster {
    flex: none;
    width: 100%;
    max-width: none;
    height: auto !important;
  }

  .ev-hero__info {
    padding: 2em;
    align-items: stretch;
    text-align: left;
  }

  .ev-hero__logo {
    text-align: center;
    margin-bottom: 1.2em;
  }

  .ev-hero__logo-img {
    height: 80px;
  }

  .ev-hero__columns {
    flex-direction: column;
    gap: 1.5em;
  }

  .ev-hero__col-heading {
    font-size: var(--fs-base);
    margin-bottom: 0.5em;
  }

  .ev-hero__col-event,
  .ev-hero__col-ticket {
    text-align: left;
    width: 100%;
  }

  .ev-hero__date {
    font-size: var(--fs-lg);
  }

  .ev-hero__time {
    font-size: var(--fs-lg);
  }

  .ev-hero__wday {
    font-size: var(--fs-sm);
  }

  .ev-hero__venue {
    font-size: var(--fs-md);
    margin-top: 0.6em;
  }

  .ev-hero__price {
    width: 100%;
    font-size: var(--fs-sm);
    margin-top: 0.3em;
  }

  .ev-hero__disability-note {
    font-size: var(--fs-sm);
    text-align: right;
    margin-top: 0.5em;
  }

  .ev-hero__payment {
    font-size: var(--fs-base);
    margin-top: 1em;
  }

  .ev-hero__pay-badge {
    font-size: var(--fs-base);
  }

  .ev-hero__sales-heading {
    font-size: var(--fs-base);
    margin-top: 0.8em;
  }

  .ev-hero__sales {
    grid-template-columns: 1fr;
    gap: 0.6em;
  }

  .ev-hero__sales-name {
    font-size: var(--fs-base);
  }

  .ev-hero__sales-code {
    font-size: var(--fs-xl);
  }

  .ev-hero__sales-note {
    font-size: var(--fs-xs);
  }
}

/* --- CM動画セクション --- */
.ev-cm {
  margin-bottom: 1.5em;
}

.ev-cm__inner {
  margin: 0;
}

.ev-cm__video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .25em;
}

.ev-cm__embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.ev-cm__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: .25em;
}

/* 汎用セクション */
.ev-section {
  background: #fff;
  border-radius: .25em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
  padding: 1.5em;
  margin-bottom: 1.5em;
}

.ev-section__heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-lg);
  font-weight: bold;
  margin: 0 0 0.8em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid #eee;
}

/* ご挨拶 */
.ev-greeting__body {
  font-size: var(--fs-sm);
  text-align: justify;
  line-height: 2;
}

/* 今後の開催予定 */
.ev-future__note {
  font-size: var(--fs-xs);
  color: #666;
}

/* 運営情報・動物取扱業標識（統合） */
.ev-org-biz__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.ev-org-biz__subheading {
  font-size: var(--fs-sm);
  font-weight: bold;
  margin: 0 0 0.6em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #ddd;
}

.ev-org-biz__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4em 1em;
  font-size: var(--fs-sm);
}

.ev-org-biz__dl dt {
  font-weight: bold;
  white-space: nowrap;
}

.ev-org-biz__dl dd {
  margin: 0;
}

/* イベント情報 再掲（フッター直前、全幅表示） */
#after-main {
  margin-top: 2em;
}

#after-main .ev-hero {
  margin-bottom: 0;
}

/* -------------------------------------------
   Responsive: PC (441px以上)
   ------------------------------------------- */
@media screen and (min-width: 441px) {
  #wrapper{
    min-width: 980px;
  }

  .nav-links__meta {
    display: flex;
  }
  .hero {
    min-height: 520px;
  }

  .hero__title-logo {
    max-height: 120px;
  }

  .hero__body {
    padding: 4em 2em;
  }

  /* 運営情報・動物取扱業: PC2カラム */
  .ev-org-biz__grid {
    flex-direction: row;
    gap: 2em;
  }
  .ev-org-biz__block {
    flex: 1;
    min-width: 0;
  }

}

/* -------------------------------------------
   Utility
   ------------------------------------------- */
.u-fs-xs  { font-size: var(--fs-xs); }
.u-fs-sm  { font-size: var(--fs-sm); }
.u-fs-md  { font-size: var(--fs-md); }
.u-fs-lg  { font-size: var(--fs-lg); }
.u-fs-xl  { font-size: var(--fs-xl); }
.u-fs-2xl { font-size: var(--fs-2xl); }

/* -------------------------------------------
   Page Header（下層ページ共通）
   ------------------------------------------- */
.page-header {
  background: #fff;
  border-bottom: 3px solid #ddd;
  padding: 1.5em 0 1.2em;
  margin-top: 1.5em;
  margin-bottom: 2em;
}

.page-header__label {
  margin: 0 0 0.4em;
  font-size: var(--fs-xs);
  color: #888;
}

.page-header__title {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-xl);
  font-weight: bold;
  margin: 0;
}

.page-body {
  background: #fff;
  border-radius: .25em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
  padding: 2em;
  margin-top: 2em;
  margin-bottom: 3em;
}

/* --- 404 ページ --- */
.notfound {
  text-align: center;
  padding: 4em 2em;
}
.notfound__title {
  margin: 0 0 1em;
  font-size: var(--fs-lg);
}
.notfound__text {
  margin: 0 0 2em;
  line-height: 1.8;
}
.notfound__back {
  margin: 0;
  font-size: var(--fs-sm);
}

/* -------------------------------------------
   Attention（注意事項）
   ------------------------------------------- */
.attention-section {
  margin-bottom: 2em;
}

.attention-section__heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-md);
  font-weight: bold;
  padding: 0.4em 0.8em;
  background: #f5f5f0;
  border-left: 4px solid #888;
  margin: 0 0 0.8em;
}

.attention-list {
  padding-left: 1.4em;
}

.attention-list li {
  list-style: disc;
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: 0.4em;
}

/* -------------------------------------------
   MFP フォーム共通（お問い合わせ・出店申込）
   ------------------------------------------- */
.mfp-form {
  margin-top: 1.5em;
}

.mfp-dl {
  display: grid;
  grid-template-columns: 12em 1fr;
  gap: 0;
}

.mfp-dt,
.mfp-dd {
  padding: 0.8em 0.6em;
  border-bottom: 1px solid #eee;
}

.mfp-dt {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  font-weight: bold;
  font-size: var(--fs-sm);
  background: #f8f8f5;
}

.mfp-dd {
  background: #fff;
}

.mfp-required {
  font-size: var(--fs-xs);
  font-weight: normal;
  color: #fff;
  background: #c00;
  padding: 0.1em 0.4em;
  border-radius: 0.2em;
  white-space: nowrap;
}

.mfp-note {
  font-size: var(--fs-xs);
  color: #666;
  margin: 0 0 0.5em;
}

.mfp-input {
  width: 100% !important; /* size属性による幅指定を上書き */
  max-width: 480px;
  padding: 0.4em 0.6em;
  border: 1px solid #ccc;
  border-radius: 0.25em;
  font-size: var(--fs-base);
  font-family: var(--font-family);
  box-sizing: border-box;
}

.mfp-input--short {
  max-width: 16em;
}

.mfp-input--num {
  width: 5em;
  max-width: 5em;
  text-align: right;
}

.mfp-textarea {
  width: 100% !important; /* cols属性による幅指定を上書き */
  max-width: 600px;
  min-height: 12em;
  padding: 0.4em 0.6em;
  border: 1px solid #ccc;
  border-radius: 0.25em;
  font-size: var(--fs-base);
  font-family: var(--font-family);
  resize: vertical;
  box-sizing: border-box;
}

.mfp-unit {
  margin-left: 0.4em;
  font-size: var(--fs-sm);
  color: #555;
}

.mfp-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.mfp-radio-label,
.mfp-check-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-sm);
  cursor: pointer;
}

.mfp-submit-wrap {
  margin-top: 2em;
  text-align: center;
}

.mfp-submit-btn {
  display: inline-block;
  padding: 0.8em 3em;
  background: #333;
  color: #fff;
  font-family: var(--font-family-rounded);
  font-size: var(--fs-md);
  font-weight: bold;
  border: none;
  border-radius: 0.3em;
  cursor: pointer;
}

.mfp-submit-btn:hover {
  background: #555;
}

/* -------------------------------------------
   出店申込 総合案内（親ページ）
   ------------------------------------------- */

.entry-password-gate button{
  margin-top: 1em;
}

.entry-guide {
  display: grid;
  gap: 1.5em;
  margin-top: 1.5em;
}

.entry-guide__card {
  display: flex;
  gap: 1.2em;
  align-items: flex-start;
  padding: 1.5em;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: .5em;
}

.entry-guide__photo {
  flex: 0 0 7em;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: .3em;
}

.entry-guide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-guide__body {
  flex: 1;
  min-width: 0;
}

.entry-guide__title {
  font-size: var(--fs-lg);
  margin: 0 0 .3em;
}

.entry-guide__date {
  font-size: var(--fs-sm);
  font-weight: bold;
  margin: 0 0 .5em;
}


.entry-guide__status {
  font-weight: bold;
  margin: 0 0 .8em;
}

.entry-guide__status--open {
  color: #2e7d32;
}

.entry-guide__status--closed {
  color: #888;
}

.entry-guide__link {
  display: inline-block;
  padding: .6em 1.2em;
  background: var(--color-kitakyushu);
  color: #fff;
  border-radius: .3em;
  text-decoration: none;
  font-weight: bold;
  font-size: var(--fs-sm);
}

.entry-guide__link--pw{
  background: #444;
}
.entry-guide__card--closed {
  position: relative;
  background-color: #eee;
}

.entry-guide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .45);
  border-radius: .5em;
}

.entry-guide__overlay span {
  color: #fff;
  font-size: var(--fs-xl);
  font-weight: bold;
  letter-spacing: .1em;
}

@media screen and (max-width: 440px) {
  .entry-guide__card {
    padding: 1em .8em;
    gap: .8em;
  }
  .entry-guide__photo {
    flex-basis: 5em;
  }
  .entry-guide__title {
    font-size: var(--fs-base);
  }
}

/* -------------------------------------------
   出店申込フォーム固有
   ------------------------------------------- */

.entry-status {
  padding: 2em;
  text-align: center;
  font-size: var(--fs-md);
  color: #555;
}

.entry-event-info {
  margin-bottom: 2em;
  padding: 1.2em;
  background: #f8f8f5;
  border-radius: .25em;
}

.entry-event-info__dl {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 0.4em 1em;
  font-size: var(--fs-sm);
}

.entry-event-info__dl dt {
  font-weight: bold;
}

.entry-event-info__dl dd {
  margin: 0;
}

.entry-section {
  margin-bottom: 2.5em;
}

.entry-section-heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-md);
  font-weight: bold;
  padding: 0.4em 0.8em;
  background: #eee;
  border-radius: .25em;
  margin: 0 0 1em;
}

.entry-booth-detail {
  margin-top: 1em;
  padding: 1.2em;
  background: #fafaf7;
  border: 1px solid #ddd;
  border-radius: .25em;
}

.entry-booth-detail__heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-sm);
  font-weight: bold;
  margin: 0 0 0.5em;
}

.entry-booth-detail__equip {
  font-size: var(--fs-xs);
  color: #555;
  margin: 0 0 1em;
  padding: 0.6em 0.8em;
  background: #fff;
  border-left: 3px solid #bbb;
}

.entry-total {
  margin-top: 1.5em;
  padding: 1em 1.5em;
  background: #fff;
  border: 2px solid #333;
  border-radius: .25em;
  display: inline-block;
}

.entry-total__dl {
  display: grid;
  grid-template-columns: 12em auto;
  gap: 0.4em 1em;
  font-size: var(--fs-sm);
}

.entry-total__dl dt {
  font-weight: bold;
}

.entry-total__dl dd {
  margin: 0;
  font-weight: bold;
  font-size: var(--fs-md);
}

.entry-terms__scroll {
  height: 320px;
  overflow-y: scroll;
  padding: 1em;
  background: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: .25em;
  font-size: var(--fs-xs);
  line-height: 1.8;
  margin-bottom: 1em;
}
.entry-terms__scroll p,
.entry-terms__scroll ol{
  font-size: 12px;
  margin-bottom: 0.5em;
}
.entry-terms__scroll ul,
.entry-terms__scroll ol{
  padding-left: 1.5em;
}
.entry-terms__scroll ul li{
  list-style: disc;
}
.entry-terms__scroll ol li{
  list-style: decimal;
}

.entry-terms__check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-sm);
  font-weight: bold;
  width: 100%;
}

.entry-lead {
  margin: 0 0 1.5em;
  font-size: var(--fs-sm);
  color: #555;
}

.entry-waitlist-banner {
  margin-bottom: 1.5em;
  padding: 0.8em 1.2em;
  background: #fff8e1;
  border-left: 4px solid #f5a623;
  font-size: var(--fs-sm);
  font-weight: bold;
  color: #7a5000;
}

.entry-waitlist-banner p {
  margin: 0;
}

.entry-waitlist-badge {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.1em 0.5em;
  background: #f5a623;
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: bold;
  border-radius: 0.2em;
  vertical-align: middle;
}

.entry-status--closed {
  padding: 2em;
  text-align: center;
  font-size: var(--fs-md);
  color: #555;
  background: #f5f5f5;
  border-radius: .25em;
}
.entry-status--pw-notice {
  padding: 1em 1.5em;
  margin-bottom: 1.5em;
  font-size: var(--fs-sm);
  color: #856404;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: .25em;
}

.entry-status p{
  margin: 0;
  font-weight: bold;
}

.entry-event-info__note {
  margin: 0 0 0.8em;
  font-size: var(--fs-sm);
  color: #555;
}

.entry-event-info__tax {
  margin: 0.8em 0 0;
  font-size: var(--fs-xs);
  color: #888;
}

.entry-prep-info {
  margin-bottom: 2em;
}

.entry-prep-info__body {
  padding: 1em 1.2em;
  background: #f8f8f5;
  border-radius: .25em;
  font-size: var(--fs-sm);
}

.entry-parking-info {
  margin-bottom: 2em;
}

.entry-parking-info__body {
  padding: 1em 1.2em;
  background: #f8f8f5;
  border-radius: .25em;
  font-size: var(--fs-sm);
}

.entry-staff-names-guide {
  margin-bottom: 0.6em;
  padding: 0.8em 1em;
  background: #f5f5f0;
  border-radius: .25em;
  font-size: var(--fs-sm);
}

.entry-staff-names-guide__heading {
  font-weight: bold;
  margin: 0 0 0.4em;
}

.entry-staff-names-guide__body {
  margin: 0;
  line-height: 1.8;
}

.entry-animal-check {
  margin: 1em 0;
  padding: 0.8em 1em;
  background: #f5f5f0;
  border-radius: .25em;
}

.entry-animal-check__lead {
  margin: 0 0 0.5em;
  font-size: var(--fs-sm);
  font-weight: bold;
}

.entry-species-note {
  margin-top: 1em;
  padding: 0.8em 1em;
  background: #fafaf7;
  border: 1px solid #ddd;
  border-radius: .25em;
  font-size: var(--fs-xs);
}

.entry-species-note__heading {
  font-weight: bold;
  margin: 0 0 0.5em;
}

.entry-species-note__list {
  padding-left: 1.5em;
  margin: 0.4em 0 0.8em;
}

.entry-species-note__list li {
  list-style: disc;
  line-height: 1.8;
}

.entry-species-note__caution {
  padding-left: 1.5em;
  margin: 0.4em 0 0;
}

.entry-species-note__caution li {
  list-style: decimal;
  line-height: 1.8;
  margin-bottom: 0.5em;
}

/* -------------------------------------------
   Shop List（ショップ一覧）
   ------------------------------------------- */
.page-header--shop {
  border-bottom-width: 4px;
}
.page-header--fukuoka  { border-bottom-color: var(--color-fukuoka); }
.page-header--fukuoka-petite { border-bottom-color: var(--color-fukuoka-petite); }
.page-header--hiroshima { border-bottom-color: var(--color-hiroshima); }
.page-header--kitakyushu { border-bottom-color: var(--color-kitakyushu); }

.shop-status {
  padding: 2em;
  text-align: center;
  font-size: var(--fs-md);
  font-weight: bold;
  color: #555;
}
.shop-status p{
  margin-bottom: 0;
}

.shop-status--preview,
.shop-status--pw-notice{
  padding: 1em 1.5em;
  margin-bottom: 1.5em;
  text-align: left;
  /* font-size: var(--fs-sm); */
  color: #856404;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: .25em;
}

.shop-map {
  margin-bottom: 2em;
}

.shop-map__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .25em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.shop-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
  align-items: start;
}

.shop-section {
  margin-bottom: 2.5em;
}

.shop-section__heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-lg);
  font-weight: bold;
  margin: 0 0 0.8em;
  padding: 0.4em 0 0.4em 0.6em;
  border-left: 4px solid #d66;
}

.shop-section--table .shop-section__heading,
.shop-section--table .shop-list__header {
  border-left-color: #3a7bbf;
}

.shop-list {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: .25em;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.shop-list__item {
  padding: 1em 1.2em;
}

.shop-list__item:nth-child(even) {
  background: #f7f7f5;
}

.shop-list__header {
  margin-bottom: 0.4em;
  padding: 0.3em 0 0.3em 0.5em;
  border-left: 4px solid #d66;
  line-height: 1.2;
  position: relative;
}

.shop-list__num {
  position: absolute;
  right: 0;
  top: -0.3em;
  font-size: 2.2em;
  font-weight: bold;
  opacity: 0.15;
  line-height: 1;
}

.shop-list__name {
  font-weight: bold;
  font-size: var(--fs-md);
}

.shop-list__desc {
  font-size: var(--fs-xs);
  line-height: 1.8;
  margin-bottom: 0.3em;
  max-height: calc(1.8em * 5);
  overflow-y: auto;
}

.shop-list__url {
  display: inline-block;
  font-size: var(--fs-xs);
  color: royalblue;
  text-decoration: underline;
  word-break: break-all;
}

.shop-list__url:hover {
  text-decoration: none;
}

/* -------------------------------------------
   Access（会場アクセス）
   ------------------------------------------- */
.page-header--access {
  border-bottom-width: 4px;
}

.access-venue {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .access-venue {
    flex-direction: row;
    align-items: flex-start;
    gap: 2em;
  }
  .access-venue__info {
    flex: 1;
  }
  .access-venue__photo {
    flex: 1;
  }
}

.access-venue__name {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-lg);
  font-weight: bold;
  margin: 0 0 0.3em;
}

.access-venue__address {
  font-size: var(--fs-sm);
  color: #555;
  margin: 0;
}

.access-venue__photo-img {
  width: 100%;
  height: auto;
  display: block;
}

.access-map {
  margin-bottom: 1.5em;
}

.access-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: .25em;
}

.access-map-image {
  margin-bottom: 1.5em;
}

.access-map-image__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .25em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.access-transport {
  margin-top: 1.2em;
}

.access-transport__heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-base);
  font-weight: bold;
  padding: 0.4em 0.8em;
  background: #f5f5f0;
  border-left: 4px solid #888;
  margin: 0 0 0.8em;
}

.access-transport__body {
  font-size: var(--fs-sm);
}

.access-transport__body h3 {
  font-size: var(--fs-sm);
  font-weight: bold;
  margin: 1em 0 0.4em;
}

.access-transport__body ul {
  padding-left: 1.4em;
  margin-bottom: 1em;
}

.access-transport__body li {
  list-style: disc;
  margin-bottom: 0.4em;
  line-height: 1.6;
}

.access-body {
  margin-top: 1.5em;
}

/* SP対応 */
@media screen and (max-width: 440px) {
  .access-map iframe {
    height: 280px;
  }
}

/* SP対応 */
@media screen and (max-width: 440px) {
  .page-body {
    padding: 1.2em;
  }

  .mfp-dl {
    grid-template-columns: 1fr;
  }

  .mfp-dt {
    border-bottom: none;
    padding-bottom: 0.2em;
  }

  .mfp-dd {
    padding-top: 0.2em;
  }

  .entry-total {
    display: block;
  }

  .shop-sections {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .shop-list__item {
    padding: 0.8em 1em;
  }

  .shop-list__num {
    font-size: 1.8em;
  }

  /* Antenna SP */
  .ant-shop-cards {
    grid-template-columns: 1fr;
  }

  .ant-detail__layout {
    grid-template-columns: 1fr;
  }

  .ant-detail__map iframe {
    height: 300px;
  }
}

/* -------------------------------------------
   Antenna（アンテナ店舗）
   ------------------------------------------- */

/* 一覧ページ */
.ant-shop-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin-top: 2em;
}

.ant-shop-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ant-shop-card__image-link {
  display: block;
}

.ant-shop-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.ant-shop-card__body {
  padding: 1em 1.2em 1.2em;
}

.ant-shop-card__name {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-md);
  margin: 0 0 0.6em;
}

.ant-shop-card__name a {
  color: var(--text-dark);
  text-decoration: none;
}

.ant-shop-card__table {
  width: 100%;
  font-size: var(--fs-sm);
  border-collapse: collapse;
}

.ant-shop-card__table th {
  white-space: nowrap;
  padding: 0.4em 0.8em 0.4em 0;
  vertical-align: top;
  font-weight: bold;
  min-width: 5em;
}

.ant-shop-card__table td {
  padding: 0.4em 0;
  vertical-align: top;
}

.ant-shop-card__table td p {
  font-size: 0.85em;
  color: #666;
  margin-top: 0.3em;
}

.ant-shop-card__link {
  margin-top: 0.8em;
  text-align: right;
}

.ant-shop-card__link a {
  color: var(--accent);
  font-weight: bold;
}

/* 店舗詳細ページ */
.ant-detail__heading {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-md);
  font-weight: bold;
  padding: 0.4em 0.8em;
  background: #f5f5f0;
  border-left: 4px solid #888;
  margin: 0 0 1em;
}

.ant-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin-bottom: 2em;
}

.ant-detail__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.ant-detail__description {
  margin: 1em 0;
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.ant-detail__table {
  width: 100%;
  font-size: var(--fs-sm);
  border-collapse: collapse;
  margin-bottom: 1em;
}

.ant-detail__table th {
  white-space: nowrap;
  padding: 0.6em 0.8em 0.6em 0;
  vertical-align: top;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  min-width: 5em;
}

.ant-detail__table td {
  padding: 0.6em 0;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}

.ant-detail__table td p {
  font-size: 0.85em;
  color: #666;
  margin-top: 0.3em;
}

.ant-detail__news {
  background: #fafaf5;
  padding: 1.2em;
  border-radius: 4px;
}

.ant-detail__news h3 {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-base);
  margin: 0 0 0.8em;
}

/* 新着情報リスト */
.ant-news-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.ant-news-item {
  padding-bottom: 1em;
  border-bottom: 1px solid #e8e8e0;
}

.ant-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ant-news-item__header {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.3em;
}

.ant-news-item__date {
  font-size: var(--fs-xs);
  color: #888;
}

.ant-news-item__cat {
  font-size: 0.7em;
  background: #e8e4d8;
  color: #665;
  padding: 0.15em 0.5em;
  border-radius: 2px;
}

.ant-news-item__title {
  font-size: var(--fs-sm);
  font-weight: bold;
  margin: 0;
  line-height: 1.5;
}

.ant-news-item__thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
}

.ant-news-more {
  font-size: var(--fs-xs);
  color: #888;
  text-align: center;
  margin-top: 0.8em;
}

.ant-detail__sns {
  margin: 2em 0;
}
.ant-detail__x-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.2em;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: opacity 0.2s;
}
.ant-detail__x-link:hover {
  opacity: 0.8;
}
.ant-detail__x-icon {
  width: 1.2em;
  height: 1.2em;
  filter: invert(1);
}

.ant-detail__map {
  margin: 2em 0;
}

.ant-detail__map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 4px;
}

.ant-detail__biz {
  margin: 2em 0;
}

/* 新着情報リンク */
.ant-news-item__link {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  margin: -0.4em;
  padding: 0.4em;
  border-radius: 4px;
}
.ant-news-item__thumb-wrap {
  flex-shrink: 0;
}
.ant-news-item__body {
  flex: 1;
  min-width: 0;
}
.ant-news-item__excerpt {
  font-size: var(--fs-xs);
  color: #888;
  margin: 0.3em 0 0;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ant-news-item__link:hover {
  background: rgba(0, 0, 0, 0.03);
}

.ant-news-item__link:hover .ant-news-item__title {
  color: #996600;
}

.ant-news-more a {
  color: #665;
  text-decoration: underline;
}

.ant-news-more a:hover {
  color: #996600;
}

/* ===========================================
   アンテナ 新着情報 個別記事 (ant-article)
   =========================================== */

.ant-article__breadcrumb {
  margin-bottom: 1.5em;
}

.ant-article__breadcrumb a {
  color: #665;
  text-decoration: none;
  font-size: var(--fs-sm);
}

.ant-article__breadcrumb a:hover {
  text-decoration: underline;
}

.ant-article {
  background: #fff;
  border-radius: 4px;
  padding: 1.5em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.ant-article__header {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.5em;
}

.ant-article__date {
  font-size: var(--fs-sm);
  color: #888;
}

.ant-article__cat {
  font-size: 0.7em;
  background: #e8e4d8;
  color: #665;
  padding: 0.15em 0.5em;
  border-radius: 2px;
}

.ant-article__title {
  font-family: var(--font-family-rounded);
  font-size: var(--fs-lg);
  font-weight: bold;
  margin: 0 0 1em;
  line-height: 1.4;
}

.ant-article__body {
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.ant-article__body .ant-news-block {
  margin-bottom: 0.8em;
}

.ant-article__body .ant-news-block-img {
  margin: 0.8em 0;
}

.ant-article__body .ant-news-block-img img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

.ant-article__images {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
}

.ant-article__figure {
  margin: 0;
}

.ant-article__img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

/* 前後記事ナビ */
.ant-article__nav {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 1px solid #e8e8e0;
}

.ant-article__nav-link {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 45%;
}

.ant-article__nav-link--next {
  text-align: right;
  margin-left: auto;
}

.ant-article__nav-label {
  display: block;
  font-size: var(--fs-xs);
  color: #888;
  margin-bottom: 0.2em;
}

.ant-article__nav-title {
  font-size: var(--fs-sm);
  color: #665;
  line-height: 1.4;
}

.ant-article__nav-link:hover .ant-article__nav-title {
  color: #996600;
  text-decoration: underline;
}

/* ===========================================
   アンテナ カテゴリフィルター
   =========================================== */

.ant-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  margin-bottom: 1.2em;
}

.ant-cat-filter__btn {
  padding: 0.3em 0.9em;
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 2em;
  cursor: pointer;
  color: #444;
  line-height: 1.5;
}

.ant-cat-filter__btn.is-active {
  background: #444;
  border-color: #444;
  color: #fff;
}

/* ===========================================
   アンテナ 記事一覧（アーカイブ）
   =========================================== */

.ant-news-archive {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ant-news-archive__item {
  border-bottom: 1px solid #e8e8e0;
}

.ant-news-archive__item:last-child {
  border-bottom: none;
}

.ant-news-archive__link {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  padding: 1em 0.4em;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  border-radius: 4px;
}

.ant-news-archive__link:hover {
  background: rgba(0, 0, 0, 0.03);
}

.ant-news-archive__link:hover .ant-news-item__title {
  color: #996600;
}

.ant-news-archive__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.ant-news-archive__thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
}

.ant-news-archive__no-img {
  width: 80px;
  height: 80px;
  background: #f0ece4;
  border-radius: 3px;
}

.ant-news-archive__body {
  flex: 1;
  min-width: 0;
}

/* ページネーション */
.ant-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 1px solid #e8e8e0;
}

.ant-pagination__link {
  font-size: var(--fs-sm);
  color: #665;
  text-decoration: none;
  padding: 0.4em 0.8em;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}

.ant-pagination__link:hover {
  background: #e8e4d8;
  color: #996600;
}

.ant-pagination__link--disabled {
  color: #ccc;
  pointer-events: none;
}

.ant-pagination__info {
  font-size: var(--fs-sm);
  color: #888;
}

/* SP対応 */
@media (max-width: 440px) {
  .ant-news-archive__thumb {
    width: 60px;
    height: 60px;
  }

  .ant-news-archive__thumb img,
  .ant-news-archive__no-img {
    width: 60px;
    height: 60px;
  }

  .ant-news-archive__link {
    gap: 0.7em;
    padding: 0.8em 0.2em;
  }
}

/* -------------------------------------------
   Back to Top Button
   ------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2em;
  right: 1.5em;
  width: 3em;
  height: 3em;
  border: none;
  border-radius: 50%;
  background: rgba(80, 60, 30, 0.75);
  cursor: pointer;
  z-index: 100;
  padding: 0;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0.7em;
  height: 0.7em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

/* -------------------------------------------
   mailformpro 動的生成要素
   ------------------------------------------- */

/* 非表示hiddenエリア */
div#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
}

/* オーバーレイ（確認・エラーモーダル背景） */
div#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}
div#mfp_overlay_inner {
  background-color: #fff;
  padding: 1em 1.5em;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  width: 640px;
  max-width: 90%;
}
div#mfp_overlay_background {
  background-color: #000;
  position: absolute;
  display: none;
  z-index: 10000;
}

/* ローディング */
div#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}
div#mfp_loading {
  z-index: 20001;
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  background-image: url(/mfp.statics/_images/mfp_loading.gif);
}

/* フェーズナビ（入力→確認→完了） */
ul#mfp_phase_stat {
  padding: 0.8em;
  text-align: center;
  list-style: none;
  margin: 0;
}
ul#mfp_phase_stat li {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  margin: 0 4px;
  font-size: var(--fs-sm);
}
ul#mfp_phase_stat li.mfp_phase_arrow {
  box-shadow: none;
  color: #999;
  padding: 6px 0;
}
ul#mfp_phase_stat li.mfp_active_phase {
  background-color: #0068B7;
  border: 2px solid #0068B7;
  font-weight: bold;
  color: #fff;
}
ul#mfp_phase_stat li.mfp_inactive_phase {
  background-color: #eee;
  border: 2px solid #eee;
  color: #999;
}

/* 確認画面 */
div#mfp_phase_confirm {
  clear: both;
}
div#mfp_phase_confirm h4 {
  font-size: 1.5em;
  padding: 0.5em 0;
  text-align: center;
}
table#mfp_confirm_table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
table#mfp_confirm_table tr.mfp_colored {
  background-color: #f6f7f9;
}
table#mfp_confirm_table tr.mfp_achroma {
  background-color: #fff;
}
table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  text-align: left;
  font-size: var(--fs-sm);
  border-top: 1px solid #ccc;
  padding: 6px 10px;
}
table#mfp_confirm_table tr th {
  white-space: nowrap;
  width: 200px;
}
table#mfp_confirm_table tr td {
  line-height: 1.6;
  word-break: break-all;
}

/* 確認・送信ボタン */
div.mfp_buttons {
  clear: both;
  padding: 1em 0;
  text-align: center;
}
div.mfp_buttons button#mfp_button_send,
div.mfp_buttons button#mfp_button_cancel {
  display: inline-block;
  padding: 0.7em 2.5em;
  font-size: var(--fs-md);
  font-weight: bold;
  border-radius: 0.3em;
  cursor: pointer;
  margin: 0.3em;
}
div.mfp_buttons button#mfp_button_send {
  background: #333;
  color: #fff;
  border: none;
}
div.mfp_buttons button#mfp_button_cancel {
  background: #fff;
  color: #333;
  border: 1px solid #999;
}
button.mfp_next,
button.mfp_prev {
  font-size: 1em;
  margin: 0.5em;
  padding: 0.5em 1.2em;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
}
button.mfp_next {
  float: right;
}
button.mfp_prev {
  float: left;
}
button.mfp_submit_enable {
  background: #000090;
  color: #fff;
  border-color: #000090;
}
button.mfp_submit_disable {
  background: #FD8282;
  color: #fff;
  border-color: #FD8282;
}

/* 送信完了 */
div.mfp_thanks {
  padding: 1.5em;
}
div.mfp_thanks p {
  line-height: 1.7;
}
div#mfp_thanks {
  text-align: center;
  font-size: 1.1em;
  padding: 1.5em 0;
}
div#mfp_thanks strong {
  color: #c00;
  font-size: 1.3em;
}

/* バリデーションエラー */
div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  margin: 4px 0 0;
  padding: 2px 0 4px 18px;
  color: #f00;
  font-size: var(--fs-xs);
  background-image: url(/mfp.statics/_images/mfp_error.gif);
  background-repeat: no-repeat;
  background-position: 0 2px;
}
.mfp_parent_error {
  border: 2px solid #f00 !important;
}
.problem {
  background-color: #fcc;
}
div#mfp_error,
div#mfp_warning {
  background-color: #fee;
  border: 1px solid #f00;
  padding: 0.8em;
  display: none;
  border-radius: 4px;
  margin-bottom: 1em;
}
div#mfp_error p,
div#mfp_warning p {
  margin: 0;
  font-size: var(--fs-sm);
  text-align: center;
}
div#mfp_error p strong,
div#mfp_warning p strong {
  font-size: 1.2em;
  color: #f00;
}

/* 郵便番号サジェスト */
div.prefcodeWrapper,
div.mfpSuggestWrapper {
  position: relative;
}
div.prefcodeResult,
div.mfpSuggestResult {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 0 5px #ccc;
  display: none;
  z-index: 100;
}
div.prefcodeResult div,
div.mfpSuggestResult div {
  cursor: pointer;
  padding: 2px 6px;
}
div.prefcodeResult div:hover,
div.mfpSuggestResult div:hover {
  background-color: #c9ebfb;
}
div.prefLoading {
  padding: 60px 100px;
  background: url(/mfp.statics/_images/mfp_zip_loading.gif) no-repeat center center;
}

/* ============================================================
   出展者向けページ (exhibitor-index / exhibitor-guide)
   ============================================================ */

/* --- 共通: 非公開告知バナー --- */
.exhibitor-notice {
  margin: 0 0 2em;
  padding: 0.6em 1em;
  color: #c00;
  font-size: var(--fs-md);
  font-weight: bold;
  background-color: #ffdcdc;
  border-left: 3px solid #c00;
}

/* --- exhibitor-index: 記事一覧 --- */
.exhibitor-index__notice {
  margin: 0 0 2em;
  padding: 0.6em 1em;
  color: #c00;
  font-size: var(--fs-sm);
  font-weight: bold;
  border-left: 3px solid #c00;
}

.exhibitor-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.exhibitor-index__item {
  border-bottom: 1px solid #e8e0d4;
}

.exhibitor-index__item:first-child {
  border-top: 1px solid #e8e0d4;
}

.exhibitor-index__link {
  display: block;
  padding: 0.8em 0.4em;
  color: inherit;
  text-decoration: none;
}

.exhibitor-index__link:visited {
  color: inherit;
}

.exhibitor-index__title {
  font-size: var(--fs-base);
}

/* --- exhibitor-guide: タイトルカード --- */
.exhibitor-title-card {
  background: #f0ebe1;
  padding: 0.8em 1.2em;
  margin-bottom: 2em;
}

.exhibitor-title-card__text {
  margin: 0;
  font-size: var(--fs-lg);
  font-weight: bold;
}

/* --- exhibitor-guide: セクション共通 --- */
.exhibitor-section {
  margin-bottom: 2.5em;
}

.exhibitor-section__heading {
  font-size: var(--fs-base);
  font-weight: bold;
  margin: 0 0 0.6em;
  padding: 0.3em 0.8em;
  background: #f0ebe1;
  border-left: 3px solid #8b6914;
}

.exhibitor-section__note {
  margin: 0 0 1em;
  font-size: var(--fs-sm);
  color: #c00;
}

/* --- exhibitor-guide: 資料リスト --- */
.exhibitor-doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.exhibitor-doc-list__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.7em 1em;
  border: 1px solid #c8b896;
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-size: var(--fs-base);
}

.exhibitor-doc-list__link:visited {
  color: inherit;
}

.exhibitor-doc-list__ext {
  display: inline-block;
  padding: 0.15em 0.5em;
  background: #8b6914;
  color: #fff;
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: 0.05em;
  min-width: 3em;
  text-align: center;
}

.exhibitor-doc-list__link--pdf .exhibitor-doc-list__ext {
  background: #c8321e;
}

.exhibitor-doc-list__label {
  flex: 1;
}

.exhibitor-doc-list__icon {
  flex-shrink: 0;
  color: #8b6914;
}

/* --- exhibitor-guide: 配置図 --- */
.exhibitor-floor-map {
  margin-top: 0.5em;
}

.exhibitor-floor-map__img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- exhibitor-guide: ショップ一覧（コンパクト2カラム・SPも維持） --- */
.exhibitor-shop-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6em;
  margin-left: -1em;
  margin-right: -1em;
}
.exhibitor-shop-col {
  min-width: 0;
  padding: .4em .6em .6em;
}
.exhibitor-shop-col--area {
  background: #ffd;
}
.exhibitor-shop-col__heading {
  margin: 0 0 .4em;
  padding: .3em .6em;
  background: #f6efe2;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.exhibitor-shop-col__list {
  margin: 0;
  padding-left: 2em;
  font-size: var(--fs-xs);
  line-height: 1.5;
  list-style: decimal outside;
  word-break: break-word;
}
.exhibitor-shop-col__list li {
  padding: .15em 0;
  list-style: decimal outside;
  font-weight: 700;
}
@media screen and (min-width: 441px) {
  .exhibitor-shop-cols {
    gap: 1em;
    margin-left: 0;
    margin-right: 0;
  }
  .exhibitor-shop-col {
    padding: .6em .9em .9em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
  }
  .exhibitor-shop-col__heading {
    font-size: var(--fs-base);
  }
  .exhibitor-shop-col__list {
    font-size: var(--fs-sm);
    line-height: 1.7;
  }
}

/* ============================================================
   トグル表示 */
.hidefield {
  height: 0;
  overflow: hidden;
}
.showfield {
  height: auto;
  overflow: visible;
}

/* SP対応 */
@media screen and (max-width: 440px) {
  ul#mfp_phase_stat li {
    padding: 4px 0;
    margin: 3px;
    width: 28%;
  }
  ul#mfp_phase_stat li.mfp_phase_arrow {
    display: none;
  }
  table#mfp_confirm_table tr th {
    width: 100px;
  }
  div#mfp_phase_confirm h4 {
    font-size: 1.1em;
  }
  button.mfp_next,
  button.mfp_prev {
    float: none;
    display: block;
    width: 100%;
    margin: 0.4em 0;
  }
}
