/* ================================
   Hiyori Marche Theme - main.css
   北欧ナチュラル / 2025.12
================================ */


/* ----------------
   カラートークン
----------------- */
:root {
  /* =================
     ベース背景
  ================= */
  --bg-page: #f4e1e4;          /* チラシの薄ピンク背景 */
  --bg-section: #ffffff;       /* 白カード */
  --cream: #fff7f2;            /* 雲・吹き出し用 */

  /* =================
     ニュートラル
  ================= */
  --beige: #fff1e6;
  --beige-soft: #fff6ee;
  --border-soft: #f2cfd3;

  /* =================
     テキスト
  ================= */
  --text-main: #6b4b4b;        /* 茶寄りピンクブラウン */
  --text-soft: #8a6b6b;

  /* =================
     メインカラー（空・日付・アイコン）
  ================= */
  --accent: #3aa6c9;           /* 水色（チラシ文字色） */
  --accent-soft: #8fd0e3;      /* 淡い空色 */
  --accent-yellow: #f4c84a;    /* Swiperのアクティブ等に使用 */

  /* =================
     サブアクセント
  ================= */
  --accent-red: #e85c5c;       /* マルシェロゴ赤 */
  --accent-pink: #f3a6b5;      /* 装飾ピンク */

  /* =================
     ナチュラル差し色
  ================= */
  --accent-green: #6fbf8e;     /* 芝生・健康系 */

  /* =================
     UI
  ================= */
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.08);
  --radius-card: 18px;
}


/* ----------------
   ベース・リセット
----------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  letter-spacing: 0.02em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

main {
  width: 100%;
  margin: 0 auto;
}



/* ヘッダー & フッター（シンプル） */
.site-header,
.site-footer {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border-soft);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  border-bottom: none;
}

.site-header .site-title,
.site-footer p {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-soft);
}


/* ----------------
   共通レイアウト
----------------- */
.section {
  padding: 60px 0;
}

.section-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}


/* =====================
   Section Title Set (Clean)
   日本語タイトル + 英語筆記体（Caveat）
===================== */
.section-title-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 3rem;
  display: flex;
  flex-direction: column; /* 上：英字、下：日本語 */
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 日本語タイトル（前面） */
.section-title {
  position: relative;
  z-index: 2;
  margin: 1.6rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #3f3a34;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* h2リセット（テーマ側と競合しがちなので固定） */
.section-title h2,
.section-title-wrap h2 {
  padding: 0;
  font: inherit;
  color: inherit;
}

/* 英語筆記体（背面・淡く） */
.section-kicker {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  z-index: 1;
  font-family: "Caveat", cursive;
  font-size: 4.1rem;
  font-weight: 600;
  white-space: nowrap;

  color: #ffffff;
  text-shadow: none;
  pointer-events: none;
}

/* タブレット以下 */
@media (max-width: 768px) {
  .section-title {
    font-size: 0.9rem;
    margin-top: 1.8rem;
        text-align: center;
  }
  .section-kicker {
    font-size: 3.2rem;
    top: -26px;
    transform: translateX(-50%) rotate(-5deg);
  }
}

/* さらに小さい画面 */
@media (max-width: 480px) {
  .section-title {
    font-size: 0.95rem;
    margin-top: 1.2rem;
  }
  .section-kicker {
    font-size: 2.2rem;
    top: -18px;
    transform: translateX(-50%) rotate(-4deg);
  }
}
/* =========================
   Sticky Menu（PC:上 / SP:下）
========================= */
.sticky-menu{
  position: sticky;         /* PCは上に張り付く */
  top: 0;
  z-index: 9999;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;

  padding: 10px 12px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.sticky-menu .sticky-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: .2s ease;
  white-space: nowrap;
}

.sticky-menu .sticky-link:hover{
  background: var(--accent-soft);
  color: #fff;
}

.sticky-menu .sticky-link.is-active{
  background: var(--accent);
  color: #fff;
}

/* SPは下に固定（親指で押しやすい） */
@media (max-width: 768px){
  .sticky-menu{
    position: fixed;
    top: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    right: 10px;

    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.16);
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px;
  }

  .sticky-menu .sticky-link{
    flex: 1;
    padding: 10px 8px;
    font-size: 11px;
  }

  /* 下固定メニュー分、最下部が隠れないように */
  body{
    padding-bottom: 90px;
  }
}

