: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;
  --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; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
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; }
a { text-decoration: none; color: inherit; }

.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: 40px 48px 56px; }
.page-main { min-width: 0; }
.page-h1 {
  font-size: 48px; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 24px;
}

.detail-section { margin-bottom: 48px; }

.info-table { border-top: 1px solid var(--gray-200); }
.info-table__row { display: flex; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.info-table__row:last-child { border-bottom: none; }
.info-table__label { width: 180px; flex-shrink: 0; font-size: 18px; font-weight: 700; color: var(--text); }
.info-table__value { flex: 1; min-width: 0; font-size: 18px; color: var(--text); line-height: 1.9; }
.info-table__value p { margin-bottom: 4px; }
.info-table__value p:last-child { margin-bottom: 0; }
.info-table__block-title { font-weight: 700; color: var(--text); margin-bottom: 6px !important; }
.info-table__block-title:not(:first-child) { margin-top: 24px; }
.info-table__sub { font-weight: 700; color: var(--text); margin-top: 12px; margin-bottom: 4px !important; }

@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-h1 { font-size: 28px; }
  .info-table__row { flex-direction: column; gap: 8px; padding: 20px 0; }
  .info-table__label { width: auto; font-size: 12px; }
  .info-table__value { font-size: 12px; }
}
