/* ==========================================================
   Design tokens — ポスターの配色（黄/赤/白/黒）を基調に構成
   ========================================================== */
@font-face{
  font-family: "Tetsubin Gothic";
  src:
    url('/fonts/tetsubin-gothic.woff2') format('woff2'),
    url('/fonts/tetsubin-gothic.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root{
  --yellow: #f8e100;
  --yellow-deep: #F2CE00;
  --red: #c50025;
  --ink: #1A1A1A;
  --white: #FFFFFF;
  --gray-line: rgba(0,0,0,.12);
  --placeholder-bg: #EDEDED;
  --placeholder-line: #BEBEBE;

  --font-display: "Zen Kaku Gothic New", sans-serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --font-heading: "Tetsubin Gothic", "Zen Kaku Gothic New", sans-serif;

  --container: 1040px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  cursor: url('/img/noodle.png'), auto;
}
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
h1,h2,h3{ margin:0; }
p{ margin:0 0 1em; }
ul,dl{ margin:0; padding:0; list-style:none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* placeholder blocks — 差し替え前提の画像領域 */
.placeholder-block{
  position: relative;
  background:
    repeating-linear-gradient(45deg, var(--placeholder-bg), var(--placeholder-bg) 10px, #e2e2e2 10px, #e2e2e2 20px);
  border: 1px solid var(--placeholder-line);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.placeholder-block::after{
  content: attr(data-label);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #6a6a6a;
  background: rgba(255,255,255,.85);
  padding: 6px 14px;
  border-radius: 3px;
  letter-spacing: .02em;
  text-align:center;
  max-width: 80%;
}

/* ==========================================================
   Header
   ========================================================== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.is-scrolled{
  background: rgb(153 153 153 / 92%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray-line);
}
.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
}
.global-nav{ display:flex; align-items:center; justify-content: space-around; min-width: 0; flex: 1; }
.global-nav ul{ display:flex; gap: 28px; }
.header-sns{ display:flex; align-items:center; gap: 16px; }
.header-sns a{ display:flex; color: var(--white); transition: color .3s ease, opacity .2s ease; }
.header-sns a:hover{ opacity: .7; }
.header-sns svg{ width: 32px; height: 32px; }
.site-header.is-scrolled .header-sns a{ color: var(--ink); }
.global-nav a{
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  color: var(--white);
  transition: color .3s ease;
}
.site-header.is-scrolled .global-nav a{ color: var(--ink); }
.global-nav a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:2px; background: var(--red);
  transition: width .25s ease;
}
.global-nav a:hover::after{ width:100%; }
.menu-btn{
  display:none;
  width: 32px; height: 24px;
  border:0; background:none; cursor:pointer;
  flex-direction: column; justify-content: space-between;
  padding:0;
}
.menu-btn span{ display:block; height:2px; background: var(--white); transition: background .3s ease; }
.site-header.is-scrolled .menu-btn span{ background: var(--ink); }

.logo-mark{ flex-shrink: 0; }
.logo-mark img{
  height: 140px;
  width: auto;
  display: block;
}
@media (max-width: 600px){
  .logo-mark img{ height: 64px; }
}

@media (max-width: 980px){
  .global-nav{ display:none; }
  .header-sns{ margin-left: auto; }
  .menu-btn{ display:flex; }
  .global-nav.is-open{
    display:flex;
    flex-direction: column;
    position:absolute;
    top: 100%; left:0; right:0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-line);
  }
  .global-nav.is-open ul{
    flex-direction: column;
    gap:0; width:100%;
  }
  .global-nav.is-open li{ border-top: 1px solid var(--gray-line); }
  .global-nav.is-open a{ display:block; padding: 16px 24px; color: var(--ink); }
}

/* ==========================================================
   Hero
   ========================================================== */
.hero{
  position: relative;
  min-height: 85svh;
  overflow:hidden;
  background: var(--ink);
}
.hero-bg-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  object-position: center;
}
.hero-video-poster-dim{
  position:absolute; inset:0;
  background: rgba(0,0,0,.5);
  transition: opacity .5s ease;
  pointer-events: none;
}
.hero-video-poster-dim.is-hidden{ opacity: 0; }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 22%);
  pointer-events: none;
}
.hero-face{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  max-width: 340px;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  pointer-events: none;
  animation: hero-face-zoom 2s cubic-bezier(.19,1,.22,1) forwards;
}
@keyframes hero-face-zoom{
  0%   { transform: translate(-50%, -50%) scale(0); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
.hero-face2{
  position: absolute;
  top: 80%;
  left: 49.5%;
  width: 60%;
  max-width: 190px;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: hero-kv-text-in 0s steps(1) forwards;
  animation-delay: 3.5s;
}
@media (max-width: 600px){
  .hero-face2{ top: 73%; left: 48%; width: 50%; max-width: 160px; }
}
@keyframes hero-kv-text-in{
  to{ opacity: 1; }
}
.hero-kv-text{
  position: absolute;
  top: 220px;
  left: 24px;
  max-width: 700px;
  width: 40%;
  z-index: 4;
  opacity: 0;
  animation: hero-kv-text-in 0s steps(1) forwards, text-tremble 4s ease-in-out infinite;
  animation-delay: 2s, 2s;
}
.hero-kv-text3{
  position: absolute;
  top: 420px;
  left: 40px;
  max-width: 700px;
  width: 40%;
  z-index: 4;
  opacity: 0;
  animation: hero-kv-text-in 0s steps(1) forwards, text-tremble 4s ease-in-out infinite;
  animation-delay: 2.5s, 2.5s;
}
@keyframes text-tremble{
  0%   { transform: translateX(0); }
  2%   { transform: translateX(-8px); }
  4%   { transform: translateX(8px); }
  6%   { transform: translateX(-8px); }
  8%   { transform: translateX(8px); }
  10%  { transform: translateX(-6px); }
  12%  { transform: translateX(6px); }
  14%  { transform: translateX(-4px); }
  16%  { transform: translateX(4px); }
  18%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}
@media (max-width: 600px){
  .hero-kv-text{ max-width: 280px; width: 70%; top: 150px; left: 16px; }
  .hero-kv-text3{ top: 240px; right: 16px; left: auto; max-width: 290px; width: 70%; }
}
.hero-kv-text2{
  position: absolute;
  bottom: 40px;
  right: 24px;
  max-width: 700px;
  width: 40%;
  z-index: 4;
  opacity: 0;
  animation: hero-kv-text-in 0s steps(1) forwards, text-tremble 4s ease-in-out infinite;
  animation-delay: 4s, 4s;
}
@media (max-width: 600px){
  .hero-kv-text2{ bottom: 30px; right: 16px; width: 70%; max-width: 300px; }
}
.hero-kv-text4{
  position: absolute;
  top: 280px;
  right: 24px;
  max-width: 700px;
  width: 40%;
  z-index: 4;
  opacity: 0;
  animation: hero-kv-text-in 0s steps(1) forwards, text-tremble 4s ease-in-out infinite;
  animation-delay: 3s, 3s;
}
@media (max-width: 600px){
  .hero-kv-text4{ top: auto; bottom: 130px; left: 16px; right: auto; max-width: 320px; width: 70%; }
}
/* Key Visual Info */
.impact-cards{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto 50px;
  padding: 0 24px;
}
.impact-card{
  --tilt: -1.5deg;
  position: relative;
  flex: 1 1 200px;
  max-width: 480px;
  background: var(--white);
  color: var(--red);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 20px 16px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.5;
  opacity: 0;
}
.impact-card-note{
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  opacity: .7;
}
.impact-card:nth-child(1){ --tilt: -1.5deg; animation-delay: 0s; }
.impact-card:nth-child(2){ --tilt: 1.5deg; animation-delay: .25s; }
.impact-card:nth-child(3){ --tilt: -1deg; animation-delay: .5s; }
.impact-cards.is-visible .impact-card{
  animation: card-drop .9s cubic-bezier(.34,1.2,.64,1) forwards;
}
@keyframes card-drop{
  0%   { transform: translateY(-600px) rotate(0deg); opacity: 0; }
  60%  { transform: translateY(16px) rotate(var(--tilt)); opacity: 1; }
  80%  { transform: translateY(-6px) rotate(var(--tilt)); }
  100% { transform: translateY(0) rotate(var(--tilt)); opacity: 1; }
}
@media (max-width: 700px){
  .impact-cards{ flex-direction: column; align-items: center; }
  .impact-card{ max-width: 320px; width: 100%; }
}
.impact-followup{
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 24px;
  opacity: 0;
}
.impact-section.is-visible .impact-followup{
  animation: followup-in .8s cubic-bezier(.2,.8,.3,1) forwards;
  animation-delay: 1.6s;
}
@keyframes followup-in{
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.followup-lead{
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--ink);
  margin-bottom: 24px;
}
.award-announcements{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.award-line{
  display: inline-block;
  background: var(--white);
  color: var(--red);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 12px 28px;
  font-weight: 900;
  font-size: clamp(16px, 3vw, 24px);
  line-height: 1.5;
}
.keyvisual-info-lead{
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 8px;
}
section.keyvisual-info{
  text-align: center;
  padding-top: 48px;
  background-color: var(--yellow);
  background-image:
    linear-gradient(rgba(248, 225, 0, 0.85), rgb(248 225 0 / 50%)),
    url('img/kv_row_bg.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.keyvisual-info-container{ max-width: 1400px; }
.keyvisual-info-badge{
  display: block;
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: .1em;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  margin: 0 auto 32px;
  max-width: 900px;
}
.keyvisual-info-title{
  font-family: var(--font-display);
  font-weight: 900;
  white-space: nowrap;
  font-size: min(4.6vw, 64px);
  line-height: 1.3;
  letter-spacing: .02em;
  margin-bottom: 26px;
}
.keyvisual-info-release{
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0;
}
.sp-break{ display: none; }
@media (max-width: 600px){
  .sp-break{ display: block; }
}

/* ==========================================================
   Sections
   ========================================================== */
.section{ padding: 84px 0; }
.section-accent{ background: var(--yellow); }
.section-title{
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 44px);
  letter-spacing: .04em;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width: 40px; height: 4px;
  background: var(--red);
}

/* News */
#news{
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('img/news_bg.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.news-list{ margin: 0 auto; }
.news-list li{
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,.18);
}
.news-heading{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 6px;
}
.news-date{
  font-weight: 700;
  letter-spacing: .03em;
  margin-right: 14px;
}
.news-body{
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

/* Trailer */
#trailer{
  background-color: var(--yellow);
  background-image:
    linear-gradient(rgba(248, 225, 0, 0.5), rgba(248, 225, 0, 0.5)),
    url('img/trailer_bg.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.trailer-wrap{ max-width: 760px; margin: 0 auto; }
.trailer-thumb{
  position: relative;
  aspect-ratio: 16/9;
  width:100%;
  background: var(--ink);
}
.trailer-thumb iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.trailer-caption{ text-align:center; margin-top:16px; font-weight:700; font-size:16px; }

/* Introduction */
#introduction{
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url('img/introduction_bg.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.intro-visual{ width:100%; aspect-ratio: 16/9; margin-bottom: 40px; object-fit: cover; }
.intro-text{ margin: 0 auto 48px; font-size:18px; }

.story-box{
  background: #F5F5F5;
  padding: 40px clamp(20px, 5vw, 56px);
  max-width: 900px;
  margin: 0 auto 48px;
}
.story-title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 18px;
}
.story-box p{ font-size: 18px; margin:0; }

.scene-strip{
  overflow: hidden;
  width: 100%;
}
.scene-strip-track{
  display: flex;
  width: max-content;
  animation: scene-scroll 30s linear infinite;
}
@keyframes scene-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.scene-thumb{
  width: 33.3333vw;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (max-width: 700px){
  .scene-thumb{ width: 60vw; }
}
#introduction{ padding-bottom: 0; }

/* Cast */
#cast{
  background-color: var(--yellow);
  background-image:
    linear-gradient(rgba(248, 225, 0, 0.85), rgba(248, 225, 0, 0.85)),
    url('img/cast_bg.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.cast-lead-list{
  display:flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 56px;
}
.cast-lead{ display:flex; gap:24px; align-items:center; }
.cast-lead .cast-photo{ width: 220px; height: 220px; flex-shrink:0; border-radius: 50%; object-fit: cover; }
.cast-photo-swap{
  position: relative;
  overflow: hidden;
  background: var(--placeholder-bg);
}
.cast-photo-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.cast-photo-img.is-active{ opacity: 1; }
.cast-photo-swap.is-wobbling{
  animation: photo-wobble .8s ease-in-out;
}
@keyframes photo-wobble{
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-6px); }
  20% { transform: translateX(6px); }
  30% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  50% { transform: translateX(-5px); }
  60% { transform: translateX(5px); }
  70% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  90% { transform: translateX(-2px); }
}
.cast-name{ font-size:17px; font-weight:800; margin-bottom:4px; }
.cast-role{ font-size:15px; opacity:.75; margin:0; }

.cast-grid{
  display:grid;
  gap: 28px 20px;
  margin: 0 auto 40px;
}
.cast-grid-mid{ grid-template-columns: repeat(2, 1fr); max-width: 640px; }
.cast-grid-small{ grid-template-columns: repeat(3, 1fr); max-width: 480px; }
.cast-grid-support{ grid-template-columns: repeat(2, 1fr); max-width: 700px; gap: 32px 24px; }
#cast .story-title{
  text-align: center;
  margin: 48px 0 24px;
}
.cast-item .cast-photo{ width: 180px; aspect-ratio: 1/1; border-radius: 50%; margin: 0 auto 10px; object-fit: cover; display: block; }
.cast-item .cast-name{ font-size:15px; text-align:center; }
.cast-item .cast-role{ font-size:13px; text-align:center; }
.cast-grid-support .cast-name,
.cast-grid-support .cast-role{ font-size: 16px; }
.cast-name-sm{ font-size:13px; text-align:center; font-weight:700; margin:0; }

.cast-note{
  text-align:center;
  font-size: 18px;
  line-height: 2.2;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 700px){
  .cast-lead{ flex-direction:column; text-align:center; }
}

/* Staff */
#staff{
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('img/staff_bg.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.staff-columns{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
}
.staff-row{
  display:flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-line);
  font-size: 18px;
}
.staff-row dt{ width: 150px; flex-shrink:0; font-weight:700; line-height: 1.9; }
.staff-row dd{ margin:0; line-height: 1.9; }
.staff-note{ font-size: 10px; }
@media (max-width: 700px){
  .staff-columns{ grid-template-columns: 1fr; gap: 0; }
}

/* Comment */
#comment{
  background-color: var(--yellow);
  background-image:
    linear-gradient(rgba(248, 225, 0, 0.85), rgba(248, 225, 0, 0.85)),
    url('img/comment_bg.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.comment-list{
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}
.comment-box{
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,.15);
  text-align:left;
}
.comment-list .comment-box:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.comment-text{
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 20px;
}
.comment-by{ font-size: 15px; font-weight:700; }

/* Theater */
.theater-tabs{
  display:flex;
  justify-content:center;
  gap: 12px;
  margin-bottom: 32px;
}
.theater-tab{
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 10px 32px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.theater-tab.is-active{
  background: var(--ink);
  color: var(--white);
}
.theater-panel{ display:none; }
.theater-panel.is-active{ display:block; }

#theater{
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
    url('img/theater_bg.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.theater-lead{
  text-align:center;
  font-weight: 700;
  font-size: 17px;
  color: var(--red);
  margin-bottom: 32px;
}
.event-card{
  max-width: 800px;
  margin: 30px auto 0;
  border: 2px solid var(--ink);
}
.event-row{
  display:flex;
  gap: 4px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-line);
  font-size: 18px;
  line-height: 1.8;
}
.event-row:last-child{ border-bottom: none; }
.event-label{
  width: 96px;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: .04em;
}
.event-value{ flex: 1; }
.external-link{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.external-link:hover{ opacity: .75; }
.external-link-icon{ width: 14px; height: 14px; flex-shrink: 0; }
.event-sub{
  display:inline-block;
  margin-top: 4px;
  font-size: 14px;
  opacity: .7;
}
.event-note{
  text-align:center;
  font-size: 14px;
  opacity: .7;
  max-width: 640px;
  margin: 20px auto 0;
}
.map-embed{
  max-width: 800px;
  margin: 20px auto 0;
  aspect-ratio: 4/3;
  border: 2px solid var(--ink);
  overflow: hidden;
}
.map-embed iframe{ width:100%; height:100%; display:block; }

@media (max-width: 560px){
  .event-row{ flex-direction: column; gap: 6px; }
  .event-label{ width: auto; }
}

/* Support */
#support{
  background-color: var(--yellow);
  background-image:
    linear-gradient(rgba(248, 225, 0, 0.5), rgba(248, 225, 0, 0.5)),
    url('img/support_bg.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.support-block{ margin-bottom: 32px; text-align:center; }
.support-label{ font-weight:700; font-size:32px; margin-bottom:14px; letter-spacing:.05em; }
.logo-row{ display:flex; justify-content:center; gap:20px; flex-wrap:wrap; }
.logo-image{ height: 400px; width: auto; display:block; }
.support-links{
  display:flex;
  justify-content:center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.support-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: opacity .2s ease;
}
.support-icon svg{ width: 20px; height: 20px; }
.support-icon:hover{ opacity: .8; }
.support-link{
  display:inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  background: var(--ink);
  padding: 12px 24px;
  border-radius: 999px;
  transition: opacity .2s ease;
}
.support-link:hover{ opacity: .8; }

/* Footer */
.site-footer{ background: var(--ink); color: var(--white); }
.footer-strip{
  overflow: hidden;
  width: 100%;
}
.footer-strip-track{
  display: flex;
  width: max-content;
  animation: scene-scroll 30s linear infinite;
}
.footer-thumb{
  width: 50vw;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  object-fit: cover;
  display:block;
}
.footer-bottom{
  text-align:center;
  padding: 40px 20px;
}
.footer-title{ font-weight:700; font-size:16px; margin-bottom:8px; }
.footer-copy{ font-size:13px; opacity:.6; margin:0; }

/* To top */
.to-top{
  position: fixed;
  right: 20px; bottom: 20px;
  width: 44px; height:44px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  cursor:pointer;
  z-index: 90;
  opacity: 0;
  pointer-events:none;
  transition: opacity .25s ease;
}
.to-top.is-visible{ opacity: 1; pointer-events:auto; }

/* ==========================================================
   Scroll reveal — 見出し・画像・ロゴの出現アニメーション
   ========================================================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}
/* グループ内の要素を少しずつ時間差で出現させる */
.reveal-group > *:nth-child(1).reveal{ transition-delay: 0s; }
.reveal-group > *:nth-child(2).reveal{ transition-delay: .12s; }
.reveal-group > *:nth-child(3).reveal{ transition-delay: .24s; }
.reveal-group > *:nth-child(4).reveal{ transition-delay: .36s; }
.reveal-group > *:nth-child(5).reveal{ transition-delay: .48s; }

/* カーソル追従（mako.png） */
.cursor-follower{
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: transform;
}
.cursor-follower.is-visible{ opacity: 1; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; animation: none !important; }
  .reveal{ opacity: 1; transform: none; }
  .impact-card{ opacity: 1 !important; transform: rotate(var(--tilt)) !important; }
  .impact-followup{ opacity: 1 !important; transform: none !important; }
  .hero-face{ transform: translate(-50%, -50%) scale(1) !important; }
  .hero-face2{ opacity: 1 !important; }
  .hero-kv-text{ opacity: 1 !important; transform: none !important; }
  .hero-kv-text3{ opacity: 1 !important; }
  .hero-kv-text2{ opacity: 1 !important; }
  .hero-kv-text4{ opacity: 1 !important; }
}