/* ------------------------------
.area-cards {
  --c-free: #16a34a; /* 緑 無料 
  --c-k1: #2563eb; /* 青 2000円・5000円 
  --c-k2: #f59e0b; /* オレンジ 3000円 
  --c-k3: #ec4899; /* ピンク 4000円 
  --c-k4: #7c3aed; /* 紫 5000円 
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --border: 1px solid #e9ebf3;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.area-cards .area-head {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
}


   カード2列並び
------------------------------ 
.area-cards .groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

/* 3段目の5000円エリアだけ左側に1枚配置 
#grp-5000 {
  grid-column: 1 / 2;
}


@media (max-width: 720px) {
  .area-cards .groups {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------
   カード3列並び
------------------------------ 
.area-cards .groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.area-cards .group {
  width: 100%;
}

@media (max-width: 720px) {
  .area-cards .groups {
    grid-template-columns: 1fr;
  }
  #grp-5000 {
    grid-column: auto;
  }
}

/* ------------------------------
   カード基本スタイル
------------------------------ 
.area-cards .group {
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* ------------------------------
   各カードの外枠＆背景カラー
------------------------------ 
#grp-free {
  background: #ffffff;
  border-color: #16a34a33;
}
#grp-2000 {
  background: #2563eb1a;
  border-color: #2563eb33;
}
#grp-3000 {
  background: #fff;
  border-color: #f59e0b33;
}
#grp-4000 {
  background: #ec48991a;
  border-color: #ec489933;
}
#grp-5000 {
  background: #fff;
  border-color: #7c3aed33;
}

/* ------------------------------
   見出しカラー（個別に設定）
------------------------------ 
.area-cards .group__head {
  font-weight: 800;
  padding: 14px 16px;
  border-bottom: var(--border);
}

/* 無料エリア 
#grp-free .group__head {
  background: color-mix(in srgb, #16a34a 18%, white);
}

/* ¥2,000エリア 
#grp-2000 .group__head {
  background: color-mix(in srgb, #2563eb 22%, white);
}

/* ¥3,000エリア 
#grp-3000 .group__head {
  background: color-mix(in srgb, #f59e0b 28%, white);
}

/* ¥4,000エリア（ピンク） 
#grp-4000 .group__head {
  background: color-mix(in srgb, #ec4899 22%, white);
}

/* ¥5,000エリア（紫） 
#grp-5000 .group__head {
  background: color-mix(in srgb, #7c3aed 22%, white);
}

/* ------------------------------
   本文エリア（白背景固定）
------------------------------ 
.area-cards .group__body {
  background: #fff;
  padding: 16px;
  border-top: none;
}

.area-cards .mapbox {
  border: 1px dashed #d8dbe6;
  border-radius: var(--radius-md);
  padding: 10px;
  background: #fafafe;
  margin-bottom: 14px;
}
.area-cards .mapbox img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ------------------------------
   チップスタイル（カードと同色系）
------------------------------ 
.area-cards .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-cards .chip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: filter 0.2s ease;
  color: #111827;
  font-weight: 600;
}

/* 各カード別配色 
#grp-free .chip {
  background: #16a34a1a;
  border-color: #16a34a33;
}
#grp-2000 .chip {
  background: #2563eb1a;
  border-color: #2563eb33;
}
#grp-3000 .chip {
  background: #f59e0b1a;
  border-color: #f59e0b33;
}
#grp-4000 .chip {
  background: #ec48991a;
  border-color: #ec489933;
}
#grp-5000 .chip {
  background: #7c3aed1a;
  border-color: #7c3aed33;
}

.area-cards a.chip:hover {
  filter: brightness(0.95);
}

/* ------------------------------
   料金ページボタン
------------------------------ 
.area-cards .area-link {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.area-cards .btn-price {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  min-height: 64px;
  padding: 0 36px;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  background-image: url("../image/s-navi-a.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  cursor: pointer;
}

.area-cards .btn-price img {
  width: 24px;
  height: auto;
  margin-left: 14px;
  vertical-align: middle;
}

.area-cards .btn-price:hover {
  opacity: 1;
  transform: none;
}

@media (max-width: 480px) {
  .area-cards .btn-price {
    min-width: 180px;
    min-height: 56px;
    font-size: 16px;
    padding: 0 24px;
  }

  .area-cards .btn-price img {
    width: 20px;
    margin-left: 10px;
  }
}
*/

