@charset "utf-8";
/* CSS Document */

@import url(ress.css);

/* --global----------------------------------------------- */


html {
  font-size: 14px;
  line-height: 36px;
}


.inner {
  max-width: 100%;
}

.column {
  flex-direction: column;
  align-items: center;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

/* 上のアイコン（SVGを画像で配置） */
.section-icon {
  display: inline-block;
  width: auto;
  height: 35px;
  /* 画像サイズは適宜調整 */
  margin: 0 auto 0;
}

.section-icon img {
  height: 100%;
  width: auto;
}

.section-title {
  font-family: "Kaisei Opti", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .02em;
  margin: 0 0 20px;
  color: #333;
}

/* 続きを見る ボタン（ pill + 右側に矢印の丸） */
.read-more_btn {
  display: inline-flex;
  width: 145px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* 文字と矢印の間隔 */
  padding: 6px 0px 6px 25px;
  border: 3px solid #FA35A7;
  /* ピンクの枠線 */
  border-radius: 9999px;
  /* 丸み */
  background-color: #fff;
  /* 背景白 */
  color: #555454;
  /* テキスト色 */
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more_btn img {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}


/* **************************************************************
	header
*************************************************************** */

#header {
  padding: 12px 16px;
}

.header-inner {
  margin: 0 auto;
  align-items: center;
    gap: 15px;

}

/* PCナビは隠す */
.header-nav {
  display: none;
}

/* ロゴ少し小さめ */
.header-logo img {
  width: 100px;
}

/* SP「お問い合わせ」：ピンクアウトラインの丸角ボタン */
.sp-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid #FA35A7;
  color: #FA35A7;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: #fff;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
}

/* ハンバーガー：右端のピンク丸 */
.hamburger {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #EA4DA0;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* 3本線 */
.hamburger span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

/* 3本線の初期位置 */
.hamburger span:nth-child(1) {
  top: 18px;
}

.hamburger span:nth-child(2) {
  top: 26px;
}

.hamburger span:nth-child(3) {
  top: 34px;
}

/* 開いた時（×に変形） */
.hamburger.is-active span:nth-child(1) {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 26px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ====== SPメニュー（オーバーレイ） ====== */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 2001;
  pointer-events: none;
}

/* メニューOPEN中はハンバーガーを非表示 */
body.menu-open .hamburger {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* グレー半透明の背景（白円の背面に配置） */
.sp-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* 白い円（右上から拡大） */
.sp-menu__bg {
  position: absolute;
  top: -30%;
  right: -100%;
  width: 120vmax;
  height: 120vmax;
  transform-origin: top right;
  transform: scale(0);
  transition: transform 0.55s cubic-bezier(.2, .7, .1, 1);
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

/* メニューを開いた時にグレー背景を表示 */
body.menu-open .sp-menu::before {
  opacity: 1;
}

/* メニューリスト */
.sp-menu__list {
  position: relative;
  z-index: 2;
  margin: 25vh 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s;
}

.sp-menu__list li {
  margin: 30px 0;
}

.sp-menu__list a {
  font-size: 26px;
  color: #333;
  text-decoration: none;
}

/* 閉じる（右上のピンク丸にX） */
.sp-menu__close {
  position: fixed;
  top: 13px;
  right: 16px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #EA4DA0;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: scale(.9);
  transition: opacity 0.25s ease 0.2s, transform 0.25s ease 0.2s;
  z-index: 2002;
}

.sp-menu__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
}

.sp-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sp-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===== 開いた状態 ===== */
body.menu-open .sp-menu {
  pointer-events: auto;
}

body.menu-open .sp-menu__bg {
  transform: scale(1);
}

body.menu-open .sp-menu__list {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open .sp-menu__close {
  opacity: 1;
  transform: scale(1);
}

/* ===== メニューオープン時にロゴとお問い合わせを非表示 ===== */
body.menu-open .header-logo,
body.menu-open .sp-contact {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}


/* **************************************************************
	kv
*************************************************************** */

/* ===== Key Visual ===== */

#kv {
  position: relative;
  width: 100%;
  height: 280px;
  /* 背景エリアの高さ */
  background-image: url("../img/kv_bg_sp.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  /* ← 中央基準 */
  background-size: cover;
  /* ← 横幅が広いときは拡大してカバー */
  overflow: hidden;
}

/* === 中央テキスト（SVG） === */
#kv .kv-title {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 完全中央配置 */
  width: min(50%, 500px);
  text-align: center;
}

/* **************************************************************
	about
*************************************************************** */

.about-section {
  background: #fff;
  padding: 60px 16px 100px;
}

.about-inner {
  max-width: 990px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  text-align: left;
  font-weight: 300;
  margin: 0 auto 0;
}

.about-text p {
  margin: 0 0 30px;
}

/* **************************************************************
	store
*************************************************************** */

.store {
  padding: 90px 20px 64px;
}

.store__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* 検索バー */
.store-search {
  max-width: 500px;
  margin: 0 auto 45px;
}

.store-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.store-search__icon {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.store-search__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.store-search__input {
  width: 80%;
  height: 40px;
  background-color: #fff;
  padding: 0 14px 0 30px;
  /* アイコン分の左パディング */
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 14px;
  outline: none;
}

/* ▼ 右側の送信（検索）ボタン */
.store-search__button {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #fa35a7;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity .2s ease;
}

.store-search__button img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1); /* 白アイコン化（必要なら） */
}

.store-search__input::placeholder {
  color: #9aa0a6;
}

/* グリッド */
.store-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 12px;
  /* 縦横の余白を少し狭める */
  max-width: 100%;
}

