/*
Theme Name: Marunouchi Group
Theme URI: https://girls-bar-marunouchi.com/
Description: Marunouchi Group ガールズバー グループサイト
Version: 1.0.0
Author: Marunouchi Group
Text Domain: marunouchi
*/

/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #e8607a;   /* ロゴピンク */
  --color-primary-light: #f4a0b0;
  --color-dark:    #1a1a1a;
  --color-bg:      #0d0d0d;
  --color-surface: #1e1e1e;
  --color-text:    #f0e8ea;
  --color-muted:   #999;
  --radius:        8px;
  --max-width:     1100px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

/* ===========================
   Header
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232,96,122,0.2);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(232,96,122,0.4));
  transition: filter 0.2s;
}

.site-logo:hover .site-logo-img {
  filter: drop-shadow(0 0 14px rgba(232,96,122,0.7));
  opacity: 1;
}

.site-nav { display: flex; gap: 32px; }
.site-nav a {
  color: var(--color-text);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--color-primary); }

/* ===========================
   FV
=========================== */
.fv {
  width: 100%;
  min-height: 64vh;
  background: url("assets/images/fv_bg.png") center / cover no-repeat;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.fv-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* 左：ネオンロゴ + テキスト */
.fv-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  gap: 12px;
}

.fv-sub1 {
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  color: #c0607a;
  letter-spacing: 0.12em;
  text-align: center;
  font-weight: 500;
}

.fv-sub2 {
  font-family: "Kiwi Maru", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #ff9ab3 0%, #ff7898 45%, #f35f83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.9));
}

.fv-logo {
  width: min(900px, 100%);
  height: auto;
  mix-blend-mode: multiply;
}

/* 右：キャスト写真 */
.fv-right {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}

.fv-girl {
  height: min(62vh, 530px);
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

.sp-br { display: none; }
@media (max-width: 768px) {
  .sp-br { display: inline; }

  .fv {
    min-height: 80vw;
    background:
      url("assets/images/fv-right.png") right bottom / auto 85% no-repeat,
      url("assets/images/fv_bg.png") center / cover no-repeat;
  }

  .fv-inner {
    padding: 0 16px 0 10%;
    justify-content: flex-start;
  }

  .fv-right { display: none; }

  .fv-left {
    padding: 40px 0;
    z-index: 1;
    align-items: flex-start;
  }

  .fv-sub1,
  .fv-sub2 { text-align: left; }

  .fv-logo { width: min(280px, 55%); }
}

/* ===========================
   Hero（店舗ページ用に残す）
=========================== */
.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0e 60%, #1a0d12 100%);
  border-bottom: 1px solid rgba(232,96,122,0.15);
  padding: 80px 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-title span { color: var(--color-primary); }

.hero-sub {
  font-size: 1rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn:hover {
  background: var(--color-primary);
  color: var(--color-dark);
  opacity: 1;
}

.btn-solid {
  background: var(--color-primary);
  color: var(--color-dark);
  font-weight: 700;
}

.btn-solid:hover { opacity: 0.85; }

.btn--tel {
  margin-top: 20px;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 14px 40px;
}

/* ===========================
   Store Section (TOP) — redesigned
=========================== */
.ss-section {
  background: #fce8f0 url("assets/images/sotres_bg.png") center / cover no-repeat;
}

/* ヘッダー */
.ss-header {
  text-align: center;
  margin-bottom: 48px;
}

.ss-en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.ss-en-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(232,96,122,0.5);
}

.ss-title {
  font-family: "Kiwi Maru", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(180deg, #ff9ab3 0%, #ff7898 45%, #f35f83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.8));
  margin-bottom: 10px;
}

.ss-bow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
}

.ss-bow-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,96,122,0.4));
}

.ss-bow-line:last-child {
  background: linear-gradient(to left, transparent, rgba(232,96,122,0.4));
}

/* カードリスト */
.ss-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* カード */
.ss-card {
  display: flex;
  flex-direction: row;
  background: rgba(255,255,255,0.88);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(232,96,122,0.1);
  transition: box-shadow 0.2s, transform 0.2s;
}

.ss-card:hover {
  box-shadow: 0 8px 32px rgba(232,96,122,0.18);
  transform: translateY(-2px);
}

/* 画像 */
.ss-card-img-wrap {
  width: 380px;
  flex-shrink: 0;
  overflow: hidden;
}

