/* ============================================================
   HOTSOX × 文化服装学院 PROMOTION BATTLE 5 — Landing page styles
   ============================================================ */
:root {
  --c-red: #e74130;
  --c-red-dk: #c22f1f;
  --c-black: #141414;
  --c-ink: #2a2a2a;
  --c-mute: #6f6a63;
  --c-white: #ffffff;
  --c-paper: #f3f0ea;
  --c-line: #dcd8d0;
  --c-salmon: #f7aea6;
  --f-en: "Jost", "Futura", "Helvetica Neue", Arial, sans-serif;
  --f-ja: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-ja);
  color: var(--c-black);
  background: var(--c-paper);
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
.hx-en { font-family: var(--f-en); }
.pc-only { display: block; }
.sp-only { display: none; }
@media (max-width: 767px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}

.hx-wrap {
  width: min(1180px, 100% - 64px);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .hx-wrap { width: calc(100% - 40px); }
}

/* ---------- header ---------- */
.hx-head {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
}
.hx-head__in {
  height: 66px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
}
.hx-head__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--c-black); flex: none; }
.hx-head__logo img { height: 22px; width: auto; }
.hx-head__logo span {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  padding-left: 12px;
  border-left: 1px solid var(--c-line);
  line-height: 1;
  white-space: nowrap;
}
.hx-head__nav { display: flex; gap: 4px; margin-inline: auto; }
.hx-head__nav a {
  position: relative;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--c-black);
  white-space: nowrap;
}
.hx-head__nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.hx-head__nav a:hover::after, .hx-head__nav a:focus-visible::after { transform: scaleX(1); }
.hx-head__ext { display: flex; gap: 8px; flex: none; }
.hx-head__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px 0 18px;
  border-radius: 999px;
  border: 2px solid var(--c-black);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.hx-head__btn i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  position: relative;
  flex: none;
}
.hx-head__btn i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid;
  border-right: 1.5px solid;
  transform: translate(-60%, -40%) rotate(45deg);
}
.hx-head__btn--shop { background: var(--c-black); color: #fff; font-family: var(--f-en); font-weight: 700; letter-spacing: 0.14em; }
.hx-head__btn--shop i::after { border-color: var(--c-black); }
.hx-head__btn--nine { border-color: var(--c-red); color: var(--c-red); background: #fff; }
.hx-head__btn--nine i::after { border-color: #fff; }
.hx-head__btn:hover { transform: translateY(-2px); }
.hx-head__btn--shop:hover { background: var(--c-red); border-color: var(--c-red); }
.hx-head__btn--shop:hover i::after { border-color: var(--c-red); }
.hx-head__btn--nine:hover { background: var(--c-red); color: #fff; }
.hx-head__btn--nine:hover i::after { border-color: var(--c-red); }
.hx-head__menu { display: none; }
.hx-drawer { display: none; }
@media (max-width: 767px) {
  .hx-head__in { height: 56px; gap: 12px; }
  .hx-head__logo img { height: 19px; }
  .hx-head__logo span { display: none; }
  .hx-head__nav, .hx-head__ext { display: none; }
  .hx-head__menu {
    display: block;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    position: relative;
    cursor: pointer;
    padding: 0;
  }
  .hx-head__menu span {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--c-black);
    transition: transform 0.35s var(--ease-out), opacity 0.25s, top 0.35s var(--ease-out);
  }
  .hx-head__menu span:nth-child(1) { top: 14px; }
  .hx-head__menu span:nth-child(2) { top: 21px; }
  .hx-head__menu span:nth-child(3) { top: 28px; }
  .hx-head__menu.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .hx-head__menu.is-open span:nth-child(2) { opacity: 0; }
  .hx-head__menu.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
  .hx-drawer {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 56px;
    bottom: 0;
    background: var(--c-red);
    color: #fff;
    transform: translateY(-104%);
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0.5s;
    visibility: hidden;
    overflow: auto;
    z-index: 79;
  }
  .hx-drawer.is-open { transform: none; visibility: visible; transition: transform 0.5s var(--ease-out); }
  .hx-drawer__in { padding: 28px 0 40px; display: flex; flex-direction: column; min-height: 100%; }
  .hx-drawer__nav { display: flex; flex-direction: column; }
  .hx-drawer__nav a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  }
  .hx-drawer__nav a small { font-family: var(--f-en); font-size: 11px; font-weight: 600; letter-spacing: 0.24em; opacity: 0.85; }
  .hx-drawer.is-open .hx-drawer__nav a { opacity: 1; transform: none; }
  .hx-drawer.is-open .hx-drawer__nav a:nth-child(1) { transition-delay: 0.15s; }
  .hx-drawer.is-open .hx-drawer__nav a:nth-child(2) { transition-delay: 0.22s; }
  .hx-drawer.is-open .hx-drawer__nav a:nth-child(3) { transition-delay: 0.29s; }
  .hx-drawer.is-open .hx-drawer__nav a:nth-child(4) { transition-delay: 0.36s; }
  .hx-drawer__ext { display: grid; gap: 10px; margin-top: 28px; }
  .hx-drawer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    border-radius: 999px;
    background: #fff;
    color: var(--c-red);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
  .hx-drawer__btn i { width: 16px; height: 16px; border-radius: 50%; background: var(--c-red); position: relative; }
  .hx-drawer__btn i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; border-top: 1.5px solid #fff; border-right: 1.5px solid #fff; transform: translate(-60%, -40%) rotate(45deg); }
  .hx-drawer__ig { margin-top: auto; padding-top: 32px; text-align: center; font-family: var(--f-en); font-size: 12px; letter-spacing: 0.16em; font-weight: 600; color: #fff; opacity: 0.9; }
  body.is-menu { overflow: hidden; }
}

/* ---------- key visual ---------- */
.hx-kv {
  position: relative;
  background: var(--c-red);
  color: #fff;
  overflow: hidden;
}
.hx-kv__in {
  position: relative;
  z-index: 2;
  min-height: min(90svh, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 6vw, 80px) 20px clamp(56px, 6vw, 84px);
}
.hx-kv__art {
  width: min(56vw, 880px);
  animation: hx-in-scale 1.1s 0.1s var(--ease-out) both;
}
.hx-kv__art img { width: 100%; height: auto; }
.hx-kv__lead {
  margin-top: clamp(12px, 1.6vw, 24px);
  font-weight: 900;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.75;
  letter-spacing: 0.02em;
  animation: hx-in-up 0.9s 0.55s var(--ease-out) both;
}
.hx-kv__date {
  margin-top: clamp(18px, 2vw, 28px);
  background: #fff;
  color: var(--c-black);
  border-radius: 18px;
  padding: 14px 36px 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: hx-in-up 0.9s 0.75s var(--ease-out) both;
}
.hx-kv__date-lbl {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #fff;
  background: var(--c-red);
  border-radius: 999px;
  padding: 3px 12px 2px;
  margin-bottom: 6px;
}
.hx-kv__date-en {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--c-black);
  white-space: nowrap;
}
.hx-kv__date-en span { color: var(--c-red); }
.hx-kv__date-en small { font-size: 0.55em; letter-spacing: 0.12em; }
.hx-kv__date-ja { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; margin-top: 2px; }
.hx-kv__phase {
  margin-top: clamp(20px, 2.4vw, 34px);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: hx-in-up 0.9s 0.95s var(--ease-out) both;
}
.hx-kv__phase li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 16px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.hx-kv__phase li span { font-size: 10.5px; font-weight: 700; opacity: 0.9; }
.hx-kv__phase li.is-now { background: #fff; color: var(--c-red); border-color: #fff; opacity: 1; }
.hx-kv__phase li + li::before { content: "→"; margin-right: 8px; font-family: var(--f-en); font-weight: 700; opacity: 0.8; }
.hx-kv__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  opacity: 0.8;
  z-index: 3;
}
.hx-kv__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 6px auto 0;
  background: #fff;
  animation: hx-scroll-hint 1.6s ease-in-out infinite;
  transform-origin: top;
}
@media (max-width: 767px) {
  .hx-kv__in {
    min-height: 0;
    padding: 36px 24px calc(38vw + 40px);
  }
  .hx-kv__art { width: 100%; }
  .hx-kv__lead { font-size: 15px; }
  .hx-kv__date { padding: 12px 22px 10px; }
  .hx-kv__date-en { font-size: 24px; }
  .hx-kv__date-ja { font-size: 11px; }
  .hx-kv__phase { gap: 4px; }
  .hx-kv__phase li { padding: 6px 10px; font-size: 11.5px; gap: 4px; }
  .hx-kv__phase li span { display: none; }
  .hx-kv__phase li + li::before { margin-right: 4px; }
  .hx-kv__scroll { display: none; }
}

/* streams (looping sock tiles) */
.hx-stream { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hx-stream__col {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(120px, 11.5vw, 190px);
  overflow: hidden;
  animation: hx-fade 1.4s 0.3s both;
}
.hx-stream__col--l { left: clamp(16px, 4.2vw, 80px); }
.hx-stream__col--r { right: clamp(16px, 4.2vw, 80px); }
.hx-stream__track {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: hx-drift 38s linear infinite;
  will-change: transform;
}
.hx-stream__col--l .hx-stream__track { animation-direction: reverse; animation-duration: 42s; }
.hx-stream__tile {
  flex: none;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.8vw;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
}
.hx-stream__tile:nth-child(odd) { transform: rotate(-4deg); }
.hx-stream__tile:nth-child(even) { transform: rotate(3.5deg) translateX(6%); }
.hx-stream__tile img { width: 100%; height: 100%; object-fit: cover; }
.hx-stream__row { display: none; }
@media (max-width: 767px) {
  .hx-stream__col { display: none; }
  .hx-stream__row {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5vw;
    height: 34vw;
    overflow: hidden;
    animation: hx-fade 1.4s 0.3s both;
  }
  .hx-stream__row .hx-stream__track {
    flex-direction: row;
    width: max-content;
    height: 100%;
    animation: hx-slide 30s linear infinite;
  }
  .hx-stream__row .hx-stream__tile {
    width: auto;
    height: 100%;
    margin: 0 3vw 0 0;
    border-width: 3px;
    border-radius: 12px;
  }
  .hx-stream__row .hx-stream__tile:nth-child(even) { transform: rotate(3.5deg) translateY(4%); }
}

/* ---------- jump nav ---------- */
.hx-jump { padding-top: 36px; }
.hx-jump__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hx-jump__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  border: 3px solid var(--c-red);
  border-radius: 999px;
  background: #fff;
  color: var(--c-red);
  font-weight: 900;
  font-size: 17px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.hx-jump__btn::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid currentColor;
}
.hx-jump__btn:hover { background: var(--c-red); color: #fff; transform: translateY(-3px); }
@media (max-width: 767px) {
  .hx-jump { padding-top: 24px; }
  .hx-jump__list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hx-jump__btn { height: 48px; font-size: 14px; }
}

/* ---------- ticker ---------- */
.hx-ticker {
  margin-top: 48px;
  background: var(--c-black);
  color: #fff;
  overflow: hidden;
  padding: 13px 0;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hx-ticker__track {
  display: flex;
  width: max-content;
  animation: hx-slide 32s linear infinite;
}
.hx-ticker__item { white-space: nowrap; padding: 0 26px; }
.hx-ticker__item::before { content: "●"; color: var(--c-red); margin-right: 26px; font-size: 10px; vertical-align: 2px; }
@media (max-width: 767px) {
  .hx-ticker { margin-top: 32px; font-size: 12px; padding: 11px 0; }
}

/* ---------- section basics ---------- */
.hx-sec { padding-top: clamp(64px, 8vw, 112px); scroll-margin-top: 76px; }
.hx-sec__ttl {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--c-red);
}
.hx-sec__ttl small {
  display: block;
  font-family: var(--f-ja);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-black);
  margin-top: 10px;
}
.hx-sec__lead {
  margin-top: 26px;
  font-size: clamp(21px, 2.1vw, 32px);
  font-weight: 900;
  line-height: 1.55;
}
.hx-sec__body {
  margin-top: 18px;
  font-size: clamp(15px, 1.15vw, 17.5px);
  line-height: 2;
  font-weight: 500;
}
.hx-sec__strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 900;
  line-height: 1.8;
}
.hx-pill {
  display: inline-block;
  background: var(--c-red);
  color: #fff;
  font-weight: 900;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.5;
  border-radius: 999px;
  padding: 6px 28px;
  min-width: 120px;
  text-align: center;
}
.hx-note { font-size: 13px; line-height: 1.8; color: var(--c-mute); font-weight: 500; }
.hx-note li { padding-left: 1.2em; text-indent: -1.2em; }

