/* =============================================
   access.css — 会場アクセスページ固有スタイル
   ============================================= */

/* ===== Page header ===== */
.page-hdr {
  background: #0e2518;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 14px;
}

.page-hdr .lbl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  margin-bottom: 6px;
}

.page-hdr h1 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .04em;
}

.page-hdr h1 span {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  margin-left: 12px;
  font-weight: 400;
}

/* ===== 2カラムレイアウト ===== */
.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
  align-items: start;
}

/* ===== メインカード ===== */
.access-card {
  background: #0e2518;
  border-radius: 16px;
  overflow: hidden;
}

/* Googleマップ */
.map-wrap {
  width: 100%;
  aspect-ratio: 16/7;
  background: #0a1f14;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 住所・基本情報 */
.access-info {
  padding: 24px 28px;
  border-bottom: .5px solid rgba(255, 255, 255, .06);
}

.access-info-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: .5px solid rgba(255, 255, 255, .04);
}

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

.access-info-label {
  font-size: 11px;
  color: #ead477;
  font-weight: 600;
  letter-spacing: .08em;
  min-width: 72px;
  flex-shrink: 0;
  padding-top: 1px;
}

.access-info-value {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}



/* 交通アクセス */
.transit-section {
  padding: 24px 28px;
}

.transit-section .section-ttl {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  font-weight: 500;
  margin-bottom: 16px;
}

.transit-group {
  margin-bottom: 20px;
}

.transit-group:last-child {
  margin-bottom: 0;
}

.transit-station {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.transit-station-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.transit-line-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
}

.transit-line-badge.odakyu {
  background: rgba(0, 100, 200, .3);
  color: #6bb5ff;
}

.transit-line-badge.tokyu {
  background: rgba(200, 50, 50, .3);
  color: #ff9090;
}

.transit-line-badge.subway {
  background: rgba(100, 100, 200, .3);
  color: #b0b0ff;
}

.transit-routes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.transit-route {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.transit-route::before {
  content: '·';
  color: #ead477;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== サイドバー ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-card {
  background: #0e2518;
  border-radius: 16px;
  padding: 22px;
}

.side-card .lbl {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  margin-bottom: 14px;
  font-weight: 500;
}

.side-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.side-card-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
}

.side-card-address {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 14px;
}

.campus-map-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hdr {
    padding: 20px 18px;
  }

  .page-hdr h1 {
    font-size: 22px;
  }

  .map-wrap {
    aspect-ratio: 4/3;
  }

  .access-info {
    padding: 18px;
  }

  .transit-section {
    padding: 18px;
  }
}