.store-card a {
  width: 100%;
  max-width: 160px;
  /* 丸画像サイズに合わせて調整 */
}

.store-card__thumb {
  width: 160px;
  height: 160px;
  margin: 0 auto 8px;
}

.store-card__label {
  font-size: 16px;
}

/* **************************************************************
	News・イベント
*************************************************************** */

.news-events {
  padding: 16px 0 80px;
}

.news-events__inner {
  padding: 0 0;
}

/* グリッドを2列・等幅に */
.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  justify-content: center;
  margin: 0 20px 40px;
}

/* 3件目以降は非表示 */
.news-grid .news-card:nth-child(n+3) {
  display: none;
}

/* 固定幅を打ち消して可変に */
.news-card {
  width: auto;
  min-height: auto;
  border-radius: 20px;
  padding: 6px;
}

.news-card__image img {
  height: 108px;
  /* カード比率に合わせて調整 */
  border-radius: 16px;
}

/* 文字サイズをSP向けに少しだけ縮める（任意） */
.news-card__cat {
  margin: 10px 0 0;
  padding: 4px 14px;
  font-size: 9px;
}

.news-card__title {
  font-size: 12px;
  line-height: 16px;
  -webkit-line-clamp: 2;
  margin: 5px 0 5px;
}

.news-card__excerpt {
  font-size: 10px;
  line-height: 17px;
  -webkit-line-clamp: 3;
  margin: 0 0 5px;
}

.news-card__foot {
  padding: 0 6px 6px;
}

.news-card__date {
  font-size: 12px;
}

.news-card__more {
  width: 35px;
  height: 35px;
}

.news-card__more img {
  width: 15px;
  height: 15px;
  display: block;
}

/* **************************************************************
	recommend
*************************************************************** */

/* 余白の原因になりやすい固定高さを無効化 */
.recommend .swiper,
.recommend .swiper-wrapper {
  height: auto !important;
}

/* スライド自体は可変高さ＆BFCで margin 折り畳み防止 */
.recommend .swiper-slide {
  width: 210px;
  height: auto;
  overflow: hidden;
  /* ← これで子要素の margin-bottom が外へ出ない */
  /* display: grid; でもOK（BFCが作られて margin 折り畳みを防げます） */
}

/* カードの下マージンが外へ出ている場合に備えてリセット */
.rec-card {
  margin: 0;
}

/* 画像は固定高さでOK（お好みで） */
.rec-card__thumb img {
  width: 100%;
  height: 164px;
  object-fit: cover;
  display: block;
}

/* 本文の下パディングはそのまま（丸ボタン分の確保） */
.rec-card__body {
  position: relative;
  padding: 10px 10px 56px;
}

.rec-card__badge {
  display: inline-block;
  font-size: 9px;
  line-height: 1;
  color: #fff;
  background: #FDC185;
  /* 画像の例に近い色味 */
  padding: 4px 17px;
  border-radius: 9999px;
}

.rec-card__title {
  margin: 10px 0 6px;
  font-size: 12px;
}

.rec-card__text {
  font-size: 10px;
  line-height: 1.5;
}

/* 丸ボタン（矢印SVG対応） */
.rec-card__more {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .2s ease;
}

.rec-card__arrow {
  width: 15px;
  /* SVGのサイズを調整 */
  height: 15px;
  display: block;
}

/* **************************************************************
	map
*************************************************************** */

.map-section {
  background: #fff;
  padding: 60px 0 80px;
  text-align: center;
}

