/* ============================================================
   JUNKeeeeS FES 2026 IN KYOTO - Official LP
   red x yellow x black x white / american-comic & street style
============================================================ */

/* ---------- variables ---------- */
:root {
  --red: #d7231d;
  --red-dark: #a91a15;
  --yellow: #ffcf00;
  --yellow-soft: #ffe36e;
  --black: #1a1210;
  --cream: #fdf5e8;
  --white: #ffffff;
  --blue: #1560bd;
  --font-en: "Bangers", cursive;
  --font-brush: "Reggae One", cursive;
  --font-body: "Zen Maru Gothic", sans-serif;
  --header-h: 60px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--black);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, li { list-style: none; }

.pc-only { display: none; }
.sp-only { display: inline; }

/* ---------- common: brush / marker / colors ---------- */
/* 黒い筆ブラシ風の帯 */
.brush {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.15em 0.6em 0.2em;
  transform: rotate(-2deg);
  clip-path: polygon(
    1% 12%, 5% 0%, 28% 6%, 52% 0%, 75% 7%, 97% 2%,
    100% 30%, 98% 55%, 100% 88%, 96% 100%,
    70% 94%, 45% 100%, 22% 93%, 3% 99%, 0% 70%
  );
}

.marker {
  background: linear-gradient(transparent 55%, var(--yellow) 55%);
  font-weight: 900;
  padding: 0 0.1em;
}
.marker--red {
  background: linear-gradient(transparent 55%, rgba(215, 35, 29, 0.35) 55%);
}

.c-yellow { color: var(--yellow); }
.c-red    { color: #ff5a3c; }
.c-blue   { color: #6db9ff; }
.c-white  { color: var(--white); }

/* ---------- common: buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  padding: 0.9em 2.2em;
  border: 3px solid var(--black);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--black);
}
.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--white  { background: var(--white);  color: var(--black); }
.btn--red    { background: var(--red);    color: var(--white); }
.btn--black  { background: var(--black);  color: var(--yellow); }
/* 赤背景上の黒ボタンは縁と影を白に */
.btn--onred {
  border-color: var(--white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
}

/* ---------- common: placeholder (仮画像エリア) ---------- */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    repeating-linear-gradient(45deg,
      rgba(26, 18, 16, 0.05) 0 12px,
      rgba(26, 18, 16, 0.12) 12px 24px),
    var(--white);
  border: 3px dashed rgba(26, 18, 16, 0.45);
  border-radius: 12px;
  color: rgba(26, 18, 16, 0.55);
  font-family: var(--font-en);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  overflow: hidden;
}
.placeholder small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  display: block;
  margin-top: 0.3em;
}
.placeholder--hero   { aspect-ratio: 4 / 3; max-width: 560px; margin: 1.2rem auto; }
.placeholder--square { aspect-ratio: 1 / 1; width: 100%; }
.placeholder--card   { aspect-ratio: 4 / 3; width: 100%; border-radius: 10px 10px 0 0; border-bottom: none; }
.placeholder--char   { aspect-ratio: 1 / 1; width: 100%; max-width: 300px; margin: 0 auto; }
.placeholder--map    { aspect-ratio: 16 / 10; width: 100%; margin: 1.5rem 0 0; }

/* ---------- common: section ---------- */
.section {
  position: relative;
  padding: 4rem 1.25rem;
}
.section__inner {
  max-width: 960px;
  margin: 0 auto;
}
.section--cream  { background: var(--cream); }
.section--yellow {
  background:
    radial-gradient(rgba(215, 35, 29, 0.07) 18%, transparent 19%) 0 0 / 22px 22px,
    var(--yellow);
}
.section--red {
  background:
    radial-gradient(rgba(0, 0, 0, 0.12) 16%, transparent 17%) 0 0 / 20px 20px,
    var(--red);
  color: var(--white);
}
.section--black {
  background:
    radial-gradient(rgba(255, 255, 255, 0.06) 16%, transparent 17%) 0 0 / 20px 20px,
    var(--black);
  color: var(--white);
}
/* ハーフトーン装飾つきクリームセクション */
.section--halftone {
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 35, 29, 0.12) 0 6px, transparent 7px) 0 0 / 30px 30px,
    var(--cream);
}

