@charset "UTF-8";
/* ============================================================
   LIM v2 — components.css
   役割：個別UIコンポーネント（Header / Hero / Concept / Works / Services / Approach / Contact / Footer）
   関連：base.css の tokens / layout.css のセクション枠
   ============================================================ */

/* ============================================================
   0. MOTION 基盤（進捗バー / カーソル / リビール）
   ============================================================ */

/* スクロール進捗バー（朱の細線・上端固定）*/
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 200;
  will-change: transform;
  pointer-events: none;
}

/* カスタムカーソル（PC のみ・JS が translate）*/
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--color-accent);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .3s;
  will-change: transform;
}
.cursor.is-active {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  background: rgba(181, 64, 64, 0.25);
}
/* PC でカーソル稼働時はネイティブカーソルを隠す（任意・控えめに残す）*/
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .works__item, .services__item { cursor: none; }
}

/* スクロールリビール初期状態 */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease-out) var(--reveal-delay, 0s),
    transform 0.9s var(--ease-out) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   1. SITE HEADER（固定・mix-blend-mode で反転）
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
  transition: transform .5s var(--ease-out);
}

/* スクロールで隠す / トップ復帰で出す */
.site-header.is-hidden { transform: translateY(-100%); }

.site-header > * { pointer-events: auto; }

.site-header__logo {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.site-header__logo em {
  font-style: normal;
  color: var(--color-accent);
}

.site-header__nav {
  display: flex;
  gap: 30px;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header__nav a:hover {
  color: var(--color-accent);
}

.site-header__nav .is-current {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.site-header__lang {
  margin-left: 6px;
  opacity: 0.7;
}

.site-header__menu-btn {
  display: none;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

/* ============================================================
   1.5 モバイルメニュー（フルスクリーンオーバーレイ）
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 48px;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path .6s var(--ease-quint),
    opacity .4s ease,
    visibility .4s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
}
.mobile-menu[hidden] { display: none; }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav a {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(36px, 11vw, 64px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s;
}
.mobile-menu.is-open .mobile-menu__nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: .15s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: .22s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: .29s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: .36s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: .43s; }
.mobile-menu__nav a:active { color: var(--color-accent); }

.mobile-menu__idx {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

.mobile-menu__foot {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-sub);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* メニュー展開中はスクロールロック */
body.menu-open { overflow: hidden; }

/* ============================================================
   2. HERO（FV）
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px var(--pad-x) 40px;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* FV スライド（クロスフェード・各スライドに ken-burns）*/
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) brightness(0.74);
  opacity: 0;
  /* なめらかなフェードイン/アウト */
  transition: opacity 2.2s ease-in-out;
  will-change: opacity, transform;
  /* ズームは全スライドに常時適用 → 切替時に scale がリセットされない */
  transform: scale(1.06);
  animation: fv-zoom 16s ease-in-out infinite alternate;
}
.hero__slide.is-active {
  opacity: 1;
}

/* FV 用のゆるやかな連続ズーム（filter は触らず transform のみ） */
@keyframes fv-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.05) 42%,
    rgba(0, 0, 0, 0.7) 100%);
}

.hero__sidelabel {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left top;
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: #555;
  text-transform: uppercase;
  z-index: 3;
  animation: fade-up 1s var(--ease-out) 3.0s backwards;
}

.hero__main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1400px;
  padding: 80px 0 60px;
}

.hero__kicker {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  margin-bottom: 36px;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: fade-up 0.8s var(--ease-out) 0.4s backwards;
}

