@charset "utf-8";


html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*以上がリセットCSS*/

/* ───────── COMMON ───────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  min-height: 100%;
  color: #fff;
  background: #34343d;                /* 画面背景色 */
  line-height: 1.6;
  font-family: "Times New Roman", serif;
  overflow-x:hidden; 
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* ───────── GLOBAL NAVIGATION ───────── */
/* ─────────────────────────────────────────
   1) 基本レイアウトを grid に変更（ロゴ | メニュー | SNS）
   2) gap / フォント / アイコンを clamp で可変
   ───────────────────────────────────────── */
.global-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 95px;
  z-index: 10;
  background: transparent;
  transition: background-color 0.3s ease;
}
.global-nav.fixed-top {
  position: fixed;
  top: 0;
  bottom: auto;
  background: rgba(30,30,30,0.4);
}

/* ★ grid化：auto | 1fr | auto で中央だけ伸縮可能に */
.nav__container{
  width: 95%;                     /* 中央寄せと最大幅の上限 */
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(12px, 0.2vw, 20px);
  display: grid;
  grid-template-columns: auto 1fr auto;        /* 左:ロゴ / 中:メニュー / 右:SNS */
  align-items: center;
  column-gap: clamp(8px, 1.4vw, 24px);
}

/* ロゴサイズも可変で少しだけ縮む余地 */
.nav__logo{
  display: flex;
  align-items: center;
  height: 100%;
}
.nav__logo img{
  height: clamp(32px, 2.6vw, 40px);            /* 40px→タブレットで〜32pxまで縮む */
}

/* メニューは中央で “縮んで耐える” 役 */
.nav__menu{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 5vw, 90px);               /* px固定→clampへ（超ワイドで広がりすぎ防止） */
  font-size: clamp(14px, 1.15vw, 18px);        /* 可読性維持しつつ可変 */
  letter-spacing: 0.08em;
  flex-wrap: nowrap;
  min-width: 0;                                /* ← 中央カラムをちゃんと縮められるキー */
}
.nav__menu li{ position: relative; }
.nav__menu a:hover{ color:#7d7d7d; }

/* SNSは右端・可変アイコンで圧縮余地を確保 */
.nav__sns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 45px);
  height: 100%;
  margin-top: 0;                                /* 押し出しの原因になる上下余白は抑える */
}
.nav__sns img{
  height: clamp(16px, 1.6vw, 20px);            /* アイコンも少しだけ縮む */
}

/* アンダーラインはそのまま（必要なら幅もclampで可変に可） */
.nav__underline{
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: calc(100% - 5%);                       /* ＝左右2.5%パディング相当 */
  max-width: min(1400px, 95%);
  height: 1px;
  background: #ffffff;
  transform: translateX(-50%);
}
.global-nav.fixed-top .nav__underline{ display:none; }

/* ▼▼ ギャラリー矢印／ドロップダウン（既存のまま） ▼▼ */
.nav__gallery > a{ display:inline-flex; align-items:center; }
.nav__gallery > a::after{
  content:'';
  display:inline-block;
  margin-left:6px;
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:4px solid currentColor;
  transition:transform .4s;
}
.nav__gallery:hover > a::after{ transform: rotate(180deg); }
.global-nav.fixed-top .nav__gallery > a::after{ transform: rotate(180deg); }
.global-nav.fixed-top .nav__gallery:hover > a::after{ transform: rotate(0deg); }

