/* =========================
   nukumori yoga - style.css
   ========================= */

/* ===== Base ===== */
:root{
  --text: #2b2b2b;
  --muted: #9aa7b2;
  --line: #e6eaee;
  --accent: #87b5d6;     /* ナビ下線 */
  --bg-muted: #fbfcfd;

  /* 帯（見出しカード） */
  --band-bg: rgba(246, 239, 220, 0.65);
  --band-border: rgba(210,190,170,0.35);
  --band-shadow: 0 18px 40px rgba(0,0,0,0.06);
  --band-radius: 18px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* 固定ヘッダー分 */
}

body{
  margin: 0;
  padding-top: 84px; /* 固定ヘッダー分  */
  font-family: 'Zen Old Mincho', serif;
  color: var(--text);
  line-height: 1.8;
  background: #fff;
}

:root{ --header-h: 84px; }

body{ padding-top: var(--header-h); }

@media (max-width: 860px){
  :root{ --header-h: 120px; }  /* 2段ヘッダー想定 */
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
　word-break: keep-all;
  overflow-wrap: anywhere;
}

/* ナビ/ボタンなどは読みやすく sans */
.gnav,
button,
.news-list,
input,
textarea,
select{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ===== Header ===== */
.site-header{
  border-bottom: 1px solid var(--line);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.header-inner{
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo{
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .02em;
}

.gnav-list{
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gnav-link{
  position: relative;
  display: inline-block;
  padding: 6px 2px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.gnav-link.is-active::after,
.gnav-link:hover::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

/* ===== Hero slider ===== */
.hero{
  position: relative;
  overflow: hidden;
}

.hero-slides{
  position: relative;
  height: 560px;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active{
  opacity: 1;
  z-index: 1;
}

/* クリックを邪魔しない */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.35));
  z-index: 1;
  pointer-events: none;
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline: 72px;
}

.hero-content--left{
  justify-content: flex-start;
/*   padding-left: clamp(60px, 6vw, 160px); */
  margin:-30px 0 0 20px;
}

.hero-content--left .hero-catch{
  transform: translateX(-35px);
}

.hero-catch{
  margin: 0;
  color: #fff;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.5),
    0 4px 24px rgba(0,0,0,0.4);
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: .02em;
  line-height: 1.35;
}

.hero-sub{
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: clamp(16px, 2.0vw, 28px);
  opacity: .92;
}

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.hero-arrow--left{ left: 20px; }
.hero-arrow--right{ right: 20px; }

.hero-arrow:hover{
  background: rgba(255,255,255,.35);
}

/* ===== Sections ===== */
.section{
  padding: 90px 0;   /* ←通常値に復旧 */
  text-align: left;
  margin: 0;
}

/* 帯があるセクションは、帯の上を少し詰めたいなら個別に調整 */
#access.section,
#contact-page.section,
#reserve.section{
  padding-top: 40px;     /* ここを 24〜56px で調整 */
}

.section--muted{
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 0;  /* ←重なりの原因を消す */
}

/* ===== 通常の見出し（下線タイプ） ===== */
.section-title{
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 800;
  font-size: clamp(22px, 2.3vw, 40px);
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 18px;
  display: inline-block;   /* ←文字幅にする */
  width: fit-content;      /* 念のため */
}

.section-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: clamp(310px, 18vw, 240px);
  background: var(--accent);
  opacity: .9;
  width:100%;
}

.brand{
  color: var(--muted);
  font-weight: 800;
}

/* 改行位置固定 */
.about-title .line{ display: block; white-space: nowrap; }
/* 狭い画面でもはみ出さないように調整（任意） */
@media (max-width: 600px){
  .line{
    font-size: 18px;   /* 少し小さく */
  }
}
/* ===== 帯（料金/アクセスを統一） ===== */
.price-head,
.section-heading{
  width: min(1100px, 92%);
  margin: 0 auto 44px;
  padding: 34px 28px;
  border-radius: var(--band-radius);
  background: var(--band-bg);
  border: 1px solid var(--band-border);
  box-shadow: var(--band-shadow);
  text-align: center;
}

.price-title,
.section-heading .title{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: .06em;
  color: #8c7b6d;
}

.price-lead,
.section-heading .lead{
  margin: 0;
  color: #9a8b7e;
  font-size: 14px;
  line-height: 1.8;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

.price-unit{
  margin-top: 6px;
  font-size: 14px;
  color: #7f8f9a;
}

/* ===== split（悩み/コンセプト） ←ここが“板”の本体：統一版 ===== */
.split{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}

.split--reverse{
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-text{
  min-width: 0; /* 縮めても重ならない定番 */
  width: 100%;
}

.dot-list{
  margin: 0;
  padding-left: 1.2em;
  color: #7f8f9a;
  font-size: 18px;
  font-weight: 600;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

.dot-list li{ margin: 16px 0; }

.check-list{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  color: #7f8f9a;
  font-size: 18px;
  font-weight: 700;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

.check-list li{
  margin: 14px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li::before{
  content: "✓";
  color: #2b2b2b;
  font-weight: 900;
  line-height: 1;
  margin-top: 4px;
}

/* 画像＋板 */
.split-media{
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 520px;     /* ←以前の“程よいサイズ感” */
  margin: 0 auto;
  display: inline-block;
}

.split-media::before,
.split-media::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
}

.split-media::before{
  background: #f7f2eb;
  transform: translate(40px, 40px);
  z-index: 0;
}

.split-media::after{
  background: #efe7dc;
  transform: translate(20px, 20px);
  z-index: 1;
}
/* 追加：写真の上に膜を置く */
.split-media .photo-overlay{ display:none; } /* 使わない場合の保険 */

.split-media img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
　
}

/* 反転（左に板が出る） */
.split--reverse .split-media::before{
  transform: translate(-40px, 40px);
}
.split--reverse .split-media::after{
  transform: translate(-20px, 20px);
}

/* 写真の主張を抑える（ベージュ膜＋トーン調整） */
.split-media__img{
  position: relative;
  border-radius: 18px;
  overflow: hidden; /* 角丸内に膜を収める */
}

.split-media--soft .split-media__img::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(239, 231, 220, 0.28); /* ベージュ膜：濃さはここ */
  mix-blend-mode: multiply;              /* なじませる */
  pointer-events:none;
  z-index: 3;                            /* imgより上 */
}

.split-media--soft img{
	-webkit-filter: saturate(0.70) contrast(0.92) brightness(1.04);
  filter: saturate(0.70) contrast(0.92) brightness(1.04);
  /* ↑効果が薄いなら saturate(0.70) まで下げるのが一番効く */
}

/* ===== Price cards ===== */
.price-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.price-card{
  background: #fff;
  padding: 42px 34px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(200,180,160,0.15);
  box-shadow:
    0 18px 40px rgba(120,90,60,0.08),
    0 4px 10px rgba(120,90,60,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(120,90,60,0.12),
    0 6px 16px rgba(120,90,60,0.06);
}

.price-card h3{
  margin: 0 0 16px;
  color: var(--muted);
}

.price-amount{
  font-size: 36px;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 10px 0 6px;
}

.price-amount span{
  font-size: 13px;
  font-weight: 700;
  color: #7f8f9a;
}

.price-desc{
  color: #7f8f9a;
  font-size: 14px;
}

.price-unit{
  font-size: 0.9rem;
  color: #6a8fa3;
  font-weight: 500;
}
/* 「【通常より1回500円お得】」を改行させない */
.price-save{
  white-space: nowrap;
}
.is-recommend{
  position: relative;
  border: 2px solid rgba(135,181,214,0.55);
}

.price-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #2b2b2b;
  background: rgba(135,181,214,0.25);
  border: 1px solid rgba(135,181,214,0.35);
  border-radius: 999px;
}

/* ===== 料金：帯の上余白調整（必要な時だけここを触る） ===== */
#price.section{
  padding-top: 40px;     /* ←ここを 24〜56px で調整 */
  padding-bottom: 90px;
}
#price .price-head{
  margin-top: 0;
}

/* ===== Access ===== */
.access-wrap{
  display: grid;
  gap: 32px;
  place-items: center;
  text-align: center;
}

#access img{
  width: min(1100px, 100%);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(120,90,60,0.12);
}