.ss-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* コンテンツ */
.ss-card-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.ss-label {
  font-size: 0.78rem;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.ss-name {
  font-family: "Kiwi Maru", serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(180deg, #ff9ab3 0%, #ff7898 45%, #f35f83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.9));
  line-height: 1.2;
  margin-bottom: 2px;
}

.ss-catch {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.ss-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}

.ss-details li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: #555;
}

.ss-icon { font-size: 0.9rem; flex-shrink: 0; }

/* ボタン */
.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 8px;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
}

.ss-btn:hover { opacity: 0.85; transform: translateX(2px); }

.ss-btn--filled {
  background: linear-gradient(135deg, #ff95ae 0%, #ff7b9b 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,123,155,0.35),
              inset 0 1px 0 rgba(255,255,255,0.3);
}

.ss-btn--outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.ss-btn--outline:hover { background: rgba(232,96,122,0.06); opacity: 1; }

.ss-btn--tel {
  border: 1.5px solid rgba(232,96,122,0.4);
  color: var(--color-primary);
  background: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

.ss-btn--tel:hover { background: rgba(232,96,122,0.08); opacity: 1; }

.ss-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .ss-card { flex-direction: column; }
  .ss-card-img-wrap { width: 100%; height: 220px; }
  .ss-card-body { padding: 24px 20px; }
  .ss-btn { align-self: stretch; justify-content: center; }
  .ss-btn-group { flex-direction: column; }
}

/* ===========================
   Cast Cards
=========================== */
.cast-scroll {
  max-height: 680px;   /* カード約2段分 */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;  /* スクロールバー分の余白 */
  scrollbar-width: thin;
  scrollbar-color: rgba(232,96,122,0.4) rgba(255,255,255,0.05);
}

.cast-scroll::-webkit-scrollbar { width: 4px; }
.cast-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 2px; }
.cast-scroll::-webkit-scrollbar-thumb { background: rgba(232,96,122,0.4); border-radius: 2px; }

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.cast-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(200,169,110,0.1);
  transition: border-color 0.2s;
  position: relative;
}

.cast-card:hover { border-color: var(--color-primary); }

/* 出勤中バッジ */
.staff-status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  color: #fff;

  background: linear-gradient(135deg, #ff95ae 0%, #ff7b9b 100%);
  border-radius: 8px;

  box-shadow:
    0 4px 14px rgba(255, 123, 155, .35),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

.cast-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #2a2a2a;
}

.cast-card-body { padding: 16px 12px; }
.cast-card-name,
.today-cast-name {
  font-family: "Kiwi Maru", serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;

  background: linear-gradient(
    180deg,
    #ff9ab3 0%,
    #ff7898 45%,
    #f35f83 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* text-shadowはtransparent fillと非互換なのでdrop-shadowで代替 */
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, .9))
    drop-shadow(0 0 6px rgba(255, 170, 200, .5));
}

.cast-card-tag { font-size: 0.75rem; color: var(--color-primary); }

/* ===========================
   Schedule Table
=========================== */
.schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.schedule-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.schedule-table th, .schedule-table td {
  border: 1px solid rgba(200,169,110,0.15);
  padding: 10px 14px;
  text-align: center;
}

.schedule-table th {
  background: rgba(200,169,110,0.1);
  color: var(--color-primary);
  font-weight: 600;
}

.schedule-table .today { background: rgba(200,169,110,0.08); }

/* ===========================
   Menu Table
=========================== */
.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table th, .menu-table td {
  border-bottom: 1px solid rgba(200,169,110,0.1);
  padding: 16px 0;
}

.menu-table th {
  text-align: left;
  color: var(--color-primary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  width: 40%;
}

.menu-table td { text-align: right; font-size: 1rem; }

.menu-section-title {
  font-size: 1rem;
  color: var(--color-primary);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,169,110,0.3);
}

/* ===========================
   Access
=========================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) { .access-grid { grid-template-columns: 1fr; } }

.access-info dt {
  font-size: 0.75rem;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-top: 20px;
  margin-bottom: 4px;
}

.access-info dd { font-size: 0.95rem; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ===========================
   Footer
=========================== */
.site-footer {
  border-top: 1px solid rgba(200,169,110,0.15);
  padding: 40px 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.8rem;
}

/* ===========================
   News — redesigned
=========================== */
.news-section {
  background: #fce8f0 url("assets/images/news_bg.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(232,96,122,0.1);
}

/* ヘッダー */
.ns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.ns-header-left { display: flex; flex-direction: column; gap: 4px; }

