@charset "utf-8";

/* ============================================================
   エントランス（venus-live.net）のハブ用スタイル。
   「ノワール / ローズの2サービスがある」を伝えるためのもの。

   既存の entrance_custom.css とは別ファイルにしてある。
   ここはハブ（/ と /venuslive）専用で、他のページ（home / schedule）には効かせない。
   ============================================================ */

:root {
  --vl-pink: #e91e8c;
  --vl-pink-deep: #c2156f;
  --vl-noir: #2196d3;        /* 水色基調。 白文字が乗る濃さ */
  --vl-noir-accent: #7fd1f0; /* グラデの明るい方 */
  --vl-noir-line: #bfe3f5;   /* 枠線用の淡い水色 */
  --vl-rose: #d81b60;
  --vl-rose-accent: #ff8fc0;
  --vl-ink: #333;
  --vl-ink-sub: #6b6b6b;
  --vl-line: #e8e8ee;
}

/* ---------- 共通 ---------- */

.lp-h2 {
  text-align: center;
  margin: 0 0 24px;
}
.lp-h2__main {
  display: block;
  font-size: 26px;
  font-weight: bold;
  color: var(--vl-ink);
  letter-spacing: .02em;
}
.lp-h2__sub {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--vl-ink-sub);
}

/* 画像に文字が入っている見出しの、読み上げ・検索用の控え */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.lp-linkbtn {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid var(--vl-pink);
  border-radius: 24px;
  color: var(--vl-pink);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  background: #fff;
  transition: background .2s, color .2s;
}
.lp-linkbtn:hover {
  background: var(--vl-pink);
  color: #fff !important;
  text-decoration: none;
}

/* ---------- ヒーロー ---------- */

.lp-hero {
  padding: 24px 16px 24px;
  background: linear-gradient(180deg, #fff 0%, #fff4fa 100%);
  text-align: center;
}
.lp-hero__inner { max-width: 760px; margin: 0 auto; }
.lp-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--vl-pink);
  font-weight: bold;
}
.lp-hero__title {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.45;
  font-weight: bold;
  color: var(--vl-ink);
}
.lp-hero__title strong {
  color: var(--vl-pink);
  font-size: 1.15em;
}
.lp-hero__lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--vl-ink-sub);
}
.lp-hero__lead b { color: var(--vl-ink); }

/* ---------- 2サービス ---------- */

.lp-towers { padding: 8px 16px 40px; }

/* 2サービスは横並びではなく縦に2段。 紹介バナーを大きく見せるため */
.lp-towers__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-tower {
  border: 2px solid var(--vl-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-tower--noir { border-color: var(--vl-noir-line); }
.lp-tower--rose { border-color: #f6c2d8; }

/* 紹介バナー。 角丸カードいっぱいに出す */
.lp-tower__info {
  display: block;
  line-height: 0;
  background: #fdf3f8;
}
.lp-tower__info img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s;
}
.lp-tower__info:hover img { transform: scale(1.015); }

.lp-tower__body { padding: 22px 24px 24px; }

/* バナー下の本文。 左に説明、右にCTA */
.lp-tower__main {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lp-tower__text { flex: 1 1 auto; min-width: 0; }
.lp-tower__side { flex: 0 0 auto; width: 260px; }

/* なびこのアプリアイコン + サービス種別。 色の違いでノワール / ローズを見分けさせる */
.lp-tower__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}
.lp-tower__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}
.lp-tower--noir .lp-tower__icon { border: 3px solid var(--vl-noir); }
.lp-tower--rose .lp-tower__icon { border: 3px solid var(--vl-rose); }

.lp-tower__genre {
  display: inline-block;
  align-self: center;
  margin: 0;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
.lp-tower--noir .lp-tower__genre { background: var(--vl-noir); }
.lp-tower--rose .lp-tower__genre { background: var(--vl-rose); }

.lp-tower__lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--vl-ink-sub);
}

.lp-tower__modes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
}
.lp-tower__modes li {
  padding: 5px 12px;
  border-radius: 4px;
  background: #f5f5fa;
  font-size: 13px;
  color: var(--vl-ink);
}
.lp-tower__modes:last-child { margin-bottom: 0; }

