/* =================================================
   Layout Styles
   役割：構造・配置・レイアウトのみ
   色・余白・見た目は base.css に任せる
================================================= */
/* =========================
   検索専用ナビ（sticky & 分離）
========================= */
:root {
  color-scheme: dark;
}

.search-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  text-align: left; /* body 継承を遮断 */
}

.search-nav .search-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  width: 100%;              /* ← これが決定打 */
  max-width: 1500px;
  margin: 0 auto;

  padding: 0.5rem 1rem;
  padding-right: 0;
}

/* =========================
   検索フォーム
========================= */

.search-nav form.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  margin: 0;          /* ← これが本命 */
  padding: 0;
}

.search-nav form,
.search-nav input,
.search-nav button {
  text-align: left;
  margin: 0;
}

.search-nav .header-search {
  display: flex;
  margin-left: auto;
  margin-right: 0;
  text-align: left;   /* ← 親の text-align を無効化 */
}

.search-nav {
  text-align: initial;
}

/* 入力欄（文字をしっかり見せる） */
.search-nav input[type="search"] {
  background: rgba(255, 255, 255, 0.95);
  color: #1f2a33;

  border: none;
  border-radius: 999px;

  padding: 0.45em 1.1em;
  min-width: 220px;

  font-size: 0.95rem;
}

.search-nav .header-search input[type="search"]:focus {
  outline: none;
  border-color: #0a6ea8;
  box-shadow: 0 0 0 3px rgba(10, 110, 168, 0.15);
}

/* プレースホルダだけ薄く */
.search-nav input[type="search"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* 検索ボタン */
.search-nav button {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;

  padding: 0.4em 0.9em;
  font-size: 0.85rem;

  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.search-nav button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1f2a33;
}


/* =========================
   検索結果エリア（カード風）
========================= */

.search-nav #searchResultWrap {
  background: transparent;
}

.search-nav .search-result-box {
  max-width: 1100px;
  margin: 12px auto 0;
  padding: 16px 20px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* 検索結果ヘッダー */
.search-nav .search-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.search-nav .search-result-title {
  font-weight: 600;
}

/* 閉じるボタン */
.search-nav .search-close {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
/* =========================
   検索結果リスト（最終・物理法則無視版）
========================= */

/* リスト */
.search-nav .search-result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* li */
.search-nav .search-result-list li {
  border-radius: 8px;
}

/* a：横並び */
.search-nav .search-result-list li a {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;

  padding: 12px 14px;
  color: inherit;
  text-decoration: none;
}

/* ・ */
.search-nav .search-result-list .result-marker {
  color: #94a3b8;
  font-size: 0.9em;
  line-height: 1.4;
  flex-shrink: 0;
}

/* テキスト */
.search-nav .search-result-list .result-text {
  line-height: 1.4;
}

/* hover */
.search-nav .search-result-list li:hover {
  background: #f3f6f9;
}


/* ヒント文 */
#searchHint {
  padding: 12px 16px;
  color: #888;
  font-weight: 500;
  font-size: 0.95rem;
}

/* =========================
   モバイル対応
========================= */

@media (max-width: 640px) {

  .search-nav .search-inner {
    padding: 12px;
  }

  .search-nav .header-search input[type="search"] {
    width: 150px;
  }

  .search-nav .header-search button {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}



/* =========================
   Hero（完全復元）
========================= */

.site-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: -6px;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/katoriyama.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 26, 34, 0.55),
    rgba(15, 26, 34, 0.75)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #fff;
}

.page-hero {
  width: 100vw;
  min-height: 35vh;           /* 高さ：お好みで 60–80 */
  background-size: cover;     /* ← これが超重要 */
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  background: url('/assets/img/slide1.png') center / cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.page-hero-content {
  position: relative;
  padding: 2rem;
  color: #fff;
  text-align: center;
}

.page-hero {
  margin-bottom: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}


/* =========================
   Hero Navigation（下のナビ）
========================= */

.hero-nav {
  background: #fff;
  width: 100%;
}

/* ナビの並びを中央に */
.hero-nav .hero-nav-list {
  max-width: 1100px;
  margin: 0 auto;              /* コンテナ自体を中央 */
  padding: 1rem 0;

  display: flex;
  justify-content: center;     /* 中央配置 */
  gap: 2.5rem;

  list-style: none;
}

nav.hero-nav li a {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  padding-bottom: 0.25rem;
}

nav.hero-nav li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;

  width: 0;
  height: 4px;
  background-color: currentColor;

  transform: translateX(-50%);
  transition:
    width 0.25s ease,
    opacity 0.25s ease;

  opacity: 0;
}