/* ボタンエリア */
.map-buttons-area {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 30px;
}

.map-tabs {
  gap: 15px;
}

/* ===== ボタン共通 ===== */
.map-tab {
  width: 300px;
  padding: 11px 18px;
  border-radius: 9999px;
  background: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #555454;
  /* --accent: #999; */
  border: 3px solid var(--accent);
  /* ← 枠線はaccent */
  box-shadow: inset 0 0 0 0 var(--accent);
  /* ← 内側もaccent */
  transition: box-shadow .25s ease, transform .12s ease;
}

.map-tab.is-active {
  box-shadow: inset 0 0 0 2px var(--accent);
  /* 内側を太く */
}

/* エリアごとの色指定（ここだけで一元管理） */
.map-tab--suzuran {
  --accent: #FF8D2B;
}

.map-tab--kita {
  --accent: #642BFF;
}

.map-tab--minami {
  --accent: #FF2B7D;
}

/* ===== マップ枠 ===== */
.map-frame {
  width: 100%;
}

.map-frame iframe {
  width: 100vw;
  /* 画面幅いっぱい */
  height: 200px;
  /* 高さはお好みで */
  border: none;
  display: block;
}

/* **************************************************************
	instagram
*************************************************************** */

#instagram {
  background-color: #fff;
  /* 背景白 */
  padding: 100px 20px 30px;
}

.insta-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 30px;
}

.insta-item {
  width: 100%;
  height: auto;
  border-radius: 30px;
  aspect-ratio: 1 / 1;
  /* 正方形維持 */
}

/* **************************************************************
	footer
*************************************************************** */

/* 不要な要素を非表示 */
.footer-nav,
.footer-column {
  display: none;
}

/* フッター全体の縦並びを指定 */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SNSを最上に */
.footer-sns {
  order: 1;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin-bottom: 180px;
  position: static;
}

.footer-sns img {
  width: 50px;
  height: 50px;
  opacity: 0.6;
}

/* 線をSNSの下に */
.footer-line {
  order: 2;
  width: 90%;
  margin: 0 auto 25px;
}

/* コピーライトを最下に */
.footer-bottom {
  order: 3;
  text-align: center;
  font-size: 14px;
  color: #ADADAD;
  margin-top: 0;
}

/* 余白調整 */
#footer {
  padding: 60px 0 55px;
}

/* ======================================
   Category Page
====================================== */
.category-page {
  margin: 100px auto 0;
  padding: 0 0;
  box-sizing: border-box;
}

/* パンくず */
.breadcrumb {
  padding: 0 0;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8a8a8a;
  list-style: none;
  padding: 0;
  margin: 0 20px 18px;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb li+li::before {
  content: "▶︎";
  margin: 0 6px 0 2px;
}

/* タイトル（SVG＋JP） */
.cat-hero {
  text-align: center;
  margin: 10px 0 18px;
}

.cat-hero img {
  display: inline-block;
  height: 60px;
  /* 必要に応じて */
  width: auto;
  max-width: 90%;
}

.cat-hero__jp {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #333;
}

/* カテゴリーフィルター（色は currentColor を利用） */
.cat-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 10px;
  justify-content: center;
  padding: 22px 0 8px;
  list-style: none;
  margin: 0 0 40px;
}

/* ボタン本体 */
.cat-btn {
  width: 160px;
  --btn-c: #999;
  /* 各色ボタンで上書きする色変数 */
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--btn-c);
  border-radius: 999px;
  background: #fff;
  /* ← 全ボタン未選択時は白背景 */
  color: #555454;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
  transition: filter .15s ease, transform .15s ease, background-color .15s ease, color .15s ease;
}

.cat-btn:hover,
.cat-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* 選択状態：塗りをボーダー色と同じに */
.cat-btn.is-selected {
  background: var(--btn-c);
  color: #fff;
  border-color: var(--btn-c);
}

/* 見出し */
.cat-heading {
  margin: 36px auto 18px;
  text-align: center;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: .16em;
  font-weight: 700;
  color: #333;
}

/* =========================================
   Category Page : cat-card（store-cardから独立）
========================================= */

/* 一覧グリッド（スマホ：2カラム） */
.category-page .cat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch; /* 各カードの高さをそろえる */
  padding: 0 20px;
}

/* 各カードのサイズ調整 */
.cat-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

/* カードリンク：縦並び＋高さ100% */
.cat-card__link {
  display: flex;
  flex-direction: column;  /* 画像 → 本文の縦並び */
  height: 100%;            /* カードの高さまで伸ばす */
  padding: 10px;
  gap: 10px;
}

