*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #faf5ea;   /* ベース：生成りの紙 */
  --paper:       #f3ecda;   /* クラフト紙 */
  --white:       #fffdf8;
  --green:       #477a42;   /* メイン緑 */
  --green-deep:  #2d4d2a;   /* 濃い緑 */
  --green-ink:   #23391f;
  --green-lt:    #e6efdf;
  --sun:         #d99a4e;   /* 南国の陽だまり */
  --hibiscus:    #cf6a55;   /* ハイビスカス */
  --ink:         #3c3a30;
  --muted:       #83816e;
  --thread:      rgba(71, 122, 66, 0.45);
  --radius:      1.1rem;
  --shadow:      0 10px 30px -12px rgba(45, 77, 42, 0.25);
  --font-hand:   'Klee One', 'Yomogi', cursive;
  --font-body:   'Zen Maru Gothic', sans-serif;
  --font-note:   'Yomogi', cursive;
}

html { scroll-behavior: smooth; scroll-padding-top: 4.2rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* 紙の質感（細かなノイズ） */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

img { max-width: 100%; }
a { -webkit-tap-highlight-color: rgba(71,122,66,0.15); }

/* ════════ NAV ════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: rgba(250, 245, 234, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px dashed var(--thread);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
nav.is-scrolled {
  background: rgba(250, 245, 234, 0.96);
  box-shadow: 0 4px 24px -10px rgba(45, 77, 42, 0.28);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-hand);
  font-weight: 600;
  color: var(--green-deep);
  font-size: 1.06rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.4rem 0.2rem;
}
.nav-logo::before {
  content: '✿';
  color: var(--hibiscus);
  font-size: 0.9rem;
}
.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  color: var(--green-deep);
  text-decoration: none;
  font-family: var(--font-hand);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 0.55rem 0.7rem;
  border-radius: 2rem;
  transition: background 0.25s, color 0.25s;
}
.nav-links a:hover { background: var(--green-lt); color: var(--green-deep); }
.nav-links a.is-active { background: var(--green-lt); color: var(--green-deep); font-weight: 600; }

/* ════════ HERO ════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 1.6rem 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  will-change: transform;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(35, 57, 31, 0.55) 0%, rgba(35, 57, 31, 0.45) 45%, rgba(45, 77, 42, 0.72) 100%);
}
.hero-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: min(58vw, 280px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  margin-bottom: 1.4rem;
}
.hero-catch {
  font-family: var(--font-hand);
  font-size: clamp(0.86rem, 3.4vw, 1.02rem);
  color: rgba(255, 253, 246, 0.95);
  letter-spacing: 0.14em;
  line-height: 2.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  margin-bottom: 1.6rem;
}
.hero-catch .catch-em {
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.1em 0.65em;
  background: rgba(207, 106, 85, 0.85);
  border-radius: 2rem;
  font-size: 0.92em;
}
.hero-title {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(2rem, 9.5vw, 3.4rem);
  color: #fffdf6;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  text-shadow: 0 3px 18px rgba(0,0,0,0.4);
  line-height: 1.4;
}
.hero-sub {
  font-family: var(--font-hand);
  font-size: clamp(0.85rem, 3vw, 1rem);
  color: rgba(255, 253, 246, 0.92);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  margin-top: 0.7rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero-organized {
  font-family: var(--font-note);
  font-size: 0.74rem;
  color: rgba(255, 253, 246, 0.72);
  letter-spacing: 0.26em;
  margin-top: 1.1rem;
}
.hero-organized::before,
.hero-organized::after {
  content: '—';
  margin: 0 0.6em;
  opacity: 0.6;
}
.scroll-down {
  position: absolute;
  bottom: 3.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  z-index: 1;
}
.scroll-down span {
  font-family: var(--font-note);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: rgba(255, 253, 246, 0.75);
}
.scroll-down::after {
  content: '';
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(to bottom, rgba(255,253,246,0.75), transparent);
  display: block;
  animation: line-down 2.2s ease-in-out infinite;
}
@keyframes line-down {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
/* ヒーロー下端の波（生成り紙へつながる） */
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(38px, 7vw, 72px);
  display: block;
  z-index: 1;
}