nav.hero-nav li a:hover::after {
  width: 100%;
  opacity: 1;
}


/* =========================
   Main
========================= */
/* site-main
   読むコンテンツ専用（中央カラムは section-inner が担当）
*/
.site-main {
  padding: 0;
}

/* =========================
   見どころセクション 全体
   ========================= */

.section-spots .section-inner {
  display: block; /* gridにしない */
}

/* 見出しエリア */
.section-spots .section-title {
  margin-bottom: 1.5rem;

}

/* =========================
   見どころカード配置（grid）
   ========================= */

.section-spots .spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* =========================
   見どころカード本体
   ========================= */

.section-spots .highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;

  background: #fff;
  border-radius: 12px;
  overflow: hidden;

  text-decoration: none;
  color: inherit;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.section-spots .highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* =========================
   カード画像
   ========================= */

.section-spots .highlight-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ddd;
}

.section-spots .highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   カード本文
   ========================= */

.section-spots .highlight-body {
  padding: 1.25rem 1.5rem;
  flex-grow: 1;
}

.section-spots .highlight-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.section-spots .highlight-card p {
  margin: 0;
  line-height: 1.6;
  color: #444;
}

.section-spots .highlight-card small {
  color: #777;
}



/* =========================
   Footer
========================= */

.site-footer {
  position: relative;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0.5rem 1rem;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.site-footer {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
  background: transparent; /* ← 背景を消す */
}

/* =========================
   Page number
========================= */

#page-counter {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  background: rgba(0, 0, 0, 0.65);
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;

  /* ★ ここを追加 */
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Yu Gothic",
    "游ゴシック",
    monospace;

  padding: 8px 14px;
  border-radius: 999px;

  backdrop-filter: blur(6px);
  pointer-events: none;
}


/* =========================
   モデルコース：強調版
   ========================= */

.section-course .course-list {
  list-style: none;
  padding-left: 2rem;
  margin: 2rem 0;
  border-left: 4px solid #6a8f7b;
  counter-reset: step;
}

.section-course .course-list li {
  position: relative;
  padding: 0 0 2rem 2rem;
  font-weight: 600;
}

/* 番号バッジ（派手め） */
.section-course .course-list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: -1.75rem;
  top: -0.1rem;
  width: 2.6rem;
  height: 2.6rem;

  background: linear-gradient(135deg, #6a8f7b, #4f7263);
  color: #fff;
  border-radius: 50%;

  text-align: center;
  line-height: 2.6rem;
  font-size: 1rem;
  font-weight: bold;

  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* 行ごとに少しカード感 */
.section-course .course-list li {
  background: rgba(255,255,255,0.35);
  border-radius: 8px;
  padding: 1rem 1rem 1.5rem 2.5rem;
}

/* =========================
   アクセス：不要な黒点（marker）を完全に消す
   ========================= */

/* Pico / UA由来の marker を殺す */
.section-access .access-list,
.section-access .access-list li {
  list-style: none;
}

/* 疑似要素が出ている場合も保険でOFF */
.section-access .access-list li::marker,
.section-access .access-list li::before,
.section-access .access-list li::after {
  content: none !important;
  display: none !important;
}

./* Pico の section > * 自動余白を無効化 */
.section-access > * {
  margin-bottom: 0;
}

.section-access {
  padding: 3.5rem 0; /* ← 6rem → 縮小 */
}

/* intro（説明文） */
.section-access .access-intro {
  margin-bottom: 0.75rem;
  color: #444;
}

/* 段落全体の縦余白を締める */
.section-access p {
  margin: 0.4rem 0;
}

/* アクセス一覧 */
.section-access .access-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

/* 各項目 */
.section-access .access-list li {
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;

  border-left: 4px solid #6a8f7b;
  background: rgba(255,255,255,0.4);
  border-radius: 6px;
}

/* 見出し（交通手段など） */
.section-access .access-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* 補足テキスト */
.section-access .access-list span {
  display: block;
  font-size: 0.95rem;
  color: #555;
}

/* =========================
   注意事項：黒点・縦ラインを消す（シンプル版）
   ========================= */

/* 注記・注意書き */
.section-access .access-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #666;
}


/* 注意事項（強調版） */
.section-caution .caution-box{
  position: relative;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.00));
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* 左アクセント */
.section-caution .caution-box::before{
  content: none;
}