.lp-tower__cta {
  display: block;
  padding: 14px 16px;
  border-radius: 30px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.lp-tower__cta:hover { opacity: .92; transform: translateY(-2px); color: #fff !important; text-decoration: none; }
.lp-tower--noir .lp-tower__cta { background: linear-gradient(135deg, var(--vl-noir), var(--vl-noir-accent)); }
.lp-tower--rose .lp-tower__cta { background: linear-gradient(135deg, var(--vl-rose), var(--vl-rose-accent)); }

/* ---------- 比較表 ---------- */

.lp-compare-wrap {
  max-width: 940px;
  margin: 32px auto 0;
  overflow-x: auto;
}
.lp-compare {
  width: 100%;
  table-layout: fixed;   /* 中身の文字数で列幅が変わらないように */
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.lp-compare th,
.lp-compare td {
  border: 1px solid var(--vl-line);
  padding: 12px 14px;
  text-align: center;
  vertical-align: middle;
}
.lp-compare tbody th[scope="row"] {
  width: 110px;
  background: #fafafd;
  color: var(--vl-ink-sub);
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
}
.lp-compare__head {
  font-size: 15px;
  letter-spacing: .06em;
  color: #fff;
}
.lp-compare__head span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: normal;
  opacity: .9;
}
.lp-compare__head--noir { background: var(--vl-noir); }
.lp-compare__head--rose { background: var(--vl-rose); }
.lp-compare__shared {
  background: #fff;
  color: var(--vl-pink-deep);
  font-weight: bold;
}

/* ---------- 住人共通 ---------- */

.lp-shared { padding: 40px 16px; background: #fafafd; }
.lp-shared__note {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: var(--vl-ink-sub);
}
.lp-shared__more { text-align: center; margin-top: 24px; }

/* ---------- はじめかた ---------- */

.lp-steps { padding: 40px 16px; }
.lp-steps__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  counter-reset: none;
}
.lp-steps__list li {
  border: 1px solid var(--vl-line);
  border-radius: 12px;
  padding: 22px 18px;
  background: #fff;
  text-align: center;
}
.lp-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--vl-pink);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.lp-steps__list h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  color: var(--vl-ink);
}
.lp-steps__list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--vl-ink-sub);
}

/* ---------- FAQ ---------- */

/* #wrapper の最後のセクション。 下の CTA に接していたので、 地色を挟んで離す */
.lp-faq {
  padding: 40px 16px 48px;
  background: #fafafd;
  margin-bottom: 28px;
}
.lp-faq__list { max-width: 760px; margin: 0 auto; }
.lp-faq__list > div {
  border-bottom: 1px solid var(--vl-line);
  padding: 16px 0;
}
.lp-faq__list dt {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: bold;
  color: var(--vl-ink);
}
.lp-faq__list dt::before {
  content: "Q. ";
  color: var(--vl-pink);
}
.lp-faq__list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--vl-ink-sub);
}

/* ---------- 最下部 CTA ---------- */

.lp-lastcta {
  padding: 40px 16px 48px;
  background: linear-gradient(180deg, #fff4fa 0%, #ffe6f2 100%);
  text-align: center;
}
.lp-lastcta__title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: bold;
  color: var(--vl-ink);
}
.lp-lastcta__towers {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto;
}
.lp-lastcta__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  padding: 18px 22px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  text-align: left;
  transition: transform .15s, opacity .2s;
}
.lp-lastcta__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .7);
}
.lp-lastcta__text { display: flex; flex-direction: column; gap: 3px; }
.lp-lastcta__btn:hover { transform: translateY(-2px); opacity: .93; color: #fff !important; text-decoration: none; }
.lp-lastcta__btn--noir { background: linear-gradient(135deg, var(--vl-noir), var(--vl-noir-accent)); }
.lp-lastcta__btn--rose { background: linear-gradient(135deg, var(--vl-rose), var(--vl-rose-accent)); }
.lp-lastcta__kana  { font-size: 13px; letter-spacing: .06em; opacity: .85; }
.lp-lastcta__name  { font-size: 17px; font-weight: bold; }
.lp-lastcta__genre { font-size: 12px; opacity: .9; }

/* ---------- スマホ ---------- */

@media screen and (max-width: 767px) {
  .lp-h2__main { font-size: 21px; }
  .lp-hero { padding: 20px 16px 30px; }
  .lp-hero__title { font-size: 23px; }
  .lp-hero__lead { font-size: 14px; }

  .lp-towers { padding: 4px 12px 28px; }
  .lp-towers__grid { gap: 22px; }
  .lp-tower__body  { padding: 18px 16px 20px; }
  .lp-tower__main  { flex-direction: column; align-items: stretch; gap: 16px; }
  .lp-tower__side  { width: auto; }
  .lp-tower__icon  { width: 56px; height: 56px; }

  .lp-steps__list  { grid-template-columns: minmax(0, 1fr); }

  .lp-compare { font-size: 13px; min-width: 460px; }
  .lp-compare tbody th[scope="row"] { width: 88px; }

  .lp-lastcta__btn { min-width: 0; flex: 1 1 100%; }
}
