@charset "UTF-8";
/* ========== Reset (modern-normalize相当の軽量版) ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: transparent; }
img, picture, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* ========== Design Tokens ========== */
:root {
  --c-bg: #ffffff;        /* ← 白 */
  --c-fg: #0f172a;            /* slate-900 っぽい */
  --c-muted: #667085;         /* slate-600 っぽい */
  --c-border: #e2e8f0;        /* slate-200 */
  --c-primary: #0ea5e9;       /* sky-500 */
  --c-primary-ink: #0b4a61;
  --c-accent: #22c55e;        /* green-500 */

  --radius: 14px;
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.08);

  --container-w: 1100px;
  --header-h: 72px;
  --logo-h: 44px;
	
  color-scheme: light;
}

/* ========== Base Typography ========== */
html {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
.en { font-family: "Jost", "Noto Sans JP", system-ui, sans-serif; }

body { line-height: 1.8; font-size: 16px; letter-spacing: 0.02em; }
h1,h2,h3,h4 { line-height: 1.25; margin: 0 0 0.6em; font-weight: 700; }
h1 { font-size: clamp(28px, 4.5vw, 48px); }
h2 { font-size: clamp(22px, 3.2vw, 32px); }
p  { margin: 0 0 1em; color: var(--c-muted); }
a  { color: inherit; text-decoration: none; }
a:hover { opacity: 0.85; }






/* ========== Layout ========== */
.container { width: min(100% - 32px, var(--container-w)); margin: 0 auto; }

/* ===== Header（固定しない・背景透明） ===== */
.site-header {
  position: relative;
  background: transparent;
  z-index: 300;
}

/* メニュー（ヘッダーより上） */
@media (max-width: 980px){
  .site-nav{
    z-index: 400;   /* ← ヘッダーより上に */
  }
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--header-h);
  padding: 10px 0;
}

/* ロゴ（比率維持で大きく） */
.logo img {
  height: var(--logo-h);
  width: auto;
  display: block;
}

/* 通常（PC表示） */
:root {
  --logo-h: 64px;   /* 例：64pxで少し大きめ */
}

/* スマホ用（～980px） */
@media (max-width: 980px){
  :root {
    --logo-h: 56px; /* ← 40px → 56px に拡大 */
  }
}

/* ===== Nav（PC） ===== */
.site-nav { flex: 1 1 auto; }
.menu-list {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 36px; list-style: none; margin: 0; padding: 0;
}
.menu-link {
  display: inline-flex; flex-direction: column; align-items: center;
  text-align: center; gap: 2px; padding: 8px 2px; border-radius: 10px;
  position: relative;
  transition: transform .18s ease, color .18s ease;
}
.menu-link .jp {
  font-weight: 700; color: var(--c-fg); line-height: 1.1; white-space: nowrap;
  transition: transform .18s ease;
}
.menu-link .sub {
  font-size: 12px; letter-spacing: .08em; color: var(--c-muted);
  text-transform: uppercase; line-height: 1;
  transition: letter-spacing .18s ease, opacity .18s ease, transform .18s ease;
}
/* 下線アニメ（クリックしたくなる誘引） */
.menu-link::after {
  content: ""; position: absolute; left: 50%; bottom: -2px; width: 0; height: 2px;
  background: currentColor; opacity: .9; transform: translateX(-50%);
  transition: width .2s ease;
}

/* hover/focus */
.menu-link:hover, .menu-link:focus-visible { transform: translateY(-1px); }
.menu-link:hover .jp, .menu-link:focus-visible .jp { transform: translateY(-1px); }
.menu-link:hover .sub, .menu-link:focus-visible .sub {
  letter-spacing: .14em; opacity: .95; transform: translateY(-1px);
}
.menu-link:hover::after, .menu-link:focus-visible::after { width: 60%; }

/* note（png） */
.menu-cta { margin-left: 6px; }
.btn-noteimg {
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .18s ease, filter .18s ease;
}
.btn-noteimg img { height: 44px; width: auto; display: block; }
.btn-noteimg:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
}

/* ===== ハンバーガー（SP） ===== */
.nav-toggle {
  display: none; position: relative; width: 44px; height: 44px;
  border: 1px solid var(--c-border); background: transparent; border-radius: 10px;
}
.nav-toggle__bar {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--c-fg);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle__bar:nth-child(1) { top: 14px; }
.nav-toggle__bar:nth-child(2) { top: 21px; }
.nav-toggle__bar:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