.global-nav:not(.fixed-top) .nav__dropdown{
  bottom: calc(100% + 10px);
  top:auto;
  width:auto;                                   /* typoの s を修正 */
}
.global-nav.fixed-top .nav__dropdown{
  top: calc(100% + 10px);
  bottom:auto;
}
.nav__dropdown{
  position:absolute;
  top: calc(100% + 10px);
  left:50%;
  transform: translateX(-50%);
  display:none;
  flex-direction:column;
  gap:10px;
  padding:0 10px;
  background: rgba(30,30,30,0.4);
  border-radius:1px;
  font-size: clamp(14px, 1.1vw, 18px);          /* ドロップも可変 */
  white-space: nowrap;
}
.nav__dropdown.open{ display:flex; }
.nav__dropdown a{
  position:relative;
  display:block;
  padding:10px 0;
  text-align:center;
  z-index:1;
  color:#fff;
}
.nav__dropdown a::before{
  content:"";
  position:absolute; inset:0 -10px;
  background:#606074;
  opacity:0; transition:opacity .15s ease;
  border-radius:1px; z-index:-1;
}
.nav__dropdown a:hover::before{ opacity:1; }
.nav__dropdown a:hover{ background:#606074; color:#fff; }

/* ─────────────────────────────────────────
   1280px〜769px：タブレット帯 “押し出し防止コンパクト”
   - gap さらに圧縮
   - フォント小さめ
   - アイコン縮小 & 余白圧縮
   ───────────────────────────────────────── */
@media (max-width:1280px) and (min-width:769px){
  .global-nav{ height: 88px; }                  /* 少し低くして行間圧縮 */

  .nav__menu{
    gap: clamp(10px, 5vw, 70px);              /* さらに詰める */
    font-size: clamp(13px, 1.3vw, 24px);       /* ほんの少し小さく */
    letter-spacing: 0.06em;
  }

  .nav__logo img{ height: clamp(30px, 3.2vw, 36px); }
  .nav__sns{ gap: clamp(8px, 2.4vw, 38px); }
  .nav__sns img{ height: clamp(14px, 1.6vw, 22px); }
}

/* ─────────────────────────────────────────
   1024px〜769px：さらにタイト（2段折り回避の最後の一押し）
   ───────────────────────────────────────── */
@media (max-width:1024px) and (min-width:769px){
  .nav__menu{
    gap: clamp(8px, 3.8vw, 40px);
    font-size: clamp(12px, 1.6vw, 18px);
  }
  .nav__container{
    column-gap: clamp(6px, 1vw, 16px);
    padding: 0 clamp(10px, 1.6vw, 16px);
  }
}

/* ─────────────────────────────────────────
   “最終保険”：
   もし上でも押し出すなら、SNSだけもう一段縮める
   ───────────────────────────────────────── */
@media (max-width:980px) and (min-width:769px){
  .nav__sns img{ height: 16px; }
  .nav__sns{ gap: 22px; }
}


/* ───────── Footer ───────── */
/* もとの footer 定義 */
.site-footer{
  position:relative;
  width:100%;
  height:48vh;
  background:#34343d;
  color:#fff;
  /* overflow:hidden; ← これが原因で影が切れる */
  overflow: visible;
  z-index: 5;              /* 本文より手前に置きたいなら調整 */

   /* ↓―― ここがポイント ――↓ */
  filter: drop-shadow(0 -5px 10px rgba(0,0,0,.45));
  /*     └─↑   ↑   ↑
          X   Y   Blur   color   */
}


.footer__inner{
  width:100%;
  height:100%;
  margin:0 0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:40px 0;
  box-sizing:border-box;
   
}


.footer__middle {
  /* this middle block sits in the middle and will shrink to fit its contents */
  display: flex;
  flex-direction: column;
  gap: 40px;                         /* or use margin-bottom on nav/ margin-top on legal */
  margin-top: 60px;
}

/* ── ① 上段 ── */
.footer__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-left: 6%;
  margin-right: 6%;
  margin-bottom: 60px;
}

/* 左ブランド塊 */
.footer__branding{
  display:flex;
  align-items:flex-start;
  gap:30px;
  align-items: center;
  padding-left: 0;
  padding-top: 2%;
}
.footer__logo-right{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap: 10px;
    margin-top: 5px;
}
.footer__logo{
  height:12vh;
  width: auto;
}
.footer__logotype{
  height:2vh;
}
.footer__catch{
  margin:0;
  font-family:"Hiragino Mincho ProN",serif;
  font-weight:300;
  font-size:1.4vw;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}



/* ── ② 仕切り線 ── */
.footer__divider{
  display:block;
  width:95%;
  height:1px;
  background:#fff;
  margin:0 auto;
}

/* ---------- Footer Nav ---------- */
.footer__nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 6%;
}

.footer__menu,
.footer__dropdown { list-style: none; margin: 0; padding: 0; }

.footer__menu {
  display: flex;
  gap: 80px;
  font: 1vw/1 "Times New Roman", serif;
  letter-spacing: .08em;
}
.footer__menu a:hover { color: #7d7d7d; }

/* 基点 */
.footer__gallery { position: relative; }

/* ───────── Footer Dropdown (Global Nav と同じパターン) ───────── */
/* ───────── Footer Dropdown ───────── */
.footer__gallery {
  position: relative;
}

.footer__gallery .footer__dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background: rgba(131, 131, 131, 0.3);
  border-radius: 2px;
  z-index: 9999;
  color: #fff;
}