/* ---------- about ---------- */
.hx-about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas: "text photos" "stats photos";
  gap: clamp(28px, 4vw, 56px) clamp(32px, 5vw, 72px);
  align-items: start;
  margin-top: 8px;
}
.hx-about__text { grid-area: text; }
.hx-about__photos { grid-area: photos; }
.hx-about__grid .hx-stats { grid-area: stats; margin-top: 0; gap: 12px; align-self: end; }
.hx-about__grid .hx-stats__item { padding: 22px 10px 18px; }
.hx-about__grid .hx-stats__num { font-size: clamp(32px, 2.9vw, 46px); }
.hx-about__grid .hx-stats__sub { font-size: 11px; }
.hx-about__photos { display: grid; gap: 18px; padding-top: 12px; }
.hx-about__photo { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.hx-about__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hx-about__photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  background: rgba(20, 20, 20, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
}
.hx-stats {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hx-stats__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 20px 22px;
  text-align: center;
}
.hx-stats__num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  color: var(--c-red);
}
.hx-stats__num small { font-size: 0.42em; margin-left: 4px; letter-spacing: 0.06em; color: var(--c-black); }
.hx-stats__lbl { margin-top: 8px; font-weight: 800; font-size: 14px; }
.hx-stats__sub { margin-top: 2px; font-size: 12px; color: var(--c-mute); }
.hx-artline { margin-top: clamp(40px, 4vw, 60px); }
.hx-artline__ttl { font-family: var(--f-en); font-weight: 700; font-size: 12px; letter-spacing: 0.3em; color: var(--c-mute); }
.hx-artline__ttl em { font-style: normal; font-family: var(--f-ja); letter-spacing: 0.08em; margin-left: 12px; }
.hx-artline__list { margin-top: 14px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.hx-artline__list li { border-radius: 12px; overflow: hidden; background: #fff; }
.hx-artline__list img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 767px) {
  .hx-about__grid { grid-template-columns: 1fr; grid-template-areas: "text" "photos" "stats"; gap: 26px; }
  .hx-about__grid .hx-stats { gap: 10px; }
  .hx-about__grid .hx-stats__item { padding: 18px 16px 16px; }
  .hx-about__grid .hx-stats__sub { font-size: 12px; }
  .hx-about__photos { grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 0; }
  .hx-about__photo img { aspect-ratio: 3 / 4; }
  .hx-about__photo figcaption { font-size: 10px; left: 8px; bottom: 8px; padding: 4px 9px; }
  .hx-about__photo figcaption .en { display: none; }
  .hx-stats { grid-template-columns: 1fr; gap: 10px; }
  .hx-stats__item { padding: 18px 16px 16px; display: grid; grid-template-columns: auto 1fr; column-gap: 18px; text-align: left; align-items: center; }
  .hx-stats__lbl { margin-top: 0; }
  .hx-stats__sub { grid-column: 2; }
  .hx-artline__list { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .hx-artline__list li:nth-child(n + 5) { display: none; }
}

/* ---------- info ---------- */
.hx-info__ttl {
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  margin-top: 18px;
}
.hx-info__ttl span { color: var(--c-red); }
.hx-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 34px;
}
.hx-info__block { padding-top: 6px; }
.hx-info__main {
  margin-top: 14px;
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 900;
  line-height: 1.6;
}
.hx-info__main small { font-size: 0.7em; font-weight: 700; }
.hx-info__sub { margin-top: 6px; font-size: 14px; line-height: 1.8; font-weight: 600; }
.hx-info__sub b { color: var(--c-red); }
.hx-info__notes { margin-top: 8px; }
.hx-info__shout {
  margin-top: 54px;
  text-align: center;
  color: var(--c-red);
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 24px);
}
.hx-info__special {
  margin-top: 14px;
  background: #fff;
  border: 3px solid var(--c-red);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 44px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.hx-info__special-ttl { font-size: clamp(18px, 1.7vw, 26px); font-weight: 900; line-height: 1.5; }
.hx-info__special-ttl span { color: var(--c-red); }
.hx-info__special-txt { margin-top: 8px; font-size: 14.5px; line-height: 1.9; font-weight: 500; }
.hx-info__special-art {
  width: clamp(120px, 14vw, 180px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--f-en);
  font-weight: 800;
  line-height: 1;
  transform: rotate(-8deg);
}
.hx-info__special-art b { font-size: clamp(34px, 3.6vw, 48px); display: block; }
.hx-info__special-art span { font-size: 11px; letter-spacing: 0.2em; display: block; margin-top: 6px; }
@media (max-width: 767px) {
  .hx-info__grid { grid-template-columns: 1fr; gap: 22px; margin-top: 24px; }
  .hx-info__special { grid-template-columns: 1fr; text-align: center; }
  .hx-info__special-art { margin: 0 auto; }
}

/* ---------- guide ---------- */
.hx-guide {
  margin-top: 10px;
  background: var(--c-red);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 4.5vw, 72px) clamp(20px, 4vw, 64px) clamp(32px, 4vw, 56px);
}
.hx-guide__ttl { text-align: center; font-size: clamp(26px, 2.8vw, 40px); font-weight: 900; line-height: 1.2; }
.hx-guide__ttl span { display: block; font-family: var(--f-en); font-size: 0.45em; font-weight: 600; letter-spacing: 0.3em; margin-top: 8px; opacity: 0.9; }
.hx-guide__cards { display: grid; gap: 56px; margin-top: 56px; }
.hx-guide__card {
  position: relative;
  background: #fff;
  color: var(--c-black);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 52px) clamp(20px, 4vw, 56px) clamp(24px, 3vw, 40px);
}
.hx-guide__tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-red);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 999px;
  padding: 7px 28px;
  font-weight: 900;
  font-size: clamp(15px, 1.3vw, 20px);
  white-space: nowrap;
}
.hx-guide__intro { text-align: center; font-size: 14px; font-weight: 700; color: var(--c-mute); }
.hx-steps { margin-top: 10px; }
.hx-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 2px dotted var(--c-red);
}
.hx-step:last-child { border-bottom: 0; }
.hx-step__no { font-family: var(--f-en); font-weight: 800; font-size: 26px; letter-spacing: 0.02em; color: var(--c-red); line-height: 1.2; }
.hx-step__txt { font-size: clamp(16px, 1.35vw, 21px); font-weight: 900; line-height: 1.7; }
.hx-step__txt mark { background: linear-gradient(transparent 55%, var(--c-salmon) 55%); color: inherit; padding: 0 2px; }
.hx-step__sub { margin-top: 6px; font-size: 13.5px; font-weight: 600; color: var(--c-mute); line-height: 1.8; }
.hx-guide__flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.hx-guide__flow li {
  position: relative;
  background: var(--c-paper);
  border-radius: 18px;
  padding: 22px 18px 20px;
  text-align: center;
}
.hx-guide__flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--c-red);
  transform: translateY(-50%);
}
.hx-guide__flow b { display: block; font-size: 16px; font-weight: 900; line-height: 1.5; }
.hx-guide__flow b::before { content: attr(data-n); display: block; font-family: var(--f-en); color: var(--c-red); font-size: 13px; letter-spacing: 0.2em; margin-bottom: 6px; }
.hx-guide__flow span { display: block; margin-top: 8px; font-size: 13px; line-height: 1.7; font-weight: 600; }
.hx-guide__notes { margin-top: 40px; }
.hx-guide__notes h4 { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.hx-guide__notes li { font-size: 13.5px; line-height: 1.9; font-weight: 600; padding-left: 1.2em; text-indent: -1.2em; }
@media (max-width: 767px) {
  .hx-guide { border-radius: 28px; margin-inline: -10px; }
  .hx-guide__cards { gap: 40px; margin-top: 40px; }
  .hx-guide__tag { top: -18px; }
  .hx-step { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .hx-step__no { font-size: 20px; }
  .hx-guide__flow { grid-template-columns: 1fr; gap: 20px; }
  .hx-guide__flow li:not(:last-child)::after { right: auto; top: auto; left: 50%; bottom: -16px; transform: translateX(-50%) rotate(90deg); }
}

/* ---------- entries ---------- */
.hx-entries__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hx-phase { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hx-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-black);
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.hx-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-red); animation: hx-blink 1.4s ease-in-out infinite; }
.hx-demo {
  background: none;
  border: 2px dashed var(--c-mute);
  color: var(--c-mute);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}
