/* =========================================================
   西葛西ふぇにっくす倶楽部 LP
   テーマ：ビビッドイエロー × 黒 × ビビッドピンク × オレンジ
   モバイルファースト
   ========================================================= */

:root{
  --yellow:   #FFD60A;   /* メイン：ビビッドイエロー */
  --yellow-d: #FFB703;   /* 濃いイエロー */
  --orange:   #FF6B00;
  --red:      #FF1E1E;
  --pink:     #FF2D78;   /* ビビッドピンク */
  --ink:      #15110E;   /* ほぼ黒 */
  --ink-soft: #2a2320;
  --white:    #FFFFFF;
  --cream:    #FFF6E0;

  --shadow-pop: 4px 4px 0 var(--ink);
  --shadow-pop-lg: 6px 6px 0 var(--ink);
  --radius: 18px;

  --font-pop: "Mochiy Pop One", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
}

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

html{ scroll-behavior:smooth; }

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--yellow);
  line-height:1.8;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  /* 日本語改行制御：単語途中で改行しない */
  word-break:keep-all;
  line-break:strict;
  overflow-wrap:break-word;
}

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

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

.sp-br{ display:inline; }

/* ボタン共通：文字は必ず1行で収める */
.sns-btn,
.youtube-btn,
.collab-btn{
  white-space:nowrap;
}

/* ====== 背景の浮遊する炎 ====== */
.bg-flames{
  position:fixed; inset:0; z-index:0;
  pointer-events:none; overflow:hidden;
}
.flame-dot{
  position:absolute; bottom:-40px;
  font-size:28px; opacity:.18;
  animation:floatUp linear infinite;
  filter: saturate(1.2);
}
.flame-dot:nth-child(1){ left:8%;  animation-duration:14s; animation-delay:0s; }
.flame-dot:nth-child(2){ left:32%; animation-duration:18s; animation-delay:3s; font-size:36px;}
.flame-dot:nth-child(3){ left:55%; animation-duration:12s; animation-delay:6s; }
.flame-dot:nth-child(4){ left:75%; animation-duration:20s; animation-delay:2s; font-size:42px;}
.flame-dot:nth-child(5){ left:90%; animation-duration:16s; animation-delay:8s; }
@keyframes floatUp{
  0%{ transform:translateY(0) rotate(0); opacity:0; }
  10%{ opacity:.22; }
  90%{ opacity:.22; }
  100%{ transform:translateY(-110vh) rotate(40deg); opacity:0; }
}

/* =========================================================
   1. ファーストビュー
   ========================================================= */
.hero{
  position:relative; z-index:1;
  text-align:center;
  padding:32px 20px 48px;
  background:
    radial-gradient(circle at 50% -10%, var(--yellow) 0%, var(--yellow-d) 55%, var(--orange) 100%);
  overflow:hidden;
}
.hero::before{
  /* 放射状の集中線っぽい装飾 */
  content:"";
  position:absolute; inset:0;
  background:
    repeating-conic-gradient(from 0deg at 50% 30%,
      rgba(255,255,255,0) 0deg 6deg,
      rgba(255,255,255,.10) 6deg 12deg);
  z-index:0; pointer-events:none;
}
.hero-inner{ position:relative; z-index:1; max-width:520px; margin:0 auto; }

.hero-badge{
  display:inline-block;
  background:var(--ink); color:var(--yellow);
  font-weight:700; font-size:.7rem; letter-spacing:.12em;
  padding:7px 16px; border-radius:999px;
  margin-bottom:18px;
  box-shadow:var(--shadow-pop);
  transform:rotate(-2deg);
}
.hero-badge i{ color:var(--orange); }

.hero-title{
  font-family:var(--font-pop);
  line-height:1.05;
  margin-bottom:14px;
}
.title-line{
  display:block;
  font-size:clamp(2.6rem, 13vw, 4rem);
  color:var(--ink);
  text-shadow:
    3px 3px 0 var(--white),
    6px 6px 0 var(--orange);
}
.title-accent{
  color:var(--pink);
  text-shadow:
    3px 3px 0 var(--white),
    6px 6px 0 var(--ink);
  transform:rotate(-1.5deg);
}

