/* ============================================================
   ネオ文化座 スタイルシート
   配色はネオン看板ロゴから採色:
   ピンク #FF2D78 / シアン #6FE0FF / オレンジ #FF8A2B / 夜 #0B060D
   ============================================================ */

:root {
  --night: #0B060D;
  --night-deep: #060309;
  --panel: #170C17;
  --line: #2A1626;
  --line-soft: #3A2136;
  --text: #EFE7EF;
  --text-sub: #B8A8B8;
  --text-dim: #6E5A6E;
  --pink: #FF2D78;
  --pink-soft: #FF5C97;
  --cyan: #6FE0FF;
  --orange: #FF8A2B;
  --gold: #E8C27A;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.7;
}

a { color: inherit; }
img { max-width: 100%; }

.serif { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; }

/* ---------- ヘッダー ---------- */
.nav {
  display: flex; align-items: center; gap: 26px;
  padding: 14px 5vw;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  position: sticky; top: 0; z-index: 20;
  background: rgba(11, 6, 13, .92);
  backdrop-filter: blur(6px);
}
.nav .brand {
  font-family: "Yu Mincho", serif;
  font-size: 17px; letter-spacing: .12em; font-weight: 700;
  color: var(--pink-soft);
  text-shadow: 0 0 10px rgba(255, 45, 120, .7);
  margin-right: auto;
  text-decoration: none;
}
.nav a:not(.brand) { color: var(--text-sub); text-decoration: none; }
.nav a:not(.brand):hover { color: var(--cyan); }
.nav .cta {
  color: #14060B !important; background: var(--orange);
  padding: 8px 18px; font-weight: 700; border-radius: 2px;
  box-shadow: 0 0 14px rgba(255, 138, 43, .5);
}
.nav .cta:hover { filter: brightness(1.1); }

.marquee {
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 22px);
  opacity: .8;
}