.hx-demo:hover { color: var(--c-black); border-color: var(--c-black); }
.hx-entries__hint { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--c-mute); }
.hx-entries__hint b { color: var(--c-red); }
.hx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 22px;
  margin-top: 26px;
}
.hx-grid[hidden] { display: none; }
.hx-entry {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.hx-entry:hover { transform: translateY(-5px); border-color: var(--c-red); }
.hx-entry__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
  display: block;
}
.hx-entry__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.hx-entry:hover .hx-entry__img img { transform: scale(1.05); }
.hx-entry__no {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--c-black);
  color: #fff;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 7px;
}
.hx-entry__final {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 7px;
  text-align: center;
  line-height: 1.2;
}
.hx-entry__final small { display: block; font-family: var(--f-ja); font-size: 10px; font-weight: 900; letter-spacing: 0.04em; }
.hx-entry.is-final { border-color: var(--c-red); }
.hx-entry__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-black);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
}
.hx-entry__body { padding: 14px 16px 16px; }
.hx-entry__team { font-family: var(--f-en); font-size: 11px; letter-spacing: 0.16em; color: var(--c-mute); font-weight: 600; }
.hx-entry__ttl { font-weight: 900; font-size: 16px; line-height: 1.4; margin-top: 4px; }
.hx-entry__desc { font-size: 12.5px; color: #555; margin-top: 6px; line-height: 1.65; min-height: 2.6em; font-weight: 500; }
.hx-entry__act { display: flex; gap: 8px; margin-top: 12px; align-items: center; }
.hx-like {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 2px solid var(--c-red);
  color: var(--c-red);
  background: #fff;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  position: relative;
}
.hx-like svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linejoin: round; }
.hx-like.is-on { background: var(--c-red); color: #fff; }
.hx-like.is-on svg { fill: currentColor; }
.hx-like.is-pop { animation: hx-pop 0.5s var(--ease-back); }
.hx-like.is-shake { animation: hx-shake 0.4s; }
.hx-like__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  background: var(--c-black);
  color: #fff;
  font-family: var(--f-ja);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.hx-like.is-tip .hx-like__tip { opacity: 1; transform: translateX(-50%) translateY(0); }
.hx-entry__buy {
  flex: 1;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--c-black);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.25s;
}
.hx-entry__buy:hover { background: var(--c-red); }
@media (max-width: 767px) {
  .hx-entries__head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hx-status { padding: 8px 16px; font-size: 13px; }
  .hx-demo { padding: 7px 12px; font-size: 11px; }
  .hx-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; margin-top: 20px; }
  .hx-entry { border-radius: 16px; }
  .hx-entry__body { padding: 11px 11px 13px; }
  .hx-entry__ttl { font-size: 14px; }
  .hx-entry__desc { display: none; }
  .hx-entry__act { flex-direction: column; align-items: stretch; gap: 6px; }
  .hx-like { justify-content: center; height: 36px; }
  .hx-entry__buy { height: 36px; font-size: 12.5px; }
  .hx-entry__zoom { display: none; }
}