/* ════════ PAGE HEADER（サブページ用の簡易ヒーロー） ════════ */
.page-header {
  position: relative;
  padding: 7.5rem 1.4rem 3.5rem;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(35, 57, 31, 0.78), rgba(45, 77, 42, 0.88)),
    url('hero-bg.jpg') center 30% / cover;
  color: #fffdf6;
}
.page-header-label {
  display: inline-block;
  font-family: var(--font-note);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: #fffdf6;
  border: 1.5px dashed rgba(255, 253, 246, 0.5);
  padding: 0.3rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 0.9rem;
}
.page-header h1 {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(1.9rem, 7.5vw, 2.7rem);
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}
.page-header-lead {
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 0.9rem;
  line-height: 2.1;
  color: rgba(255, 253, 246, 0.88);
}
.breadcrumb {
  margin-top: 1.1rem;
  font-family: var(--font-note);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 253, 246, 0.7);
}
.breadcrumb a { color: rgba(255, 253, 246, 0.85); text-decoration: none; border-bottom: 1px dashed rgba(255,253,246,0.4); }
.breadcrumb a:hover { color: #fffdf6; }

/* ════════ SECTION COMMON ════════ */
section { padding: 4.5rem 1.4rem; width: 100%; }
.section-inner { max-width: 860px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 2.4rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-note);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--green);
  border: 1.5px dashed var(--thread);
  padding: 0.3rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 0.9rem;
  background: var(--white);
}
h2 {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(1.7rem, 6.4vw, 2.4rem);
  color: var(--green-deep);
  letter-spacing: 0.12em;
  line-height: 1.5;
}
.head-thread {
  width: 3.2rem;
  height: 0;
  border-top: 2px dashed var(--thread);
  margin: 0.9rem auto 0;
  position: relative;
}
.head-thread::after {
  content: '✿';
  position: absolute;
  top: -0.85em;
  left: 50%;
  transform: translateX(-50%);
  background: inherit;
  color: var(--hibiscus);
  font-size: 0.8rem;
  padding: 0 0.4em;
}
.section-lead {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 2.1;
  margin-top: 1.1rem;
}

/* ════════ HUB CARDS（トップページ：各ページへの導線） ════════ */
#hub { background: var(--cream); padding-top: 3.6rem; }
.hub-grid { display: grid; gap: 1.1rem; }
@media (min-width: 720px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }
.hub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(71, 122, 66, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hub-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px -14px rgba(45, 77, 42, 0.38); }
.hub-card-thumb { aspect-ratio: 16/10; width: 100%; overflow: hidden; background: var(--green-lt); }
.hub-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hub-card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.hub-card-label { font-family: var(--font-note); font-size: 0.68rem; letter-spacing: 0.16em; color: var(--hibiscus); margin-bottom: 0.3rem; }
.hub-card-title { font-family: var(--font-hand); font-weight: 600; font-size: 1.15rem; color: var(--green-deep); letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.hub-card-text { font-size: 0.82rem; line-height: 1.9; color: var(--muted); flex: 1; margin-bottom: 0.8rem; }
.hub-card-arrow { align-self: flex-end; font-family: var(--font-hand); font-size: 0.8rem; color: var(--green); }
.hub-card:hover .hub-card-arrow { color: var(--hibiscus); }

/* ════════ NEWS / 出店案内 共通カード ════════ */
#news, #join-info { background: var(--cream); padding-top: 3.6rem; }
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(71, 122, 66, 0.16);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: grid;
  gap: 1.6rem;
  position: relative;
}
/* マスキングテープ */
.news-card::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2.5deg);
  width: 7.5rem;
  height: 1.6rem;
  background: rgba(217, 154, 78, 0.55);
  opacity: 0.9;
  border-left: 1px dashed rgba(255,255,255,0.7);
  border-right: 1px dashed rgba(255,255,255,0.7);
}
@media (min-width: 640px) {
  .news-card { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; padding: 2rem; }
}
.news-flyer { position: relative; }
.news-flyer img {
  width: 100%;
  display: block;
  border-radius: 0.7rem;
  border: 1px solid rgba(71, 122, 66, 0.15);
  box-shadow: 0 6px 18px -8px rgba(45, 77, 42, 0.35);
}
.news-headline {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(1.1rem, 4.4vw, 1.3rem);
  color: var(--green-deep);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}