/* ===== SPレイアウト ===== */
@media (max-width: 980px){
  :root { --logo-h: 40px; }

  .nav-toggle { display: inline-block; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;          /* ヘッダー直下から全画面 */
    background: #86C8ABD9;                 /* 半透明 #86C8AB */
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;

    /* ← ここ重要：上寄せ */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;           /* 上寄せ */
    align-items: stretch;                  /* 横幅いっぱい */
    padding-top: 8px;                      /* ヘッダー直下の余白 */
    overflow-y: auto;                      /* 縦スクロール可 */
    z-index: 1000;
    visibility: hidden;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .menu-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 8px 0 16px;                   /* 下にも少し余白 */
  }
  .menu-list > li { width: 100%; display: flex; justify-content: center; }
  .menu-link { padding: 16px 20px; }

  .menu-link .jp { color: #0f172a; }
  .menu-link .sub { color: #20323a; }

  .menu-cta { padding: 12px 0; }
  .btn-noteimg img { height: 48px; }
}


/* アニメ控えめ設定 */
@media (prefers-reduced-motion: reduce){
  .menu-link, .menu-link .jp, .menu-link .sub, .btn-noteimg {
    transition: none !important;
  }
}







/* ===== Hero 基本 ===== */
.section-hero {
  position: relative;
  background-image: url("../img/hero_bg.png");
  background-repeat: no-repeat;
  background-position: top center;   /* 背景の上端を画面最上部に合わせる */
  background-size: cover;
  min-height: 100vh;                 /* ← 画面高さいっぱい確保 */
  width: 100%;

  /* 背景だけをヘッダーの裏へ引き上げ、内容は下に確保 */
  margin-top: calc(-1.15 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(24px, 5vw, 64px));
}

/* スマホ用背景（画面幅980px以下で切り替え） */
@media (max-width: 980px) {
  .section-hero {
    background-image: url("../img/hero_bg_sp.png");
    background-size: cover;          /* 横幅100%＋縦も埋める */
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 110vh;               /* ← 背景が短くならないよう余裕を持たせる */
  }
}

/* Hero 内部レイアウト */
.hero-inner {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: flex-start;           /* 上寄せ */
  justify-content: center;           /* 横方向は中央 */
  padding-top: 20vh;                 /* 背景上端から20vh下げて配置 */
  text-align: center;
}

/* H1画像（ロゴ） */
.hero-title img {
  width: clamp(240px, 42vw, 707px);  /* 実寸707px以上にならない */
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0;                        /* 初期透明（JSで is-in を付与） */
  transform: translateY(12px);       /* 少し下から */
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
  z-index: 1;
}

/* フェードイン後 */
.hero-title.is-in img {
  opacity: 1;
  transform: translateY(0);
}

/* 低モーション環境の配慮 */
@media (prefers-reduced-motion: reduce) {
  .hero-title img {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* モバイル微調整 */
@media (max-width: 480px) {
  .section-hero {
    min-height: 100vh;   /* 70vh → 100vh に調整して余白不足を防ぐ */
  }
  .hero-inner {
    padding-top: 18vh;   /* ロゴ位置を少し上げる */
  }
}









/* ================== About（Heroに食い込ませる版） ================== */
.section-about{
  /* 調整用トークン */
  --about-max-w: 1100px;
  --about-pad-top: 40vh;      /* オレンジ面の上側余白（中身の位置） */
  --about-pad-bottom: 12vh;   /* 下側余白 */
  --about-overlap: 35vh;      /* Heroへ食い込ませる量（負の余白に使用） */

  position: relative;
  z-index: 100;                               /* Hero背景より前面へ */
  margin-top: calc(-1 * var(--about-overlap)); /* ← ここで上に引き上げて重ねる */

  /* 背景PNG（PC） */
  background-image: url("../img/about_bg_pc.png");
  background-repeat: no-repeat;
  background-position: top center;          /* 上端基準で合わせる */
  background-size: cover;                   /* 画面に気持ちよくフィット */
  background-color: transparent;
  width: 100%;
  min-height: 100vh;                         /* オレンジ面が十分見える高さ */
}

.section-about02{
  /* 調整用トークン */
  --about-max-w: 1100px;
  --about-pad-top: 10vh;      /* グリーン面の上側余白（中身の位置） */
  --about-pad-bottom: 10vh;   /* 下側余白 */

  position: relative;
  z-index: 100;                               /* Hero背景より前面へ */
	
    /* 上に引き上げない */
  margin-top: 0;

  /* 背景PNG（PC） */
  background-image: url("../img/about_bg_pc02.png");
  background-repeat: no-repeat;
  background-position: top center;          /* 上端基準で合わせる */
  background-size: 100% auto;   /* ← cover ではなく contain */
  background-color: transparent;
  width: 100%;
  min-height: 100vh;                         /* グリーン面が十分見える高さ */
}

/* コンテンツをグリーン形状の中に配置 */
.section-about02 .about-inner02{
  width: min(100% - 32px, var(--about-max-w));
  margin-inline: auto;
  padding: var(--about-pad-top) 0 var(--about-pad-bottom);
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  justify-items: stretch;                     /* 左寄せ（必要なら center に） */
  color: #fff;                              /* グリーン面上の文字色 */
  text-shadow: 0 1px 2px rgba(0,0,0,.12);   /* 読みやすさ補助 */
}


/* コンテンツをオレンジ形状の中に配置 */
.section-about .about-inner{
  width: min(100% - 32px, var(--about-max-w));
  margin-inline: auto;
  padding: var(--about-pad-top) 0 var(--about-pad-bottom);
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  justify-items: stretch;                     /* 左寄せ（必要なら center に） */
  color: #fff;                              /* オレンジ面上の文字色 */
  text-shadow: 0 1px 2px rgba(0,0,0,.12);   /* 読みやすさ補助 */
}

/* H2画像 */
.about-title{ margin: 0; }
.about-title img {
  width: 35%;              /* 親要素の幅に応じて伸縮 */
  max-width: 707px;        /* 実寸以上に拡大しない */
  height: auto;            /* アスペクト比維持 */
  display: block;
  margin: 0 ;              /* 左寄せ */
}


/* H2画像 */
.about-title02{ margin: 0; }
.about-title02 img {
  width: 35%;              /* 親要素の幅に応じて伸縮 */
  max-width: 707px;        /* 実寸以上に拡大しない */
  height: auto;            /* アスペクト比維持 */
  display: block;
  margin: 0 ;              /* 左寄せ */
}


/* スマホ時にサイズ拡大＆中央寄せ */
@media (max-width: 980px) {
  .about-title img {
    width: 80%;        /* ← SPはもっと大きく */
    max-width: none;   /* 実寸制限を解除（画面に収まる範囲で拡大可） */
  }
}


/* スマホ時にサイズ拡大＆中央寄せ */
@media (max-width: 980px) {
  .about-title02 img {
    width: 80%;        /* ← SPはもっと大きく */
    max-width: none;   /* 実寸制限を解除（画面に収まる範囲で拡大可） */
	margin-top: 10vh;   /* ← 上余白を追加 */
  }
}




/* 本文 */
.about-text{ max-width: 80ch; }
.about-text p{
  margin: 0 0 .9em;
  color: #fff;
}


/* 本文 */
.about-text02{ max-width: 80ch; }
.about-text02 p{
  margin: 0 0 .9em;
  color: #fff;
}



/* 共通：noteボタン（ヘッダーと同じ動き） */
.btn-noteimg{
  display:inline-flex; align-items:center; justify-content:center;
  transition: transform .18s ease, filter .18s ease;
}
.btn-noteimg img{
  height:auto; max-height:56px; display:block;
  transition: transform .18s ease, filter .18s ease;
}
.btn-noteimg:hover{
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
}

/* About内の配置・余白 */
.about-cta{
  margin-top: clamp(16px, 3vw, 28px);
  display: flex;
  justify-content: center;
}

/* SPでは中央寄せ */
@media (max-width: 980px){
  .about-cta{ 
    margin-top: 20px;
    justify-content: center;   /* スマホでは中央寄せ */
  }
  .about-cta .btn-noteimg img{ max-height: 64px; } /* 少しだけ大きく見せたい場合 */
}

/* 低モーション配慮 */
@media (prefers-reduced-motion: reduce){
  .btn-noteimg, .btn-noteimg img{ transition: none !important; }
}






/* ================== SP（背景差し替え & 位置調整） ================== */
@media (max-width: 980px){
  .section-about{
    /* SP用背景PNGに切り替え */
    background-image: url("../img/about_bg_sp.png");
    /* 「横幅100%厳守」なら 100% auto / 全面フィットなら cover / 全体表示なら contain */
    background-size: 100% auto;
    min-height: 70vh;

    /* 食い込み量を少し控えめに（必要に応じて調整） */
    --about-overlap: 60vh;
    margin-top: calc(-1 * var(--about-overlap));
  }
	
  .section-about02{
    /* SP用背景PNGに切り替え */
    background-image: url("../img/about_bg_sp02.png");
    /* 「横幅100%厳守」なら 100% auto / 全面フィットなら cover / 全体表示なら contain */
    background-size: 100% auto;
    min-height: 70vh;
  }	
	
	
	

  .section-about .about-inner{
    /* 中身の位置もSP用に微調整 */
    --about-pad-top: 25vh;
    --about-pad-bottom: 10vh;
    justify-items: center;                  /* センター寄せ */
    text-align: center;
  }

  .about-text{ max-width: 36em; }
}

/* 低モーション配慮 */
@media (prefers-reduced-motion: reduce){
  .about-title img{ transition: none; }
}


.news {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #aaa;
}

.news-item {
  border-bottom: 1px solid #aaa;
}

.news-item a {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  text-decoration: none;
  color: #333;
}

.news-date {
  position: relative;
  padding-left: 18px;
  font-weight: 600;
}

.news-date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #333;
}

.news-text {
  margin: 0;
  line-height: 1.8;
}

/* スマホ */

@media (max-width: 768px) {

  .news-item a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

}



/* ===== Location Section ===== */
.section-location {
  position: relative;
  width: 100%;
  background: transparent;
  overflow: hidden; /* 背景がはみ出す場合に対応 */
  padding: 80px 0;  /* 上下余白 */
  z-index: 0;  /* About の下に敷く */
}

/* 左端の背景PNG */
.location-bg {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: auto;
  height: 100%;
  z-index: -1; /* 背景として背面に */
}
.location-bg img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* 中身 */
.location-inner {
  width: min(100% - 32px, 1000px);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
}

/* H2タイトル画像 */
.location-title img {
  width: clamp(260px, 90%, 600px); /* SPでは小さめ、PCは最大600px */
  height: auto;
  display: block;
  margin: 0 auto;
  z-index: 10 ;
}

/* テキスト部分 */
.location-text {
  max-width: 90ch;      /* 横幅は制限 */
  margin: 0;            /* 左右autoを解除 */
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-fg);
  text-align: center;     /* 明示的に中央 */
  z-index: 10 ;
}


/* スマホ調整 */
@media (max-width: 980px) {
  .section-location { padding: 60px 0; }
  .location-text { max-width: 90%; font-size: 0.95rem; }
}






/* ===== Access base ===== */
.section-access{
  background: transparent;
  padding: clamp(48px, 6vw, 96px) 0;
  position: relative;
}

.access-inner{
  width: min(100% - 32px, var(--container-w));
  margin-inline: auto;
}

/* 2カラム（SPは1カラム） */
.access-grid{
  display: grid;
  grid-template-columns: 1fr;   /* SPは1カラム（縦積み） */
  gap: 24px;                    /* SP時の余白 */
  align-items: start;
}

@media (min-width: 980px){
  .access-grid{
    grid-template-columns: 1fr 1.5fr; /* 右を広めにして画像を大きく */
    gap: clamp(24px, 3vw, 40px);      /* 隙間を縮める */
    align-items: center;              /* 上下中央揃え */
  }
}


/* 左：タイトル + 3カード */
.access-title{
  margin: 0 0 clamp(12px, 2vw, 20px);
  text-align: left; /* ← 左寄せに変更 */
}

.access-title img{
  display: block;
  max-width: 707px;  /* 実寸以上にならないよう制御 */
  width: 80%;       /* 画面幅に応じて縮小はOK */
  height: auto;
}


.access-cards{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
}

.access-card figure{ margin: 0; }

.access-card img{
  width: min(85%, 560px);
  height: auto;
  display: block;
  margin: 0;                          /* ← 左寄せ */
  transition: transform .18s ease, filter .18s ease;
}

.access-card img:hover{
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.12));
}