.access-note{
  margin-top: 12px;
  font-size: 13px;
  color: #a09284;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

.parking-badge{
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(230,210,190,0.6);
  border-radius: 999px;
  font-size: 13px;
  color: #6e5a4a;
}

/* ===== Buttons (GoogleMap / 送信ボタン 統一) ===== */
.access-btn,
.wpcf7 input[type="submit"]{
  background: #e9dfd3;
  color: #2b2b2b;
  border: none;
  border-radius: 999px;
  padding: 14px 40px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: .2s ease;
}

.access-btn:hover,
.wpcf7 input[type="submit"]:hover{
  filter: brightness(0.97);
}

/* 送信ボタンを中央寄せ */
.wpcf7 form p:last-of-type{
  text-align: center;
}

/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: #f6f8fa;
  text-align: center;
}

.footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

/* Instagramボタン */
.footer-instagram{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.footer-instagram:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ===== Back to top ===== */
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: #abb8c3;
  color: rgb(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index:9999;
}

.back-to-top:hover{ background: #567a8f; }

.back-to-top.is-show{
  opacity: 1;
  pointer-events: auto;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .split,
  .split--reverse{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-media{
    max-width: 560px;
  }

  /* 縦並び時は板のズレを少し小さく */
  .split-media::before{ transform: translate(18px, 18px); }
  .split-media::after{  transform: translate(9px, 9px);  }
  .split--reverse .split-media::before{ transform: translate(-18px, 18px); }
  .split--reverse .split-media::after{  transform: translate(-9px, 9px);  }
}

@media (max-width: 860px){
  body{ padding-top: 100px; }
  .header-inner{
    height: auto;
    padding: 16px 0;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .gnav-list{ gap: 18px; flex-wrap: wrap; }
  .hero-slides{ height: 420px; }
  .hero-content{ justify-content: center; text-align: center; padding-inline: 9px; }
  .hero-content--left{justify-content: center; padding-left: 0; }
  .hero-content--left .hero-catch{ transform: none; }

  .section{ padding: 64px 0; margin-top: -37px; }
  .price-head,
  .section-heading{ padding: 28px 20px; margin-top: 0; }
}
/* ===== HERO：スマホで文字が被らない＆改行が自然になるように ===== */
@media (max-width: 900px){
  .hero-slides{
    height: 420px;
  }

  .hero-content{
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    padding: 0 0 24px;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .hero-sub{
    display: block;
    margin-top: 8px;
    font-size: clamp(12px, 3.8vw, 15px);
    opacity: 0.95;
    font-weight: 700;
  }

  .hero-overlay{
    background: linear-gradient(
      rgba(255,255,255,0.25),
      rgba(255,255,255,0.55)
    );
  }

  .hero-arrow{
    top: 55%;
  }
}

  .hero-sub{
    display: block;
    margin-top: 0px;
    font-size: clamp(12px, 3.8vw, 15px);
    opacity: 0.95;
    font-weight: 700;
  }

  /* 画像が明るすぎて文字が読みにくい時の保険（必要なら） */
  .hero-overlay{
    background: linear-gradient(
      rgba(255,255,255,0.25),
      rgba(255,255,255,0.55)
    );
  }

  /* 矢印が文字カードに被るなら少し上へ */
  .hero-arrow{
    top: 55%;
  }

/* ===== Reserve page ===== */
#reserve .reserve-wrap{
  text-align: center;
  margin: 28px auto 46px;
}

#reserve .reserve-btn{
  display: inline-block;
  background: #e9dfd3;
  color: #2b2b2b;
  border: none;
  border-radius: 999px;
  padding: 14px 44px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}
/* 予約ページ：ヘッダー分の余白は最低限残す */
#reserve.section{
  padding-top: 40px;   /* 0をやめる */
}
@media (max-width: 600px){
  #reserve.section{
    padding-top: 50px; /* スマホは少し小さく */
  }
}

#reserve .reserve-btn:hover{
  filter: brightness(0.97);
}