.ns-en {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ns-en-icon { font-size: 0.85em; opacity: 0.7; }

.ns-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* ♡ 装飾ライン */
.ns-ornament {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.ns-orn-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,96,122,0.5));
  position: relative;
}

.ns-orn-line:last-child {
  background: linear-gradient(to left, transparent, rgba(232,96,122,0.5));
}

.ns-orn-heart {
  font-size: 0.75rem;
  color: rgba(232,96,122,0.6);
  line-height: 1;
}

/* もっと見るボタン */
.ns-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: 1.5px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  align-self: center;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.ns-more-btn:hover { background: var(--color-primary); color: #fff; opacity: 1; }
.ns-more-arrow { display: flex; align-items: center; font-size: 1.1rem; line-height: 1; }

/* リストカード */
.ns-list-wrap {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(232,96,122,0.08);
  overflow: hidden;
}

.ns-list { list-style: none; }

.ns-item { border-bottom: 1px solid rgba(232,96,122,0.1); }
.ns-item:last-child { border-bottom: none; }

.ns-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  color: #333;
  transition: background 0.15s;
}

.ns-link:hover { background: rgba(232,96,122,0.04); opacity: 1; }

.ns-date {
  font-size: 0.82rem;
  color: var(--color-primary);
  white-space: nowrap;
  letter-spacing: 0.05em;
  min-width: 88px;
  font-weight: 500;
}

.ns-badge {
  font-size: 0.72rem;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  min-width: 60px;
  text-align: center;
}

.ns-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
}

@media (max-width: 600px) {
  .ns-link { flex-wrap: wrap; gap: 8px; padding: 16px 18px; }
  .ns-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ページネーション */
.news-pagination {
  margin-top: 48px;
  text-align: center;
}

.news-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(232,96,122,0.3);
  border-radius: var(--radius);
  color: var(--color-muted);
  font-size: .85rem;
  transition: all .2s;
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  opacity: 1;
}

/* 記事本文 */
.single-content {
  line-height: 1.9;
  font-size: .95rem;
}

.single-content p { margin-bottom: 1.4em; }
.single-content h2 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin: 2em 0 .8em;
  padding-bottom: .4em;
  border-bottom: 1px solid rgba(232,96,122,.2);
}
.single-content a { text-decoration: underline; }

@media (max-width: 600px) {
  .news-item-link { flex-wrap: wrap; gap: 8px; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ===========================
   Today's Staff — redesigned
=========================== */
.today-staff {
  background: #fdf0f3 url("assets/images/Today's_Staff_bg.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(232,96,122,0.15);
}

/* ヘッダー */
.ts-header {
  text-align: center;
  margin-bottom: 32px;
}

.ts-date {
  font-size: 0.95rem;
  color: #c0708a;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.ts-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  line-height: 1.2;
  background: linear-gradient(180deg, #ff9ab3 0%, #ff7898 45%, #f35f83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.9));
}

.ts-sparkle {
  font-size: 0.55em;
  opacity: 0.7;
}

.ts-en {
  font-size: 0.9rem;
  color: #d08898;
  letter-spacing: 0.2em;
  font-style: italic;
  margin-top: 8px;
}

/* ノーティスバー */
.ts-notice {
  text-align: center;
  margin-bottom: 36px;
}

.ts-notice-inner {
  display: inline-block;
  padding: 12px 36px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(232,96,122,0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #d07090;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(232,96,122,0.08);
}

/* スクロールラッパー */
.ts-scroll {
  max-height: 720px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,96,122,0.4) rgba(255,255,255,0.2);
}

.ts-scroll::-webkit-scrollbar { width: 4px; }
.ts-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.2); border-radius: 2px; }
.ts-scroll::-webkit-scrollbar-thumb { background: rgba(232,96,122,0.4); border-radius: 2px; }

/* カードグリッド — 最大4列 */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* カード */
.ts-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(232,96,122,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ts-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(232,96,122,0.18);
}

/* 写真エリア（カード全体 = 写真） */
.ts-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fde0ea 0%, #fff4f7 100%);
}

.ts-card-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ts-card-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ts-card-photo-placeholder svg {
  width: 80%;
  opacity: 0.45;
  margin-bottom: -4px;
}

/* 非出勤カード：写真のみ少し暗く */
.ts-card--off .ts-card-photo-img,
.ts-card--off .ts-card-photo-placeholder {
  filter: brightness(0.88) saturate(0.8);
}