/* 画像サイズ（やや横長） */
.cat-card__thumb {
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
}

/* 本文エリアを「残りの高さいっぱい」に広げる */
.cat-card__body {
  flex: 1;                       /* ここがポイント：余った高さを受ける */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* テキストのバランスを少し詰める */
.cat-card__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 9px;
  padding: 2px 14px;
}

.cat-card__title {
  margin: 5px 0 4px;
  font-size: 12px;
}

.cat-card__excerpt {
  font-size: 10px;
  line-height: 17px;
}

.cat-card__ado-tel {
  font-size: 10px;
  line-height: 15px;
  margin: 0 0 5px;
}

/* タグとボタン（フッター） */
.cat-card__foot {
  display: flex;          /* ← フレックスにする */
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  margin-top: auto;       /* ← 本文の一番下に張り付ける */
}

.cat-card__tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.cat-card__tags li {
  border-radius: 5px;
  padding: 2px 5px;
  font-size: 8px;
}

/* 丸ボタンを常に右端＆右下へ */
.cat-card__more-btn {
  margin-left: auto;      /* ← 右端に寄せる */
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.cat-card__more-btn img {
  width: 15px;
  height: 15px;
  display: block;
}


/* Pagination (丸型72px) */
:root {
  --pagi-color: #FF93D2;
  /* ピンク系の基準色 */
}

.cat-pagination {
  margin: 0 0;
  background-color: #fff;
  padding: 36px 0 130px;
}

.cat-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* WordPress の page-numbers 共通スタイル（a/span 両方） */
.cat-pagination .page-numbers {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid var(--pagi-color);
  background: #fff;
  color: var(--pagi-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform .15s ease, filter .15s ease;
}

.cat-pagination a.page-numbers:hover,
.cat-pagination a.page-numbers:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.02);
  outline: none;
}

/* 数字ボタン（未選択）は塗り＝ピンク、文字＝白 */
.cat-pagination .page-numbers:not(.current):not(.dots):not(.next):not(.prev) {
  background: var(--pagi-color);
  color: #fff;
  border-color: var(--pagi-color);
}

/* 現在ページ（current）は枠のみピンク、白塗り＋ピンク文字 */
.cat-pagination .page-numbers.current {
  background: #fff;
  color: var(--pagi-color);
}

/* 「…」のドットは装飾なしでOK */
.cat-pagination .page-numbers.dots {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  font-size: 20px;
  color: #FF93D2;
}

/* 「次へ」「前へ」ボタンを楕円形に */
.cat-pagination .page-numbers.next,
.cat-pagination .page-numbers.prev {
  width: 33px;
  height: 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  color: var(--pagi-color);
  border: 2px solid var(--pagi-color);
}

.cat-pagination .page-numbers.next:hover,
.cat-pagination .page-numbers.prev:hover,
.cat-pagination .page-numbers.next:focus-visible,
.cat-pagination .page-numbers.prev:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.02);
}


/* =========================================
   store-detail Page
========================================= */

.store-detail {
  padding: 100px 0 100px
}


.store-detail__grid-1,
.store-detail__grid-2 {
  grid-template-columns: 1fr;
  gap: 20px;
  grid-template-areas:
    "gallery"
    "info"
    "map"
    "meta";
}

/* ギャラリー（上段 左） */
.store-gallery {
  padding: 0 20px;
}

.store-gallery__main {
  border-radius: 24px
}

.store-gallery .thumb {
  width: 68px;
  height: 68px
}

/* 概要（上段 右） */
.store-info {
  padding: 0 20px;
}

/* 店舗詳細ページのタグ */
.store-tags li {
  background: #aeadae;
  color: #fff;
  border-radius: 8px;
  padding: 3px 16px;
  font-size: 12px;
  font-weight: 500;
}

/* 店舗詳細ページ：地図エリア */
.store-map {
  width: 90%;
  max-width: 900px;
  /* カード幅に合わせて調整 */
  height: 280px;
  /* 好きな高さに変更してOK */
  margin: 0 auto;
  overflow: hidden;
  /* ここがポイント：はみ出しを隠す */
  border-radius: 16px;
}

/* iframe を枠いっぱいにフィットさせる */
.store-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 詳細（下段 左） */
.store-meta-wrap {
  padding: 0 20px;
}


/* **************************************************************
	about-page
*************************************************************** */

#about-page {
  padding: 100px 0 0;
}

