/* 富岡町内周遊観光バスツアー（ふくしまDC）たたき台 */

:root {
  --color-pink: #e75d7e;
  --color-blue: #2a609d;
  --color-blue-sub: #5b9bd5;
  --color-bg-info: #f2f4f6;
  --color-border: #d0d5db;
  --color-text: #222;
  --max-width: 960px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: #fff;
}

.page {
  min-height: 100vh;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 48px;
}

/* ヘッダー帯 */
.top-banner {
  background: var(--color-pink);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.06em;
  padding: 14px 16px;
}

.subtitle {
  text-align: center;
  color: var(--color-blue-sub);
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  margin: 20px 0 8px;
  letter-spacing: 0.04em;
}

.main-title {
  text-align: center;
  color: var(--color-blue);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 28px;
  line-height: 1.45;
}

/* 説明ボックス */
.info-box {
  background: var(--color-bg-info);
  border-radius: 8px;
  padding: 22px 24px 20px;
  margin-bottom: 36px;
}

.info-box p {
  margin: 0 0 14px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box .lead {
  font-weight: 500;
}

/* スケジュール見出し */
.section-heading {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 20px;
}

/* 2カラムテーブル */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 720px) {
  .schedule-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.schedule-block h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0 0 10px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  border: 1px solid var(--color-border);
}

.schedule-table th,
.schedule-table td {
  border: 1px solid var(--color-border);
  padding: 8px 10px;
  vertical-align: top;
}

.schedule-table thead th {
  background: #e8eef4;
  color: var(--color-blue);
  font-weight: 700;
  text-align: center;
}

.schedule-table .col-time {
  width: 4.5em;
  text-align: center;
  white-space: nowrap;
}

.schedule-table tbody td:last-child {
  text-align: left;
}

/* マップ */
.map-section {
  margin-top: 8px;
}

.map-badge {
  display: inline-block;
  background: #c41e3a;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.map-note {
  font-size: 0.82rem;
  color: #555;
  margin: 0 0 12px;
  line-height: 1.6;
}

.map-figure {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  background: #fafafa;
}

.map-figure.map-embed {
  position: relative;
  width: 100%;
  height: clamp(320px, 55vw, 520px);
}

.map-figure.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  font-size: 0.8rem;
  color: #555;
  margin: 10px 0 0;
}

/* とみおかわい（フォト） */
.tomioka-photo {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.tomioka-photo__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-blue);
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: 0.06em;
}

.tomioka-photo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.tomioka-photo__item {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  background: #fafafa;
}

.tomioka-photo__item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.inset-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 12px;
}