/* 矢印 ▲/▼ */
.footer__gallery .footer__gallery-head {
  display: inline-flex;
  align-items: center;
}
.footer__gallery .footer__gallery-head::after {
 content: '';
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.4s ease;
  transform-origin: center; /* 中心回転を保証 */
  transform: rotate(0deg);  /* 初期：上向き */
}
/* ホバー OR .open で矢印 ▼ */
.footer__gallery:hover  .footer__gallery-head::after,
.footer__gallery.open   .footer__gallery-head::after {
  transform: rotate(180deg);
}


/* open クラスで展開 */
/* ホバー OR .open でドロップダウン表示 */

.footer__gallery.open   .footer__dropdown {
  display: flex;
}

.footer__gallery:hover > .footer__dropdown {
  display: flex;
}



/* --- SNS --- */
.footer__sns{display:flex;gap:50px;}
.footer__sns img{height:20px;}

/* --- Legal Row (少し上げる・クリックは有効) --- */
.footer__legal-row{
  display:flex;align-items:center;gap:60px;
  font-size:.9vw;flex-wrap:wrap;
  margin:10px 6% 10px;              /* 上方向 10px だけ詰める */
}

.footer__legal-link:hover{color:#cba135;}

/* =========================================================
   FOOTER ≥768px：項目間の間隔とclampでのサイズ調整のみ（配置は不変）
   ========================================================= */
@media (min-width: 768px){

  /* ── 上段ロゴ群：サイズだけ可変（配置はそのまま） ── */
  .footer__branding{
    gap: clamp(10px, 1.2vw, 24px) !important;
  }
  .footer__logo{
    height: clamp(44px, 7.6vh, 80px) !important;
    width: auto !important;
  }
  .footer__logotype{
    height: clamp(14px, 1.8vh, 24px) !important;
    width: auto !important;
  }
  .footer__catch{
    font-size: clamp(16px, 1vw, 28px) !important;
    letter-spacing: .08em !important;
  }

  /* ── メニュー：gapとフォントのみ上書き ── */
  .footer__menu{
    /* 既存の `font: 1vw/1 ...` を確実に上書き */
    font: normal clamp(16px, 1.1vw, 20px)/1 "Times New Roman", serif !important;
    letter-spacing: .06em !important;
    gap: clamp(15px, 4.2vw, 70px) !important;  /* 目安10px前後 */
    white-space: nowrap !important;           /* まずは1行死守 */
  }

  /* ── SNS：gapとアイコンサイズのみ上書き（はみ出し防止） ── */
  .footer__sns{
    gap: clamp(12px, 5.2vw, 55px) !important;  /* 目安10px前後 */
    white-space: nowrap !important;
  }
  .footer__sns img{
    height: clamp(14px, 1.6vw, 22px) !important; /* 幅不足時は縮む */
    width: auto !important;
  }

  /* ── legal-row：行の崩れを抑えるため数値だけ調整 ── */
  .footer__legal-row{
    flex-wrap: wrap !important;                            /* 必要なら2段OK */
    gap: clamp(14px, 4.6vw, 50px) !important;              /* 目安10px前後 */
    font-size: clamp(12px, 1.1vw, 14px) !important;
    row-gap: 6px !important;                               /* 2段時の行間を詰める */
  }
  .footer__copyright,
  .footer__legal-link{
    white-space: nowrap !important;                        /* 文言は折り返さない */
  }
}

/* ── タブレット帯で“さらにタイト”にする最終保険（配置は不変） ── */
@media (min-width: 768px) and (max-width: 1100px){
  .footer__menu{
    font-size: clamp(11px, 2vw, 14px) !important;
    gap: clamp(12px, 4vw, 30px) !important;
  }
  .footer__sns{
    gap: clamp(6px, 3vw, 22px) !important;
  }
  .footer__sns img{
    height: 18px !important;
  }
}


/* =========================================================
   Footer  ──  Mobile layout (≤768px)
   ========================================================= */
@media (max-width: 768px){


  /* ── パーツの並び順を明示 ─────────────────── */
  .footer__top        { order: 0; }   /* Branding */
  .footer__menu       { order: 1; }   /* メニュー */
  .footer__divider    { order: 2; }   /* 白線 ←★メニューの直後 */
  .footer__sns        { order: 3; }   /* SNS アイコン列 */
  .footer__legal-row  { order: 4; }   /* Legal ＆ Copyright */


  /* 全体を縦積みにして高さ自動化 */
  .site-footer{
    height: auto;
    padding: 40px 0 20px;      /* 上 40px / 下 20px */
  }
  .footer__inner{ padding: 0 5vw; }        /* 左右 5vw */

  /* ── ① Branding ─────────────────────────── */
  .footer__top{
    flex-direction: column;
    align-items: flex-start;                         /* 左寄せ */
    margin: 0 0 32px;
  }
  .footer__branding{ gap: 20px; margin-top: 15px;margin-left: 15px;}
  .footer__logo{     width: 55px;  height: auto; }
  .footer__logotype{ height: 15px; width: auto; }
  .footer__catch{    font-size: 14px; letter-spacing: 0.14em;}
  .footer__logo-right{margin-top: 5px;}

 .footer__nav-row{
    flex-direction: column;              /* ← 横並び→縦並び */
    align-items: flex-start;
    gap: 35px;
    margin: 0;                           /* Branding と左揃え */
  }

  /* ── ② メニュー ─────────────────────────── */
  .footer__menu{
 display: flex;
    flex-direction: column;
    gap: 30px;
    font: 16px/1 "Times New Roman", serif;
    padding: 0;
    margin: 0;
    margin-left: 25px;
    margin-bottom: 20px;
  }
  .footer__menu a{ display: block; }

 /* ── ②-1  GALLERY タップ展開 ────────────────── */
  .footer__gallery .footer__dropdown{
    position: static;          /* ボタン直下に */
    display: none;             /* 初期閉じ */
    flex-direction: column;
    gap: 12px;
  
    background: none;
     align-items: flex-start;   /* 左寄せで並べる          */
    padding-left: 0;          /* 余分なインデントを削除   */
    margin-left: 50px;           /* 〃                      */
    margin-top: 20px;
    gap: 20px;                /* メニューと同じ行間 (=20) */
  }
  .footer__gallery.open .footer__dropdown{ display: flex; }

  /* 矢印アイコン少し小さく */
  .footer__gallery .footer__gallery-head::after{
    border-left-width: 3px;
    border-right-width: 3px;
    border-top-width: 5px;
  }


  /* ── ③ 区切り線 ─────────────────────────── */
 .footer__divider{ display: none; }

/* ── ④ SNS アイコン列 ─────────────────────── */
  .footer__sns{
    order: 2;                              /* メニューの次 */
    display: flex;
    gap: 50px;
justify-content: center;
    margin: 0 auto;
    padding-top: 45px;
    border-top: 1px solid #fff;            /* ← 白線はここ */
    width: 90vw;
  }
  .footer__sns img{ height: 22px; width: auto;  }

  /* ── ⑤ Legal リンク + Copyright ────────────── */
  .footer__legal-row{
    order: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
    margin-top: 24px;
  }
  .footer__copyright{
    order: 2;            /* リンク３つの下へ */
    flex-basis: 100%;    /* 折り返して左揃え */
    margin-top: 6px;
  }
  .footer__legal-link{
    margin-right: 5px;
  } 
  
  .footer__gallery .footer__dropdown{ display:none; }
  .footer__gallery.open .footer__dropdown{ display:flex; }
}






/* ========== 共有変数 ========== */
:root{
  --accent:#CBA135;
  --bg:none;
  --white:#fff;
  --font-mincho:"Hiragino Mincho ProN","Georgia",serif;
  --font-gothic:"Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
}

/* ========== 全体ラッパー ========== */
body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:var(--font-mincho);
}