/* ---------- ranking ---------- */
.hx-rank {
  margin-top: 30px;
  background: var(--c-red);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 4.5vw, 64px) clamp(20px, 4vw, 64px);
}
.hx-rank__head { text-align: center; }
.hx-rank__head .hx-pill { background: #fff; color: var(--c-red); }
.hx-rank__ttl { margin-top: 14px; font-size: clamp(22px, 2.4vw, 34px); font-weight: 900; line-height: 1.4; }
.hx-rank__upd { margin-top: 6px; font-family: var(--f-en); font-size: 12px; letter-spacing: 0.2em; opacity: 0.9; }
.hx-rank__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); margin-top: 40px; }
.hx-rank__cat { font-family: var(--f-en); font-weight: 800; font-size: clamp(30px, 3vw, 44px); line-height: 1; letter-spacing: 0.02em; }
.hx-rank__cat small { display: block; font-family: var(--f-ja); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; margin-top: 8px; }
.hx-rank__list { margin-top: 18px; }
.hx-rank__row {
  display: grid;
  grid-template-columns: 64px 74px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.35);
}
.hx-rank__no { font-family: var(--f-en); font-weight: 800; font-size: 44px; line-height: 1; }
.hx-rank__no small { font-family: var(--f-ja); font-size: 14px; font-weight: 900; margin-left: 2px; }
.hx-rank__row:first-child .hx-rank__no { font-size: 54px; }
.hx-rank__thumb { width: 74px; aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden; background: #fff; border: 3px solid #fff; }
.hx-rank__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hx-rank__name { font-weight: 900; font-size: 16px; line-height: 1.4; }
.hx-rank__name small { display: block; font-family: var(--f-en); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; opacity: 0.85; margin-bottom: 3px; }
.hx-rank__pt { font-family: var(--f-en); font-weight: 800; font-size: 22px; text-align: right; line-height: 1; }
.hx-rank__pt small { font-size: 11px; letter-spacing: 0.1em; margin-left: 3px; }
.hx-rank__pt span { display: block; font-family: var(--f-ja); font-size: 10px; font-weight: 700; opacity: 0.85; margin-top: 5px; }
.hx-rank__note { margin-top: 30px; text-align: center; font-size: 12.5px; font-weight: 600; opacity: 0.92; line-height: 1.8; }
@media (max-width: 767px) {
  .hx-rank { border-radius: 28px; margin-inline: -10px; }
  .hx-rank__grid { grid-template-columns: 1fr; gap: 36px; margin-top: 30px; }
  .hx-rank__row { grid-template-columns: 48px 60px 1fr auto; gap: 10px; }
  .hx-rank__no { font-size: 34px; }
  .hx-rank__row:first-child .hx-rank__no { font-size: 42px; }
  .hx-rank__thumb { width: 60px; }
  .hx-rank__name { font-size: 14px; }
  .hx-rank__pt { font-size: 18px; }
}

/* ---------- movie ---------- */
.hx-movie {
  margin-top: clamp(72px, 9vw, 120px);
  background: var(--c-black);
  color: #fff;
  padding: clamp(60px, 7vw, 100px) 0;
  scroll-margin-top: 70px;
}
.hx-movie .hx-sec__ttl { color: #fff; }
.hx-movie .hx-sec__ttl small { color: #fff; opacity: 0.8; }
.hx-movie__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hx-movie__lead { margin-top: 24px; font-size: clamp(20px, 1.9vw, 28px); font-weight: 900; line-height: 1.6; }
.hx-movie__txt { margin-top: 14px; font-size: 15px; line-height: 2; font-weight: 500; opacity: 0.9; }
.hx-movie__poster {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #222;
}
.hx-movie__poster img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hx-movie__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-decoration: none;
  color: #fff;
}
.hx-movie__play span {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--c-red);
  display: grid;
  place-content: center;
  transition: transform 0.3s var(--ease-back);
}
.hx-movie__play span::after { content: ""; border-left: 22px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 5px; }
.hx-movie__play:hover span { transform: scale(1.1); }
.hx-movie__soon {
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  background: #fff;
  color: var(--c-black);
  padding: 6px 12px;
  border-radius: 999px;
}
@media (max-width: 767px) {
  .hx-movie__grid { grid-template-columns: 1fr; gap: 24px; }
  .hx-movie__lead { font-size: 19px; margin-top: 18px; }
  .hx-movie__play span { width: 64px; height: 64px; }
}

/* ---------- sns ---------- */
.hx-sns { padding-top: clamp(64px, 8vw, 100px); text-align: center; }
.hx-sns__ttl { font-size: clamp(20px, 2.1vw, 30px); font-weight: 900; line-height: 1.5; }
.hx-sns__card {
  margin: 26px auto 0;
  width: min(560px, 100%);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  text-align: left;
  border: 2px solid var(--c-line);
}
.hx-sns__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--c-red); display: grid; place-content: center; }
.hx-sns__icon img { width: 40px; height: auto; }
.hx-sns__name { font-weight: 900; font-size: 17px; line-height: 1.3; }
.hx-sns__id { font-family: var(--f-en); font-size: 13px; color: var(--c-mute); font-weight: 600; letter-spacing: 0.06em; margin-top: 3px; }
.hx-sns__btn {
  background: var(--c-red);
  color: #fff;
  text-decoration: none;
  font-family: var(--f-en);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.25s;
}
.hx-sns__btn:hover { background: var(--c-red-dk); }
.hx-terms { margin-top: 44px; text-align: center; }
.hx-terms__btn {
  background: none;
  border: 0;
  border-bottom: 3px solid var(--c-black);
  padding: 0 0 4px;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.25s;
}
.hx-terms__btn:hover { opacity: 0.6; }
@media (max-width: 767px) {
  .hx-sns__card { grid-template-columns: auto 1fr; padding: 22px 18px; }
  .hx-sns__btn { grid-column: 1 / -1; text-align: center; }
}

