/* SITE 120 — pages.css
   トップ・下層固有のレイアウト調整。共通部品は components.css を参照。 */

/* ---------------- 共通: 分割レイアウト / CTAバンド ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.cta-band {
  background: var(--c-fg); color: #fff; border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 16px; justify-content: center;
}
.cta-band__title { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.cta-band__lead { font-size: 14px; color: #C9CCD6; }
.cta-band__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band .btn--outline { border-color: rgba(255,255,255,0.4); background: transparent; color: #fff; }

/* ---------------- INDEX ---------------- */
.today-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.today-head__date { font-size: 18px; font-weight: 800; }
.today-head__count strong { font-size: 20px; }
.today-head__link { margin-left: auto; }

#lead-preview { max-width: 320px; }
.lead-block { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: center; }

/* ---------------- CONCEPT ---------------- */
.concept-hero { padding-block: 40px 0; }
.concept-hero__tagline { font-size: 20px; color: var(--c-fg-2); margin-top: 10px; }
.world-note-box { border: 1px solid var(--c-accent-line); background: var(--c-accent-soft); border-radius: var(--radius); padding: 18px 20px; font-size: 14px; color: var(--c-fg-2); line-height: 1.75; }
.term-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.store-others-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ---------------- GROUP ---------------- */
.group-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---------------- SHOPS ---------------- */
.compare-toggle { display: flex; gap: 8px; margin-bottom: 18px; }
#compare-cards { display: none; grid-template-columns: 1fr; gap: 16px; }
.shop-list { display: flex; flex-direction: column; gap: 24px; }
.shop-row { display: grid; grid-template-columns: 320px 1fr; gap: 24px; padding: 20px; }
.shop-row__title { display: flex; flex-direction: column; gap: 2px; }
.shop-row__title small { font-size: 13px; font-weight: 500; color: var(--c-muted); }
.shop-row__lead { margin-top: 10px; font-size: 14px; color: var(--c-fg-2); }
.shop-row__facts { margin-top: 14px; }
.shop-row__actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

/* ---------------- SHOP DETAIL ---------------- */
.shop-detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; padding-block: 32px; }
.shop-detail-hero__media { border-radius: var(--radius); overflow: hidden; }
.shop-detail-hero__state { margin-top: 12px; font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 6px; }

/* ---------------- CAST ---------------- */
.cast-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 20px; }
.cast-toolbar__search { flex: 1; min-width: 220px; }
.cast-count { font-size: 14px; color: var(--c-muted); margin-bottom: 14px; }

/* ---------------- SCHEDULE ---------------- */
/* dayBlock は components.css の .schedule-day を使う */

/* ---------------- MENU ---------------- */
.menu-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.menu-alcohol-note { border: 1px solid var(--c-alert); background: #FBEAE6; border-radius: var(--radius); padding: 14px 16px; font-size: 14px; margin-bottom: 24px; }

/* ---------------- SYSTEM ---------------- */
.system-notes { font-size: 14px; color: var(--c-fg-2); }
.system-notes li { padding-left: 16px; position: relative; margin-top: 6px; }
.system-notes li::before { content: "・"; position: absolute; left: 0; }

/* ---------------- EVENT ---------------- */
.event-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 20px; }

/* ---------------- NEWS ---------------- */
/* .update-item は components.css */

/* ---------------- GALLERY ---------------- */
/* .gallery-grid は components.css */

/* ---------------- ACCESS ---------------- */
.access-map { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.access-map img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ---------------- RECRUIT ---------------- */
.recruit-hero__lead { max-width: 640px; margin-top: 14px; font-size: 16px; color: var(--c-fg-2); }
.apply-form-section { background: var(--c-bg-3); }

/* ---------------- CONTACT ---------------- */
.contact-hero__lead { max-width: 620px; margin-top: 14px; font-size: 16px; color: var(--c-fg-2); }
/* 電話番号・LINE等を含む長い文言のボタンは、狭い画面で折り返し禁止(nowrap)のままだと
   コンテナ幅を超えて横スクロールを発生させるため、幅いっぱいに広げて折り返しを許可する。 */
.contact-actions .btn { white-space: normal; text-align: left; }
@media (max-width: 767px) {
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { width: 100%; }
}

/* ---------------- PRIVACY ---------------- */
.privacy-section { padding-block: 24px; border-bottom: 1px solid var(--c-line); }
.privacy-section:last-child { border-bottom: 0; }
.privacy-section h2 { font-size: 18px; margin-bottom: 10px; }
.privacy-section p { font-size: 14px; color: var(--c-fg-2); margin-top: 6px; }