.hero__kicker::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.hero__h1 {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(54px, 9vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
}

.hero__h1 span { display: block; }
.hero__h1 span.is-gray { color: #888; }

.hero__h1 span.is-accent {
  position: relative;
  display: inline-block;
  font-style: normal;
  color: var(--color-accent);
}

.hero__h1 span.is-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 6%;
  height: 12px;
  background: var(--color-accent);
  opacity: 0.22;
  z-index: -1;
}

.hero__h1 span:nth-child(1) { animation: text-in 1.4s var(--ease-out) 0.7s backwards; }
.hero__h1 span:nth-child(2) { animation: text-in 1.4s var(--ease-out) 1.0s backwards; }
.hero__h1 span:nth-child(3) { animation: text-in 1.4s var(--ease-out) 1.3s backwards; }

/* Hero H1 日本語主軸版（人が集まる、を作る。）*/
.hero__h1--jp {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 144px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero__h1--jp .is-accent {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.hero__h1--jp .is-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 4%;
  height: 14px;
  background: var(--color-accent);
  opacity: 0.22;
  z-index: -1;
}

.hero__h1--jp span { display: block; }
.hero__h1--jp span:nth-child(1) { animation: text-in 1.4s var(--ease-out) 0.7s backwards; }
.hero__h1--jp span:nth-child(2) { animation: text-in 1.4s var(--ease-out) 1.0s backwards; }

.hero__sub {
  margin-top: 42px;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.95;
  letter-spacing: 0.08em;
  color: #ddd;
  max-width: 760px;
  animation: fade-up 1s var(--ease-out) 1.8s backwards;
}

.hero__sub em {
  font-style: normal;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
}

.hero__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  align-items: end;
  animation: fade-up 1s var(--ease-out) 2.4s backwards;
}

.hero__counter {
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #888;
  text-transform: uppercase;
  line-height: 2;
}

.hero__counter strong {
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-right: 6px;
}

.hero__counter em {
  color: var(--color-accent);
  font-style: normal;
  font-weight: 700;
}

.hero__location {
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 11px;
  color: #888;
  line-height: 1.95;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__location strong {
  color: #fff;
  font-weight: 900;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.hero__location .jp {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #aaa;
  line-height: 1.85;
}

.hero__cta-zone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 18px 32px;
  border: 1px solid #fff;
  transition: all .4s;
}

.hero__cta::after { content: "\2192"; /* → */ font-weight: 700; }

.hero__cta:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ============================================================
   2.5 KINO Platform セクション
   LIM 独自 AI プラットフォーム・販売しない・チームと連れてくる
   ============================================================ */
.kino {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: var(--gap-section) var(--pad-x);
}

.kino__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://picsum.photos/seed/lim-kino-platform/1800/1200");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.5) brightness(0.3);
  opacity: 0.45;
  animation: hero-kenburns 26s ease-in-out infinite alternate;
}

.kino__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.92) 100%);
}

.kino__inner {
  position: relative;
  z-index: 2;
}