/* ---------- common: section title (黒筆ブラシ見出し) ---------- */
.sec-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sec-title__en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--black);
  padding: 0.05em 0.55em 0.1em;
  transform: rotate(-2deg);
  clip-path: polygon(
    1% 12%, 5% 0%, 28% 6%, 52% 0%, 75% 7%, 97% 2%,
    100% 30%, 98% 55%, 100% 88%, 96% 100%,
    70% 94%, 45% 100%, 22% 93%, 3% 99%, 0% 70%
  );
  position: relative;
}
.sec-title__ja {
  display: block;
  margin-top: 0.9rem;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.sec-title__ja::before,
.sec-title__ja::after {
  content: "★";
  color: var(--red);
  margin: 0 0.6em;
  font-size: 0.85em;
}
.sec-title--onred .sec-title__en {
  background: var(--white);
  color: var(--red);
}
.sec-title--onred .sec-title__ja::before,
.sec-title--onred .sec-title__ja::after { color: var(--yellow); }
.sec-title--onblack .sec-title__ja::before,
.sec-title--onblack .sec-title__ja::after { color: var(--yellow); }

/* ============================================================
   header
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.header__logo {
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.header__logo span { color: var(--yellow); }

.header__burger {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 110;
}
.header__burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.gnav {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 16, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 105;
}
.gnav.is-open { opacity: 1; visibility: visible; }
.gnav__list { text-align: center; }
.gnav__list li + li { margin-top: 1.1rem; }
.gnav__list a {
  font-family: var(--font-en);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}
.gnav__list a:hover { color: var(--yellow); }

/* ============================================================
   hero
============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 1.25rem 5.5rem;
  background: var(--red);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hero__halftone {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(0, 0, 0, 0.14) 15%, transparent 16%) 0 0 / 18px 18px,
    radial-gradient(circle at 50% -20%, var(--red-dark), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 720px; margin: 0 auto; }

.hero__copy-top {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(0.68rem, 3.1vw, 0.95rem);
  letter-spacing: 0.06em;
  padding: 0.4em 1em;
  transform: rotate(-1.5deg);
  clip-path: polygon(2% 10%, 98% 0%, 100% 85%, 96% 100%, 3% 95%, 0% 60%);
}
.hero__copy-top em {
  font-style: normal;
  color: var(--yellow);
  font-size: 1.2em;
}

.hero__title { margin-top: 1.2rem; line-height: 0.95; }
/* ロゴ画像（白文字＋黄2026・透過PNG） */
.hero__logo {
  display: block;
  width: min(88%, 560px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.35));
}

/* メインビジュアル：街並みの前にキャラを重ねる */
.hero__visual {
  position: relative;
  max-width: 720px;
  margin: 1.4rem auto 0;
}
.hero__town {
  display: block;
  width: 100%;
  height: auto;
}
.hero__chars {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -46%;
  padding: 0 3%;
}
.hero__char {
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.35));
}
.hero__char--junk {
  width: 44%;
  margin-right: -5%;
  position: relative;
  z-index: 2;
  transform: rotate(-4deg);
}
.hero__char--poteto { width: 47%; }

.hero__title-main {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3.4rem, 15vw, 7rem);
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--black),
    -2px -2px 0 var(--black),
    2px -2px 0 var(--black),
    -2px 2px 0 var(--black),
    6px 6px 0 rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}
.hero__year {
  color: var(--yellow);
  text-shadow:
    3px 3px 0 var(--black),
    -2px -2px 0 var(--black),
    2px -2px 0 var(--black),
    -2px 2px 0 var(--black);
}
.hero__title-place {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-en);
  font-size: clamp(1.3rem, 5vw, 1.9rem);
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--yellow);
  padding: 0.15em 0.9em;
  transform: rotate(2deg);
  clip-path: polygon(3% 8%, 97% 0%, 100% 80%, 95% 100%, 2% 94%, 0% 40%);
}