/* ==============================
   Area Cards – 3列タイル（画像は切らない & 高さ圧縮）
============================== */
.area-cards {
  --c-free: #16a34a; /* 緑 無料 */
  --c-k1: #2563eb; /* 青 2000円・5000円 */
  --c-k2: #f59e0b; /* オレンジ 3000円 */
  --c-k3: #ec4899; /* ピンク 4000円 */
  --c-k4: #7c3aed; /* 紫 5000円 */
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --border: 1px solid #e9ebf3;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.area-cards .area-head {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

/* 3列タイル */
.area-cards .groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.area-cards .group {
  width: 100%;
}

@media (max-width: 720px) {
  .area-cards .groups {
    grid-template-columns: 1fr;
  }
}

/* カード基本 */
.area-cards .group {
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* 外枠＆背景 */
#grp-free {
  background: #fff;
  border-color: #16a34a33;
}
#grp-2000 {
  background: #2563eb1a;
  border-color: #2563eb33;
}
#grp-3000 {
  background: #fff;
  border-color: #f59e0b33;
}
#grp-4000 {
  background: #ec48991a;
  border-color: #ec489933;
}
#grp-5000 {
  background: #fff;
  border-color: #7c3aed33;
}

/* 見出し */
.area-cards .group__head {
  font-weight: 800;
  padding: 12px 14px;
  border-bottom: var(--border);
}
#grp-free .group__head {
  background: color-mix(in srgb, #16a34a 18%, white);
}
#grp-2000 .group__head {
  background: color-mix(in srgb, #2563eb 22%, white);
}
#grp-3000 .group__head {
  background: color-mix(in srgb, #f59e0b 28%, white);
}
#grp-4000 .group__head {
  background: color-mix(in srgb, #ec4899 22%, white);
}
#grp-5000 .group__head {
  background: color-mix(in srgb, #7c3aed 22%, white);
}

/* 本文 */
.area-cards .group__body {
  background: #fff;
  padding: 12px;
  border-top: none;
}

/* --- 画像は切らない & 高さは抑える --- */
.area-cards .mapbox {
  border: 1px dashed #d8dbe6;
  border-radius: var(--radius-md);
  background: #fafafe;
  margin-bottom: 12px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-cards .mapbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

/* チップ */
.area-cards .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-cards .chip {
  display: inline-block;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: filter 0.2s ease;
  color: #111827;
  font-weight: 600;
}

/* チップ色 */
#grp-free .chip {
  background: #16a34a1a;
  border-color: #16a34a33;
}
#grp-2000 .chip {
  background: #2563eb1a;
  border-color: #2563eb33;
}
#grp-3000 .chip {
  background: #f59e0b1a;
  border-color: #f59e0b33;
}
#grp-4000 .chip {
  background: #ec48991a;
  border-color: #ec489933;
}
#grp-5000 .chip {
  background: #7c3aed1a;
  border-color: #7c3aed33;
}

.area-cards a.chip:hover {
  filter: brightness(0.95);
}

/* 料金ボタン */
.area-cards .area-link {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.area-cards .btn-price {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  min-height: 64px;
  padding: 0 36px;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  background-image: url("../image/s-navi-a.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  cursor: pointer;
}
.area-cards .btn-price img {
  width: 24px;
  height: auto;
  margin-left: 14px;
  vertical-align: middle;
}
.area-cards .btn-price:hover {
  opacity: 1;
  transform: none;
}

/* =============================
   モバイル時カード内2カラム化
============================= */
/* ===============================
   モバイル専用：カード内2カラム + チップ2列（長いのは自動で1列）
=============================== */
@media (max-width: 720px) {
  /* カード全体を 2カラム：左=地図 / 右=内容（chips含む） */
  .area-cards .group__body {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 10px;
    align-items: start;
  }

  /* 地図は切らない */
  .area-cards .mapbox {
    aspect-ratio: auto;
    margin-bottom: 0;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .area-cards .mapbox img {
    width: 100%;
    height: auto;
    object-fit: contain; /* ← 絶対に切らない */
    border-radius: 6px;
  }

  /* === chips：基本は2列、長いラベルは自動で1列に落ちる === */
  .area-cards .chips {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px; /* 横の隙間 */
    row-gap: 8px; /* 縦の隙間 */
    width: 100%;
    box-sizing: border-box;
  }

  .area-cards .chip {
    /* 基本は“2列相当”の幅を目指す */
    flex: 1 1 calc(50% - 8px);
    max-width: 100%;

    /* 長い文言に合わせて、必要なら1列分（100%）まで自動拡張 */
    min-width: fit-content;

    /* 見た目 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* ← 改行しない */
    overflow: hidden; /* はみ出し防止 */
    text-overflow: clip; /* 省略記号は出さない（中身優先で幅を広げる） */
    text-align: center;
    box-sizing: border-box;
  }
}

/* ===== 削除後の余白リセット用 ===== */
.container,
.swiper-container,
#mySlider {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* デフォルトでは改行タグを非表示（PC・タブレット） */
.sp-only {
  display: none;
}

/* スマホ（例：720px以下）のときだけ改行有効 */
@media (max-width: 720px) {
  .sp-only {
    display: inline;
  }
}
