/* ==== Cinematic First View ==== */
.cine {
  position: relative;
  height: 100vh; min-height: 640px;
  background: #0a0a0c;
  overflow: hidden;
  color: #f3efe6;
}
.cine::before {
  /* vignette + film grain */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.8) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .9;
}
.cine::after {
  /* subtle warm glow */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 55%, rgba(232,100,58,.10), transparent 55%);
  opacity: 0; transition: opacity 2s var(--ease);
}
.cine.lit::after { opacity: 1; }

/* Backdrop — abstract floating city motif in soft glow */
.cine-bg {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.08);
  transition: opacity 3s var(--ease), transform 8s var(--ease);
  pointer-events: none;
  mix-blend-mode: screen;
}
.cine.lit .cine-bg { opacity: .35; transform: scale(1); }
.cine-bg svg { width: 100%; height: 100%; opacity: .9; }

.cine-intro {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
}
.cine-intro .line {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 52px);
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #f3efe6;
  opacity: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,.6);
}

.cine-final {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  opacity: 0;
  transition: opacity 2s var(--ease);
}
.cine-final.show { opacity: 1; }
.cine-final .mark { width: 80px; filter: invert(1) brightness(1.8); margin-bottom: 48px; opacity: 0; transform: translateY(12px); transition: opacity 2s .3s var(--ease), transform 2s .3s var(--ease); }
.cine-final.show .mark { opacity: 1; transform: none; }
.cine-final .jp {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1.4; letter-spacing: 0.06em;
  color: #f3efe6;
  margin-bottom: 40px;
  text-shadow: 0 4px 60px rgba(0,0,0,.8);
}
.cine-final .jp .accent { color: var(--orange); }
.cine-final .en {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: clamp(28px, 4vw, 60px);
  color: rgba(243,239,230,.65);
  letter-spacing: 0.02em;
}
.cine-final .en em { color: var(--orange); font-style: italic; font-weight: 500; }

/* Corner UI */
.cine-ui { position: absolute; inset: 0; pointer-events: none; z-index: 5; opacity: 0; transition: opacity 1.5s 1.5s var(--ease); }
.cine-final.show ~ .cine-ui { opacity: 1; }
.cine-ui .tl, .cine-ui .tr, .cine-ui .bl, .cine-ui .br { position: absolute; color: rgba(243,239,230,.55); font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }
.cine-ui .tl { top: 140px; left: 48px; }
.cine-ui .tr { top: 140px; right: 48px; writing-mode: vertical-rl; font-family: "Shippori Mincho", "Noto Serif JP", serif; font-size: 13px; letter-spacing: 0.6em; }
.cine-ui .bl { bottom: 40px; left: 48px; display: flex; align-items: center; gap: 12px; }
.cine-ui .bl::before { content: ""; width: 24px; height: 1px; background: var(--orange); }
.cine-ui .br { bottom: 40px; right: 48px; display: flex; flex-direction: column; align-items: center; gap: 12px; pointer-events: none; }
.cine-ui .br .bar { width: 1px; height: 48px; background: rgba(243,239,230,.35); position: relative; overflow: hidden; }
.cine-ui .br .bar::after { content: ""; position: absolute; inset: 0; background: var(--orange); transform: translateY(-100%); animation: scrollBar 2.4s 2.2s infinite var(--ease); }
@keyframes scrollBar { 0% { transform: translateY(-100%); } 50% { transform: translateY(0); } 100% { transform: translateY(100%); } }
@media (max-width: 900px) { .cine-ui .tl, .cine-ui .tr { display: none; } }

