/* アクセスページ（共通CSSの変数を利用） */

.access-hero {
  position: relative;
  padding: 4rem 1.5rem 2.75rem;
  border-bottom: var(--kfb-border);
  box-shadow: 0 8px 0 var(--kfb-black);
  background: url('images/hero-bg.jpg') center / cover no-repeat;
  overflow: hidden;
}

.access-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 248, 240, 0.42) 100%
  );
  pointer-events: none;
}

.access-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: var(--kfb-border);
  box-shadow: var(--kfb-shadow);
  border-radius: 12px;
}

.access-hero-tag {
  display: inline-block;
  font-family: var(--font-pop);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--kfb-black);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 2px 2px 0 var(--kfb-black);
  margin-bottom: 1.15rem;
}

.access-hero-title {
  margin: 0 0 0.65rem;
}

.access-hero-title-main {
  display: block;
}

.access-hero-logo {
  display: block;
  max-width: min(280px, 70vw);
  height: auto;
  margin: 0 auto 0.5rem;
}

.access-hero-title-text {
  display: block;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: clamp(1.55rem, 4.6vw, 2.1rem);
  color: var(--kfb-black);
  text-shadow: 3px 3px 0 #fff, 5px 5px 0 var(--kfb-black);
  line-height: 1.25;
}

.access-hero-lead {
  margin: 0;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  line-height: 1.7;
  color: var(--kfb-black);
  font-weight: 700;
}

.access-section {
  padding: 3rem 0;
  background: #fff;
}

.access-section--stripe {
  background-color: #e6f4ff;
  background-image: repeating-linear-gradient(
    90deg,
    #e6f4ff 0px,
    #e6f4ff 40px,
    #e8e0f2 40px,
    #e8e0f2 80px,
    #ffdde8 80px,
    #ffdde8 120px,
    #ffddc8 120px,
    #ffddc8 160px,
    #fff4c8 160px,
    #fff4c8 200px,
    #d8f0e8 200px,
    #d8f0e8 240px,
    #e6f4ff 240px,
    #e6f4ff 280px
  );
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 280px 100%;
}

.access-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.access-section-title {
  font-family: var(--font-pop);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--kfb-black);
}

.access-section-body {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--kfb-black);
}

.access-section-body p {
  margin: 0 0 1rem;
}

.access-section-body p:last-child {
  margin-bottom: 0;
}

.access-venue-card {
  background: rgba(255, 255, 255, 0.94);
  border: var(--kfb-border);
  border-radius: 12px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--kfb-shadow);
}

.access-venue-name {
  margin: 0 0 0.4rem;
  font-family: var(--font-pop);
  font-weight: 900;
  font-size: 1.15rem;
}

.access-venue-address {
  margin: 0 0 1rem;
  font-weight: 800;
}

.access-venue-note {
  margin: 0 0 0.9rem;
}

.access-venue-note--jump {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 2px dashed rgba(26, 26, 26, 0.6);
  background: rgba(0, 206, 209, 0.08);
  color: var(--kfb-black);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 2px 2px 0 rgba(26, 26, 26, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.access-venue-note--jump:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(26, 26, 26, 0.12);
  filter: saturate(1.05);
}

.access-venue-note--jump:focus-visible {
  outline: 3px solid var(--kfb-cyan);
  outline-offset: 4px;
}

.access-venue-alert {
  margin: 0.9rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 3px solid var(--kfb-black);
  background: rgba(255, 20, 147, 0.1);
  font-weight: 900;
}

.access-map-embed {
  margin-top: 1.2rem;
  border-radius: 12px;
  border: 3px solid var(--kfb-black);
  overflow: hidden;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.1);
}

.access-map-iframe {
  display: block;
  width: 100%;
  height: min(52vh, 420px);
  border: 0;
}

.access-info-box {
  margin-top: 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  border: 3px solid var(--kfb-black);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.1);
}

.access-subtitle {
  margin: 0 0 0.6rem;
  font-family: var(--font-pop);
  font-weight: 900;
  font-size: 1.05rem;
}

.access-note {
  font-weight: 700;
  opacity: 0.95;
}

.access-list {
  margin: 0;
  padding-left: 1.25rem;
}

.access-list li {
  margin: 0.35rem 0;
}

.access-sticker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.25rem 0 0;
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  border: 3px solid var(--kfb-black);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.22) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(0, 206, 209, 0.14) 100%);
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.1);
}

.access-sticker-text {
  margin: 0;
  font-family: var(--font-pop);
  font-weight: 900;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  line-height: 1.35;
  color: var(--kfb-black);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.9);
}

.access-sticker-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  border: 3px solid var(--kfb-black);
  object-fit: cover;
  background: #fff;
  box-shadow: 2px 2px 0 var(--kfb-black);
  flex-shrink: 0;
}

.access-table-wrap {
  margin-top: 1rem;
  overflow: auto;
  border-radius: 12px;
  border: 3px solid var(--kfb-black);
  background: #fff;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.1);
}

.access-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.access-table caption {
  caption-side: top;
  text-align: left;
  padding: 0.8rem 1rem;
  font-weight: 900;
  font-family: var(--font-pop);
  background: #fff;
  border-bottom: 2px solid rgba(26, 26, 26, 0.18);
}

.access-table th,
.access-table td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
  text-align: left;
  white-space: nowrap;
}

.access-table thead th {
  background: rgba(255, 215, 0, 0.22);
  font-weight: 900;
}

.access-table tbody tr:nth-child(2n) td {
  background: rgba(0, 206, 209, 0.06);
}

@media (max-width: 768px) {
  .access-hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .access-section {
    padding: 2.5rem 0;
  }

  .access-section-inner {
    padding: 0 1.25rem;
  }

  .access-venue-card {
    padding: 1.2rem 1.15rem 1.25rem;
  }

  .access-table {
    min-width: 520px;
  }

  .access-sticker {
    flex-direction: column;
    align-items: flex-start;
  }

  .access-sticker-img {
    width: 140px;
    height: 140px;
  }
}