/* date */
.hero__date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4em 0.7em;
  margin-top: 1.6rem;
  font-family: var(--font-en);
}
.hero__date-year {
  background: var(--black);
  color: var(--yellow);
  font-size: 1.1rem;
  padding: 0.2em 0.7em;
  transform: rotate(-3deg);
}
.hero__date-day {
  font-size: clamp(2.4rem, 10vw, 3.6rem);
  letter-spacing: 0.03em;
  text-shadow: 3px 3px 0 var(--black);
  line-height: 1;
}
.hero__date-day small {
  font-size: 0.35em;
  vertical-align: 0.4em;
  margin-left: 0.25em;
  letter-spacing: 0.15em;
}
.hero__date-arrow {
  color: var(--yellow);
  font-size: 1.4rem;
  text-shadow: 2px 2px 0 var(--black);
}

.hero__venue {
  margin-top: 0.8rem;
  font-family: var(--font-en);
  font-size: clamp(1.05rem, 4.2vw, 1.5rem);
  letter-spacing: 0.1em;
  background: var(--black);
  display: inline-block;
  padding: 0.3em 1.1em;
  clip-path: polygon(2% 12%, 98% 0%, 100% 88%, 97% 100%, 2% 96%, 0% 55%);
}
.hero__at {
  display: inline-block;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.5em;
  font-size: 0.75em;
  margin-right: 0.5em;
}

.hero__catch {
  margin-top: 1.6rem;
  font-weight: 900;
  font-size: clamp(1.15rem, 5vw, 1.7rem);
  line-height: 1.7;
  text-shadow:
    2px 2px 0 var(--black), -1px -1px 0 var(--black),
    1px -1px 0 var(--black), -1px 1px 0 var(--black);
}
.hero__catch-em {
  color: var(--yellow);
  font-size: 1.25em;
  letter-spacing: 0.05em;
}

.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero__cta .btn { width: min(100%, 320px); }

/* zigzag bottom edge */
.hero__bottom-zigzag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 26px;
  background: var(--cream);
  clip-path: polygon(
    0 100%, 0 40%, 4% 90%, 8% 30%, 12% 85%, 16% 25%, 20% 90%, 24% 35%,
    28% 80%, 32% 20%, 36% 88%, 40% 30%, 44% 82%, 48% 22%, 52% 90%,
    56% 32%, 60% 85%, 64% 25%, 68% 88%, 72% 30%, 76% 80%, 80% 20%,
    84% 90%, 88% 35%, 92% 82%, 96% 25%, 100% 85%, 100% 100%
  );
}

/* deco (stars / bolts) */
.deco { position: absolute; pointer-events: none; }
.deco--star {
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--black);
  animation: twinkle 2.6s ease-in-out infinite;
}
.deco--s1 { top: 12%; left: 6%;  font-size: 2rem;   transform: rotate(-15deg); }
.deco--s2 { top: 22%; right: 7%; font-size: 1.4rem; transform: rotate(12deg); animation-delay: 0.8s; }
.deco--s3 { bottom: 18%; left: 9%; font-size: 1.6rem; transform: rotate(20deg); animation-delay: 1.4s; }
.deco--bolt { width: 30px; fill: var(--yellow); stroke: var(--black); stroke-width: 1.5; }
.deco--b1 { top: 9%;  right: 14%; transform: rotate(18deg); }
.deco--b2 { bottom: 24%; right: 6%; transform: rotate(-14deg); }
/* FAST TOWNロゴは街並み画像（town.png）内に含まれるためバッジは廃止 */

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================================
   about
============================================================ */
.about__lead {
  text-align: center;
  font-size: clamp(1.1rem, 4.4vw, 1.5rem);
  font-weight: 900;
  line-height: 2;
}
.about__text {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 0.95rem;
}
.about__chars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}
.about__char { flex: 1; max-width: 240px; }
.about__char-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(4px 5px 0 rgba(26, 18, 16, 0.12));
}
.about__char-name {
  margin-top: 0.6rem;
  text-align: center;
  font-family: var(--font-en);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}
.about__amp {
  font-family: var(--font-en);
  font-size: 2.2rem;
  color: var(--red);
  transform: rotate(-8deg);
}