/* ========== フィルター（地方から探す） ========== */
.region-filter{
  width:100%;
  max-width:85vw;
  margin:150px auto 100px 0px;
  padding-top:40px;
  padding-right: 0;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  gap: 0 6vw;                  /* 行・列ギャップ */
}

.region-filter-header{
  display:flex;
  align-items:flex-start;              /* 線とタイトルを上揃え */
  margin-left:90px;
  margin-bottom:35px;
}
.region-filter-bar{
  width:2px;
  height:35px;
  background:var(--accent);
  margin-right:12px;
}
.region-filter-title{
  font-size:24px;
  margin:0;
  font-family:"Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  font-weight:300;
}

/* ボタン８個 */
.region-buttons{
  display:grid;
  grid-template-columns:repeat(4,180px);
  justify-content:center;
  gap:30px 45px;                       /* 行・列ギャップ */
}
.region-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:180px;
  height:55px;
  border:1px solid var(--accent);
  background:transparent;
  color:var(--white);
  font-size:20px;
  text-decoration:none;
  transition:.3s;
  font-family:"Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
}
.region-btn:hover,
.region-btn.active{
  background:var(--accent);
  color:#34343d;
  border:none;
}

/* ========== エリア見出し ========== */
.location-area-title{
  max-width:85vw;
  margin:0 auto 24px;
  padding-left:90px;
  font-size:28px;
  font-weight:300;
  position:relative;
  
}
/* 新：タイトルの上に置く横線 -------------------- */
.location-area-hline{
  max-width:85vw;
  height:1px;
  background:var(--accent);
  margin:0 auto 22px;      /* タイトルまで 22px */
}
/* ========== グリッド ========== */
/* location-grid … border-left をやめて border-top だけ残す */
.location-grid{
  max-width:85vw;
  margin:24px auto 80px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--accent);   /* ← 上枠のみ */
}