#reserve .reserve-note{
  margin: 12px 0 0;
  font-size: 13px;
  color: #9a8b7e;
}

/* 注意事項をカード化 */
#reserve .reserve-notice{
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(200,180,160,0.18);
  border-radius: 18px;
  padding: 26px 26px;
  box-shadow: 0 18px 40px rgba(120,90,60,0.08);
}

#reserve .reserve-notice__title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #6e5a4a;
}

#reserve .reserve-list{
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.9;
　word-break: keep-all;
  overflow-wrap: anywhere;
}

#reserve .reserve-list li{
  color: #2b2b2b;
}
@media (min-width: 600px){
 margin-top: 50px;
}
/* スマホ微調整 */
@media (max-width: 600px){
  #reserve .reserve-notice{
    padding: 22px 18px;
  }
}
#reserve .section-heading{
  margin-top: 0;
}
.reserve-schedule{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto 0;

  border-radius: 20px;   /* ← ここが角丸 */
}
/* ===== Floating Reserve Button ===== */
.floating-reserve{
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #4d1a1a;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: 0.2s ease;
  z-index: 9998;
}

.floating-reserve:hover{
  transform: translateY(-2px);
  filter: brightness(0.95);
}
/* スマホ：2段ヘッダー分だけ本文を下げて重なり回避 */
/* @media (max-width: 600px){
  body{
    padding-top: 120px; /* ←ここを調整（80〜120pxくらい
  }
} */
/* ページID135（予約ページ）では予約ボタン非表示 */
.page-id-135 .floating-reserve{
  display: none !important;
}
/* ===== Contact Page ===== */