/* 出勤中バッジ＋時間 */
.cast-working-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ts-card .staff-status {
  position: absolute;
  z-index: 2;
}
.cast-working-time {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* 情報エリア：写真下部にオーバーレイ */
.ts-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 64px 10px 14px;
  text-align: center;
  background: linear-gradient(
    to top,
    rgba(255,255,255,1)    0%,
    rgba(255,255,255,0.95) 28%,
    rgba(255,255,255,0.72) 52%,
    rgba(255,255,255,0.25) 76%,
    rgba(255,255,255,0)    100%
  );
}

.ts-card-name {
  font-family: "Kiwi Maru", serif;
  font-weight: 700;
  font-size: 1.72rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 4px;
  background: linear-gradient(180deg, #ff9ab3 0%, #ff7898 45%, #f35f83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.9)) drop-shadow(0 0 4px rgba(255,170,200,.4));
}

.ts-card-store {
  font-size: 0.72rem;
  color: #c07888;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.ts-card-time {
  font-size: 0.7rem;
  color: #a08088;
}

@media (max-width: 900px) {
  .ts-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 640px) {
  .ts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ts-title { font-size: 2rem; }
  .ts-scroll { max-height: 600px; }
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.5rem; }
  .today-cast-grid { grid-auto-columns: minmax(110px, 1fr); gap: 10px; }
}

/* ===========================
   Blog (Ameblo)
=========================== */
.blog-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: -36px;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.12);
}

.blog-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(200,169,110,0.08);
}

.blog-item:last-child { border-bottom: none; }

.blog-item:hover {
  background: rgba(255,255,255,0.07);
  opacity: 1;
}

.blog-item-thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.blog-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.blog-item-thumb-placeholder svg {
  width: 36px;
  height: 36px;
}

.blog-item-body {
  flex: 1;
  min-width: 0;
}