/* 固定メニューで見出しが隠れないように（上に余白） */
#feature, #shops, #stamp-rally, #photo, #access, #faq{
  scroll-margin-top: 90px; /* PC用 */
}
@media (max-width: 768px){
  #feature, #shops, #stamp-rally, #photo, #access, #faq{
    scroll-margin-top: 20px; /* SPは下固定なので少なめ */
  }
}


/* ----------------
   HERO セクション
----------------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 100px;
  overflow: hidden;
  margin: 0;
}

/* Swiper本体を高さ100%に */
.hero-slider .swiper {
  width: 100%;
  height: 100%;
}

/* スライド */
.hero-slider .swiper-slide {
  transition: opacity 1.5s ease-in-out !important;
}

/* 画像：左右余白なし・中央トリミング */
.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.05) saturate(1.1);
}

/* オーバーレイのグラデーション */
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 1;
}

/* テキストブロック */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  color: #fff;
}

.hero-main-title {
  font-size: clamp(24px, 6vw, 42px);
  font-weight: 700;
  margin: 0 0 10px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.08em;
}

.hero-date {
  font-size: clamp(14px, 3.5vw, 20px);
  margin: 0 0 18px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

/* HEROのボタン */
.hero-button {
  display: inline-block;
  margin-top: 4px;
  padding: 9px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  background: rgba(250, 246, 236, 0.9);
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease;
}

.hero-button:hover {
  background: var(--accent-soft);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

/* HEROのInstagramボタンを「赤枠＋赤文字」(marche-btnと同系)に統一 */
.hero-button.insta{
  background: #fff;            /* 白背景 */
  color: #af3a32;              /* 赤文字 */
  border: 2px solid #af3a32;   /* 赤枠 */
  border-radius: 999px;        /* 楕円 */
  padding: 10px 22px;          /* marche-btn寄せ */
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: none;            /* 影いらないなら */
}

/* hoverもmarche-btnと同じ */
.hero-button.insta:hover{
  background: #af3a32;
  color: #fff;
  border-color: #af3a32;
  transform: none;             /* ピョコっと動かしたくない場合 */
  box-shadow: none;
}

/* アイコンも色を揃える（FontAwesome想定） */
.hero-button.insta i{
  color: currentColor;
}


/* ページネーション */
.hero-slider .swiper-pagination {
  bottom: 16px !important;
  z-index: 3;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.9) !important;
  width: 9px;
  height: 9px;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--accent-yellow) !important;
  opacity: 1;
}

/* paginationをヒーロー内に確実に収める */
.hero-slider .swiper {
  position: relative;
}

.hero-slider .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(18px + env(safe-area-inset-bottom)); /* iPhone下対策 */
  z-index: 4;
}


/* SPでもHEROを画面いっぱいに */
@media (max-width: 768px) {
  .hero-slider {
    height: 80svh;   /* iPhoneのアドレスバー対策込み */
    min-height: 100svh;
  }
}


/* HERO内イメージ（ロゴ画像など） */
.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  display: block;
  filter: brightness(0.88) contrast(1.15);
}

/* 白いドットフィルター */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#fff 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
  opacity: 0.25;
}

/* タイトル画像など */
.hero-title-img {
  width: min(100%, 520px);
  margin: 0 auto 100px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

.hero-date-img {
  width: min(50%, 260px);
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}


/* ----------------
   開催概要（outline）
----------------- */
.section-outline {
  padding: 60px 40px;
  background-image: url("../img/bg-1.png");
}

.section-outline .section-inner {
  background: #fffdfa;
  border-radius: 18px;
  padding: 32px 20px 40px;
  box-shadow: var(--shadow-soft);
}

/* ラベル＋本文の横並び行 */
.outline-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0;
}

.outline-label {
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.outline-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  text-align: left;
}

/* 開催概要 + MAP レイアウト */
.outline-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* 左：概要 */
.outline-box {
  flex: 1;
}

/* 右：マップ */
.outline-map {
  flex: 1;
  min-height: 350px;
}

/* スマホは縦並び */
@media (max-width: 768px) {
  .outline-layout {
    flex-direction: column;
  }

  .outline-map iframe {
    height: 300px;
  }
}


/* スマホ調整 */
@media (max-width: 640px) {
  .section-outline .section-inner {
    padding: 24px 16px 28px;
  }

  .outline-line {
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0;
  }

  .outline-label {
    font-size: 14px;
    padding: 6px 14px;
  }

  .outline-text {
    font-size: 16px;
    line-height: 2.2;
    text-align: left;
  }
}


/* ----------------
   出店者一覧セクション
----------------- */
.marche-shops {
  padding: 0 0 60px;
}