.kino .section__num { color: var(--color-accent); }
.kino .section__lead { color: #ccc; max-width: 560px; }
.kino .section__lead strong {
  color: var(--color-accent);
  font-weight: 700;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
}

/* === KINO Title === */
.kino__title {
  font-family: var(--ff-en);
  font-weight: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kino__title-main {
  font-size: clamp(96px, 16vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.kino__title-main::after {
  content: ".";
  color: var(--color-accent);
}

.kino__title-sub {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-top: 16px;
}

.kino__title-jp {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.1em;
  color: #aaa;
  margin-top: 4px;
}

/* === KINO Teaser === */
.kino__teaser {
  position: relative;
  margin-top: var(--gap-block);
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.kino__teaser-headline {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #fff;
  max-width: 920px;
  animation: fade-up 1.0s var(--ease-out) 0.3s backwards;
}

.kino__teaser-accent {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.kino__teaser-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 4%;
  height: 14px;
  background: var(--color-accent);
  opacity: 0.25;
  z-index: -1;
}

.kino__teaser-desc {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 2.15;
  color: #ccc;
  letter-spacing: 0.06em;
  max-width: 620px;
  animation: fade-up 1.0s var(--ease-out) 0.6s backwards;
}

/* Launch block - 期待感大判 */
.kino__teaser-launch {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  animation: fade-up 1.0s var(--ease-out) 0.9s backwards;
}

.kino__teaser-launch-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}

.kino__launch-label {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888;
}

.kino__launch-year {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(96px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--color-accent);
  text-shadow:
    0 0 40px rgba(181, 64, 64, 0.4),
    0 0 80px rgba(181, 64, 64, 0.2);
  animation: launch-glow 4s ease-in-out infinite alternate;
  will-change: text-shadow;
}

@keyframes launch-glow {
  0% {
    text-shadow:
      0 0 40px rgba(181, 64, 64, 0.4),
      0 0 80px rgba(181, 64, 64, 0.2);
  }
  100% {
    text-shadow:
      0 0 60px rgba(181, 64, 64, 0.7),
      0 0 120px rgba(181, 64, 64, 0.35),
      0 0 25px rgba(255, 255, 255, 0.15);
  }
}

.kino__teaser-launch-sub {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.06em;
}

.kino__teaser-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fade-up 1.0s var(--ease-out) 1.2s backwards;
}

.kino__teaser-secondary {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 4px;
  transition: color .3s;
}

.kino__teaser-secondary:hover {
  color: #fff;
}

/* === Name origin（小さめ・名前の由来ノート）=== */
.kino__origin {
  margin-top: 4px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 640px;
  animation: fade-up 1.0s var(--ease-out) 1.4s backwards;
}

.kino__origin-label {
  display: inline-block;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.kino__origin-text {
  font-family: var(--ff-jp);
  font-weight: 400;
  font-size: 12.5px;
  line-height: 2.2;
  color: #9a9a9a;
  letter-spacing: 0.05em;
}

/* === Showcase === */
.kino__showcase {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: var(--gap-block);
}

.kino__case {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.kino__case-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kino__feature-num {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Coming Soon / β / 開発中 バッジ */
.kino__badge {
  display: inline-block;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.kino__badge--soon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.kino__inline-note {
  display: block;
  margin-top: 10px;
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.04em;
}

.kino__feature-title {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.kino__feature-desc {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 2.0;
  color: #ccc;
  letter-spacing: 0.06em;
  max-width: 480px;
}

/* === Phone Mockup === */
.kino__phone {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.kino__phone-frame {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #2a2a2a 0%, #0d0d0d 100%);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 -2px 0 0 rgba(255, 255, 255, 0.04) inset;
  transform: rotate(-2deg);
  transition: transform .6s var(--ease-out);
}

.kino__case:hover .kino__phone-frame {
  transform: rotate(0deg) translateY(-8px);
}

.kino__phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 5;
}

.kino__phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 44px 16px 20px;
}

/* === Phone shared parts === */
.kphone-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 4px;
}

.kphone-bar-time {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 11px;
  color: #000;
}

.kphone-bar-title {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
}

/* === 01 Conductor screen === */
.kino__phone-screen--conductor { background: #fafafa; }

.kphone-conv {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--ff-jp);
}

.kphone-msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
  animation: msg-in 0.6s var(--ease-out) backwards;
}

.kphone-msg--user {
  align-self: flex-end;
  background: #000;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.kphone-msg--ai {
  align-self: flex-start;
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom-left-radius: 4px;
}

.kphone-conv .kphone-msg:nth-child(1) { animation-delay: 0.3s; }
.kphone-conv .kphone-msg:nth-child(2) { animation-delay: 1.0s; }
.kphone-conv .kphone-msg:nth-child(3) { animation-delay: 1.8s; }
.kphone-conv .kphone-msg:nth-child(4) { animation-delay: 2.6s; }

.kphone-typing {
  align-self: flex-start;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  display: flex;
  gap: 4px;
  animation: msg-in 0.4s var(--ease-out) 3.4s backwards;
}

.kphone-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #888;
  animation: typing 1.4s ease-in-out infinite;
}

.kphone-typing span:nth-child(2) { animation-delay: 0.2s; }
.kphone-typing span:nth-child(3) { animation-delay: 0.4s; }

/* === 02 Booking screen === */
.kino__phone-screen--booking { background: #fff; }

.kphone-cal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.kphone-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px;
  background: #f5f5f5;
  border-radius: 10px;
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 11px;
  color: #000;
  border-left: 3px solid transparent;
  animation: msg-in 0.5s var(--ease-out) backwards;
}

.kphone-cal .kphone-slot:nth-child(1) { animation-delay: 0.3s; }
.kphone-cal .kphone-slot:nth-child(2) { animation-delay: 0.6s; }
.kphone-cal .kphone-slot:nth-child(3) { animation-delay: 0.9s; }
.kphone-cal .kphone-slot:nth-child(4) { animation-delay: 1.2s; }

.kphone-slot span:first-child {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 12px;
  color: #888;
}

.kphone-slot--new {
  background: rgba(181, 64, 64, 0.08);
  border-left-color: var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
  animation: msg-in 0.5s var(--ease-out) 1.5s backwards, slot-pulse 2s ease-in-out 2s infinite;
}

.kphone-slot--new span:first-child { color: var(--color-accent); }

.kphone-cta {
  margin-top: auto;
  background: #000;
  color: #fff;
  padding: 14px;
  text-align: center;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 12px;
  animation: msg-in 0.6s var(--ease-out) 1.8s backwards;
}

/* === 03 Editorial screen === */
.kino__phone-screen--editorial { background: #fafafa; }

.kphone-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-accent);
  color: #fff;
  padding: 4px 10px;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 14px;
  animation: msg-in 0.5s var(--ease-out) 0.3s backwards;
}

.kphone-text {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 13px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 10px;
  animation: msg-in 0.5s var(--ease-out) backwards;
}

.kphone-text:nth-of-type(1) { animation-delay: 0.7s; }
.kphone-text:nth-of-type(2) { animation-delay: 1.1s; }

.kphone-hashtag {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 11px;
  color: var(--color-accent);
  margin-top: 10px;
  margin-bottom: auto;
  animation: msg-in 0.5s var(--ease-out) 1.5s backwards;
}

.kphone-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.kphone-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  color: #000;
  background: #fff;
  animation: msg-in 0.5s var(--ease-out) 1.9s backwards;
}

.kphone-btn--primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* === 04 Analytics screen === */
.kino__phone-screen--analytics { background: #fff; }

.kphone-stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  animation: msg-in 0.6s var(--ease-out) 0.3s backwards;
}

.kphone-stat-num {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #000;
}

.kphone-stat-label {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 11px;
  color: #888;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.kphone-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 8px 0;
  margin-bottom: 16px;
}

.kphone-bar-vis {
  flex: 1;
  background: #000;
  border-radius: 3px 3px 0 0;
  animation: chart-rise 0.8s var(--ease-out) backwards;
}

.kphone-chart .kphone-bar-vis:nth-child(1) { animation-delay: 0.8s; }
.kphone-chart .kphone-bar-vis:nth-child(2) { animation-delay: 0.95s; }
.kphone-chart .kphone-bar-vis:nth-child(3) { animation-delay: 1.1s; }
.kphone-chart .kphone-bar-vis:nth-child(4) { animation-delay: 1.25s; }
.kphone-chart .kphone-bar-vis:nth-child(5) { animation-delay: 1.4s; }

.kphone-bar-vis--accent {
  background: var(--color-accent);
}

.kphone-stat-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-accent);
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  animation: msg-in 0.5s var(--ease-out) 1.8s backwards;
}