/* 右：地図PNG */
.access-right{
  display: grid;
  place-items: center;       /* 横・縦とも中央 */
  min-height: 100%;          /* 親の高さに合わせる（中央寄せを効かせる） */
}

.access-right img{
  width: min(95%, 960px);    /* ← 以前より大きく（840→960） */
  max-width: 100%;           /* 横幅いっぱいを超えない */
  height: auto;
  display: block;
  object-fit: contain;
}


/* 低モーション環境 */
@media (prefers-reduced-motion: reduce){
  .access-card img{ transition: none !important; }
}
/* テキスト部（H2の下） */
.access-lead{
  margin: 0 0 clamp(20px, 3vw, 32px);
  text-align: left;
  max-width: 52ch;
}
.access-lead p{
  color: var(--c-fg);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  margin: 0;
}

/* スマホでは中央寄せ */
@media (max-width: 980px){
  .access-lead{
    text-align: center;
    margin-inline: auto;
  }
  .access-title{
    text-align: center;
  }
  .access-title img{
    margin: 0 auto;              /* 中央寄せ */
    width: clamp(220px, 60%, 420px); /* 小さめに制御 */
  }

  /* カード：中央寄せ */
  .access-card img{
    margin-inline: auto;  /* 左寄せから中央寄せへ変更 */
    width: min(65%, 420px); /* スマホでは幅を抑える */
  }
}