.news-text {
  font-size: 0.88rem;
  line-height: 2.05;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.news-price {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.news-price-item {
  background: var(--cream);
  border: 1.5px dashed var(--thread);
  border-radius: 0.8rem;
  padding: 0.65rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 118px;
  position: relative;
}
.news-price-item::before {
  content: '';
  position: absolute;
  top: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--thread);
}
.price-label {
  font-family: var(--font-note);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.price-num {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--hibiscus);
  line-height: 1.1;
}
.price-num small { font-size: 0.68rem; color: var(--muted); font-weight: 400; margin-left: 0.15em; }
.news-detail {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 2;
  background: var(--cream);
  border-radius: 0.7rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1.3rem;
}
.btn {
  display: inline-block;
  background: var(--green);
  color: #fffdf6;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  padding: 0.95rem 1.7rem;
  border-radius: 3rem;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(45, 77, 42, 0.55);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(45, 77, 42, 0.6);
}

/* ════════ JOIN（出店案内）追加コンポーネント ════════ */
.join-block {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(71, 122, 66, 0.14);
  box-shadow: 0 6px 18px -14px rgba(45, 77, 42, 0.3);
  padding: 1.6rem 1.5rem;
  margin-top: 1.1rem;
}
.join-block h3 {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--green-deep);
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}
.join-block ul { list-style: none; display: grid; gap: 0.5rem; }
.join-block li {
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--ink);
  padding-left: 1.3em;
  position: relative;
}
.join-block li::before {
  content: '✿';
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--hibiscus);
  font-size: 0.8em;
}
.join-genre-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem; }
.join-genre-tag {
  font-size: 0.78rem;
  color: var(--green);
  background: var(--green-lt);
  border-radius: 2rem;
  padding: 0.35rem 0.9rem;
}

/* ════════ ARTISTS ════════ */
#artists { background: var(--paper); position: relative; }
.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .artist-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}
.artist-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(71, 122, 66, 0.14);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px -12px rgba(45, 77, 42, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.artist-card:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: 0 16px 32px -14px rgba(45, 77, 42, 0.38);
}
.artist-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-bottom: 1.5px dashed rgba(71, 122, 66, 0.2);
}
.artist-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--green-lt);
  border-bottom: 1.5px dashed rgba(71, 122, 66, 0.2);
  color: var(--green);
  font-family: var(--font-note);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.artist-photo-placeholder span:first-child { font-size: 1.6rem; }
.artist-info { padding: 0.85rem 0.9rem 1rem; display: flex; flex-direction: column; flex: 1; }
.artist-name {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-deep);
  line-height: 1.55;
  margin-bottom: 0.3rem;
}
.artist-genre {
  align-self: flex-start;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--green);
  background: var(--green-lt);
  border-radius: 2rem;
  padding: 0.1rem 0.6rem;
  margin-bottom: 0.5rem;
}
.artist-comment {
  font-size: 0.72rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 0.6rem;
  flex: 1;
}
.artist-insta {
  font-family: var(--font-note);
  font-size: 0.66rem;
  color: var(--hibiscus);
  letter-spacing: 0.04em;
  word-break: break-all;
}