.section-caution .caution-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-caution .caution-list li{
  position: relative;
  padding-left: 1.75rem;
  margin: .75rem 0;
  line-height: 1.7;
}

/* 先頭のマーカー（アイコン風） */
.section-caution .caution-list li::before{
  content:"!";
  position:absolute;
  left:0;
  top:.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
  background: rgba(0,0,0,0.14);
}

.section-caution .caution-list,
.section-caution .caution-list li {
  list-style: none;
}

/* Pico / ブラウザ由来 marker を無効化 */
.section-caution .caution-list li::marker {
  content: none;
}

/* 念のため list-item を潰す（環境差対策） */
.section-caution .caution-list li {
  display: block;
}

/* =========================
   管理・運営について
   ========================= */

.section-management .caution-box {
  background: #f4f7f5;
}

.section-faq .caution-list li {
  line-height: 1.7;
}

.section-management .management-box {
  background: #f3f7f4;
  border-left: 4px solid #6a8f7b;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
}

.section-management .management-list {
  margin: 0;
  padding-left: 1.2rem;
}

.section-management .management-list li {
  margin-bottom: 0.75rem;
  color: #334;
  line-height: 1.6;
}

/* =========================
   よくある質問
   ========================= */


.faq {
  border: 1px solid #cfd8d3;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #2f3f37;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "＋";
  float: right;
  font-weight: 700;
  opacity: 0.6;
}

.faq[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.75rem 0 0;
  color: #444;
  line-height: 1.7;
}

.faq a {
  color: #2f6f55;
  text-decoration: underline;
}


/* =========================
   Notice（お知らせ）
========================= */

.section-notice .notice-box {
  margin-top: 1rem;
}