.marche-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text-main);
  letter-spacing: 0.08em;
}

.marche-title-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 28px;
}

/* カテゴリタブ */
.marche-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 30px;
  width: min(1120px, 92%);
}

.tab-button {
  background: var(--beige);
  border: none;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tab-button:hover {
  background: var(--accent-soft);
  color: #fff;
}

.tab-button.active {
  background: var(--accent);
  color: #fff;
}

/* 出店者カードグリッド */
.marche-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 85%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .marche-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
  }
}

@media (min-width: 1100px) {
  .marche-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
  }
}

/* カード全体 */
.marche-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 20px 20px 0px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: .25s;
  display: flex;
  flex-direction: column;
}

.marche-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* 画像 */
.marche-card-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: #eef0f7;
}

/* テキスト */
.marche-card-body {
  margin-top: 20px;
}

.marche-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: #2e2a24;
}

/* カテゴリ */
.marche-card-cat {
  font-size: 0.9rem;
  color: #887d71;
  margin-bottom: 18px;
}

/* 説明文 */
.marche-card-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #263326;
  margin-bottom: 24px;
}

/* Instagramボタン */
.marche-btn {
  margin-top: auto;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #af3a32;
  padding: 10px 20px;
  border-radius: 32px;
  font-size: .8rem;
  font-weight: 700;
  color: #af3a32;
  text-decoration: none;
  transition: .25s;
}

.marche-btn:hover {
  background: #af3a32;
  color: #fff;
}

.marche-btn i {
  font-size: 1.25rem;
}

/* 出店者カード内 Instagramボタンを中央寄せ */
.marche-card-body .marche-btn {
  margin: 0 auto 20px; /* 中央 + 下余白 */
}

/* ----------------
   マルシェ紹介セクション
----------------- */
.marche-intro {
  padding: 60px 20px 40px;
  text-align: center;
  background-image: url("../img/bg-6.png");
  background-size: 300px auto;
  background-attachment: fixed;
  background-repeat: repeat;
  background-position: top center;
}

.marche-intro-lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 40px;
  line-height: 1.8;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  background: var(--bg-section);
  padding: 26px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 14px;
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* intro内のタイトル画像・テキスト */
.intro-block {
  text-align: center;
  margin: 0 auto 60px;
  width: min(900px, 92%);
}

.intro-title-img {
  width: min(480px, 80%);
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.intro-desc {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.8;
  margin: 40px 10px 10px;
}

/* SP調整 */
@media (max-width: 640px) {
  .marche-intro {
    padding: 60px 16px 60px;
  }
  .intro-features {
    gap: 22px;
  }
  .intro-title-img {
    width: 95%;
    margin-bottom: 10px;
  }
  .intro-desc {
    font-size: 0.9rem;
    font-weight: 700;
  }
}


/* ----------------
   汎用ボタン
----------------- */
.btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--accent-soft);
}

/* ショップセクション共通余白 */
.shop-section {
  padding: 60px 0;
}


/* ----------------
   アクセス
----------------- */
.marche-access {
  padding: 60px 20px;
  background: #faf7f1;
}

.access-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

.access-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* アクセス詳細 */
.access-details {
  padding: 2em;
}

.access-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.access-details h3 {
  font-size: 1rem;
  margin: 12px 0 4px;
  color: #67574A;
}

.access-details p {
  font-size: 0.9rem;
  margin: 0 0 0 10px;
  color: #4b4239;
  text-align: left;
}

/* アクセスのラベル風テキスト */
.access-info strong {
  background: #9fcad1;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
  font-size: 15px;
  text-align: center;
}

/* ラベルと本文の距離 */
.access-info li {
  margin-bottom: 16px;
}

/* アイコンと文をきれいに並べる */
.access-info li span {
  margin-left: 6px;
}

/* 三角のセクション装飾（必要な場合） */
.access-section {
  position: relative;
  background: var(--cream);
  padding-top: 80px;
}

.access-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-bottom: 60px solid var(--cream);
  z-index: 1;
}

/* 読みやすさ */
.access-info {
  max-width: 90%;
  margin: 0 auto;
}

.access-info ul,
.access-info li {
  text-align: left;
}

/* スマホでは縦並びに */
@media (max-width: 768px) {
  .access-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-map iframe {
    height: 260px;
  }

  .access-info {
    padding: 0 4px;
  }

  .access-info strong {
    font-size: 14px;
    padding: 5px 12px;
    display: block;
    width: 100%;
  }
}