/* === keyframes for phone === */
@keyframes msg-in {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes slot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181, 64, 64, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(181, 64, 64, 0); }
}

@keyframes chart-rise {
  0% { height: 0; opacity: 0; }
  100% { opacity: 1; }
}

/* === CTA === */
.kino__cta-zone {
  margin-top: var(--gap-block);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.kino__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 22px 48px;
  border: 1px solid #fff;
  transition: all .4s;
}

.kino__cta::after { content: "\2192"; /* → */ font-weight: 700; }

.kino__cta:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.kino__cta-sub {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.06em;
}

/* ============================================================
   3. CONCEPT
   ============================================================ */
.concept__statement {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.concept__statement .accent {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.concept__statement .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 6%;
  height: 10px;
  background: var(--color-accent);
  opacity: 0.22;
  z-index: -1;
}

.concept__statement .jp {
  display: block;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 0.34em;
  letter-spacing: 0.08em;
  color: #333;
  margin-top: 28px;
  line-height: 1.85;
  text-transform: none;
}

.concept__body-text {
  font-family: var(--ff-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.15;
  color: #333;
  letter-spacing: 0.06em;
}

.concept__body-text p { margin-bottom: 1.6em; }

.concept__body-text strong {
  font-weight: 700;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
}

/* ============================================================
   4. WORKS
   ============================================================ */
.works__counter-item {
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #888;
  text-transform: uppercase;
  line-height: 1.85;
}

.works__counter-item strong {
  display: block;
  font-weight: 900;
  color: #fff;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.works__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
  transition: opacity .3s;
}

.works__item:hover { opacity: 0.85; }

.works__item-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
}

.works__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
  transition: filter .5s, transform .8s var(--ease-quint);
}