.section-notice .notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.section-notice .notice-list li {
  display: flex;
  gap: 1.25rem;
  align-items: baseline;

  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.section-notice .notice-list time {
  font-size: 0.85rem;
  color: #667;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.section-notice .notice-list a {
  color: #243;
  text-decoration: none;
  line-height: 1.6;
}

.section-notice .notice-list a:hover {
  text-decoration: underline;
}

/* =========================
   Page Navigation（目次）
========================= */

.page-nav {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.page-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.page-nav-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* リスト */
.page-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;

  list-style: none;
  margin: 0;
  padding: 0;
}

/* リンク */
.page-nav-list a {
  font-size: 0.95rem;
  color: #234;
  text-decoration: none;
  position: relative;
}

/* hover */
.page-nav-list a:hover {
  text-decoration: underline;
}

/* =================================================
   Responsive Enhancement for layout.css
   ※ 既存コードは一切変更しない
================================================= */

/* =========================
   Tablet 以下
========================= */
@media (max-width: 1024px) {

  /* section 幅を少し詰める */
  .section-inner {
    max-width: 900px;
    padding: 0 1.5rem;
  }

  /* Hero 高さを抑える */
  .site-hero {
    height: 60vh;
    min-height: 360px;
  }

}


/* =========================
   Mobile
========================= */
@media (max-width: 768px) {

  /* =====================
     検索ナビ
  ===================== */

  .search-nav .search-inner {
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .search-nav form.header-search {
    width: 100%;
    justify-content: center;
  }

  .search-nav input[type="search"] {
    min-width: 0;
    width: 100%;
    max-width: 240px;
  }

  /* =====================
     Hero
  ===================== */

  .site-hero {
    height: 55vh;
    min-height: 320px;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  /* =====================
     Hero Navigation
  ===================== */

  .hero-nav .hero-nav-list {
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-nav .hero-nav-list::-webkit-scrollbar {
    display: none;
  }

  /* =====================
     Sections
  ===================== */

  .section-inner {
    padding: 0 1.25rem;
  }

  /* =====================
     Notice
  ===================== */

  .section-notice .notice-list li {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .section-notice .notice-list time {
    font-size: 0.75rem;
  }

  /* =====================
     Footer
  ===================== */

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

}


/* =================================================
   Responsive Styles (Clean Version)
   既存CSSは一切変更しない
================================================= */


/* =================================================
   Tablet & Mobile 共通調整
================================================= */

@media (max-width: 1024px) {

  /* セクションの横幅を少し詰める */
  .section-inner {
    max-width: 900px;
    padding: 0 1.5rem;
  }

  /* Hero 高さを抑える */
  .site-hero {
    height: 60vh;
    min-height: 360px;
  }

}


/* =================================================
   Mobile（基準）
================================================= */

@media (max-width: 768px) {

  /* ---------------------
     Base
  --------------------- */

  body {
    font-size: 16px;
  }

  /* ---------------------
     Search Navigation
  --------------------- */

  .search-nav .search-inner {
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .search-nav form.header-search {
    width: 100%;
    justify-content: center;
  }

  .search-nav input[type="search"] {
    width: 100%;
    max-width: 240px;
    min-width: 0;
  }

  /* ---------------------
     Hero
  --------------------- */

  .site-hero {
    height: 55vh;
    min-height: 320px;
  }

  .hero-content {
    padding: 0 1.25rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  /* ---------------------
     Hero Navigation
  --------------------- */

  .hero-nav .hero-nav-list {
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-nav .hero-nav-list::-webkit-scrollbar {
    display: none;
  }

  /* ---------------------
     Sections
  --------------------- */

  .section {
    padding: 3.5rem 0;
  }

  .section-inner {
    max-width: none;
    padding: 0 1.25rem;
  }

  /* ---------------------
     Spots / Cards
  --------------------- */

  .spots-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ---------------------
     Notice
  --------------------- */

  .section-notice .notice-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .section-notice .notice-list time {
    font-size: 0.75rem;
  }

  /* ---------------------
     Footer
  --------------------- */

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

}


/* =================================================
   Small Mobile（差分のみ）
================================================= */

@media (max-width: 480px) {

  body {
    font-size: 15px;
  }

  /* Hero をさらに圧縮 */
  .site-hero {
    height: 50vh;
    min-height: 280px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  /* 横余白を最小限に */
  .section-inner {
    padding: 0 1rem;
  }

}

/* =================================================
   Responsive Styles (Clean & Polished)
   既存CSSは一切変更しない
================================================= */


/* =================================================
   Tablet & Mobile 共通調整
================================================= */

@media (max-width: 1024px) {

  /* セクション横幅を段階的に調整 */
  .section-inner {
    max-width: 900px;
    padding: 0 1.5rem;
  }

  /* Hero 高さを少し抑制 */
  .site-hero {
    height: 60vh;
    min-height: 360px;
  }

}


/* =================================================
   Mobile（基準）
================================================= */

@media (max-width: 768px) {

  /* ---------------------
     Base
  --------------------- */

  body {
    font-size: 16px;
  }

  /* ---------------------
     Search Navigation
  --------------------- */

  .search-nav .search-inner {
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .search-nav form.header-search {
    width: 100%;
    justify-content: center;
  }

  .search-nav input[type="search"] {
    width: 100%;
    max-width: 260px; /* ← 少し余裕 */
    min-width: 0;
  }

  /* ---------------------
     Hero
  --------------------- */

  .site-hero {
    height: 55vh;
    min-height: 320px;
  }

  .hero-content {
    padding: 0 1.25rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  /* ---------------------
     Hero Navigation
  --------------------- */

  .hero-nav .hero-nav-list {
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; /* ← 体感向上 */
  }

  .hero-nav .hero-nav-list > * {
    scroll-snap-align: start;
  }

  .hero-nav .hero-nav-list::-webkit-scrollbar {
    display: none;
  }

  /* ---------------------
     Sections
  --------------------- */

  .section {
    padding: 3.5rem 0;
  }

  .section-inner {
    max-width: none;
    padding: 0 1.25rem;
  }

  /* ---------------------
     Spots / Cards
  --------------------- */

  .spots-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ---------------------
     Notice
  --------------------- */

  .section-notice .notice-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .section-notice .notice-list time {
    font-size: 0.75rem;
  }

  /* ---------------------
     Footer
  --------------------- */

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

}


/* =================================================
   Small Mobile（差分のみ）
================================================= */

@media (max-width: 480px) {

  body {
    font-size: 15px;
  }

  /* Hero をさらに圧縮 */
  .site-hero {
    height: 50vh;
    min-height: 280px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  /* 横余白を最小限に */
  .section-inner {
    padding: 0 1rem;
  }

}

/* =================================================
   TOPに戻る
================================================= */


.search-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Homeリンク */
.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  color: inherit;
  text-decoration: none;

  transition: background 0.2s ease, transform 0.1s ease;
}

.home-link:hover {
  background: rgba(0, 0, 0, 0.08);
}

.home-link:active {
  transform: scale(0.95);
}

/* 家アイコン */
.home-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.search-inner .home-link {
  margin-right: auto;
  margin-left: 64px; /* ← これを足す */
}
}