/* すべてのマスに右・下罫線を付与 */
.location-grid-item{
  border-right:1px solid var(--accent);
  border-bottom:1px solid var(--accent);
  display:flex;
  flex-direction:column;
}

/* 3 列目（3,6,9…）＝右端 → 右罫線を消す */
.location-grid-item:nth-child(3n){
  border-right:none;
}
.location-grid-media{
  position:relative;
  width:100%;
  padding-top:60%;          /* 画像比 5:3=1.2 */
  overflow:hidden;
}
.location-grid-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;  /* ← 中央を基準にトリミング */

}

/* ─ 情報行 ─ */
.location-grid-info{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin:40px 0 40px 0;
  padding:0 10px;

}
.grid-info-left .grid-pref{
  margin-left:20px;
  font-size:16px;
  color:var(--bg);
}
.grid-info-left .grid-spot{
  margin-left:20px;
  font-size:20px;
  color:var(--bg);
  font-weight:300;
  font-feature-settings: "palt";
}
.grid-map-link{
  display:flex;
  align-items:center;
  margin-left:auto;          /* ← 左要素を押し出して右寄せ */
  margin-right:20px;
  font-size:14px;
  color:#fff;
  text-decoration:none;

  white-space:nowrap;        /* ← アイコン＋テキストを折り返さない */
  flex-shrink:0;             /* ← 幅が足りなくても縮まない */
}
.grid-map-link svg{          /* 念のため統一サイズ */
  width:16px;
  height:16px;
  margin-right:4px;
  fill:#CBA135;
}
/* —— 罫線を５マスで止める —— */
/* 3 列目（#3, #6, #9…）→ 右罫線を消す */
.location-grid-item:nth-child(3n){border-right:none;}


/* ========== ページネーション ========== */
.location-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  font-family:var(--font-mincho);
  margin-bottom:120px;
  margin-top: 100px ;
}
.location-pagination .label{font-size:22px;}
.location-pagination .page-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px;height:50px;
  border:1px solid var(--accent);
  background:transparent;
  color:var(--white);
  font-size:24px;
  text-decoration:none;
  transition:.3s;
}
.location-pagination .page-link:hover,
.location-pagination .page-link.active{
  background:var(--accent);
  color:#34343d;
  border:none;
}

/* ========== レスポンシブ簡易 ======== */
@media(max-width:1024px){
  .region-buttons{grid-template-columns:repeat(4,1fr);}
   .location-grid{grid-template-columns:repeat(2,1fr);}
  .location-grid-item{border-right:1px solid var(--accent);}  /* 一旦全部付け */
  .location-grid-item:nth-child(2n){border-right:none;}        /* 2列目だけ消す */
}
@media(max-width:600px){
  .region-buttons{grid-template-columns:repeat(2,1fr);}
 .location-grid{grid-template-columns:1fr;}
  .location-grid-item{border-right:none;}                      /* 1列なので不要 */
}