/* ---------- footer ---------- */
.hx-foot { margin-top: clamp(80px, 9vw, 130px); padding: 40px 0 130px; border-top: 1px solid var(--c-line); text-align: center; }
.hx-foot img { height: 24px; width: auto; margin: 0 auto; }
.hx-foot p { margin-top: 14px; font-size: 11px; letter-spacing: 0.1em; color: var(--c-mute); font-family: var(--f-en); }
.hx-foot p b { font-family: var(--f-ja); font-weight: 700; letter-spacing: 0.06em; }
@media (max-width: 767px) { .hx-foot { padding-bottom: 110px; } }

/* ---------- fixed CTA ---------- */
.hx-cta {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 26px;
  width: min(300px, 24vw);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.hx-cta.is-show { opacity: 1; transform: none; pointer-events: auto; }
.hx-cta__btn {
  display: block;
  background: var(--c-red);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 22px;
  padding: 16px 18px 14px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.22);
  transition: transform 0.3s var(--ease-out), background 0.25s;
}
.hx-cta__btn:hover { transform: translateY(-3px); background: var(--c-red-dk); }
.hx-cta__en { display: block; font-family: var(--f-en); font-weight: 800; font-size: 21px; letter-spacing: 0.04em; line-height: 1.1; }
.hx-cta__en span { font-size: 0.6em; letter-spacing: 0.2em; margin-left: 6px; }
.hx-cta__ja { display: block; font-size: 12.5px; font-weight: 800; margin-top: 4px; }
@media (max-width: 767px) {
  .hx-cta { right: auto; left: 50%; bottom: 14px; width: calc(100% - 28px); transform: translate(-50%, 20px); }
  .hx-cta.is-show { transform: translate(-50%, 0); }
  .hx-cta__btn { padding: 12px 16px 11px; border-radius: 18px; }
  .hx-cta__en { font-size: 18px; }
  .hx-cta__ja { font-size: 12px; }
}