/* Header override for dark hero — desktop only */
/* Keep logo in its original colors — no inversion */
@media (min-width: 901px) {
  body[data-hero="dark"] .nv-header:not(.scrolled) .nv-logo .wm,
  body[data-hero="dark"] .nv-header:not(.scrolled) .nv-nav a { color: #f3efe6; }
  body[data-hero="dark"] .nv-header:not(.scrolled) .nv-burger span { background: #f3efe6; }
}

/* Skip button */
.cine-skip {
  position: absolute; top: 28px; right: 48px; z-index: 10;
  font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(243,239,230,.55); padding: 8px 14px; border: 1px solid rgba(243,239,230,.25);
  pointer-events: auto; cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.cine-skip:hover { color: #f3efe6; border-color: #f3efe6; }
.cine-final.show ~ .cine-skip { display: none; }

/* ==== Marquee strip between hero and body ==== */
.marquee {
  background: var(--ink);
  color: var(--off);
  padding: 28px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(246,244,238,.08);
}
.marquee-track {
  display: flex; gap: 80px;
  animation: mqscroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 42px; font-weight: 400;
}
.marquee-track span.dot { color: var(--orange); }
@keyframes mqscroll { to { transform: translateX(-50%); } }

/* ==== Brand Message — editorial, dramatic ==== */
.msg-sec { position: relative; padding: 50px 48px 70px; max-width: 1400px; margin: 0 auto; }
.msg-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 60px; }
.msg-kicker .mono { color: var(--orange); font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.msg-kicker::before { content: ""; width: 40px; height: 1px; background: var(--orange); }

.msg-huge {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 100px;
}
.msg-huge .sm { font-size: 0.55em; color: var(--stone); display: block; font-weight: 500; letter-spacing: 0.08em; margin-bottom: 18px; }
.msg-huge .hl {
  background: linear-gradient(transparent 62%, rgba(232,100,58,.32) 62%, rgba(232,100,58,.32) 92%, transparent 92%);
  padding: 0 6px;
}
.msg-huge em { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--orange); font-weight: 500; }

.msg-body-grid { display: block; max-width: 780px; margin: 0 auto; }
.msg-body-grid .left { display: none; }
.msg-body-grid .right { text-align: left; }
.msg-body-grid .left .tate {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 2.2; letter-spacing: 0.4em;
  height: 400px;
}
.msg-body-grid .left .tate::first-letter { color: var(--orange); }
.msg-body-grid .right p {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 20px;
  line-height: 2.2; color: #2f2f33;
  margin-bottom: 28px;
  font-weight: 500;
}
.msg-body-grid .right p:first-of-type { font-size: 20px; line-height: 2; }
.msg-cta { margin-top: 48px; text-align: center; }

.sticker {
  position: absolute;
  width: 180px; height: 180px;
  background: var(--orange); color: var(--off);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 700; font-size: 18px; line-height: 1.6;
  transform: rotate(-8deg);
  box-shadow: 0 20px 60px rgba(232,100,58,.25);
  animation: float 6s ease-in-out infinite;
}
.sticker .sm { font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: .85; margin-bottom: 6px; font-weight: 600; }
.sticker .big { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 42px; line-height: 1; font-weight: 400; margin-top: 4px; }
@keyframes float { 0%,100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-12px); } }

@media (max-width: 900px) {
  .msg-sec { padding: 100px 24px; }
  .msg-body-grid { grid-template-columns: 1fr; gap: 48px; }
  .msg-body-grid .left .tate { height: auto; writing-mode: horizontal-tb; }
}

/* ==== Service — bold numbered rows with hover reveal ==== */
.svc-sec {
  background: var(--ink); color: var(--off);
  padding: 200px 0 200px;
  position: relative; overflow: hidden;
}
.svc-sec::before {
  content: "Service."; position: absolute;
  bottom: -60px; right: -40px;
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(200px, 32vw, 520px); line-height: 0.85;
  color: rgba(232,100,58,.08); pointer-events: none; user-select: none;
  letter-spacing: -0.03em;
}
.svc-wrap { max-width: 1400px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
.svc-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; margin-bottom: 120px; align-items: end; }
.svc-head .mono { color: var(--orange); }
.svc-head h2 { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-size: clamp(38px, 5.4vw, 80px); line-height: 1.25; font-weight: 700; margin-top: 24px; letter-spacing: 0.02em; }
.svc-head p { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-size: 17px; line-height: 2.2; color: #c9c5bc; max-width: 620px; font-weight: 500; }

.svc-rows { border-top: 1px solid rgba(246,244,238,.14); }
.svc-r {
  display: grid; grid-template-columns: 120px 1fr auto 60px;
  align-items: center; gap: 40px;
  padding: 48px 8px;
  border-bottom: 1px solid rgba(246,244,238,.14);
  position: relative; overflow: hidden;
  transition: padding .5s var(--ease), background .5s var(--ease);
}
.svc-r::before {
  content: ""; position: absolute; inset: 0; background: var(--orange);
  transform: translateY(100%); transition: transform .6s var(--ease);
  z-index: 0;
}
.svc-r:hover::before { transform: translateY(0); }
.svc-r > * { position: relative; z-index: 1; }
.svc-r:hover { padding-left: 24px; }
.svc-r .num { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--orange); font-size: 56px; line-height: 1; transition: color .5s var(--ease); }
.svc-r:hover .num { color: var(--ink); }
.svc-r .ttl { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-weight: 600; font-size: clamp(28px, 3vw, 44px); letter-spacing: 0.04em; }
.svc-r .ttl .sub { display: block; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 18px; color: rgba(246,244,238,.5); font-weight: 400; margin-top: 6px; letter-spacing: 0.02em; }
.svc-r:hover .ttl .sub { color: rgba(14,14,16,.55); }
.svc-r:hover { color: var(--ink); }
.svc-r .mini-desc { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-size: 14px; color: rgba(246,244,238,.55); max-width: 320px; line-height: 1.7; }
.svc-r:hover .mini-desc { color: rgba(14,14,16,.7); }
.svc-r .arr { font-size: 24px; transition: transform .5s var(--ease); }
.svc-r:hover .arr { transform: translate(6px,-6px); }

.svc-cta-row { display: flex; justify-content: center; align-items: center; margin-top: 80px; }
.svc-cta-row .cta-btn { border-color: var(--off); color: var(--off); padding: 28px 60px; font-size: 14px; letter-spacing: 0.22em; }
.svc-cta-row .cta-btn:hover { background: var(--orange); border-color: var(--orange); }

@media (max-width: 900px) {
  .svc-sec { padding: 100px 0; }
  .svc-wrap { padding: 0 24px; }
  .svc-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .svc-r { grid-template-columns: 60px 1fr; gap: 16px; padding: 32px 8px; }
  .svc-r .mini-desc, .svc-r .arr { display: none; }
  .svc-r .num { font-size: 32px; }
  .svc-cta-row { flex-direction: column; gap: 24px; align-items: center; margin-top: 48px; }
}

/* ==== News ==== */
.news-sec { padding: 200px 48px; max-width: 1400px; margin: 0 auto; }
.news-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.news-head h2 { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-size: clamp(44px, 6vw, 92px); font-weight: 700; line-height: 1.1; letter-spacing: 0.02em; }
.news-head h2 .en { display: block; font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--orange); font-size: 0.4em; margin-bottom: 16px; font-weight: 400; letter-spacing: 0.04em; }
.news-list { border-top: 1px solid var(--ink); }
.news-item {
  display: grid; grid-template-columns: 160px 160px 1fr auto;
  gap: 40px; padding: 40px 0;
  border-bottom: 1px solid var(--mist);
  align-items: center;
  transition: padding .5s var(--ease);
}
.news-item:hover { padding-left: 16px; }
.news-item .date { font-family: "Inter", sans-serif; font-size: 14px; letter-spacing: 0.06em; color: var(--stone); font-weight: 500; }
.news-item .cat { font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); text-align: center; font-weight: 600; }
.news-item .ttl { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-weight: 600; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.6; }
.news-item:hover .ttl { color: var(--orange); }
.news-item .arr { font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.18em; color: var(--stone); }