#contact-page .contact-page-wrap{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

#contact-page .contact-form-area{
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(120,90,60,0.08);
}

#contact-page .contact-info-area{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact-page .info-card{
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(120,90,60,0.08);
}

#contact-page .info-card h3{
  margin-bottom: 14px;
  font-size: 18px;
  color: #6e5a4a;
}

#contact-page .info-list{
  padding-left: 1.2em;
  line-height: 1.9;
}

#contact-page .info-note{
  font-size: 13px;
  color: #9a8b7e;
  margin-top: 10px;
}

#contact-page .faq-item{
  margin-bottom: 10px;
}

#contact-page .faq-item summary{
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 6px;
}

/* レスポンシブ */
@media (max-width: 900px){
  #contact-page .contact-page-wrap{
    grid-template-columns: 1fr;
  }
}

/* ===== News ===== */
.news-list{
  width: min(900px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-item{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;

  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);

  border: 1px solid rgba(200,180,160,0.15);
  box-shadow:
    0 18px 40px rgba(120,90,60,0.08),
    0 4px 10px rgba(120,90,60,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-item:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 48px rgba(120,90,60,0.11),
    0 6px 14px rgba(120,90,60,0.06);
}

.news-date{
  font-size: 12px;
  font-weight: 800;
  color: #9aa7b2;
  letter-spacing: .02em;
}

.news-title{
  font-weight: 700;
  color: #2b2b2b;
  line-height: 1.6;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

/* スマホは縦並び */
@media (max-width: 600px){
  .news-item{
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
/* ===== Single Post ===== */
.post-article{
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(200,180,160,0.15);
  box-shadow: 0 18px 40px rgba(120,90,60,0.08);
}

.post-back{
  text-align: center;
  margin-top: 22px;
}
/* ===== News pagination ===== */
.news-pagination{
  text-align: center;
  margin-top: 22px;
}

.news-pagination .page-numbers{
  display: inline-block;
  margin: 0 4px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #2b2b2b;
  background: rgba(246,239,220,0.65);
  border: 1px solid rgba(210,190,170,0.35);
  font-weight: 700;
  font-size: 14px;
}

.news-pagination .page-numbers.current{
  background: rgba(135,181,214,0.25);
  border-color: rgba(135,181,214,0.45);
}
/* セクション共通幅 */
.section-heading,
.news-list {
  width: min(900px, 92%);
  margin-left: auto;
  margin-right: auto;
}
.news-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-iconbtn svg{
  width:18px;
  height:18px;
  display:block;
}

.footer-iconbtn--insta{
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color:#fff;
  border: none;
}

.footer-iconbtn--line{
  background:#06C755; /* LINE green */
  color:#fff;
  border:none;
}

@media (max-width:600px){
  .footer-iconbtn{
    padding:9px 12px;
    font-size:12px;
  }
  .footer-iconbtn svg{
    width:16px;
    height:16px;
  }
}
/* 追従：予約ボタン（右下） */
.floating-reserve{
  right: 24px;
  bottom: 24px;
  z-index: 9998;
}
/* スマホでは少し詰める */
@media (max-width:600px){
  .floating-reserve{ right: 16px; bottom: 16px; }
  .back-to-top{ right: 16px; bottom: 84px; }
}
/* ===== Footer icon buttons: alignment fix ===== */
.footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
　width: 100%;
}

/* aタグを“ボタン”として安定させる */
.footer-iconbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;   /* ←文字を真ん中に */
  gap: 0px;

  /* 高さを確定してフォント差のズレを潰す */
  min-height: 44px;          /* iPhoneで押しやすい最低ライン */
  padding: 0 15px;           /* 上下は高さで吸収、左右だけ */

  line-height: 1;            /* ←ここが超重要（body 1.8の影響を遮断） */
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  /* フォントはナビと揃える（見た目のブレを減らす） */
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* spanの上下ズレ保険 */
.footer-iconbtn span{
  display: inline-block;
  line-height: 1;
}

/* SVGを使っている場合のズレ対策 */
.footer-iconbtn svg{
  width: 0px;
  height: 18px;
  display: block;            /* ←ベースライン由来のズレを消す */
  flex: 0 0 auto;
}

/* 色は今の設定を維持するならここは不要（あるなら残す） */
.footer-iconbtn--insta{ color:#fff; }
.footer-iconbtn--line{ color:#fff; }

@media (max-width: 600px){
  .footer-iconbtn{
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
}
.hero-content {
  text-align: center;
}

.hero-catch {
  text-align: center;
}

.hero-sub {
  display: block;
}

.footer-column{
  width: min(760px, 92%);
  margin: 48px auto 32px;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid rgba(200,180,160,0.16);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(120,90,60,0.08);
  text-align: center;
}

.footer-title{
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 800;
  color: #8c7b6d;
  letter-spacing: .06em;
}

.footer-column-list{
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.footer-column-list li{
  border-top: 1px solid #f1ede7;
}

.footer-column-list li:first-child{
  border-top: none;
}

.footer-column-list a{
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: #2b2b2b;
  transition: .2s ease;
}

.footer-column-list a:hover{
  opacity: 0.75;
}

.footer-date{
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: #a09284;
}

.footer-post-title{
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-column-more{
  margin-top: 8px;
  text-align: center;
}

.footer-column-more a{
  display: inline-block;
  background: #e9dfd3;
  color: #2b2b2b;
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s ease;
}

.footer-column-more a:hover{
  filter: brightness(0.97);
}

@media (max-width: 600px){
  .footer-column{
    margin: 36px auto 28px;
    padding: 22px 16px;
  }

  .footer-title{
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer-column-list a{
    padding: 12px 2px;
  }

  .footer-post-title{
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-column-more a{
    padding: 11px 24px;
    font-size: 14px;
  }
}