/* ===== Municipalities ===== */
.section-munis{
  background: transparent;
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.munis-inner{
  width: min(100% - 32px, var(--container-w));
  margin-inline: auto;
}

/* グリッド：SP=1カラム / タブレット以上=2カラム */
.muni-grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;                      /* default: 1col */
  gap: clamp(60px, 8vw, 120px) clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (min-width: 640px){                         /* タブレット以上で2列 */
  .muni-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* カード */
.muni-card{ display: grid; gap: clamp(10px, 1.6vw, 14px); }
.muni-figure{ margin: 0; }
.muni-figure img{
  width: 100%; height: auto; display: block;
}

/* 説明文：PCは行幅を絞って読みやすく */
.muni-desc{
  margin: 0;
  color: var(--c-fg);
  line-height: 1.85;
  max-width: 64ch;                   /* 横に伸びすぎない */
}

/* 注釈：右詰め（SPでも右に寄せる） */
.muni-note{
  margin: clamp(12px, 2.4vw, 20px) 0 0;
  text-align: right;
  color: var(--c-muted);
  font-size: clamp(12px, 1.3vw, 14px);
}

/* 背景模様（右下固定） */
.muni-bg{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;                     /* コンテンツの後ろに敷く */
}
.muni-bg img{
  display: block;
  width: min(40vw, 480px);         /* PCでほどよい大きさ */
  height: auto;
  opacity: 0.9;                    /* 薄く見せたい場合 */
  pointer-events: none;            /* クリック無効 */
}

/* SP用サイズ調整 */
@media (max-width: 640px){
  .muni-bg img{
    width: 70vw;
  }
}









/* ===== Gallery base ===== */
.section-gallery{
  background: transparent;
  padding: 0; /* 余白なしでOK。必要なら上だけ足す */
}

/* ビューポート（横スクロール領域） */
.gallery-viewport{
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;   /* スナップ */
  scroll-padding: 0;
}

/* スクロールバー（任意で細く/非表示風） */
.gallery-viewport::-webkit-scrollbar { height: 8px; }
.gallery-viewport::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 4px; }
.gallery-viewport { scrollbar-color: rgba(0,0,0,.15) transparent; scrollbar-width: thin; }

/* トラック：4枚を横一列に並べる（隙間ゼロ） */
.gallery-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 25%;         /* PC：1画面に4枚見せる */
  gap: 0;                         /* 隙間なし */
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 各スライド */
.gallery-slide{
  scroll-snap-align: start;       /* 先頭でパチッと止まる */
}
.gallery-slide img{
  display: block;
  width: 100%;
  height: auto;
  /* 角丸なし・影なし */
}

/* ブレークポイント
   タブレット：表示3枚 = 各スライド幅 33.333%（4枚は横に並んだまま） */
@media (max-width: 980px){
  .gallery-track{ grid-auto-columns: 33.3333%; }
}

/* スマホ：表示2枚 = 各スライド幅 50% */
@media (max-width: 640px){
  .gallery-track{ grid-auto-columns: 50%; }
}

/* 下のグリーン三角形（左右余白なし） */
.gallery-ribbon img{
  display: block;
  width: 100%;
  height: auto;
}

/* 2) スクロールバーを消す（主要ブラウザ） */
.gallery-viewport{
  /* Firefox */
  scrollbar-width: none;
}
/* WebKit系（Chrome/Safari/Edge） */
.gallery-viewport::-webkit-scrollbar{
  display: none; /* 完全非表示 */
}







/* ===== Features ===== */
.section-features {
  position: relative;
  background: transparent;
  width: 100%;
  padding: clamp(48px, 8vw, 96px) 16px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;  /* デフォルトは中央寄せ */
}

.features-title {
  margin: 0 0 clamp(20px, 4vw, 32px);
}
.features-title img {
  width: clamp(260px, 80%, 600px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.features-text {
  max-width: 90ch;
  margin: 0 auto;
  text-align: left;  /* 本文は左寄せ */
  line-height: 1.9;
  font-size: 1rem;
  color: var(--c-fg, #0f172a);
}
.features-text p {
  margin: 0 0 1.4em;
}





/* ===== Climate ===== */
.section-climate{
  position: relative;
  background: transparent;
  padding: clamp(48px, 7vw, 96px) 0;
  overflow: hidden; /* 背景装飾のはみ出し対策 */
}

/* 右端中央の淡い円形背景（PNG） */
.climate-bg{
  position: absolute;
  inset: 0;               /* いったん全体をクリック不可領域に */
  pointer-events: none;
}
.climate-bg img{
  position: absolute;
  right: 0;               /* 右端に固定 */
  top: 50%;               /* 中央寄せ */
  transform: translateY(-50%);
  max-width: 100%;        /* セクション幅を超えない */
  max-height: 100%;       /* セクション高さを超えない */
  width: auto;            /* 比率維持 */
  height: auto;
  opacity: .9;
  object-fit: contain;    /* 収まり優先で縮小 */
}


/* 2カラムレイアウト */
.climate-inner{
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* 左をやや広めに */
  gap: clamp(24px, 3.6vw, 48px);
  align-items: start;
  position: relative; /* 背景装飾の上に出す */
  z-index: 1;
}

/* 左カラム */
.climate-left{ display: grid; gap: clamp(16px, 2vw, 24px); }
.climate-title{ margin: 0; }
.climate-title img{
  width: clamp(220px, 40vw, 449px); /* 実寸449pxを上限に小さめ調整 */
  height: auto;
  display: block;
}

.climate-text{
  max-width: 90ch;
  margin: 0;               /* 左寄せ */
  text-align: left;
  line-height: 1.9;
  color: var(--c-fg, #0f172a);
}

/* 表 */
.climate-caption{
  caption-side: top;
  text-align: left;
  margin-bottom: 12px;
}

.climate-caption{
  caption-side: top;
  text-align: left;
  margin-bottom: 12px;
}

.climate-caption img{
  width: 220px;   /* ← 後で調整しやすい */
  height: auto;
  display: block;
}


.climate-source{
  text-align: right;
  font-size: 13px;
  margin-top: 6px;
  color: #444;
}

.climate-source02{
  text-align: right;
  font-size: 15px;   /* 少し大きく */
  margin-top: 6px;
  color: #007B18;
  font-weight: 700; /* 太字 */
}


.climate-table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.climate-table{
  border-collapse: collapse;
  min-width: 720px; /* スマホで横スクロール可に */
  background: rgba(255,255,255,0.9);
}
.climate-table caption{
  caption-side: top;
  text-align: left;
  font-weight: 700;
  color: var(--c-fg, #0f172a);
  margin-bottom: .5em;
}
.climate-table th,
.climate-table td{
  border: 2px solid #2e5235;   /* 線色はお好みで */
  padding: .55em .7em;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.climate-table thead th{
  background: #92d285;         /* 見出しの淡い緑 */
}
.climate-table tbody th{
  text-align: left;
  background: #bfe8b7;         /* 地点名の列 */
}

/* 右カラム：円形PNG（画像自体が円形に切り抜き済み） */
.climate-photo{
  margin: 0;
  align-self: start;
}
.climate-photo img{
  display: block;
  width: 100%;
  height: auto;
}

/* SP：1カラム（右画像は下段へ） */
@media (max-width: 980px){
  .climate-inner{
    grid-template-columns: 1fr;
  }
  .climate-photo{
    order: 2;              /* 画像を最後に */
    justify-self: center;  /* 中央寄せ（任意） */
    max-width: 520px;
  }
  .climate-title img{
    width: clamp(220px, 60vw, 449px); /* タイトルは少し小さめに */
  }
  .climate-bg img{
    right: -10vw;
    width: 80vw;
    opacity: .8;
  }
}

@media (max-width: 768px) {
  .climate-bg {
    display: none;
  }
}






/* ===== くらしQ&A（画像＋テキスト3本） ===== */
.section-living{
  position: relative;
  background: transparent;
  padding: clamp(56px, 8vw, 112px) 0;
  overflow: visible; /* 背景や左側の自由配置がはみ出しても切れない */
}

/* コンテナ */
.living-inner{
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
  position: relative;
  z-index: 1; /* 背景より前面 */
}

/* 左上の淡い円形背景：常に見切れにくいよう大きめ＆負オフセット */
.living-bg{
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.living-bg img{
  position: absolute;
  left: max(-14vw, -160px);  /* 画面が狭くても切れにくい */
  top:  max(-12vw, -120px);
  width: clamp(420px, 48vw, 820px);
  height: auto;
  opacity: .95;              /* 必要なら薄く（.6〜.95） */
}

/* 2カラムグリッド：左=写真自由配置 / 右=テキスト */
.living-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

/* 左：自由配置エリア */
.living-photos{
  position: relative;
  min-height: 76vh; /* 写真を置く舞台。高さは画像量で調整してOK */
}
.living-photo{
  position: absolute;
  left: var(--left, 0);  /* ← 各figureのstyleで調整可能 */
  top:  var(--top,  0);
  width: var(--w, clamp(220px, 28vw, 360px));
  margin: 0;
}
.living-photo img{
  display: block;
  width: 100%;
  height: auto;
}

/* 右：H3(PNG) + テキスト */
.living-list{
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  z-index: 50;
}
.living-item{ display: grid; gap: 8px; }
.living-title{ margin: 0; }
/* H3タイトル画像の高さを揃える */
.living-title img {
  display: block;
  height: 56px;       /* ← 高さを固定（例: 48px） */
  width: auto;        /* 幅は自動計算され比率維持 */
  object-fit: contain;
}

.living-text{
  margin: 0;
  color: var(--c-fg, #0f172a);
  line-height: 1.9;
  max-width: 72ch; /* 読みやすさのため行幅制限 */
}

/* ===== レスポンシブ ===== */
@media (max-width: 980px){
  .living-grid{
    grid-template-columns: 1fr;              /* タブレット以下は1カラム */
    gap: clamp(28px, 6vw, 48px);             /* 全体の間隔を少し広めに */
  }

  .living-photos{ display: none; }           /* 左の画像群は非表示 */

  /* 右カラム内のブロック間隔を広げる */
  .living-list{ gap: clamp(28px, 6vw, 40px); }

  /* 各ブロックの上下余白を広めに。左寄せはデフォでOKだが明示しておく */
  .living-item{
    gap: clamp(10px, 2.5vw, 14px);
    padding-bottom: clamp(24px, 6vw, 36px);
    text-align: left;
  }

  /* H3画像は高さ基準で統一（比率維持） */
  .living-title{ margin: 0; }
  .living-title img{
    height: 44px;            /* ← 統一したい高さ（お好みで調整可） */
    width: auto;             /* 比率維持 */
    max-width: 100%;         /* コンテナからはみ出さない */
    object-fit: contain;
    display: block;
  }

  /* テキストは横幅制限を解除＆左寄せ */
  .living-text{
    max-width: 100%;
    text-align: left;
  }
}

/* スマホ（より狭い幅）でさらに余白/サイズを微調整したい場合 */
@media (max-width: 640px){
  .living-list{ gap: clamp(32px, 8vw, 44px); }
  .living-item{ padding-bottom: clamp(28px, 8vw, 48px); }
  .living-title img{ height: 40px; }  /* 端末が小さい時は少しだけ小さめに */
}

/* 低モーション配慮（将来アニメ追加時の保険） */
@media (prefers-reduced-motion: reduce){
  .living-photo,
  .living-title img{ transition: none !important; }
}





/* ===== Base ===== */
.section-info{
  position: relative;
  background: transparent;
  padding: clamp(56px, 8vw, 112px) 0;
  overflow: visible;                 /* 画像の自由配置でのはみ出し許容 */
}
.info-inner{
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* 右下の淡い円形背景（見切れにくい負オフセット） */
.info-bg{ position:absolute; inset:0; pointer-events:none; z-index:0; }
/* 右下の淡い円形背景（画面内に収める） */
.info-bg--rb img {
  position: absolute;
  right: 0;              /* ← はみ出し防止 */
  bottom: 0;             /* 右下に固定 */
  width: clamp(320px, 36vw, 640px); /* 少し小さめに調整 */
  height: auto;
  object-fit: contain;
  opacity: .95;
  max-width: 100%;       /* セーフティ：画面幅を超えない */
}


/* 左右2カラム（左=本文 / 右=写真ブロック） */
.info-grid{
  display: grid;
  grid-template-columns: 1fr 1.05fr; /* 右やや広めでもOKなら 1fr 1.1fr に */
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

/* 左：本文 */
.info-body{ display: grid; gap: clamp(28px, 4vw, 44px); }
.info-item{ display: grid; gap: clamp(10px, 2vw, 14px); }

.info-title{ margin: 0; }
.info-title img{
  display: block;
  height: 56px;           /* ← PC/タブレットで高さ固定（比率維持） */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.info-text{
  margin: 0;
  line-height: 1.9;
  color: var(--c-fg, #0f172a);
  max-width: 74ch;
}

/* 右：画像ブロック（自由配置） */
.info-photos{
  position: relative;
  min-height: 78vh;        /* 舞台の高さ。画像数に応じて調整 */
}
.info-photo{
  position: absolute;
  left: var(--left, 0);     /* ← 各figureのstyleで微調整 */
  top:  var(--top,  0);
  width: var(--w, clamp(240px, 32vw, 520px));
  margin: 0;
}
.info-photo img{
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .info-grid{ grid-template-columns: 1fr; gap: clamp(28px, 6vw, 44px); }
  .info-photos{ display: none; }     /* SPでは右側の画像ブロックを非表示 */

  .info-body{ gap: clamp(32px, 7vw, 52px); }
  .info-item{ gap: clamp(12px, 3vw, 16px); }
  .info-title img{ height: 44px; }   /* スマホ時のH3高さ統一 */
  .info-text{ max-width: 100%; }
}

/* 低モーション配慮（将来のアニメ対策） */
@media (prefers-reduced-motion: reduce){
  .info-photo,
  .info-title img{ transition: none !important; }
}







/* ===== Orange Section ===== */
.section-orange {
  position: relative;
  width: 100%;
  overflow: hidden; /* 横にはみ出さない */
}

.orange-bg img {
  width: 100%;      /* 横幅いっぱい */
  height: auto;     /* アスペクト比を維持 */
  display: block;   /* 余計な余白をなくす */
  object-fit: cover;
}







/* ===== Support Programs ===== */
.section-support{
  position: relative;
  background: transparent;
  padding: clamp(56px, 8vw, 112px) 0;
  overflow: hidden; /* 背景のはみ出しを隠す */
}
.support-inner{
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* 背景の淡い円形（見切れ防止で0基準） */
.support-bg{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.support-bg img{
  position:absolute; height:auto; object-fit:contain; opacity:.95;
}
.support-bg--lt img{
  left: max(-6vw, -64px);
  top:  max(-6vw, -64px);
  width: clamp(420px, 42vw, 780px);
}
.support-bg--rb img{
  right: max(-6vw, -64px);
  bottom:max(-6vw, -64px);
  width: clamp(420px, 42vw, 780px);
}

/* タイトル（画像） */
.support-title{ margin: 0 0 clamp(16px, 2.4vw, 24px); text-align: center; }
.support-title img{
  display:block; height: clamp(48px, 9vw, 120px); width:auto; margin: 0 auto;
  object-fit: contain;
}



/* リード文 */
.support-lead{
  margin: 0 auto clamp(28px, 4vw, 44px);
  max-width: 90ch;
  color: var(--c-fg, #0f172a);
  line-height: 1.9;
  padding: clamp(12px, 2vw, 16px);
  border-radius: 12px;
}

/* グリッド（PC/Tab=4列、SP=2列） */
.support-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
  list-style:none; margin: 0; padding: 0;
}

/* カード（画像だけのバナー） */
.support-card{ margin: 0; }
.support-link{
  display:block; border-radius: 18px; overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  box-shadow: 0 6px 24px rgba(15,23,42,.08);
  will-change: transform;
}
.support-link img{
  display:block; width:100%; height:auto; object-fit: cover;
}

/* ホバー/フォーカス（クリック誘導） */
.support-link:hover,
.support-link:focus-visible{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(15,23,42,.18);
  outline: none;
}

/* スマホ：2列×2段 */
@media (max-width: 640px){
  .support-title img{ height: 84px; }
  .support-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* 低モーション配慮 */
@media (prefers-reduced-motion: reduce){
  .support-link{ transition: none !important; }
}




/* ===== Green Background Section ===== */
.section-green {
  position: relative;
  width: 100%;
  overflow: hidden; /* 横にはみ出さない */
}

.green-bg img {
  width: 100%;      /* 横幅いっぱい */
  height: auto;     /* アスペクト比を維持 */
  display: block;   /* 余計な余白をなくす */
  object-fit: cover;
}





/* ===== Desk base ===== */
.section-desk{
  position: relative;
  background: transparent;
  padding: clamp(56px, 8vw, 120px) 0;
  overflow: hidden; /* 背景はみ出し防止 */
}
.desk-inner{
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* 背景の円形PNG（見切れずに端寄せ、実寸を超えない） */
.desk-bg{ 
  position:absolute; 
  inset:0; 
  pointer-events:none; 
  z-index:0; 
  overflow:hidden;
}
.desk-bg img{
  position:absolute;
  width: 100%;         /* ビューポート幅基準で可変 */
  max-width: 480px;    /* ← 画像の実寸に制限（例: 実寸780pxならここを設定） */
  height:auto;
  object-fit:contain;
  opacity:.95;
}

/* 右上配置 */
.desk-bg--rt img{ 
  right:0;
  top:0;
}

/* 左下配置 */
.desk-bg--lb img{ 
  left:0;
  bottom:0;
}



/* タイトル（画像H2） */
.desk-title{ margin: 0 0 clamp(16px, 2.4vw, 28px); text-align:center; }
.desk-title img{
  display:block; height: clamp(56px, 9vw, 128px); width:auto; margin: 0 auto;
  object-fit: contain;
}

/* 説明テキスト */
.desk-intro{
  margin: 0 auto clamp(28px, 4vw, 40px);
  max-width: 78ch;
  color: var(--c-fg, #0f172a);
}

/* グリッド：PC/タブレット=2列、SP=1列 */
.desk-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

/* ===== カード ===== */
.desk-card{
  background: #fff;
  border: 4px solid #116C45;          /* 緑の枠線 */
  border-radius: 18px;

  /* 上下はそのまま、左右を広めに */
  padding: clamp(14px, 1.8vw, 18px) clamp(20px, 3vw, 32px);

  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.desk-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,23,42,.12);
}
.desk-card:focus-within{
  outline: 3px solid #0ea5e9;
  outline-offset: 3px;
}


/* H3（画像）— 中央揃え */
.desk-card__h3{ margin: 0 0 10px; text-align:center; }
.desk-card__h3 img{
  display:block;
  margin: 0 auto;                    /* 左右中央 */
  height: clamp(40px, 7vw, 64px);
  width:auto;
  object-fit:contain;
}

/* 担当 */
.desk-card__dept{
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 1.4rem;      /* ← 一回り大きく */
  text-align: center;
  color: #116C45;         /* ← 指定色に */
}

/* 写真 */
.desk-card__photo{ margin: 0 0 12px; }
.desk-card__photo img{
  display:block; width:100%; height:auto; border-radius: 12px;
}

/* メタ情報（住所・TEL） */
.desk-card__meta{
  margin: 0 0 14px;
  font-size: 1.2rem;     /* ← 一回り大きく */
  line-height: 1.6;
  color: #116C45;         /* ← 指定色に */
}
.desk-card__meta .addr{ margin: 0 0 6px; }
.desk-card__meta .tel a{
  color: #116C45;         /* ← リンクも統一 */
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* TEL と ボタンを横並び */
.desk-card__footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap; /* SP で折り返し */
}
.desk-card__footer .tel{
  margin: 0;
  color: #116C45;
  font-weight: 600;
  font-size: 1.4rem;   /* ← 追加 */
}
.desk-card__footer .tel a{
  color: #116C45;
}

/* CTAボタン（ホバーでぷにっと） */
.btn-ghost{
  display:inline-block;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 2px solid #116C45;
  color: #116C45;
  font-weight: 700;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-ghost:hover{
  transform: translateY(-2px);
  background: #116C45;
  color:#fff;
  box-shadow: 0 10px 24px rgba(17,108,69,.25);
}
.btn-ghost:focus-visible{
  outline: 3px solid #0ea5e9;
  outline-offset: 3px;
}

/* ===== Responsive ===== */
@media (max-width: 640px){
  .desk-title img{
    width: 90%;          /* 画面幅の90%まで広げる */
    max-width: none;     /* 実寸制限を外す */
    height: auto;        /* アスペクト比を維持 */
    margin: 0 auto;      /* 中央寄せ */
  }
  .desk-grid{ grid-template-columns: 1fr; }   /* SPは1列 */

  /* フッター内を中央寄せ */
  .desk-card__footer{
    gap: 16px;
    justify-content: center;    /* 中央にまとめる */
  }
  .desk-card__footer .tel{
    text-align: center;
  }
}

/* ===== 横長の相談窓口バー ===== */
.desk-wide-list{
  display: grid;
  gap: 24px;
  margin: clamp(24px, 4vw, 40px) 0;
}

.desk-wide-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 36px;
  background: #ffffff;
  border: 5px solid #116C45;
  border-radius: 22px;
  box-sizing: border-box;
}

.desk-wide-card__main{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.desk-wide-card__title{
  margin: 0;
  color: #116C45;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.3;
  white-space: normal;
  flex: 1;
  min-width: 0;
}

.desk-wide-card__tel{
  margin: 0;
  color: #116C45;
  font-weight: 500;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.3;
  white-space: nowrap;
}

.desk-wide-card__tel a{
  color: #116C45;
  text-decoration: none;
}

.desk-wide-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 258px;
  padding: 18px 28px;
  border-radius: 9999px;
  background: #116C45;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.desk-wide-card__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17,108,69,.22);
}


.desk-wide-banner{
  display: grid; /* ← これがないのが原因 */
  grid-template-columns: repeat(2, 1fr); /* PCは2列 */
  gap: clamp(12px, 2vw, 20px);
}

/* 画像 */
.desk-wide-banner img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px; /* 任意 */
  transition: opacity 0.3s ease;
}

/* ホバー効果（任意） */
.desk-wide-banner a:hover img{
  opacity: 0.8;
}

/* スマホは1列 */
@media (max-width: 768px){
  .desk-wide-banner{
    grid-template-columns: 1fr;
  }
}

/* ===== SP調整 ===== */
@media (max-width: 900px){
  .desk-wide-card,
  .desk-wide-card__main{
    flex-direction: column;
    align-items: center;   /* ← ここ変更（中央寄せ） */
    text-align: center;    /* ← テキストも中央 */
  }

  .desk-wide-card__title,
  .desk-wide-card__tel{
    white-space: normal;
  }
}

@media (max-width: 640px){
  .desk-wide-card{
    padding: 18px 20px;
    gap: 16px;
  }

  .desk-wide-card__main{
    gap: 10px;
  }

  .desk-wide-card__title,
  .desk-wide-card__tel{
    font-size: 1.6rem;
  }

  .desk-wide-card__btn{
    width: 100%;
    min-width: 0;
    font-size: 1.4rem;
    padding: 14px 20px;
  }
}



/* ===== Footer base ===== */
.site-footer{
  background: #F9FFA2;
  color: #535353;
}

.footer-inner{
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) 0;
}

/* 1カラム中央寄せ */
.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.footer-left{
  text-align: center;
  max-width: 720px;
}

/* ロゴ */
.footer-logo img{
  display: block;
  width: clamp(160px, 36vw, 320px);
  height: auto;
  margin: 0 auto clamp(12px, 2vw, 20px);
}

.footer-lead{
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: .02em;
  color: #535353;
}

.footer-org{
  margin: 0 0 .7em;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 800;
  color: #535353;
}

.footer-addr{
  margin: 0 0 .6em;
  font-style: normal;
  line-height: 1.8;
  color: #535353;
}

.footer-contact{
  margin: .2em 0 0;
  line-height: 1.9;
  color: #535353;
}

.footer-contact .label{
  font-weight: 700;
  color: #535353;
}

.footer-contact a{
  color: #535353;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover{
  opacity: .9;
}

/* コピーライト帯 */
.footer-copy{
  background: #106B46;
  color: #fff;
  text-align: center;
  padding: 14px 12px;
}

.footer-copy p{
  margin: 0;
  letter-spacing: .02em;
  font-size: clamp(12px, 1.8vw, 14px);
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;   /* 縦並び */
  }
  .footer-logo{ text-align: center; }
  .footer-logo img{ margin-left: auto; margin-right: auto; }
  .footer-map{ width: 100%; }     /* 幅を保って中央 */
}


/* コピーライト帯 */
.footer-copy{
  background: #106B46;
  color: #fff;
  text-align: center;
  padding: 14px 12px;
}
.footer-copy p{
  margin: 0;
  letter-spacing: .02em;
  font-size: clamp(12px, 1.8vw, 14px);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;   /* 縦並び */
  }
  .footer-logo{
    display: block;
    text-align: center;
  }
  .footer-logo img{
    margin-left: auto;
    margin-right: auto;           /* センター */
  }
  .footer-map{
    order: 2;                     /* 情報→地図の順 */
  }
}