.about-page {
  max-width: 776px;
  margin: 0 auto;
  padding: 10px 20p;
  text-align: center;
}

.about-section {
  padding: 60px 20px 80px;
}

.about-page-text {
  padding: 30px 24px;
  margin-top: 50px;

}

.about-subtitle {
  font-size: 16px;
  padding: 10px 30px;
}

.about-page-text p {
  font-size: 15px;
  line-height: 1.9;
}

.section-icon {
  height: 36px;
}

.section-title {
  font-size: 22px;
}

/* aboutページ用マップ */
.about-map {
  width: 100%;
  margin-top: 100px;
  /* 高さ指定を親ではなく iframe に任せる */
  overflow: visible;
  /* ← hiddenを外すことで切れ防止 */
}

.about-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  /* ← 高さをこちらで固定 */
  min-height: 220px;
  /* 念のため保険 */
  border: none;
}

/* =========================================
   News Page
========================================= */

#news-page {
  padding: 100px 0 0;
}

.news-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  justify-content: center;
  margin: 0 20px 40px;
}

.news-map {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

/* =========================================
   event Page
========================================= */


#event {
  padding: 100px 0 0;
}

/* =========================================
   news Page
========================================= */


#news {
  padding: 100px 0 0;
}

.news-detail {
  padding: 80px 20px;
}

/* =========================================
   contact Page
========================================= */

.contact-section {
    padding: 100px 0 80px;
  }

  .contact-inner {
    max-width: 100%;
  }

  .contact-form {
  margin: 0 20px;
}

  .form-row {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 6px;
    font-size: 14px;
    align-items: flex-start; /* SP ではすべて上揃えでOK */
  }

  .confirm-row {
    grid-template-columns: 1fr;
  }

  .contact-modal__content {
    max-height: 90vh;        /* 画面の90%以内に収める */
  overflow-y: auto;        /* はみ出したらスクロール */
  -webkit-overflow-scrolling: touch; /* iOSで慣性スクロールを有効に */
    margin: 40px 12px;
    padding: 20px 16px 24px;
  }

  .badge {
  display: inline-block;
  padding: 4px 6px;
  border-radius: 5px;
  font-size: 10px;
  line-height: 1;
  vertical-align: middle;
}

/* インプット共通 */
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 6px 14px;
  border-radius: 10px;
  border: 2px solid #ff4fa0;
  font-size: 12px;
  line-height: 1.4;          /* 入力文字の行間だけ少し確保 */
  box-sizing: border-box;
  background-color: #fff;
  outline: none;
}

.file-name {
  display: block;
  margin-top: 5px;
}

.privacy-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
}

/* form-row を中央寄せに */
  .contact-form .form-row.form-row-submit {
    display: flex;
    justify-content: center;
  }

  .terms-box {
  margin-bottom: 15px;
}

  /* ボタンを中央配置 */
  .contact-form .wpcf7-form-control.wpcf7-submit.contact-submit {
    display: flex;        /* inline-flex → flex に変更すると安定 */
    width: 145px;
    font-size: 12px;
    margin: 0 auto;
  }

  .modal-button {
  min-width: 120px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 2px solid #ccc;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
}

.modal-button--back {
  border-color: #ccc;
  color: #555;
}

.modal-button--submit {
  border-color: #ff4fa0;
  color: #fff;
  background: #ff4fa0;
}

  /* =========================================
   thanks Page
========================================= */

#contact-thanks {
  margin-top: 100px;
}

.contact-thanks-section {
    padding: 20px 20px 80px;
  }

  .contact-thanks-box {
    padding: 20px 16px 16px;
  }

  .contact-thanks-inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-thanks-title {
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-thanks-lead {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-thanks-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px 30px;
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
  margin: 0 auto 32px;
}

.contact-thanks-box p {
  margin: 0 0 12px;
}

.contact-thanks-list {
  margin: 0;
  padding-left: 1.2em;
}

.contact-thanks-list li {
  line-height: 1.8;
}

/* ボタン */
.contact-thanks-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.contact-thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  padding: 10px 10px;
  border-radius: 999px;
  border: 2px solid #ff4fa0;
  background: #ff4fa0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  transition: background .2s ease, color .2s ease, transform .1s ease;
}

.contact-thanks-btn:hover {
  background: #fff;
  color: #ff4fa0;
  transform: translateY(-1px);
}

.contact-thanks-btn--sub {
  background: #fff;
  color: #ff4fa0;
}

.contact-thanks-btn--sub:hover {
  background: #ff4fa0;
  color: #fff;
}