:root {
  --blue:         #005AAB;
  --blue-dark:    #368AD5;
  --blue-deeper:  #003F78;
  --blue-vivid:   #0A70E3;
  --blue-light:   #EBF4FC;
  --white:        #ffffff;
  --off-white:    #F9F9F8;
  --gray-100:     #D0D0D9;
  --gray-200:     #9EAAB1;
  --gray-400:     #656568;
  --gray-600:     #5F6368;
  --text:         #191A1C;
  --sans:         "Gen Interface JP", Helvetica, "Hiragino Sans", "Noto Sans JP", sans-serif;
  --sans-bold:    "Gen Interface JP-Bold", Helvetica, "Hiragino Sans", "Noto Sans JP", sans-serif;
  --transition:   0.18s ease;
}

@font-face { font-family: "Gen Interface JP"; src: url("/fonts/gen-interface-jp/GenInterfaceJP-Regular.woff2") format("woff2"), local("Gen Interface JP"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Gen Interface JP-Bold"; src: url("/fonts/gen-interface-jp/GenInterfaceJP-Bold.woff2") format("woff2"), local("Gen Interface JP-Bold"); font-weight: 700; font-display: swap; }

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.breadcrumb { background: transparent; border-bottom: none; padding: 0; }
.breadcrumb__inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 48px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray-600);
}
.breadcrumb a { color: var(--blue); text-decoration: underline; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb__sep { color: var(--gray-400); font-size: 11px; }
.breadcrumb__cur { color: var(--text); font-weight: 500; }

.page-layout { max-width: 1200px; margin: 0 auto; padding: 56px 48px; }
.page-main { min-width: 0; }
.page-main > .detail-section { margin-top: 48px; }
.page-main > :first-child { margin-top: 0 !important; }

.route-title {
  font-size: 48px; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 14px;
  font-family: var(--sans-bold);
}

.detail-section { margin-bottom: 48px; }
.detail-section__title {
  font-size: 36px; font-weight: 700; color: var(--text);
  letter-spacing: -0.01em;
  padding-bottom: 16px; border-bottom: 2px solid var(--text);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans-bold);
}

.fare-block { border: 1px solid var(--gray-200); border-radius: 8px; padding: 24px 28px; margin-bottom: 20px; }
.fare-block__row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.fare-block__row:last-of-type { margin-bottom: 0; }
.fare-block__label { font-size: 18px; color: var(--text); min-width: 44px; }
.fare-block__amount { font-size: 22px; font-weight: 800; color: var(--blue-deeper); letter-spacing: -0.01em; }
.fare-block__notes { list-style: none; margin-top: 18px; }
.fare-block__notes li { position: relative; padding-left: 14px; font-size: 18px; color: var(--text); line-height: 1.8; }
.fare-block__notes li::before { content: '・'; position: absolute; left: 0; color: var(--gray-400); }

.notes-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.notes-box li { font-size: 18px; color: var(--text); padding-left: 14px; position: relative; }
.notes-box li::before { content: '・'; position: absolute; left: 0; color: var(--gray-400); }

.fare-block__notes a,
.notes-box a {
  color: var(--blue); text-decoration: underline; transition: color var(--transition);
}
.fare-block__notes a:hover,
.notes-box a:hover {
  color: var(--blue-dark);
}

@media (max-width: 768px) {
  .breadcrumb__inner { padding: 10px 20px; font-size: 10px; flex-wrap: wrap; }
  .page-layout { max-width: 100%; margin: 0; padding: 32px 20px; }
  .page-main > .detail-section { margin-top: 32px; }
  .route-title { font-size: 28px; }
  .detail-section__title { font-size: 24px; }
  .fare-block { padding: 20px; }
  .fare-block__label { font-size: 12px; }
  .fare-block__amount { font-size: 20px; }
  .fare-block__notes li { font-size: 12px; }
  .notes-box li { font-size: 12px; }
}