/* ----------------
   FAQ
----------------- */
.marche-faq {
  padding: 60px 20px;
  background: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: #faf7f1;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 0 18px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: .3s;
}

details[open] {
  background: #f0ebdf;
}

summary {
  font-weight: 700;
  padding: 18px 0;
  list-style: none;
  position: relative;
}

summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 18px;
  font-weight: bold;
  transition: .3s;
}

details[open] summary::after {
  content: "ー";
}

.faq-answer {
  padding: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b4239;
}


/* ----------------
   スポンサー
----------------- */
.marche-sponsors {
  padding: 60px 20px;
  background: #faf7f1;
  text-align: center;
  border-top: 1px solid #e3ddd3;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 35px;
  align-items: center;
}

.sponsor-item img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.9;
  transition: 0.25s ease;
}

.sponsor-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.sponsor-note {
  font-size: 14px;
  opacity: 0.7;
}

/* ----------------
   Feature カード（PC横並び / SP縦）
----------------- */

/* セクション本体：背景や余白担当（※横並びはしない） */
.marche-feature {
  padding: 60px 40px;
  background-image: url("../img/bg-4.png");
  background-size: 240px;
  background-attachment: fixed;
  background-repeat: repeat;
}

/* カード群：ここで横並び制御する */
.feature-cards {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; /* SPは縦 */
  gap: 28px;
  justify-items: center;
}

/* タブレット以上：2列 */
@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    justify-items: stretch;
  }
}

/* PC大：3列 */
@media (min-width: 1100px) {
  .feature-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

/* カード本体 */
.feature-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 30px 24px 26px;
  text-align: center;
  border: 1px solid #e5dfd3;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* カード内の筆記体（ある場合だけ効く） */
.section-kicker--script {
  font-family: "Caveat", cursive;
  font-weight: 600;
  opacity: 0.9;
  display: inline-block;
  margin-bottom: 6px;
}

/* アイコン（FontAwesome想定） */
.feature-icon {
  margin-top: 2px;
  font-size: 1.1rem !important;
  color: var(--accent);
}

/* h4（あなたのHTMLに合わせる） */
.feature-card h4 {
  margin: 10px 0 14px;
  font-size: 1rem;
  font-weight: 800;
  color: #2e2a24;
  line-height: 1.4;
}

/* 画像 */
.feature-title-img {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  padding: 6px;
  background: #ffffff;
  margin: 0 auto 16px;
  display: block;
}

/* ボタン：下に押し付け */
.feature-btn {
  margin-top: auto;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: .25s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.feature-btn:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* 準備中ボタン */
.feature-btn.disabled {
  background: #c8c3ba;
  pointer-events: none;
  opacity: 0.7;
}

/* SPデザイン */
@media (max-width: 640px) {
  .marche-feature {
    padding: 60px 16px;
  }
  .feature-card {
    padding: 26px 18px 24px;
  }
  .section-kicker--script {
    font-size: 2.2rem;
  }
}

/* ----------------
   STAMP RALLY
----------------- */
.marche-stamp {
  background: var(--bg-section);
  padding: 70px 20px 80px;
  background-size: 120px auto;
  background-repeat: repeat;
  background-attachment: fixed;
}

.stamp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.stamp-illust img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
}

.stamp-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 18px;
}

.stamp-rules {
  margin: 0 0 24px;
  padding-left: 1.2em;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
  text-align: left;
}

.stamp-rules li {
  margin-bottom: 6px;
}

/* Stamp Rally Responsive */
@media (max-width: 768px) {
  .stamp-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .stamp-illust img {
    max-width: 260px;
    width: 80%;
    margin: 0 auto;
  }

  .stamp-text {
    width: 100%;
  }

  .stamp-text p {
    font-size: 1rem;
  }

  .stamp-rules {
    max-width: 90%;
    margin: 0 auto 20px;
    text-align: left;
  }

  .feature-btn {
    width: 75%;
    margin: 10px auto 0;
    display: block;
    text-align: center;
  }
}

/* =========================
   主催者情報セクション
========================= */
.marche-organizer {
  background: #f6dfe2;        /* 今の薄ピンク */
  padding: 80px 20px;        /* ← 外側の余白 */
}

/* 中央寄せコンテナ */
.marche-organizer .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* 白カード */
.organizer-card {
  background: #fffdfa;
  border-radius: 20px;
  padding: 36px 28px 40px;    /* ← 中の余白 */
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* タイトル */
.organizer-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #6b4b4b;
}

/* 情報行 */
.organizer-list {
  display: grid;
  gap: 14px;
}

