/* ------------------------------
   Base Layout
------------------------------ */
html {
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
  color: #222;
  background-color: #fff;
}

body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
}

/* ------------------------------
   Header
------------------------------ */
.site-header {
  background: #239ca4;
  color: #fff;
  padding: 12px 0;
}

.site-header .brand {
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-top: 6px;
}

.breadcrumb a {
  color: #dff6f7;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 4px;
}

/* ------------------------------
   Footer
------------------------------ */
.site-footer {
  background: #f5f5f5;
  color: #555;
  padding: 16px 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-links a {
  color: #239ca4;
  margin-left: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ------------------------------
   Page Title & Lead
------------------------------ */
.page-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: bold;
  border-left: 6px solid #239ca4;
  padding-left: 8px;
}

.lede {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ------------------------------
   Cards
------------------------------ */
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  border-bottom: 2px solid #239ca4;
  padding-bottom: 6px;
}

/* ------------------------------
   Table Style
------------------------------ */
.table-wrap {
  overflow-x: auto;
}

table.def {
  width: 100%;
  border-collapse: collapse;
}

table.def th,
table.def td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
}

table.def th {
  background: #f9f9f9;
  width: 28%;
  font-weight: bold;
}

table.def td {
  background: #fff;
}

/* ------------------------------
   Pill List
------------------------------ */
.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list li {
  background: #e8f6f7;
  color: #239ca4;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
}

/* ------------------------------
   Map
------------------------------ */
.map-wrap {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access-note {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  table.def th {
    width: 40%;
  }
  .pill-list {
    flex-direction: column;
    gap: 6px;
  }
}