/* ════════ DIVIDER ════════ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.2rem 1.4rem;
  background: var(--cream);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 8rem;
  border-top: 2px dashed var(--thread);
}
.divider-logo { width: min(34vw, 150px); height: auto; opacity: 0.5; }

/* ════════ INFO ════════ */
#info { background: var(--cream); }
.info-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 600px) {
  .info-grid { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
}
.info-block {
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(71, 122, 66, 0.14);
  box-shadow: 0 6px 18px -14px rgba(45, 77, 42, 0.3);
  position: relative;
}
.info-block::before {
  content: '';
  position: absolute;
  top: 0.9rem;
  bottom: 0.9rem;
  left: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--sun), var(--hibiscus));
}
.info-block h3 {
  font-family: var(--font-note);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.info-block p { font-size: 0.88rem; line-height: 1.95; color: var(--ink); }
.info-block a {
  display: inline-block;
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1.5px dashed var(--thread);
  padding: 0.1rem 0;
  transition: color 0.2s, border-color 0.2s;
}
.info-block a:hover { color: var(--hibiscus); border-color: var(--hibiscus); }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(71, 122, 66, 0.18);
  box-shadow: var(--shadow);
  line-height: 0;
  background: var(--green-lt);
}

/* ════════ CONSULT ════════ */
#consult {
  background:
    radial-gradient(ellipse 80% 60% at 85% -10%, rgba(217, 154, 78, 0.18), transparent 60%),
    var(--green-deep);
  color: #fffdf6;
}
#consult h2 { color: #fffdf6; }
#consult .section-label {
  background: rgba(255, 253, 246, 0.08);
  color: rgba(255, 253, 246, 0.9);
  border-color: rgba(255, 253, 246, 0.35);
}
#consult .head-thread { border-color: rgba(255, 253, 246, 0.35); }
#consult .head-thread::after { color: var(--sun); }
#consult .section-lead { color: rgba(255, 253, 246, 0.75); }
.consult-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .consult-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; } }
.consult-card {
  background: rgba(255, 253, 246, 0.07);
  border: 1px solid rgba(255, 253, 246, 0.16);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(2px);
}
.consult-card h3 {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  color: #fffdf6;
  margin-bottom: 0.7rem;
}
.consult-card > p { font-size: 0.85rem; line-height: 2; color: rgba(255, 253, 246, 0.8); }