.hero-catch{
  font-family:var(--font-pop);
  font-size:clamp(1rem,4.8vw,1.6rem);
  color:var(--ink);
  margin-bottom:14px;
  background:var(--white);
  display:inline-block;
  padding:8px 18px;
  border-radius:12px;
  box-shadow:var(--shadow-pop);
  transform:rotate(-1deg);
}

/* 「街 × 人 × 食 × 企画」横並び帯 */
.hero-themes{
  display:flex;
  flex-wrap:wrap;               /* 最終手段：幅不足時のみ2段 */
  justify-content:center;
  align-items:center;
  gap:0 4px;
  font-family:var(--font-pop);
  font-size:clamp(.85rem, 4vw, 1.05rem);   /* hero-catch より1段小さく */
  font-weight:500;
  color:var(--ink);
  letter-spacing:.04em;
  white-space:nowrap;           /* 各ノード内では折り返しさせない */
  margin-bottom:10px;
}
.hero-themes .x{
  color:var(--red);
  font-weight:700;
  padding:0 3px;
}

/* 「まじめに、ふまじめ。」タグライン */
.hero-tagline{
  margin-bottom:28px;
  text-align:center;
}
.hero-tagline strong{
  font-family:var(--font-pop);
  color:var(--white);
  background:var(--ink);
  padding:3px 14px;
  border-radius:8px;
  display:inline-block;
  font-size:clamp(.9rem, 4vw, 1.05rem);    /* テーマ帯と同サイズ感 */
  white-space:nowrap;
}

/* メインビジュアル */
.hero-visual{
  position:relative;
  border:4px solid var(--ink);
  border-radius:var(--radius);
  overflow:hidden;
  margin:0 auto 28px;
  box-shadow:var(--shadow-pop-lg);
  background:linear-gradient(135deg,var(--orange),var(--pink));
  aspect-ratio:3/4;
  max-width:340px;
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; }
.hero-visual .ph-label{ display:none; }
.hero-visual.placeholder .ph-label{
  display:flex; flex-direction:column; gap:10px;
  align-items:center; justify-content:center;
  position:absolute; inset:0;
  color:var(--white); font-weight:700; font-size:1rem;
  background:repeating-linear-gradient(45deg,
    rgba(0,0,0,.06) 0 14px, rgba(0,0,0,0) 14px 28px);
}
.hero-visual.placeholder .ph-label i{ font-size:2.4rem; }