/* ============================================================
   event info
============================================================ */
.info-table {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 14px;
  box-shadow: 6px 6px 0 rgba(26, 18, 16, 0.9);
  overflow: hidden;
}
.info-table__row {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.2rem;
}
.info-table__row + .info-table__row { border-top: 2px dashed rgba(26, 18, 16, 0.25); }
.info-table__row dt {
  flex-shrink: 0;
  font-weight: 900;
  color: var(--white);
  background: var(--red);
  display: inline-block;
  align-self: flex-start;
  font-size: 0.82rem;
  padding: 0.15em 1em;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.info-table__row dd { font-size: 0.98rem; }
.info-note { font-size: 0.78rem; color: rgba(26, 18, 16, 0.7); font-weight: 500; }

.info-cta { text-align: center; margin-top: 2rem; }

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  align-items: flex-end;
}
.price__item { display: flex; align-items: baseline; gap: 0.6rem; }
.price__label { font-weight: 900; font-size: 0.9rem; }
.price__num {
  font-family: var(--font-en);
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
}
.price__num small {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.4em;
}
.price__num--free { font-family: var(--font-body); font-weight: 900; font-size: 2rem; }
.price__note { margin-top: 0.5rem; font-size: 0.8rem; color: rgba(26, 18, 16, 0.7); }

.attention {
  margin-top: 2rem;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  font-size: 0.9rem;
  position: relative;
}
.attention__title {
  font-weight: 900;
  color: var(--red);
  margin-bottom: 0.3rem;
}

/* ============================================================
   contents
============================================================ */
.contents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.contents-card {
  background: var(--white);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease;
}
.contents-card:hover { transform: translateY(-4px) rotate(-1deg); }
.contents-card__name {
  text-align: center;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0.7rem 0.4rem;
}
.contents-card--soon .placeholder {
  background:
    repeating-linear-gradient(45deg,
      rgba(26, 18, 16, 0.75) 0 12px,
      rgba(26, 18, 16, 0.85) 12px 24px);
  color: var(--yellow);
  border-color: rgba(255, 207, 0, 0.6);
}
.contents-card--soon .contents-card__name {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  color: var(--red);
}
.contents-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ============================================================
   character
============================================================ */
.char-block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 16px;
  box-shadow: 6px 6px 0 rgba(215, 35, 29, 0.85);
  padding: 1.6rem 1.4rem;
}
.char-block + .char-block { margin-top: 2rem; }
.char-block__img { width: 100%; }
.char-block__photo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(4px 5px 0 rgba(26, 18, 16, 0.12));
}
.char-block__body { text-align: center; }
.char-block__name {
  font-family: var(--font-en);
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
  font-weight: 400;
}
.char-block__name .q { color: var(--red); font-size: 1.3em; }
.char-block__body p { font-size: 0.95rem; text-align: left; }