/* =====================================================
   MOBILE (max-width: 768px)  — 地方フィルター／ロケ地一覧
   既存CSSの一番下にコピペで追加してください
   ===================================================== */
@media (max-width: 768px){
  /* 念のため2列指定が必要なら明示 */
  .location-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  /* まず全マスに右線を付ける（ベース） */
  .location-grid > .location-grid-item{
    border-right: 1px solid var(--accent) !important;
    border-bottom: 1px solid var(--accent); /* 下線は従来どおり */
  }

  /* PC用 3n で消していた右線を復活（#3, #6, #9, …に勝たせる） */
  .location-grid > .location-grid-item:nth-child(3n){
    border-right: 1px solid var(--accent) !important;
  }

  /* 2列の右端（偶数）だけ右線を消す → 常に列間の縦線が出る */
  .location-grid > .location-grid-item:nth-child(2n){
    border-right: none !important;
  }


  /* ---- ラップ全体 ---- */
  .region-filter{
    max-width: 100vw;
    width: 100%;
    margin: 60px auto 40px;
    padding: 0 25px;
    display: flex;
    flex-direction: column;   /* ← 縦並び */
    align-items: stretch;     /* 子要素の幅を親いっぱい */
    gap: 16px;
  }

  /* 見出し（線＋タイトル） */
  .region-filter-header{
    margin: 0;                /* 余白をリセット */
    display: flex;
    align-items: center;      /* 縦中央 */
    gap: 8px;
  }
  .region-filter-bar{
    width: 2px;
    height: 22px;
    margin: 0;
  }
  .region-filter-title{
    font-size: 16px;          /* 指定：16px */
    font-weight: 400;
  }

  /* ボタン群：2列・3段（8個でも自動で折り返し） */
  .region-buttons{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* ← 1行2つ */
row-gap: 12px;      /* ← 縦の間隔 */
    column-gap: 35px;    /* ← 横の間隔をここで変更 */    
    margin: 0;                /* はみ出し防止 */
    margin-bottom: 20px;
  }
  .region-btn{
    width: 100%;              /* 固定幅をやめる */
    height: 44px;             /* 少し小さめの高さ */
    font-size: 14px;          /* 指定：14px */
    line-height: 1;
    padding: 0 20px !important;
    box-sizing: border-box;
  }

  /* ========== エリア見出しまわり ========== */
  .location-area-hline{
    max-width: 100vw;
    width: 100%;
    margin: 0 0 10px;
  }
  .location-area-title{
    max-width: 100vw;
    width: 100%;
    padding: 0 25px;          /* 画面左寄せ（左右16pxの安全マージン） */
    margin: 0 0 12px;
    font-size: 16px;          /* 指定：16px */
    font-weight: 400;
  }

  /* ========== グリッド ========== */
  .location-grid{
    max-width: 100vw;
    width: 100%;
    margin: 0 0 48px;
    padding: 0 16px;          /* 内側に余白 */
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* ← 1行2マス */
    border-top: 1px solid var(--accent);    /* 上枠は継続 */
    gap: 0;                                  /* 罫線を生かすのでギャップ無し */
  }

  .location-grid-item{
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--accent);   /* 右罫線基本ON */
    border-bottom: 1px solid var(--accent);  /* 下罫線 */
    
    /* 既存の 3n ルールを上書き */
  }
  /* 2列目（偶数）だけ右罫線を消す */
  .location-grid-item:nth-child(2n){
    border-right: none;
  }

  /* 画像アスペクトはそのまま（5:3）。画面幅が狭いので比率を少し縦長にしてもOKなら下記を有効化
     .location-grid-media{ padding-top: 66.66%; }  */

  .location-grid-media{
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
  }
  .location-grid-media img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

 /* 情報行は通常フローに戻す（flex解除） */
   .location-grid-info{
    position: relative;
    display: block;
    margin: 12px 0 14px;
    padding: 8px 8px;
    min-height: 20px; /* 行の最低高さ（リンクとテキストが重ならないための保険） */
  }

  /* float を内包させるためのclearfix */
  .location-grid-info::after{
    content: "";
    display: block;
    clear: both;
  }