.consult-examples { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1.5px dashed rgba(255, 253, 246, 0.22); }
.examples-label {
  font-family: var(--font-note);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(255, 253, 246, 0.55);
  margin-bottom: 0.7rem;
}
.site-cards { display: flex; flex-direction: column; gap: 0.7rem; }
.site-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 253, 246, 0.07);
  border: 1px solid rgba(255, 253, 246, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.site-card:hover {
  background: rgba(255, 253, 246, 0.14);
  border-color: rgba(255, 253, 246, 0.4);
  transform: translateY(-2px);
}
.site-card-bar {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.38rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.site-card-dots { display: flex; gap: 0.28rem; }
.site-card-dots i {
  display: block; width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 253, 246, 0.3);
  font-style: normal;
}
.site-card-url { font-size: 0.64rem; color: rgba(255, 253, 246, 0.5); letter-spacing: 0.05em; }
.site-card-body {
  display: flex; align-items: center;
  gap: 0.8rem; padding: 0.8rem;
}
.site-card-thumb {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 0.5rem; overflow: hidden;
  background: rgba(255, 253, 246, 0.1);
}
.site-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.site-card-text { flex: 1; min-width: 0; }
.site-card-name {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 0.84rem;
  color: #fffdf6;
  margin-bottom: 0.12rem;
  line-height: 1.5;
}
.site-card-desc { font-size: 0.7rem; color: rgba(255, 253, 246, 0.6); line-height: 1.6; }
.site-card-arrow { font-size: 1.05rem; color: rgba(255, 253, 246, 0.55); flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.site-card:hover .site-card-arrow { color: var(--sun); transform: translate(2px, -2px); }
.consult-cta-wrap { text-align: center; margin-top: 2.2rem; }
.btn--light {
  background: var(--cream);
  color: var(--green-deep);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
}
.btn--light:hover {
  background: #fffdf6;
  color: var(--green-deep);
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.45);
}

/* ════════ URANAI（占いマルシェ） ════════ */
#uranai {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% -8%, rgba(217, 154, 78, 0.14), transparent 60%),
    radial-gradient(ellipse 85% 65% at 92% 112%, rgba(151, 125, 201, 0.22), transparent 62%),
    #2f2a4e;
  color: #f4f1ff;
}
/* 星空（軽量CSSドット） */
#uranai::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,253,246,0.6), transparent 100%),
    radial-gradient(1px 1px at 28% 64%, rgba(255,253,246,0.42), transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 12%, rgba(255,253,246,0.5), transparent 100%),
    radial-gradient(1px 1px at 62% 48%, rgba(255,253,246,0.38), transparent 100%),
    radial-gradient(1.5px 1.5px at 78% 18%, rgba(255,253,246,0.55), transparent 100%),
    radial-gradient(1px 1px at 88% 72%, rgba(255,253,246,0.4), transparent 100%),
    radial-gradient(1px 1px at 8% 84%, rgba(255,253,246,0.35), transparent 100%),
    radial-gradient(1.5px 1.5px at 94% 40%, rgba(255,253,246,0.45), transparent 100%);
}
#uranai h2 { color: #fdfbff; }
#uranai .section-label {
  background: rgba(244, 241, 255, 0.08);
  color: rgba(244, 241, 255, 0.92);
  border-color: rgba(196, 181, 253, 0.42);
}
#uranai .head-thread { border-color: rgba(196, 181, 253, 0.42); }
#uranai .head-thread::after { content: '✦'; color: var(--sun); }
#uranai .section-lead { color: rgba(244, 241, 255, 0.72); }
.uranai-catch {
  text-align: center;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(1.05rem, 4.4vw, 1.35rem);
  letter-spacing: 0.16em;
  color: #fdfbff;
  margin-top: 1.1rem;
  text-shadow: 0 0 18px rgba(196, 181, 253, 0.45);
}
.uranai-next {
  position: relative;
  background: rgba(244, 241, 255, 0.06);
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  text-align: center;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(2px);
}
.uranai-next-label {
  font-family: var(--font-note);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--sun);
  margin-bottom: 0.4rem;
}
.uranai-next-date {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(1.7rem, 6.4vw, 2.2rem);
  letter-spacing: 0.08em;
  color: #fdfbff;
  line-height: 1.3;
  margin-bottom: 0.9rem;
}
.uranai-next-date small { font-size: 0.6em; color: rgba(244, 241, 255, 0.75); }
.uranai-parts { display: flex; justify-content: center; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
.uranai-part {
  background: rgba(47, 42, 78, 0.55);
  border: 1.5px dashed rgba(196, 181, 253, 0.35);
  border-radius: 0.8rem;
  padding: 0.6rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 130px;
}
.uranai-part-label { font-family: var(--font-note); font-size: 0.7rem; letter-spacing: 0.14em; color: var(--sun); }
.uranai-part-time { font-family: var(--font-hand); font-weight: 600; font-size: 1.02rem; color: #fdfbff; }
.uranai-place { font-size: 0.8rem; color: rgba(244, 241, 255, 0.72); line-height: 1.9; }
.uranai-place a { color: var(--sun); text-decoration: none; border-bottom: 1px dashed rgba(217, 154, 78, 0.5); }
.uranai-place a:hover { color: #fdfbff; }
/* Instagram告知投稿の埋め込み枠 */
.uranai-embed {
  max-width: 360px;
  margin: 0 auto 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: #fff;
  box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.55);
}
.uranai-embed iframe {
  display: block;
  width: 100%;
  height: 505px;
  border: 0;
}
.uranai-recruit {
  position: relative;
  background: rgba(244, 241, 255, 0.06);
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.uranai-recruit h3 {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  color: #fdfbff;
  margin-bottom: 0.8rem;
  text-align: center;
}
.uranai-recruit ul { list-style: none; display: grid; gap: 0.45rem; margin-bottom: 1.3rem; }
.uranai-recruit li {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(244, 241, 255, 0.85);
  padding-left: 1.3em;
  position: relative;
}
.uranai-recruit li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.28em;
  color: var(--sun);
  font-size: 0.8em;
}
.uranai-cta { display: flex; justify-content: center; gap: 0.7rem; flex-wrap: wrap; }
.uranai-about {
  font-size: 0.88rem;
  line-height: 2.05;
  color: rgba(244, 241, 255, 0.82);
  margin-bottom: 1.6rem;
}

/* 狭い画面でナビ4項目が収まるように */
@media (max-width: 420px) {
  .nav-links a { padding: 0.55rem 0.42rem; font-size: 0.76rem; letter-spacing: 0.06em; }
  .nav-logo { font-size: 0.98rem; }
}

/* ════════ FAQ ════════ */
#faq { background: var(--paper); }
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(71, 122, 66, 0.14);
  box-shadow: 0 6px 18px -14px rgba(45, 77, 42, 0.3);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 1.05rem 1.2rem;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-deep);
  line-height: 1.7;
  transition: background 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--green-lt); }