.works__item:hover .works__item-img img {
  filter: grayscale(0) contrast(1) brightness(1);
  transform: scale(1.04);
}

.works__item-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.works__item-title {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.works__item-cat {
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #888;
  text-transform: uppercase;
  white-space: nowrap;
}

.works__item-desc {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 12px;
  color: #aaa;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

.works__more a {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.works__more a::after { content: "\2197"; /* ↗ */ }

/* === Works 制作事例 準備中（Coming Soon）=== */
.works__coming {
  margin-top: var(--gap-block);
  padding: clamp(60px, 10vw, 120px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.works__coming-label {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(40px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.works__coming-label::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin: 28px auto 0;
}
.works__coming-text {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.08em;
  color: #aaa;
}
.works__coming-cta {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.works__coming-cta::after { content: "\2192"; /* → */ }
.works__coming-cta:hover { color: var(--color-accent); }

/* === Works 制作事例グリッド === */
.works__grid {
  margin-top: var(--gap-block);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 768px) {
  .works__grid { grid-template-columns: 1fr; gap: 40px; }
}

.work-card { display: block; color: inherit; }

.work-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ececec;
}
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-out), filter 0.6s;
  filter: brightness(0.96);
}
.work-card:hover .work-card__media img { transform: scale(1.05); filter: brightness(1); }

/* 再生ボタン（CSS 三角・文字非依存）*/
.work-card__play {
  position: absolute;
  top: 50%; left: 50%;
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.85);
  transition: background 0.4s, transform 0.4s;
}
.work-card__play::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}
.work-card:hover .work-card__play { background: var(--color-accent); border-color: var(--color-accent); transform: scale(1.08); }

/* 外部リンクアイコン（Web 事例）*/
.work-card__ext {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: var(--ff-en);
  font-size: 15px;
  transition: background 0.4s;
}
.work-card:hover .work-card__ext { background: var(--color-accent); }

.work-card__meta { padding-top: 18px; }
.work-card__cat {
  display: inline-block;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.work-card__title {
  display: block;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.work-card:hover .work-card__title { color: var(--color-accent); }
.work-card__client {
  display: block;
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-sub);
}

.works__more-link {
  display: inline-block;
  margin-top: var(--gap-block);
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  transition: color 0.3s;
}
.works__more-link::after { content: "\00A0\2197"; /* ↗ */ }
.works__more-link:hover { color: var(--color-accent); }

/* === Works ページ（一覧）専用 === */
.works-page { padding: var(--gap-section) var(--pad-x); }
.works-page__item { margin-bottom: clamp(60px, 9vw, 120px); }
.works-page__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.works-page__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.works-page__shot { display: block; overflow: hidden; background: #ececec; aspect-ratio: 16 / 9; }
.works-page__shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease-out); }
.works-page__shot:hover img { transform: scale(1.04); }
.works-page__cap { margin-top: 20px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 20px; }
.works-page__cap .cat {
  font-family: var(--ff-en); font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-accent);
}
.works-page__cap .ttl { font-family: var(--ff-en); font-weight: 900; font-size: clamp(22px, 3vw, 36px); }
.works-page__cap .cli { font-family: var(--ff-jp); font-weight: 500; font-size: 13px; color: var(--color-sub); }
.works-page__visit {
  font-family: var(--ff-en); font-weight: 700; font-size: 12px; letter-spacing: 0.12em;
  border-bottom: 1px solid var(--color-accent); padding-bottom: 3px;
}
.works-page__visit::after { content: "\00A0\2197"; /* ↗ */ }

/* === Works ポートフォリオ グリッド（一望できる見やすい一覧）=== */
.portfolio-wrap { padding: clamp(48px, 7vw, 96px) var(--pad-x) var(--gap-section); }
.portfolio-wrap__label {
  font-family: var(--ff-en); font-weight: 700; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-sub);
  margin-bottom: 28px;
}
.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 900px) { .portfolio { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio { grid-template-columns: 1fr; } }

.pf-tile {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.pf-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.9s var(--ease-out), filter 0.5s;
  filter: brightness(0.84);
}
.pf-tile:hover img { transform: scale(1.06); filter: brightness(0.55); }
.pf-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 52%);
  pointer-events: none;
}