.organizer-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.organizer-row dt {
  min-width: 72px;
  font-weight: 700;
  color: #8a6b6b;
}

.organizer-row dd {
  margin: 0;
}

/* 注意書き */
.organizer-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #8a6b6b;
}


/* ----------------
   フォトスポット
----------------- */
.section-photo {
  padding: 80px 20px;
  background: #fff;
  background-image: url("../img/ashi-bg.png");
  background-size: 240px;
  background-attachment: fixed;
}

.photo-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
  width: min(1100px, 92%);
  margin: 0 auto 30px;
}

.photo-illust img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.photo-text {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.8;
}

.photo-points {
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.photo-points li {
  margin-bottom: 10px;
}

.photo-points i {
  color: var(--accent);
  margin-right: 8px;
}

/* スマホ1カラム */
@media (max-width: 768px) {
  .photo-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .photo-points {
    text-align: left;
    width: 90%;
    margin: 0 auto 24px;
  }

  .feature-btn {
    width: 75%;
    margin: 0 auto;
    display: block;
  }
}


/* ----------------
   Font Awesome補正
----------------- */
.fa-regular,
.fa-brands,
.fas,
.far,
.fab {
  font-size: 0.85rem !important;
  line-height: 1;
}

.fa-solid{
font-size: 1.2rem
}

/* Overviewの横幅をAccessと同じに揃える */
.section-outline .outline-layout{
  max-width: 1200px;  /* access-wrap と同じ */
  margin: 0 auto;
}


/* MAPカード共通（AccessとOverviewを同じ見た目に） */
.access-map,
.outline-map {
  border-radius: 12px;
  overflow: hidden; /* ←角丸の効きが安定する */
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* iframe共通（余白・ズレ防止） */
.access-map iframe,
.outline-map iframe {
  width: 100%;
  height: 350px;     /* 同じ高さに固定 */
  border: 0;
  display: block;    /* ←下に謎の余白が出るのを防ぐ */
}

/* 出店者カテゴリタグ */
.shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.shop-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--text-main);
  line-height: 1;
}

/* カテゴリタグ全体 */
.shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

/* タグ本体 */
.shop-tag {
  font-size: 10px;              /* ←小さく */
  font-weight: 600;
  padding: 4px 10px;            /* ←楕円感 */
  border-radius: 999px;         /* ←完全楕円 */
  background: #fff1e6;          /* ベージュ系 */
  color: #8a6b6b;               /* やさしい文字色 */
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

/* デフォルト（今の白） */
.section-kicker { color: #ffffff; }

/* セクションごとに英字だけ色変える */
#access .section-kicker { color: #9fcad1; }
#stamp-rally .section-kicker { color: #32373c; }
#shops  .section-kicker { color: #ffffff; }   /* 水色うっすら */
#feature .section-kicker { color: rgb(1 28 41 / 22%); }  /* 黄色うっすら */
#faq    .section-kicker { color: rgb(232 92 92 / 89%); }    /* 赤うっすら */

/* Stamp Rally 画像を整える */
.stamp-illust {
  display: flex;
  justify-content: center;
}

.stamp-illust img {
  width: 100%;
  max-width: 420px;        /* PCで大きすぎない */
  aspect-ratio: 3 / 4;    /* 縦写真を安定させる */
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* =========================
   Walking Lesson layout
   SP: 縦（写真 → details）
   PC: 2カラム（左 details / 右 写真）
========================= */

.walking-layout {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* SPは縦 */
  gap: 18px;
}

/* 写真 */
.walking-photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

/* detailsのまとまり */
.walking-details {
  display: grid;
  gap: 12px;
}

/* PCで2カラムに */
@media (min-width: 900px) {
  .walking-layout {
    flex-direction: row;  /* 横並び */
    align-items: flex-start;
    gap: 34px;
  }

  /* 左：説明（少し広め） */
  .walking-details {
    flex: 1.05;
  }

  /* 右：写真 */
  .walking-photo {
    flex: 0.95;
    position: sticky;     /* 画像を“フィックスっぽく”したいなら */
    top: 120px;           /* ヘッダー高さに合わせて調整 */
    align-self: flex-start;
  }
}

/* summaryボタンが横幅いっぱいになって押しやすく */
.detail-btn {
  width: 100%;
  text-align: center;
}

/* SP */
.walking-photo img {
  border-radius: 18px;
}

/* PC */
@media (min-width: 900px) {
  .walking-photo img {
    border-radius: 26px;
  }
}