/* ---------- ヒーロー ---------- */
.hero {
  padding: 48px 5vw 52px;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 44px; align-items: center;
  background: radial-gradient(ellipse 80% 70% at 30% 35%, #150A16 0%, #0A050B 60%, var(--night-deep) 100%);
}
.hero .logo {
  display: block; width: 100%; max-width: 470px;
  margin: 0 auto; border-radius: 10px;
  box-shadow: 0 0 60px rgba(255, 45, 120, .22), 0 0 130px rgba(255, 122, 31, .14), 0 10px 40px rgba(0, 0, 0, .6);
}
.hero h1 {
  font-family: "Yu Mincho", serif;
  font-size: clamp(22px, 2.6vw, 26px);
  letter-spacing: .1em; font-weight: 700;
  margin: 0 0 10px;
}
.hero h1 .pk { color: var(--pink-soft); text-shadow: 0 0 10px rgba(255, 45, 120, .7); }
.hero .sub { color: var(--text-sub); font-size: 14px; max-width: 30em; margin: 0 0 24px; }
.btns { display: flex; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.btn-pink {
  display: inline-block; background: var(--pink); color: #fff;
  padding: 12px 28px; font-weight: 700; font-size: 14px;
  border-radius: 2px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 0 18px rgba(255, 45, 120, .5);
  font-family: inherit;
}
.btn-cyan {
  display: inline-block; border: 1px solid var(--cyan); color: var(--cyan);
  background: transparent; padding: 12px 28px; font-size: 14px;
  border-radius: 2px; text-decoration: none; cursor: pointer;
  box-shadow: 0 0 10px rgba(63, 211, 255, .25);
  font-family: inherit;
}
.btn-pink:hover, .btn-cyan:hover { filter: brightness(1.15); }

/* 特集カード */
.feature {
  background: var(--panel); border: 1px solid var(--line-soft);
  padding: 14px; border-radius: 4px; cursor: pointer;
  transition: border-color .2s;
}
.feature:hover { border-color: var(--pink-soft); }
.feature .screen {
  aspect-ratio: 16 / 9; border-radius: 2px; position: relative;
  background: linear-gradient(135deg, #2B1B4E 0%, #0E2B4A 55%, #123A3A 100%);
  background-size: cover; background-position: center;
}
.feature .screen::after {
  content: "▶"; position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .85); font-size: 30px;
}
.feature .cap { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; font-size: 13px; gap: 10px; }
.feature .cap b { font-family: "Yu Mincho", serif; font-size: 15px; letter-spacing: .05em; }
.feature .cap span { color: var(--gold); font-size: 11.5px; letter-spacing: .1em; white-space: nowrap; }

/* ---------- 上映棚 ---------- */
.shelf { padding: 44px 5vw 20px; }
.shelf-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; }
.shelf-head h2 {
  font-family: "Yu Mincho", serif; font-size: 19px;
  letter-spacing: .14em; margin: 0; color: var(--gold); font-weight: 700;
}
.shelf-head span { font-size: 12px; color: var(--text-dim); }

.chips { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.chip {
  font-size: 12px; color: var(--text-sub);
  border: 1px solid var(--line-soft); background: transparent;
  padding: 6px 16px; border-radius: 999px; cursor: pointer;
  font-family: inherit; transition: all .15s;
}
.chip:hover { color: var(--cyan); border-color: var(--cyan); }
.chip.on {
  color: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 0 8px rgba(63, 211, 255, .3);
}

.cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.card { cursor: pointer; }
.card .thumb {
  aspect-ratio: 16 / 9; border-radius: 2px;
  background-size: cover; background-position: center;
  transition: box-shadow .2s;
  position: relative;
}
.card:hover .thumb { box-shadow: 0 0 16px rgba(255, 45, 120, .4); }
.card .thumb .soon {
  position: absolute; right: 8px; bottom: 8px;
  font-size: 10.5px; letter-spacing: .12em;
  color: var(--gold); border: 1px solid rgba(232, 194, 122, .6);
  padding: 2px 8px; background: rgba(11, 6, 13, .7); border-radius: 2px;
}
.card b { display: block; font-size: 13.5px; margin-top: 9px; font-weight: 600; }
.card small { color: var(--text-dim); font-size: 11.5px; letter-spacing: .05em; }
.cards .empty { color: var(--text-dim); font-size: 13px; grid-column: 1 / -1; padding: 20px 0; }

/* ---------- ネオ文化座とは ---------- */
.about { padding: 40px 5vw 48px; }
.about .inner {
  border: 1px solid var(--line-soft); border-radius: 4px;
  padding: 32px clamp(20px, 4vw, 44px);
  background: linear-gradient(160deg, #120913 0%, var(--night) 70%);
}
.about h2 {
  font-family: "Yu Mincho", serif; font-size: 19px; letter-spacing: .14em;
  margin: 0 0 14px; color: var(--gold); font-weight: 700;
}
.about p { color: var(--text-sub); font-size: 14px; max-width: 42em; margin: 0 0 12px; }
.about .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.about .value { border-top: 2px solid var(--pink); padding-top: 12px; }
.about .value b { font-size: 14px; display: block; margin-bottom: 6px; }
.about .value.v2 { border-color: var(--cyan); }
.about .value.v3 { border-color: var(--orange); }
.about .value p { font-size: 12.5px; margin: 0; }

/* ---------- 掲載申請 ---------- */
.submit { padding: 8px 5vw 60px; text-align: center; }
.submit .inner {
  border: 1px solid var(--line-soft); border-radius: 4px;
  padding: 40px clamp(20px, 4vw, 44px);
  background: radial-gradient(ellipse 60% 80% at 50% 0%, #1A0D18 0%, var(--night) 75%);
}
.submit h2 {
  font-family: "Yu Mincho", serif; font-size: clamp(19px, 2.4vw, 23px);
  letter-spacing: .14em; margin: 0 0 12px; font-weight: 700;
}
.submit h2 .pk { color: var(--pink-soft); text-shadow: 0 0 10px rgba(255, 45, 120, .6); }
.submit p { color: var(--text-sub); font-size: 13.5px; max-width: 36em; margin: 0 auto 24px; text-align: left; }

/* ---------- フッター ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 16px 5vw; font-size: 11px; color: var(--text-dim);
  letter-spacing: .08em;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
footer a { color: var(--text-dim); text-decoration: none; }
footer a:hover { color: var(--text-sub); }

/* ---------- 作品モーダル ---------- */
.modal-bg {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(4, 2, 6, .85);
  display: none; align-items: center; justify-content: center;
  padding: 4vw;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: 6px; max-width: 720px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 18px;
}
.modal .player { aspect-ratio: 16 / 9; border-radius: 3px; overflow: hidden; background: #000; }
.modal .player iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal .player .novideo {
  height: 100%; display: grid; place-items: center;
  background: linear-gradient(135deg, #2B1B4E 0%, #0E2B4A 55%, #123A3A 100%);
  color: var(--gold); font-size: 13px; letter-spacing: .2em;
  font-family: "Yu Mincho", serif;
}
.modal h3 { font-family: "Yu Mincho", serif; font-size: 19px; letter-spacing: .06em; margin: 16px 0 4px; }
.modal .meta { color: var(--gold); font-size: 12px; letter-spacing: .1em; margin-bottom: 12px; }
.modal .syn { color: var(--text-sub); font-size: 13.5px; margin: 0 0 12px; }
.modal .tools { color: var(--text-dim); font-size: 12px; margin: 0 0 16px; }
.modal .close {
  background: transparent; border: 1px solid var(--line-soft);
  color: var(--text-sub); padding: 8px 22px; border-radius: 2px;
  cursor: pointer; font-family: inherit; font-size: 13px;
}
.modal .close:hover { color: var(--cyan); border-color: var(--cyan); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 820px) {
  .pc-br { display: none; }
  .nav { gap: 14px; font-size: 12px; flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 32px; }
  .hero .logo { max-width: 420px; }
  .about .values { grid-template-columns: 1fr; }
}