/* 左側は通常フロー。幅の制限をかけない */
  .grid-info-left{
    display: block;
    overflow: visible;
    min-width: 0;
  }

 /* 都道府県・スポットの体裁（数値はご指定に合わせる） */
  .grid-info-left .grid-pref{
    margin-left: 6px;
    font-size: 12px;
    color: var(--bg);
    margin-bottom: 5px;
  }
  .grid-info-left .grid-spot{
    margin-left: 6px;
    font-size: 16px;
    font-weight: 400;
    color: var(--bg);
    white-space: normal;        /* ← 改行OK（1行固定は解除） */
    word-break: break-word;     /* 長い単語も折り返す（日本語でも安全） */
    
  }
  /* 地図リンク：少し小さめ、文字10px */
 /* 右上に固定。クリック範囲は要素自身のみ */
   /* 右上・自身のみクリック可 */
  .grid-map-link{
    position: absolute;
    top: 0;
    right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;     /* ご指定のサイズ */
    line-height: 1.2;
    margin: 0;
    padding: 0;
margin-top: 8px;
  }
   .grid-map-link svg{
    width: 12px;
    height: 12px;
    margin-right: 2px;
    fill: #CBA135;
    flex: none;
  }
  .grid-info-left .grid-spot{
    margin-left: 6px;
    font-size: 16px;          /* ご指定のサイズ */
    font-weight: 400;
    display: inline;
    white-space: nowrap;      /* 改行しない */
  }

  /* ========== ページネーション ========== */
  .location-pagination{
    gap: 20px;
    margin: 32px 0 80px;
  }
  .location-pagination .label{
    font-size: 14px;          /* 指定：page文字 14px */
  }
  .location-pagination .page-link{
    width: 30px;              /* 指定：30px */
    height: 30px;             /* 指定：30px */
    font-size: 16px;          /* 指定：数字 16px */
    line-height: 30px;
    border: 1px solid var(--accent);
  }
}

@media (max-width: 1400px){
  /* ラッパーを縦並びに */
  .region-filter{
    max-width: 90vw;             /* 85vwだと窮屈なら少し広げる */
    margin: 80px auto 60px;      /* 余白をやや圧縮 */
    padding: 0 24px;
    flex-direction: column;      /* ← 横並び→縦並び */
    align-items: flex-start;     /* 子要素を左寄せ */
    gap: 18px 0;                 /* 縦の間隔のみ */
    margin-top: 140px;
  }

  /* 見出し（線＋タイトル）周りのマージン調整 */
  .region-filter-header{
    margin: 0;                   /* 左90px/下35px をリセット */
    gap: 10px;
    align-items: center;         /* 線とタイトルの縦中心を合わせる */
  }
  .region-filter-bar{
    width: 2px;
    height: 26px;                /* 少し短めにして圧縮 */
    margin: 0;
  }
  .region-filter-title{
    font-size: 20px;             /* 24→20でラップ防止 */
    font-weight: 400;
  }

  /* ボタン：3列グリッドに変更（180px固定幅は維持でもOKだが、
     列幅を柔軟にするためminmaxを採用） */
  .region-buttons{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 16px;
    width: 100%;
  }
  /* ボタンは横幅を親幅に合わせる */
  .region-btn{
    width: 100%;
    max-width: 360px;            /* 広すぎ防止の上限（任意） */
    height: 52px;                /* 55→52で密度最適化 */
    font-size: 18px;             /* 20→18 */
    box-sizing: border-box;
  }
}










/* PC では完全に隠す */
@media (max-width:768px){
  .global-nav{ display:none; }

}
@media (min-width:769px){
  #mobileNavToggle{ display:none; }
 #mobileNav{display: none;}
}

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

   /* ハンバーガー開閉ボタン */
 #mobileNavToggle {
 position: fixed !important;
    top: 20px !important;
    right: 0 !important;
    transform: none !important;    /* 親要素の transform 影響を排除 */
    z-index: 2000 !important;       /* fvのwrapper( z-index:5 ) 以上に */
    width: 75px;
    height: 35px;
    background-color: rgba(52, 52, 61, 0.4); /* #34343d 透明度0.3 */
    border: none;
    padding: 5px 20px 5px 8px; /* 上・下・左だけ2px、右は0 */
    cursor: pointer;
  box-sizing: border-box;
  line-height: 0;
  /* 行ボックス由来の隙間を殺す + 子を中央に収める */
  line-height: 0;
  display: grid;
  place-items: center;

  /* 子が大きくても外に出さない */
  overflow: hidden;

  /* タップ装飾のにじみ防止（モバイル） */
  -webkit-tap-highlight-color: transparent;

  }