/* ============================================================
   goods
============================================================ */
.goods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.goods-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(26, 18, 16, 0.9);
  transition: transform 0.15s ease;
}
.goods-card:hover { transform: translateY(-4px) rotate(1deg); }
.goods-card__name {
  text-align: center;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.7rem 0.4rem;
}
.goods-tags {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.tag {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.3em 1.1em;
  border-radius: 999px;
}

/* ============================================================
   access
============================================================ */
.access__venue {
  text-align: center;
  font-family: var(--font-en);
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  letter-spacing: 0.06em;
}
.access__address { text-align: center; margin-top: 0.3rem; font-size: 0.95rem; }
.access__walk {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 1.05rem;
}
.access__walk strong { color: var(--red); font-size: 1.3em; }
.access__walk-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 0.2em 0.9em;
  border-radius: 999px;
  margin-right: 0.6em;
  transform: rotate(-3deg);
}
/* ポスター風イラストマップ（Google Map埋め込みに差し替え可） */
.illust-map {
  margin-top: 1.5rem;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 12px;
  box-shadow: 5px 5px 0 rgba(26, 18, 16, 0.9);
  overflow: hidden;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.illust-map svg { display: block; width: 100%; height: auto; }

.access__cta { text-align: center; margin-top: 1.5rem; }
.access__note {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(26, 18, 16, 0.7);
}

/* ============================================================
   sns / news
============================================================ */
.sns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.sns-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  border: 3px solid var(--yellow);
  border-radius: 14px;
  padding: 1.3rem 0.8rem;
  transition: transform 0.15s ease;
}
.sns-card a:hover { transform: translateY(-4px); }
.sns-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns-card__icon svg { width: 28px; height: 28px; fill: var(--white); }
.sns-card__icon--ig  { background: radial-gradient(circle at 30% 110%, #ffd776 0%, #f5591f 30%, #d82d7e 60%, #8134af 90%); }
.sns-card__icon--x   { background: var(--black); }
.sns-card__icon--web { background: var(--blue); }
.sns-card__icon--map { background: var(--red); }
.sns-card__label { font-weight: 900; font-size: 0.95rem; }
.sns-card__id { font-size: 0.75rem; color: rgba(26, 18, 16, 0.65); word-break: break-all; text-align: center; }

/* ============================================================
   faq
============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(26, 18, 16, 0.9);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: 1rem; }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 1.3rem;
  color: var(--white);
  background: var(--red);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item__toggle {
  margin-left: auto;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.faq-item__toggle::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-item__toggle::after { transform: translateY(-50%) rotate(0); }
.faq-item__a {
  padding: 0 1.1rem 1.1rem 3.9rem;
  font-size: 0.92rem;
}
/* 「みんなの参加を待ってるよ！」吹き出し */
.faq-closing {
  margin: 2.5rem auto 0;
  max-width: 420px;
  text-align: center;
  font-weight: 900;
  font-size: 1.1rem;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 999px;
  padding: 0.7em 1.4em;
  box-shadow: 4px 4px 0 rgba(26, 18, 16, 0.9);
  transform: rotate(-1.5deg);
  position: relative;
}
.faq-closing::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 10px solid var(--black);
}

/* ============================================================
   footer
============================================================ */
.footer {
  position: relative;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.25rem 2rem;
}
.footer__zigzag {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 22px;
  background: var(--cream);
  clip-path: polygon(
    0 0, 100% 0, 100% 15%, 96% 75%, 92% 10%, 88% 70%, 84% 15%, 80% 80%,
    76% 20%, 72% 70%, 68% 12%, 64% 75%, 60% 15%, 56% 68%, 52% 10%,
    48% 78%, 44% 18%, 40% 70%, 36% 12%, 32% 75%, 28% 15%, 24% 80%,
    20% 20%, 16% 68%, 12% 10%, 8% 65%, 4% 15%, 0 60%
  );
}
.footer__logo {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 0 var(--black);
}
.footer__logo span { color: var(--yellow); }
.footer__catch { margin-top: 0.6rem; font-weight: 700; font-size: 0.88rem; }
.footer__sns {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
}
.footer__sns a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer__sns a:hover { color: var(--yellow); }
.footer__copy { margin-top: 1.8rem; font-size: 0.75rem; opacity: 0.85; }

/* ============================================================
   pagetop
============================================================ */
.pagetop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   fade-in animation (scroll)
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .deco--star { animation: none; }
}

/* ============================================================
   responsive: tablet & pc (768px~)
============================================================ */
@media (min-width: 768px) {
  :root { --header-h: 68px; }

  .pc-only { display: inline; }
  .sp-only { display: none; }

  .section { padding: 5.5rem 2rem; }

  /* header: 横並びナビ */
  .header { padding: 0 2rem; }
  .header__burger { display: none; }
  .gnav {
    position: static;
    inset: auto;
    background: transparent;
    opacity: 1;
    visibility: visible;
  }
  .gnav__list {
    display: flex;
    gap: 1.4rem;
  }
  .gnav__list li + li { margin-top: 0; }
  .gnav__list a { font-size: 1.05rem; }

  .hero { padding-top: calc(var(--header-h) + 4.5rem); }
  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }
  .hero__cta .btn { width: auto; min-width: 260px; }

  .about__chars { gap: 2rem; }
  .about__amp { font-size: 3rem; }

  .info-table__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.3rem 1.8rem;
  }
  .info-table__row dt {
    width: 110px;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0.2em;
  }

  .contents-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .goods-grid { grid-template-columns: repeat(4, 1fr); }
  .sns-grid { grid-template-columns: repeat(4, 1fr); }

  .char-block {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding: 2.2rem 2.5rem;
  }
  .char-block--reverse { flex-direction: row-reverse; }
  .char-block__img { flex: 0 0 300px; }
  .char-block__body { flex: 1; text-align: left; }

  .deco--s1 { font-size: 3rem; }
  .deco--bolt { width: 44px; }
}

@media (min-width: 1024px) {
  .contents-grid { grid-template-columns: repeat(5, 1fr); }
}