.pf-tile__overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px;
}
.pf-tile__cat {
  display: block;
  font-family: var(--ff-en); font-weight: 700; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-accent);
  margin-bottom: 6px;
}
.pf-tile__title {
  display: block;
  font-family: var(--ff-en); font-weight: 900;
  font-size: clamp(17px, 1.7vw, 23px); line-height: 1.15; margin-bottom: 3px;
}
.pf-tile__client { display: block; font-family: var(--ff-jp); font-weight: 500; font-size: 12px; color: rgba(255, 255, 255, 0.82); }

.pf-tile__icon {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.72);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s, border-color 0.4s;
}
.pf-tile:hover .pf-tile__icon { background: var(--color-accent); border-color: var(--color-accent); }
.pf-tile__icon--play::after {
  content: "";
  border-style: solid; border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #fff; margin-left: 2px;
}
.pf-tile__icon--ext { font-family: var(--ff-en); color: #fff; font-size: 15px; }

/* ============================================================
   5. SERVICES（行ホバーで反転）
   ============================================================ */
.services__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 40px 0;
  border-top: 1px solid var(--color-rule);
  cursor: pointer;
  transition: padding .3s, color .3s, background .3s;
}

.services__item:last-child {
  border-bottom: 1px solid var(--color-rule);
}

.services__item:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: #000;
  color: #fff;
}

.services__item:hover .services__item-num { color: var(--color-accent); }

.services__item:hover .services__item-arrow {
  color: var(--color-accent);
  transform: translateX(8px);
}

.services__item-num {
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--color-sub);
  text-transform: uppercase;
  transition: color .3s;
}