/* ---------- modal ---------- */
.hx-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.hx-modal.is-open { display: flex; }
.hx-modal__bg { position: absolute; inset: 0; background: rgba(20, 20, 20, 0.78); animation: hx-fade 0.3s both; }
.hx-modal__box {
  position: relative;
  width: min(940px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  animation: hx-in-scale 0.4s var(--ease-out) both;
}
.hx-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-black);
  border: 0;
  cursor: pointer;
  z-index: 2;
}
.hx-modal__close::before, .hx-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hx-modal__close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.hx-modal__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.hx-modal__img { background: #f4f4f4; }
.hx-modal__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.hx-modal__body { padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 44px); }
.hx-modal__team { font-family: var(--f-en); font-size: 12px; letter-spacing: 0.2em; color: var(--c-mute); font-weight: 700; }
.hx-modal__ttl { font-size: clamp(24px, 2.4vw, 34px); font-weight: 900; line-height: 1.35; margin-top: 8px; }
.hx-modal__lbl { margin-top: 26px; font-family: var(--f-en); font-size: 11px; letter-spacing: 0.3em; color: var(--c-red); font-weight: 800; }
.hx-modal__txt { margin-top: 8px; font-size: 15px; line-height: 2; font-weight: 500; }
.hx-modal__act { display: flex; gap: 10px; margin-top: 30px; }
.hx-modal__act .hx-like { height: 46px; padding: 0 20px; font-size: 16px; }
.hx-modal__act .hx-entry__buy { height: 46px; font-size: 15px; }
.hx-modal__terms { padding: 0; }
.hx-modal__terms-ttl { padding: 26px 64px 22px 32px; border-bottom: 2px solid var(--c-black); font-size: 18px; font-weight: 900; }
.hx-modal__terms-body { padding: 28px 32px 32px; font-size: 14px; line-height: 1.9; font-weight: 500; }
.hx-modal__terms-body h5 { font-size: 15px; font-weight: 900; margin: 22px 0 6px; }
.hx-modal__terms-body h5:first-child { margin-top: 0; }
.hx-modal__terms-body li { padding-left: 1.2em; text-indent: -1.2em; }
@media (max-width: 767px) {
  .hx-modal { padding: 12px; }
  .hx-modal__box { border-radius: 20px; max-height: calc(100dvh - 24px); }
  .hx-modal__grid { grid-template-columns: 1fr; }
  .hx-modal__img img { aspect-ratio: 4 / 3; }
  .hx-modal__act { flex-direction: column; }
  .hx-modal__terms-ttl { padding: 20px 56px 16px 20px; font-size: 15px; }
  .hx-modal__terms-body { padding: 20px; font-size: 13px; }
}
body.is-locked { overflow: hidden; }

