/* 三重県ページ固有スタイル。
   メインカラムの白背景やセクション区切り(下線)は top-renewal.css / guide-common.css の
   標準デザインをそのまま使い、ここでは三重ページ内の部品だけを定義する。
   （area-fukui.css / area-hiroshima.css と同じ方針） */
.mie-featured-card,
.mie-nearby-card {
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(45, 52, 54, .05);
}

.mie-featured-card {
  padding: 24px;
}

/* 注目枠（強調度「高」・ランキング/おすすめ枠ではない） */
.mie-featured-card--high {
  background: var(--guide-gold-pale);
  border-color: rgba(217, 169, 0, .35);
}

.mie-featured-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.mie-featured-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;
}

.mie-featured-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--guide-gold-dark);
  border: 1px solid rgba(154, 118, 0, .3);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.mie-featured-card p,
.mie-nearby-card span {
  margin: 0;
  color: var(--guide-muted);
  line-height: 1.85;
}

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

.mie-featured-card__actions .guide-button {
  margin-top: 0;
}

/* 学校カードコンポーネント（inc/tool/school-card.php） */
.area-mie-guide .area-school-card + .area-school-card {
  margin-top: 18px;
}

/* 料金確認テーブル */
.mie-price-table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border-collapse: collapse;
  background: #fff;
}

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

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

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

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

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

.mie-price-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  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;
}

.mie-price-note {
  margin: 12px 0 0;
  color: var(--guide-muted);
  font-size: 0.85rem;
}

/* 観光・グルメ */
.mie-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);
}

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

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

/* 確認したいことリスト */
.mie-check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mie-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;
}

.mie-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);
}

/* 近隣エリア */
.mie-nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

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

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

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

  .mie-featured-card__actions {
    display: grid;
  }

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

/* 注目校カードの写真（旧 .area-school-card__image を借用していた分を自前の定義に移した） */
.mie-featured-card__image {
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
}

.mie-featured-card__image img {
  display: block;
  max-width: 400px;
  height: auto;
  margin: auto;
}