.services__item-h3 {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.services__item-h3 .jp {
  display: block;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 0.34em;
  letter-spacing: 0.06em;
  color: var(--color-sub);
  margin-top: 8px;
  text-transform: none;
}

.services__item:hover .services__item-h3 .jp { color: #aaa; }

.services__item-desc {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.95;
  color: #555;
  letter-spacing: 0.06em;
  transition: color .3s;
}

.services__item:hover .services__item-desc { color: #ccc; }

.services__item-arrow {
  text-align: right;
  transition: color .3s, transform .3s;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-sub);
}

/* ============================================================
   6. APPROACH（並走 3 段）
   ============================================================ */
.approach__step {
  padding: 32px 0;
  border-top: 1px solid var(--color-rule-2);
}

.approach__step-num {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.approach__step-h3 {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.approach__step-jp {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-sub);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.approach__step-desc {
  font-family: var(--ff-jp);
  font-weight: 400;
  font-size: 13px;
  line-height: 2.0;
  color: #444;
  letter-spacing: 0.06em;
}

/* ============================================================
   7. CONTACT
   ============================================================ */
.contact__kicker {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.contact__h2 {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.contact__h2 .jp {
  display: block;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 0.32em;
  letter-spacing: 0.06em;
  color: #aaa;
  margin-top: 20px;
  text-transform: none;
}

.contact__lead {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 2.1;
  color: #ddd;
  max-width: 520px;
  margin-bottom: 56px;
  letter-spacing: 0.06em;
}

.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 24px 56px;
  border: 1px solid #fff;
  transition: all .4s;
}

.contact__cta::after { content: "\2192"; /* → */ font-weight: 700; }

.contact__cta:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ============================================================
   7.5 PAGE HERO（下層ページ共通の冒頭）
   ============================================================ */
.page-hero {
  background: #000;
  color: #fff;
  padding: 180px var(--pad-x) 100px;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* 下層ページ FV の背景画像（data-bg で URL 指定・モノクロ暗め + ゆるやかズーム）*/
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(0.8);
  transform: scale(1.06);
  animation: fv-zoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.08) 45%,
    rgba(0, 0, 0, 0.55) 100%);
}
/* page-hero 直下のテキストを前面に */
.page-hero > *:not(.page-hero__bg) { position: relative; z-index: 2; }

.page-hero__num {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fade-up 0.8s var(--ease-out) 0.3s backwards;
}

.page-hero__num::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.page-hero__title {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  animation: text-in 1.4s var(--ease-out) 0.6s backwards;
}

.page-hero__title .jp {
  display: block;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 0.28em;
  letter-spacing: 0.06em;
  color: #aaa;
  margin-top: 24px;
  text-transform: none;
}

.page-hero__sub {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #ccc;
  margin-top: 36px;
  max-width: 720px;
  animation: fade-up 1.0s var(--ease-out) 1.2s backwards;
}

/* === Legal Pages（プラポリ・特商法・利用規約・API Policy）=== */
.legal {
  padding: var(--gap-section) var(--pad-x);
  max-width: 920px;
  margin: 0 auto;
}

.legal h3 {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 60px 0 12px;
}

.legal h3:first-child { margin-top: 0; }

.legal h4 {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: #000;
}

.legal p {
  font-family: var(--ff-jp);
  font-weight: 400;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 1.4em;
}

.legal ol, .legal ul {
  font-family: var(--ff-jp);
  font-weight: 400;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: #333;
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}

.legal li { margin-bottom: 0.4em; }

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-family: var(--ff-jp);
  font-size: 14px;
}

.legal th, .legal td {
  text-align: left;
  vertical-align: top;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-rule);
  letter-spacing: 0.04em;
}

.legal th {
  font-weight: 700;
  color: #000;
  width: 30%;
  background: var(--color-light);
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal td {
  font-weight: 400;
  color: #333;
}

.legal__last-updated {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--color-rule);
  font-family: var(--ff-en);
  font-style: italic;
  font-size: 12px;
  color: var(--color-sub);
  letter-spacing: 0.04em;
}

.legal__last-updated em {
  color: var(--color-accent);
  font-style: normal;
}

/* ============================================================
   8. SITE FOOTER
   ============================================================ */
.site-footer__brand {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.site-footer__brand em {
  font-style: normal;
  color: var(--color-accent);
}

.site-footer__brand-sub {
  display: block;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--color-sub);
  text-transform: uppercase;
  margin-top: 18px;
}

.site-footer__col h4 {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer__col ul { list-style: none; }
.site-footer__col li { margin-bottom: 10px; }

.site-footer__col a,
.site-footer__col span {
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #ccc;
  text-transform: uppercase;
}

.site-footer__col .jp {
  display: block;
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #aaa;
  text-transform: none;
}

.site-footer__col a:hover { color: var(--color-accent); }

.site-footer__bottom {
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-sub);
  text-transform: uppercase;
}

.site-footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__legal a:hover { color: var(--color-accent); }

.site-footer__edit {
  display: none;
  font-family: var(--ff-en);
  font-weight: 500;
  font-size: 10px;
  color: var(--color-sub);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__edit em {
  font-style: normal;
  color: var(--color-accent);
}
