/* 群馬県ページ固有スタイル。
   メインカラムの白背景やセクション区切り(下線)は top-renewal.css / guide-common.css の
   標準デザインをそのまま使い、ここでは群馬ページ内の部品だけを定義する。 */

.gunma-school-list {
  display: grid;
  gap: 18px;
}

.gunma-school-card,
.gunma-nearby-card {
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(45, 52, 54, .05);
}

.gunma-school-card {
  padding: 24px;
}

.gunma-school-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.gunma-school-card__pref {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f4f1e8;
  color: #625b48;
  font-size: 0.78rem;
  font-weight: 700;
}

.gunma-school-card h3 {
  margin: 14px 0 8px;
  color: var(--guide-ink);
  font-size: 1.15rem;
  line-height: 1.45;
}

.gunma-school-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0 auto 12px;
  border-radius: 10px;
  max-width: 400px;
}

.gunma-school-card__meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--guide-soft);
  color: var(--guide-ink);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
}

.gunma-school-card p {
  margin: 0;
  color: var(--guide-muted);
}

.gunma-school-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.gunma-school-card__actions .guide-button {
  margin-top: 0;
}

.gunma-price-table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border-collapse: collapse;
  background: #fff;
}

.gunma-price-table th,
.gunma-price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--guide-border);
  line-height: 1.65;
  vertical-align: middle;
  text-align: left;
}

.gunma-price-table thead th {
  background: var(--guide-soft);
  color: var(--guide-ink);
  font-size: 0.85rem;
}

.gunma-price-table tbody th {
  color: var(--guide-ink);
}

.gunma-price-table tbody td {
  color: var(--guide-muted);
}

.gunma-price-table tbody tr:last-child th,
.gunma-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.gunma-price-table a ,
.area-monthly-calendar .area-price-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px !important;
  background: var(--btn-order-bg, #ff6b35);
  color: var(--btn-order-text, #fff);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.gunma-check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.gunma-check-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 12px;
  background: var(--guide-gold-pale);
  color: var(--guide-ink);
  line-height: 1.7;
}

.gunma-check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--guide-gold-dark);
  border-bottom: 3px solid var(--guide-gold-dark);
  transform: rotate(-45deg);
}

.gunma-sightseeing-card {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--guide-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(45, 52, 54, .05);
}

.gunma-sightseeing-card p {
  margin: 0;
  color: var(--guide-muted);
  line-height: 1.85;
}

.gunma-sightseeing-card__food {
  margin-top: 6px;
}

.gunma-nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gunma-nearby-card {
  display: block;
  padding: 22px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gunma-nearby-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 52, 54, .1);
}

.gunma-nearby-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--guide-ink);
  font-size: 1.05rem;
}

.gunma-nearby-card span {
  margin: 0;
  color: var(--guide-muted);
  line-height: 1.8;
}

@media (max-width: 767px) {
  .gunma-school-card {
    padding: 18px;
  }

  .gunma-school-card__head {
    display: grid;
    gap: 12px;
  }

  .gunma-school-card__actions {
    display: grid;
  }

  .gunma-nearby-grid {
    grid-template-columns: 1fr;
  }
}