@media (max-width: 900px) {
  .news-sec { padding: 100px 24px; }
  .news-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .news-item { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .news-item .arr { display: none; }
}

/* ==== Partner — bold poster ==== */
.prt-sec {
  position: relative; overflow: hidden;
  background: var(--forest); color: var(--off);
  padding: 240px 48px 200px;
}
.prt-sec::before {
  content: "PARTNER";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(200px, 28vw, 480px); line-height: 0.85;
  color: rgba(232,100,58,.12); white-space: nowrap;
  letter-spacing: -0.02em; pointer-events: none; user-select: none; font-weight: 400;
}
.prt-wrap { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.prt-top { text-align: center; margin-bottom: 120px; }
.prt-top .mono { color: #c5d3c9; letter-spacing: 0.3em; }
.prt-top h2 { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-weight: 700; font-size: clamp(40px, 6.5vw, 108px); line-height: 1.25; margin: 32px 0 40px; letter-spacing: 0.02em; }
.prt-top h2 .n { color: var(--orange); font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.1em; font-weight: 500; }
.prt-top p { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-size: 16px; line-height: 2.2; color: #d4d8d4; max-width: 680px; margin: 0 auto; font-weight: 500; }

.prt-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(246,244,238,.14); border: 1px solid rgba(246,244,238,.14); }
.prt-tile { padding: 48px 36px; background: var(--forest); transition: background .5s var(--ease); }
.prt-tile:hover { background: #15302a; }
.prt-tile .n { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--orange); font-size: 48px; line-height: 1; margin-bottom: 24px; font-weight: 400; }
.prt-tile h4 { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-weight: 600; font-size: 24px; margin-bottom: 16px; letter-spacing: 0.04em; }
.prt-tile p { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-size: 14px; line-height: 2; color: #c5d3c9; font-weight: 500; }

.prt-cta-wrap { margin-top: 80px; text-align: center; }
.prt-cta-wrap .cta-btn { border-color: var(--off); color: var(--off); padding: 26px 54px; font-size: 13px; }
.prt-cta-wrap .cta-btn:hover { background: var(--orange); border-color: var(--orange); }

@media (max-width: 900px) {
  .prt-sec { padding: 120px 24px; }
  .prt-top h2 { font-size: clamp(32px, 8vw, 56px); }
  .prt-tiles { grid-template-columns: 1fr; }
}

/* ==== Quote strip ==== */
.quote-strip {
  background: var(--off-2);
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-strip::before, .quote-strip::after {
  content: "\""; position: absolute;
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 320px; line-height: 1; color: rgba(232,100,58,.12); font-weight: 400;
}
.quote-strip::before { top: 20px; left: 48px; }
.quote-strip::after { bottom: -120px; right: 48px; }
.quote-strip p {
  font-family: "Shippori Mincho", "Noto Serif JP", serif; font-weight: 600;
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: 1.7; letter-spacing: 0.06em;
  max-width: 1000px; margin: 0 auto; position: relative; z-index: 1;
}
.quote-strip p em { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--orange); font-weight: 500; }
.quote-strip .sig { display: block; margin-top: 40px; font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); font-weight: 600; }

/* イントロテキスト：位置だけ中央固定、表示制御は元のJSに任せる */
.cine-intro {
  padding: 24px;
  overflow: hidden;
  box-sizing: border-box;
}
.cine-intro .line {
  display: block !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
  box-sizing: border-box;
  margin: 0 !important;
}

@media (max-width: 640px) {
  .cine-intro .line {
    font-size: clamp(18px, 5vw, 28px) !important;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}

/* end */