/* ---------- exhibition (planned) ---------- */
.hx-event__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  border: 2px solid var(--c-line);
}
.hx-event__lbl { font-family: var(--f-en); font-weight: 800; font-size: clamp(26px, 2.6vw, 38px); color: var(--c-red); line-height: 1; }
.hx-event__lbl span { display: block; font-family: var(--f-ja); font-size: 12px; font-weight: 700; color: var(--c-black); letter-spacing: 0.12em; margin-top: 8px; }
.hx-event__ttl { font-size: clamp(18px, 1.7vw, 26px); font-weight: 900; line-height: 1.5; }
.hx-event__txt { margin-top: 8px; font-size: 14.5px; line-height: 1.9; font-weight: 500; color: var(--c-ink); }
@media (max-width: 767px) {
  .hx-event__card { grid-template-columns: 1fr; gap: 14px; }
}
.hx-modal__movie {
  position: relative;
  margin-top: 8px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: var(--c-black);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: #fff;
}
.hx-modal__movie span { width: 52px; height: 52px; border-radius: 50%; background: var(--c-red); display: grid; place-content: center; }
.hx-modal__movie span::after { content: ""; border-left: 14px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 4px; }
.hx-modal__movie em { font-style: normal; font-size: 12px; font-weight: 700; opacity: 0.85; }

/* ---------- reveal on scroll ---------- */
[data-rv] {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-rv="left"] { transform: translateX(-70px); }
[data-rv="scale"] { transform: scale(0.84); }
[data-rv].is-in { opacity: 1; transform: none; }
[data-rv="stagger"] { opacity: 1; transform: none; transition: none; }
[data-rv="stagger"] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
[data-rv="stagger"].is-in > * { opacity: 1; transform: none; }

/* ---------- keyframes ---------- */
@keyframes hx-drift { to { transform: translateY(-50%); } }
@keyframes hx-slide { to { transform: translateX(-50%); } }
@keyframes hx-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes hx-in-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes hx-in-scale { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: none; } }
@keyframes hx-pop { 0% { transform: scale(1); } 40% { transform: scale(1.28); } 100% { transform: scale(1); } }
@keyframes hx-shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
@keyframes hx-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@keyframes hx-scroll-hint { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  [data-rv], [data-rv] > * { opacity: 1 !important; transform: none !important; }
  .hx-stream__track { animation: none !important; }
}