.faq-q {
  flex-shrink: 0;
  font-family: var(--font-note);
  color: var(--hibiscus);
  font-size: 0.95rem;
}
.faq-toggle {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0.2rem 1.2rem 1.2rem 1.2rem;
  font-size: 0.86rem;
  line-height: 2.05;
  color: var(--ink);
  border-top: 1.5px dashed rgba(71, 122, 66, 0.18);
  margin: 0 0.2rem;
  padding-top: 0.9rem;
}
.faq-a a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1.5px dashed var(--thread);
  transition: color 0.2s, border-color 0.2s;
}
.faq-a a:hover { color: var(--hibiscus); border-color: var(--hibiscus); }
#uranai .faq-item, #uranai .faq-item summary, #uranai .faq-a { }
.faq-section--dark .faq-item {
  background: rgba(244, 241, 255, 0.06);
  border-color: rgba(196, 181, 253, 0.28);
}
.faq-section--dark .faq-item summary { color: #fdfbff; }
.faq-section--dark .faq-item summary:hover { background: rgba(244, 241, 255, 0.1); }
.faq-section--dark .faq-a { color: rgba(244, 241, 255, 0.82); border-top-color: rgba(196, 181, 253, 0.25); }
.faq-section--dark .faq-q { color: var(--sun); }
.faq-section--dark .faq-toggle { color: rgba(244, 241, 255, 0.8); }

/* 出店申込CTAボタン群 */
.news-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn--outline {
  background: var(--white);
  color: var(--green-deep);
  border: 1.5px dashed var(--thread);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--green-lt);
  color: var(--green-deep);
  box-shadow: none;
}

/* ════════ FOOTER ════════ */
footer {
  background: var(--green-ink);
  text-align: center;
  padding: 2.6rem 1.4rem 2.2rem;
  color: rgba(255, 253, 246, 0.65);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
.footer-logo {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  color: #fffdf6;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-links { margin-top: 0.4rem; }
.footer-links a { margin: 0 0.5rem; }
footer a { color: var(--sun); text-decoration: none; border-bottom: 1px dashed rgba(217, 154, 78, 0.5); }
footer a:hover { color: #fffdf6; }
.footer-copy { margin-top: 0.6rem; font-size: 0.7rem; opacity: 0.7; }