/* SNSボタン */
.hero-buttons{
  display:flex; flex-direction:column; gap:13px;
  max-width:360px; margin:0 auto;
}
.sns-btn{
  display:flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-pop);
  font-size:clamp(.9rem,.9rem + .3vw,1.1rem);
  padding:14px 12px;
  border-radius:14px;
  border:3px solid var(--ink);
  box-shadow:var(--shadow-pop);
  transition:transform .12s ease, box-shadow .12s ease;
  color:var(--white);
}
.sns-btn i{ font-size:1.3rem; }
.sns-btn:active{ transform:translate(4px,4px); box-shadow:0 0 0 var(--ink); }
@media(hover:hover){
  .sns-btn:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); }
}
.btn-youtube{ background:#FF0000; }
.btn-instagram{ background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.btn-tiktok{ background:var(--ink); }
.btn-tiktok i{ color:#25F4EE; }
.btn-x{ background:#000; }

.scroll-hint{
  margin-top:34px;
  font-family:var(--font-pop);
  font-size:.75rem; letter-spacing:.2em;
  color:var(--ink);
  display:flex; flex-direction:column; align-items:center; gap:4px;
}
.scroll-hint i{ animation:bounce 1.4s infinite; font-size:1rem; }
@keyframes bounce{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }

/* =========================================================
   共通セクション
   ========================================================= */
main{ position:relative; z-index:1; }

.section{
  padding:56px 20px;
  max-width:560px; margin:0 auto;
}
.section-head{ text-align:center; margin-bottom:30px; }
.section-eyebrow{
  display:inline-block;
  font-family:var(--font-pop);
  font-size:.75rem; letter-spacing:.18em;
  color:var(--white);
  background:var(--pink);
  padding:5px 14px; border-radius:999px;
  border:2px solid var(--ink);
  box-shadow:3px 3px 0 var(--ink);
  margin-bottom:14px;
  transform:rotate(-2deg);
}
.section-title{
  font-family:var(--font-pop);
  font-size:clamp(1.25rem,6vw,2rem);
  line-height:1.3;
  color:var(--ink);
  text-shadow:2px 2px 0 var(--white);
  /* 見出し改行制御 */
  word-break:keep-all;
  line-break:strict;
}

/* スクロールreveal */
.reveal{ opacity:0; transform:translateY(30px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ====== 2. ABOUT ====== */
.about{ }
.about-card{
  background:var(--white);
  border:4px solid var(--ink);
  border-radius:var(--radius);
  box-shadow:var(--shadow-pop-lg);
  padding:30px 20px;          /* 左右余白を少し詰めてテキスト幅を確保 */
  text-align:center;
  font-size:1rem;
}
.about-card p{ margin-bottom:18px; word-break:keep-all; line-break:strict; }
.about-card .lead{
  font-family:var(--font-pop);
  font-size:clamp(.92rem,4vw,1.1rem); /* 少し抑えてキーワードを1行に収めやすく */
  line-height:1.7;
  color:var(--ink);
}
/* キーワード群「街・人・食・企画」は絶対に分断しない */
.about-card .lead b{
  color:var(--orange);
  white-space:nowrap;
  display:inline-block; /* nowrap をブロック単位で確実に効かせる */
}
.about-card .about-strong{
  font-family:var(--font-pop);
  color:var(--pink);
  font-size:1.05rem;
}
.keyword-chips{
  list-style:none; display:flex; flex-wrap:wrap;
  justify-content:center; gap:10px; margin-top:10px;
}
.keyword-chips li{
  font-family:var(--font-pop);
  background:var(--yellow);
  border:2px solid var(--ink);
  padding:6px 14px; border-radius:999px;
  font-size:.9rem;
  box-shadow:2px 2px 0 var(--ink);
}

/* ====== 3. 最新動画 ====== */
.latest-card{
  display:block;
  border:4px solid var(--ink);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-pop-lg);
  background:var(--white);
  transition:transform .15s ease, box-shadow .15s ease;
}
@media(hover:hover){
  .latest-card:hover{ transform:translate(-2px,-2px); box-shadow:8px 8px 0 var(--ink); }
  .latest-card:hover .play-button{ transform:translate(-50%,-50%) scale(1.1); }
}
.latest-thumb{
  position:relative; aspect-ratio:16/9;
  background:linear-gradient(135deg,var(--red),var(--orange));
}
.latest-thumb img{ width:100%; height:100%; object-fit:cover; }
.latest-thumb .ph-label{ display:none; }
.latest-thumb.placeholder .ph-label{
  display:flex; flex-direction:column; gap:8px;
  align-items:center; justify-content:center;
  position:absolute; inset:0;
  color:var(--white); font-weight:700;
  background:repeating-linear-gradient(45deg,
    rgba(0,0,0,.06) 0 14px, rgba(0,0,0,0) 14px 28px);
}
.latest-thumb.placeholder .ph-label i{ font-size:2.6rem; }
.play-button{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:70px; height:70px; border-radius:50%;
  background:#FF0000; color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem; border:4px solid var(--white);
  box-shadow:0 6px 18px rgba(0,0,0,.4);
  transition:transform .15s ease;
}
.latest-cta{
  display:flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-pop); font-size:1.1rem;
  color:var(--white); background:#FF0000;
  padding:16px; border-top:4px solid var(--ink);
}
.update-note{
  text-align:center; margin-top:20px;
  font-family:var(--font-pop); font-size:1rem;
  background:var(--ink); color:var(--white);
  display:inline-block; padding:10px 20px; border-radius:999px;
  box-shadow:var(--shadow-pop);
  width:100%;
}
.update-note i{ color:var(--orange); }
.update-note strong{ color:var(--yellow); }

/* ====== 3. YouTube紹介カード（更新不要） ====== */
.youtube-card{
  background:var(--white);
  border:4px solid var(--ink);
  border-radius:var(--radius);
  box-shadow:var(--shadow-pop-lg);
  padding:34px 24px 30px;
  text-align:center;
}
.youtube-mark{
  width:88px; height:88px; margin:0 auto 18px;
  border-radius:22px;
  background:#FF0000;
  border:4px solid var(--ink);
  box-shadow:var(--shadow-pop);
  display:flex; align-items:center; justify-content:center;
  font-size:2.6rem; color:var(--white);
  transform:rotate(-3deg);
}
.youtube-lead{
  font-family:var(--font-pop);
  font-size:clamp(1rem,4.5vw,1.15rem); line-height:1.6;
  color:var(--ink);
  margin-bottom:16px;
  word-break:keep-all; line-break:strict;
}
.youtube-schedule{
  display:inline-block;
  font-family:var(--font-pop); font-size:1rem;
  background:var(--ink); color:var(--white);
  padding:9px 20px; border-radius:999px;
  box-shadow:var(--shadow-pop);
  margin-bottom:22px;
}
.youtube-schedule i{ color:var(--orange); }
.youtube-schedule strong{ color:var(--yellow); }
.youtube-play{
  font-size:1.05rem; line-height:1.9; margin-bottom:14px;
  color:var(--ink);
  word-break:keep-all; line-break:strict;
}
.youtube-tag{
  font-family:var(--font-pop);
  color:var(--pink); font-size:1.05rem;
  margin-bottom:10px;
}
.youtube-from{
  font-size:.95rem; color:var(--ink-soft);
  margin-bottom:26px;
}
.youtube-btn{
  display:flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-pop); font-size:clamp(1rem,4vw,1.2rem);
  color:var(--white); background:#FF0000;
  border:3px solid var(--ink);
  padding:16px 14px; border-radius:16px;
  box-shadow:var(--shadow-pop-lg);
  transition:transform .12s ease, box-shadow .12s ease;
}
.youtube-btn i{ font-size:1.4rem; }
.youtube-btn:active{ transform:translate(5px,5px); box-shadow:0 0 0 var(--ink); }
@media(hover:hover){
  .youtube-btn:hover{ transform:translate(-2px,-2px); box-shadow:8px 8px 0 var(--ink); }
}

/* ====== 4.5 こんなことやってます（企画グリッド・固定） ====== */
.project-grid{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:13px;
}
.project-card{
  position:relative;
  display:block;
  aspect-ratio:1/1;
  border:3px solid var(--ink);
  border-radius:16px;
  box-shadow:var(--shadow-pop);
  overflow:hidden;
  background:linear-gradient(135deg,var(--orange),var(--pink));
  transition:transform .12s ease;
}
@media(hover:hover){
  .project-card:hover{ transform:translateY(-4px) rotate(-1deg); }
  .project-card:hover .project-img{ transform:scale(1.06); }
}
/* 企画イメージ写真 */
.project-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}
/* ひとり豚しゃぶ反省会：顔をカットして鍋まわりを中心に見せる */
.project-img-butashabu{
  object-position:center 78%;
  transform:scale(1.55);
  transform-origin:center 78%;
}
@media(hover:hover){
  .project-card:hover .project-img-butashabu{ transform:scale(1.62); }
}
/* 写真の上にのる絵文字バッジ（左上） */
.project-emoji{
  position:absolute; top:7px; left:7px; z-index:2;
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; line-height:1;
  background:var(--white);
  border:2px solid var(--ink);
  border-radius:50%;
  box-shadow:2px 2px 0 var(--ink);
}
/* 企画名（下部の帯） */
.project-name{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  font-family:var(--font-pop);
  font-size:clamp(.78rem,2.8vw,.9rem); line-height:1.3;
  color:var(--white);
  text-align:center;
  padding:24px 10px 10px;
  background:linear-gradient(to top,
    rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,0) 100%);
  /* カード名は途中で変な改行をしない */
  word-break:keep-all;
  line-break:strict;
  overflow-wrap:break-word;
}
/* 画像読み込み失敗時のフォールバック */
.project-card.no-img{
  background:repeating-linear-gradient(45deg,
    var(--orange) 0 14px, var(--pink) 14px 28px);
}
.project-card.no-img .project-emoji{
  position:static; width:auto; height:auto;
  margin:0 auto; background:transparent; border:none; box-shadow:none;
  font-size:2.6rem;
}
.project-card.no-img{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; }
.project-card.no-img .project-name{
  position:static; background:none; padding:0;
}
/* 「まだまだ増えていきます」カード */
.pc-more{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  background:repeating-linear-gradient(45deg,
    var(--cream) 0 10px, #fff 10px 20px);
  border-style:dashed;
}
.pc-more .project-emoji{
  position:static; width:auto; height:auto;
  background:transparent; border:none; box-shadow:none;
  color:var(--pink); font-family:var(--font-pop); font-size:2.6rem;
}
.pc-more .project-name{
  position:static; background:none; padding:0; color:var(--ink);
}
.contents-note{
  text-align:center; margin-top:24px;
  font-family:var(--font-pop);
  font-size:1rem; line-height:1.7;
  color:var(--ink);
  background:var(--white);
  border:3px solid var(--ink);
  border-radius:14px;
  padding:14px 18px;
  box-shadow:var(--shadow-pop);
}

/* ====== 4. SNS一覧 ====== */
.sns-grid{ display:flex; flex-direction:column; gap:14px; }
.sns-card{
  display:flex; align-items:center; gap:16px;
  background:var(--white);
  border:3px solid var(--ink);
  border-radius:16px;
  padding:16px 18px;
  box-shadow:var(--shadow-pop);
  transition:transform .12s ease, box-shadow .12s ease;
}
.sns-card:active{ transform:translate(3px,3px); box-shadow:0 0 0 var(--ink); }
@media(hover:hover){
  .sns-card:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); }
}
.sns-card-icon{
  width:52px; height:52px; flex:0 0 52px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:var(--white);
  border:2px solid var(--ink);
}
.card-youtube .sns-card-icon{ background:#FF0000; }
.card-instagram .sns-card-icon{ background:linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.card-tiktok .sns-card-icon{ background:var(--ink); }
.card-tiktok .sns-card-icon i{ color:#25F4EE; }
.card-x .sns-card-icon{ background:#000; }
.sns-card-body{ flex:1; min-width:0; }
.sns-card-body h3{ font-family:var(--font-pop); font-size:1.1rem; line-height:1.2; white-space:nowrap; }
.sns-card-body p{ font-size:.85rem; color:var(--ink-soft); white-space:nowrap; }
.sns-card-arrow{ color:var(--pink); font-size:1.1rem; }

/* 切り抜きストリップ */
.clip-strip{
  display:flex; gap:10px; margin-top:26px;
  overflow-x:auto; padding-bottom:6px;
  scroll-snap-type:x mandatory;
}
.clip-thumb{
  position:relative;
  flex:0 0 42%; max-width:160px;
  aspect-ratio:9/16;
  border:3px solid var(--ink); border-radius:14px;
  overflow:hidden;
  background:linear-gradient(135deg,var(--pink),var(--orange));
  box-shadow:var(--shadow-pop);
  scroll-snap-align:start;
}
.clip-thumb img{ width:100%; height:100%; object-fit:cover; }
.clip-thumb .ph-label{ display:none; }
.clip-thumb.placeholder .ph-label{
  display:flex; flex-direction:column; gap:6px;
  align-items:center; justify-content:center;
  position:absolute; inset:0;
  color:var(--white); font-weight:700; font-size:.8rem;
  background:repeating-linear-gradient(45deg,
    rgba(0,0,0,.07) 0 12px, rgba(0,0,0,0) 12px 24px);
}
.clip-thumb.placeholder .ph-label i{ font-size:1.6rem; }

/* ====== 5. 企画・コラボ募集 ====== */
.collab{
  background:var(--ink);
  max-width:none;
  border-radius:0;
}
.collab .section-title{ color:var(--white); text-shadow:2px 2px 0 var(--pink); }
.collab-inner-wrap{ max-width:560px; margin:0 auto; }
.collab-visual{
  position:relative;
  max-width:520px; margin:0 auto 28px;
  aspect-ratio:4/3;
  border:4px solid var(--yellow);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:6px 6px 0 var(--pink);
  background:linear-gradient(135deg,var(--orange),var(--red));
}
.collab-visual img{ width:100%; height:100%; object-fit:cover; }
.collab-visual .ph-label{ display:none; }
.collab-visual.placeholder .ph-label{
  display:flex; flex-direction:column; gap:8px;
  align-items:center; justify-content:center;
  position:absolute; inset:0;
  color:var(--white); font-weight:700;
  background:repeating-linear-gradient(45deg,
    rgba(0,0,0,.08) 0 14px, rgba(0,0,0,0) 14px 28px);
}
.collab-visual.placeholder .ph-label i{ font-size:2.4rem; }
.collab-content{ max-width:520px; margin:0 auto; text-align:center; }
.collab-text{
  color:var(--cream);
  margin:22px 0 26px;
  font-size:clamp(.9rem,3.5vw,1rem);
  word-break:keep-all;
  line-break:strict;
  line-height:1.9;
}
.collab-btn{
  display:flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-pop); font-size:clamp(.95rem,3.8vw,1.15rem);
  color:var(--white);
  background:linear-gradient(45deg,#f09433,#dc2743,#bc1888);
  border:3px solid var(--white);
  padding:16px 14px; border-radius:16px;
  box-shadow:5px 5px 0 var(--pink);
  transition:transform .12s ease, box-shadow .12s ease;
}
.collab-btn:active{ transform:translate(4px,4px); box-shadow:0 0 0 var(--pink); }
@media(hover:hover){
  .collab-btn:hover{ transform:translate(-2px,-2px); box-shadow:7px 7px 0 var(--pink); }
}
.collab-note{ color:var(--yellow); font-size:.85rem; margin-top:12px; font-weight:500; }

/* =========================================================
   6. フッター
   ========================================================= */
.footer{
  position:relative; z-index:1;
  background:
    radial-gradient(circle at 50% 120%, var(--orange) 0%, var(--yellow-d) 60%, var(--yellow) 100%);
  text-align:center; padding:48px 20px 36px;
}
.footer-logo{
  font-family:var(--font-pop);
  font-size:clamp(1.1rem,5vw,1.4rem); color:var(--ink);
  text-shadow:2px 2px 0 var(--white);
  margin-bottom:8px;
  word-break:keep-all;
}
.footer-logo .fire{ filter:saturate(1.3); }
.footer-catch{ font-weight:500; color:var(--ink); margin-bottom:24px; }
.footer-sns{ display:flex; justify-content:center; gap:14px; margin-bottom:24px; }
.footer-sns a{
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:var(--white);
  border:3px solid var(--ink);
  box-shadow:var(--shadow-pop);
  transition:transform .12s ease, box-shadow .12s ease;
}
.footer-sns a:active{ transform:translate(3px,3px); box-shadow:0 0 0 var(--ink); }
@media(hover:hover){
  .footer-sns a:hover{ transform:translate(-2px,-2px); box-shadow:5px 5px 0 var(--ink); }
}
.f-youtube{ background:#FF0000; }
.f-instagram{ background:linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.f-tiktok{ background:var(--ink); }
.f-tiktok i{ color:#25F4EE; }
.f-x{ background:#000; }
.footer-copy{ font-size:.75rem; color:var(--ink-soft); font-weight:500; }

/* =========================================================
   レスポンシブ（タブレット〜PC）
   ========================================================= */
@media(min-width:600px){
  .sp-br{ display:none; }
  .hero-buttons{
    flex-direction:row; flex-wrap:wrap; max-width:520px;
  }
  .hero-buttons .sns-btn{ flex:1 1 calc(50% - 7px); font-size:1rem; }
  .sns-grid{
    flex-direction:row; flex-wrap:wrap;
  }
  .sns-card{ flex:1 1 calc(50% - 7px); }
  .clip-thumb{ flex:0 0 30%; }
}

@media(min-width:900px){
  .collab{ padding:72px 20px; }
}