.blog-item-date {
  font-size: 0.75rem;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.blog-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-item-excerpt {
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item-arrow {
  font-size: 1.3rem;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .blog-item { padding: 14px 14px; gap: 12px; }
  .blog-item-thumb { width: 64px; height: 50px; }
  .blog-item-excerpt { display: none; }
}

/* 下井草テーマ上書き */
.store-shimoigusa .blog-list {
  border-color: rgba(74,158,255,0.15);
}
.store-shimoigusa .blog-item {
  border-bottom-color: rgba(74,158,255,0.1);
}
.store-shimoigusa .blog-item-date,
.store-shimoigusa .blog-item-arrow {
  color: #4a9eff;
}

/* ===========================
   下井草派出所 専用テーマ（青ベース）
=========================== */
.store-shimoigusa {
  --color-primary:       #4a9eff;
  --color-primary-light: #90c4ff;
  --color-dark:          #071020;
  --color-bg:            #070e1a;
  --color-surface:       #0d1b2e;
  --color-text:          #ddeeff;
  --color-muted:         #7aa0c0;
}

/* 背景 */
.store-shimoigusa body,
.store-shimoigusa { background: var(--color-bg); }

/* ヘッダーボーダー */
.store-shimoigusa .site-header {
  border-bottom-color: rgba(74,158,255,0.25);
}

/* ヒーロー */
.store-shimoigusa .hero {
  background: url('assets/images/fv-police_bg.png') center/cover no-repeat;
  border-bottom-color: rgba(74,158,255,0.15);
  justify-content: flex-start;
  text-align: left;
  padding-left: 60px;
  position: relative;
}
.store-shimoigusa .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 5, 20, 0.6) 0%,
    rgba(0, 5, 20, 0.45) 40%,
    rgba(0, 5, 20, 0.1) 70%,
    rgba(0, 5, 20, 0) 100%
  );
  pointer-events: none;
}
.store-shimoigusa .hero > div {
  position: relative;
  z-index: 1;
}
.store-shimoigusa .hero-title {
  text-shadow: 0 2px 10px rgba(0,0,0,0.95), 0 0 24px rgba(0,0,0,0.8);
}
.store-shimoigusa .hero-sub {
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
@media (max-width: 768px) {
  .store-shimoigusa .hero {
    background: url('assets/images/fv-police_bg_sp.png') center/cover no-repeat;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  .store-shimoigusa .hero-title + .hero-sub {
    margin-top: 2px !important;
    margin-bottom: 60px;
  }
  .store-shimoigusa .hero .btn--tel {
    margin-top: 80px;
  }
}

/* セクションタイトル */
.store-shimoigusa .section-title { color: #4a9eff; }

/* キャストカード */
.store-shimoigusa .cast-card {
  border-color: rgba(74,158,255,0.12);
}
.store-shimoigusa .cast-card:hover {
  border-color: #4a9eff;
}
.store-shimoigusa .cast-card-name,
.store-shimoigusa .today-cast-name {
  background: linear-gradient(180deg, #90c4ff 0%, #4a9eff 50%, #1a6fd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.8)) drop-shadow(0 0 6px rgba(74,158,255,.4));
}
.store-shimoigusa .cast-card-tag { color: #4a9eff; }

/* スタッフバッジ */
.store-shimoigusa .staff-status {
  background: linear-gradient(135deg, #5ab0ff 0%, #1a7aff 100%);
  box-shadow: 0 4px 14px rgba(74,158,255,.4),
              inset 0 1px 0 rgba(255,255,255,.3);
}

/* メニューテーブル */
.store-shimoigusa .menu-table th,
.store-shimoigusa .menu-section-title { color: #4a9eff; }
.store-shimoigusa .menu-table th,
.store-shimoigusa .menu-table td {
  border-bottom-color: rgba(74,158,255,0.12);
}
.store-shimoigusa .menu-section-title {
  border-bottom-color: rgba(74,158,255,0.3);
}

/* スケジュールテーブル */
.store-shimoigusa .schedule-table th {
  background: rgba(74,158,255,0.1);
  color: #4a9eff;
}
.store-shimoigusa .schedule-table th,
.store-shimoigusa .schedule-table td {
  border-color: rgba(74,158,255,0.15);
}

/* アクセス */
.store-shimoigusa .access-info dt { color: #4a9eff; }

/* ボタン */
.store-shimoigusa .btn {
  border-color: #4a9eff;
  color: #4a9eff;
}
.store-shimoigusa .btn:hover {
  background: #4a9eff;
  color: #fff;
}
.store-shimoigusa .btn-solid {
  background: #4a9eff;
  color: #fff;
}

/* キャストスクロールバー */
.store-shimoigusa .cast-scroll {
  scrollbar-color: rgba(74,158,255,0.5) rgba(255,255,255,0.05);
}
.store-shimoigusa .cast-scroll::-webkit-scrollbar-thumb {
  background: rgba(74,158,255,0.5);
}

/* 出勤メンバーセクション（青テーマ上書き） */
.store-shimoigusa .ts-today-section {
  background: none;
}
.store-shimoigusa .ts-date {
  color: #6aacff;
}
.store-shimoigusa .ts-title {
  background: linear-gradient(180deg, #90c4ff 0%, #4a9eff 45%, #2278e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.5));
}
.store-shimoigusa .ts-en {
  color: #6a9ec0;
}
.store-shimoigusa .ts-notice-inner {
  background: rgba(255,255,255,0.06);
  border-color: rgba(74,158,255,0.25);
  color: #7ab8ff;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(74,158,255,0.08);
}
.store-shimoigusa .ts-card {
  box-shadow: 0 4px 18px rgba(74,158,255,0.12);
}
.store-shimoigusa .ts-card:hover {
  box-shadow: 0 10px 28px rgba(74,158,255,0.22);
}
.store-shimoigusa .ts-card-photo {
  background: linear-gradient(160deg, #0d1f3c 0%, #071020 100%);
}
.store-shimoigusa .ts-card-info {
  background: linear-gradient(
    to top,
    rgba(7,14,26,1)    0%,
    rgba(7,14,26,0.95) 28%,
    rgba(7,14,26,0.72) 52%,
    rgba(7,14,26,0.25) 76%,
    rgba(7,14,26,0)    100%
  );
}
.store-shimoigusa .ts-card-name {
  background: linear-gradient(180deg, #90c4ff 0%, #4a9eff 45%, #2278e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 4px rgba(74,158,255,.4));
}
.store-shimoigusa .ts-card-store {
  color: #6a9ec0;
}
.store-shimoigusa .ts-scroll::-webkit-scrollbar-thumb {
  background: rgba(74,158,255,0.4);
}

/* リクルートBG */
.store-shimoigusa .recruit-section {
  background: url('assets/images/recruit_shimoigusa_bg.png') center/cover no-repeat;
}

/* フッター */
.store-shimoigusa .site-footer {
  border-top-color: rgba(74,158,255,0.15);
}