#mobileNavToggle img {
  display: block;                 /* ベースライン隙間の排除 */
  width: auto;                    /* 縦基準でスケール */
  height: 100%;                   /* ← 内容枠（44-上下2px×2=40px）にフィット */
  max-width: 100%;                /* 横も 100% を上限に */
  object-fit: contain;            /* はみ出さずに収める */
  pointer-events: none;           /* クリックは親で拾う */
  transition: opacity .22s ease;  /* ← スムーズさ（変更OK） */
}


  /* メニュー本体 */
  #mobileNav {
     position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  #mobileNav.open {
    transform: translateX(0);
  }

/* メニュー内 */
.mobile-nav__inner {
  padding: 20px 20px 5px; /* 上部にロゴ分の余白 */
  height: 100%;
 display: flex;
    flex-direction: column;
}

/* クローズボタン */
  .mobile-nav__head {
    display: flex;
    justify-content: flex-end;  /* 右寄せ */
    align-items: center;        /* 縦中央揃え */
    padding: 10px;              /* 必要に応じ調整 */
    margin-bottom: 30px;
  }
  .mobile-nav__logo {
    width: 55px;
    height: auto;
  }
.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
  .mobile-nav__logo {
    width: 55px;
    height: auto;
  }
  .mobile-nav__close img {
    width: 16px;
    height: 16px;
    pointer-events: none;
  }

  /* メニュー */
  .mobile-nav__menu {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .mobile-nav__menu a,
  .mobile-nav__gallery-head {
    font: 600 20px/1.4 "Times New Roman", serif;
    color: #34343d;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  /* Gallery ドロップダウン */
  .mobile-nav__gallery-dropdown {
    display: none;
    list-style: none;
    margin: 12px 0 0 12px;
    padding: 0;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-nav__gallery.open .mobile-nav__gallery-dropdown {
    display: flex;
  }
.mobile-nav__gallery .mobile-nav__gallery-head {
  display: inline-flex;
  align-items: center;
}
.mobile-nav__gallery .mobile-nav__gallery-head::after {
 content: '';
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.4s ease;
  transform-origin: center; /* 中心回転を保証 */
  transform: rotate(0deg);  /* 初期：上向き */
}
/* ホバー OR .open で矢印 ▼ */
.mobile-nav__gallery:hover  .mobile-nav__gallery-head::after,
.mobile-nav__gallery.open   .mobile-nav__gallery-head::after {
  transform: rotate(180deg);
}
.mobile-nav__gallery-dropdown{
  margin: 0;
  margin-top: 15px;

}

/* open クラスで展開 */
/* ホバー OR .open でドロップダウン表示 */

.mobile-nav__gallery.open   .mobile-nav__gallery-dropdown {
  display: flex;
}

.mobile-nav__gallery:hover > .mobile-nav__gallery-dropdown {
  display: flex;
}
  /* SNS */
  .mobile-nav__sns {
    margin-top: auto;
    display: flex;
    gap: 50px;
     align-items: center; /* 縦中央揃え */
     justify-content: center;
     margin-bottom: 30px;
  }
  .mobile-nav__sns img {
    height: 25px;
  }

  /* Legal */
  .mobile-nav__legal {
    margin-top: 10px;
    font-size: 12px;
    line-height: 2;
    transform: translateY(20px);
  }
  .mobile-nav__legal a {
    color: #34343d;
    text-decoration: none;
  }
  .mobile-nav__copy {
    margin: 8px 0 0;
  }
}


/* W3 = Light → CSSで font-weight:300; のとき使われる */
@font-face {
  font-family: "Hiragino Mincho ProN";   /* 既存CSSが呼ぶ名前 */
  src: local("Hiragino Mincho ProN W3"),
       local("hiragino-mincho-pron");
  font-weight: 300;
  font-style: normal;
}

/* W6 = SemiBold → CSSで font-weight:600; のとき使われる */
@font-face {
  font-family: "Hiragino Mincho ProN";
  src: local("Hiragino Mincho ProN W6"),
       local("hiragino-mincho-pron");
  font-weight: 600;
  font-style: normal;
}
