@charset "utf-8";
/*
Theme Name: Lightning Pro Child Sample
Theme URI: ★ テーマの公式サイトなどのURL（空欄でも可） ★
Template: lightning-pro
Description: ★ テーマの説明（空欄でも可） ★
Author: ★ テーマ作成者の名前（空欄でも可） ★
Tags: 
Version: 0.2.0
*/

/* ============================================
   ともカレ カスタムスタイル
   参考: delice.love — カードグリッド型デザイン
   ============================================ */

:root {
  --tc-primary: #7B5EA7;
  --tc-primary-light: #F3EEFF;
  --tc-primary-dark: #5C4080;
  --tc-accent: #E8799A;
  --tc-accent-light: #FFF0F4;
  --tc-border: #EBEBEB;
  --tc-bg: #F7F5FB;
  --tc-white: #FFFFFF;
  --tc-text: #2D2D2D;
  --tc-muted: #888;
  --tc-shadow: 0 2px 12px rgba(123,94,167,0.10);
  --tc-radius: 14px;
}

/* === ページ全体 === */
body {
  background: var(--tc-bg) !important;
  font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans','Noto Sans JP',sans-serif !important;
  color: var(--tc-text) !important;
}

/* === ヘッダー === */
#site-header,
.site-header,
header.site-header {
  background: var(--tc-white) !important;
  border-bottom: 1px solid var(--tc-border) !important;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06) !important;
}

.site-branding .site-title a,
.site-title a {
  color: var(--tc-primary) !important;
  font-weight: 800 !important;
  font-size: 1.4rem !important;
}

/* ナビゲーション */
.nav-menu li a,
#nav-menu-primary li a,
.site-nav a {
  color: var(--tc-text) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: color 0.2s !important;
}
.nav-menu li a:hover,
.site-nav a:hover {
  color: var(--tc-primary) !important;
}

/* ナビ登録ボタン */
.nav-menu .register-btn a,
a[href*="register"],
a[href*="new-member"] {
  background: var(--tc-primary) !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 6px 16px !important;
  font-weight: 700 !important;
}

/* === メインコンテンツ === */
.site-main,
main,
#content {
  background: transparent !important;
}

/* === キャスト一覧ページ === */

/* 統計バー風（カスタムHTMLブロックで使用） */
.tc-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tc-white);
  border-radius: var(--tc-radius);
  padding: 16px 24px;
  margin-bottom: 16px;
  box-shadow: var(--tc-shadow);
  gap: 32px;
}
.tc-stats-bar .stat-item {
  text-align: center;
}
.tc-stats-bar .stat-label {
  font-size: 0.75rem;
  color: var(--tc-muted);
  display: block;
  margin-bottom: 2px;
}
.tc-stats-bar .stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--tc-primary);
  line-height: 1;
}
.tc-stats-bar .stat-unit {
  font-size: 0.85rem;
  font-weight: 500;
}

/* フィルタータブ */
.tc-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tc-filter-tabs .tab {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tc-muted);
  background: var(--tc-white);
  border: 1.5px solid var(--tc-border);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.tc-filter-tabs .tab:hover,
.tc-filter-tabs .tab.active {
  background: var(--tc-primary);
  color: var(--tc-white);
  border-color: var(--tc-primary);
}

/* === キャストカードグリッド === */
/* Lightning ProのCard/Archive系を上書き */

.entry-card-wrap,
.p-postList,
.p-archiveList,
.p-postList__item,
.card-entry-wrap {
  background: transparent !important;
}

/* カスタムCSSグリッドクラス */
.tc-cast-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
  padding: 4px 0 !important;
}

@media (min-width: 768px) {
  .tc-cast-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .tc-cast-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* キャストカード本体 */
.tc-cast-card {
  background: var(--tc-white) !important;
  border-radius: var(--tc-radius) !important;
  overflow: hidden !important;
  box-shadow: var(--tc-shadow) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  display: block !important;
  text-decoration: none !important;
  color: var(--tc-text) !important;
}
.tc-cast-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(123,94,167,0.18) !important;
}

/* カード画像 */
.tc-cast-card .card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #E8E0F0;
}
.tc-cast-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.tc-cast-card:hover .card-img img {
  transform: scale(1.04);
}

/* ステータスバッジ */
.tc-cast-card .badge-status {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}
.tc-cast-card .badge-status.available { background: #22C55E; }
.tc-cast-card .badge-status.next      { background: #F59E0B; }
.tc-cast-card .badge-status.soldout   { background: #9CA3AF; }

/* エリアバッジ */
.tc-cast-card .badge-area {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(0,0,0,0.45);
  color: #fff;
  z-index: 2;
}

/* カード本文 */
.tc-cast-card .card-body {
  padding: 12px 12px 10px;
}
.tc-cast-card .card-name-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 5px;
}
.tc-cast-card .card-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tc-text);
}
.tc-cast-card .card-age {
  font-size: 0.78rem;
  color: var(--tc-muted);
}
.tc-cast-card .card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.tc-cast-card .card-specs span {
  font-size: 0.72rem;
  color: var(--tc-muted);
  background: var(--tc-bg);
  border-radius: 5px;
  padding: 2px 6px;
}
.tc-cast-card .card-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tc-primary);
  background: var(--tc-primary-light);
  border-radius: 6px;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.tc-cast-card .card-type.bright {
  color: #D97706;
  background: #FFFBEB;
}
.tc-cast-card .card-hours {
  font-size: 0.75rem;
  color: var(--tc-muted);
  margin-bottom: 8px;
}
.tc-cast-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--tc-border);
}
.tc-cast-card .card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.82rem;
  font-weight: 700;
}
.tc-cast-card .card-rating .star { color: #FBBF24; }
.tc-cast-card .card-price {
  text-align: right;
  font-size: 0.7rem;
  color: var(--tc-muted);
}
.tc-cast-card .card-price strong {
  display: block;
  font-size: 0.9rem;
  color: var(--tc-accent);
  font-weight: 800;
}

/* === 詳細ページ === */

/* ヒーロー画像エリア */
.tc-detail-hero {
  position: relative;
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: 0 0 var(--tc-radius) var(--tc-radius);
  margin-bottom: 20px;
}
.tc-detail-hero img {
  width: 100%;
  object-fit: cover;
}
.tc-detail-hero .hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: 40px 20px 20px;
  color: #fff;
}
.tc-detail-hero .hero-name {
  font-size: 2rem;
  font-weight: 900;
}
.tc-detail-hero .hero-age {
  font-size: 1rem;
  opacity: 0.85;
  margin-left: 8px;
}

/* スペックグリッド */
.tc-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.tc-spec-item {
  background: var(--tc-bg);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.tc-spec-label {
  font-size: 0.7rem;
  color: var(--tc-muted);
  display: block;
  margin-bottom: 4px;
}
.tc-spec-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tc-text);
}

/* タグ */
.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tc-tag {
  background: var(--tc-primary-light);
  color: var(--tc-primary);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* === ボタン類 === */
.tc-btn-primary,
.tc-btn-primary:visited {
  display: inline-block;
  background: var(--tc-primary) !important;
  color: #fff !important;
  border-radius: 24px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  padding: 13px 28px !important;
  text-align: center !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
  width: 100%;
  box-sizing: border-box;
}
.tc-btn-primary:hover {
  background: var(--tc-primary-dark) !important;
}

.tc-btn-accent {
  background: var(--tc-accent) !important;
  color: #fff !important;
}
.tc-btn-accent:hover {
  background: #C45F80 !important;
}

.tc-btn-outline {
  display: block;
  background: transparent !important;
  color: var(--tc-primary) !important;
  border: 1.5px solid var(--tc-primary) !important;
  border-radius: 24px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 11px 24px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}
.tc-btn-outline:hover {
  background: var(--tc-primary-light) !important;
}

/* === 固定予約ボタン === */
.tc-sticky-reserve {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--tc-white);
  border-top: 1px solid var(--tc-border);
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.tc-sticky-reserve .price-box .label {
  font-size: 0.7rem;
  color: var(--tc-muted);
  display: block;
}
.tc-sticky-reserve .price-box .val {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--tc-accent);
}

/* === セクションタイトル === */
.tc-section-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tc-primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tc-primary-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tc-section-title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 18px;
  background: var(--tc-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* === カードブロック（Lightning Pro）スタイル上書き === */
.vk-posts .vk-post-col--sm-6,
.vk-posts .col-sm-6 {
  padding: 6px !important;
}

.vk-post-card__body {
  padding: 12px !important;
}

.vk-post-card {
  border-radius: var(--tc-radius) !important;
  overflow: hidden !important;
  box-shadow: var(--tc-shadow) !important;
  border: none !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.vk-post-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(123,94,167,0.18) !important;
}

.vk-post-card__title {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: var(--tc-text) !important;
  margin-bottom: 8px !important;
}

.vk-post-card__image-link img {
  aspect-ratio: 3/4 !important;
  object-fit: cover !important;
}

/* カテゴリータグ */
.vk-post-card__terms .term-link,
.post-categories a,
.cat-links a {
  background: var(--tc-primary-light) !important;
  color: var(--tc-primary) !important;
  border-radius: 20px !important;
  padding: 3px 10px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  border: none !important;
  text-decoration: none !important;
}

/* === 口コミ・評価 === */
.tc-review {
  padding: 14px 0;
  border-bottom: 1px solid var(--tc-border);
}
.tc-review:last-child { border-bottom: none; }
.tc-review .review-stars { color: #FBBF24; font-size: 0.85rem; }
.tc-review .review-user { font-weight: 700; font-size: 0.85rem; }
.tc-review .review-date { font-size: 0.75rem; color: var(--tc-muted); }
.tc-review .review-text { font-size: 0.87rem; line-height: 1.7; margin-top: 6px; }

/* === 料金テーブル === */
.tc-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.tc-pricing-table th {
  background: var(--tc-primary-light);
  color: var(--tc-primary);
  font-weight: 800;
  padding: 10px;
  text-align: left;
  font-size: 0.82rem;
}
.tc-pricing-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--tc-border);
}
.tc-pricing-table td:last-child {
  text-align: right;
  color: var(--tc-accent);
  font-weight: 700;
}

/* === フォーム === */
.tc-form-group { margin-bottom: 18px; }
.tc-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.tc-form-label .req {
  color: var(--tc-accent);
  font-size: 0.72rem;
  margin-left: 4px;
}
.tc-input, .tc-select, .tc-textarea {
  width: 100%;
  border: 1.5px solid var(--tc-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--tc-white);
  color: var(--tc-text);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.tc-input:focus, .tc-select:focus, .tc-textarea:focus {
  border-color: var(--tc-primary);
}
.tc-textarea { min-height: 90px; resize: vertical; }

/* === FAQ アコーディオン === */
.tc-faq-item {
  border-bottom: 1px solid var(--tc-border);
}
.tc-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  gap: 10px;
}
.tc-faq-q .q-label {
  color: var(--tc-primary);
  font-weight: 900;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.tc-faq-q .q-arrow {
  color: var(--tc-primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.tc-faq-item.open .q-arrow { transform: rotate(180deg); }
.tc-faq-a {
  display: none;
  padding: 0 0 14px;
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--tc-text);
}
.tc-faq-item.open .tc-faq-a { display: block; }

/* === 利用の流れ === */
.tc-flow-steps { }
.tc-flow-step {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  position: relative;
}
.tc-flow-step:last-child { padding-bottom: 0; }
.tc-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.tc-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tc-primary);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-step-line {
  flex: 1;
  width: 2px;
  background: var(--tc-primary-light);
  margin-top: 6px;
}
.tc-step-body {
  background: var(--tc-white);
  border-radius: 12px;
  padding: 14px 16px;
  flex: 1;
  box-shadow: var(--tc-shadow);
}
.tc-step-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--tc-primary);
  margin-bottom: 6px;
}
.tc-step-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--tc-text);
}

/* === フッター === */
#site-footer,
.site-footer {
  background: var(--tc-primary-dark) !important;
  color: rgba(255,255,255,0.85) !important;
  border-top: none !important;
}
#site-footer a,
.site-footer a {
  color: rgba(255,255,255,0.7) !important;
}
#site-footer a:hover,
.site-footer a:hover {
  color: #fff !important;
}

/* === ページヒーローバナー === */
.tc-page-hero {
  background: linear-gradient(135deg, var(--tc-primary), var(--tc-primary-dark));
  color: #fff;
  padding: 32px 24px;
  border-radius: var(--tc-radius);
  margin-bottom: 20px;
  text-align: center;
}
.tc-page-hero .hero-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.tc-page-hero .hero-sub {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* === コンテンツカード（汎用） === */
.tc-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius);
  padding: 20px;
  box-shadow: var(--tc-shadow);
  margin-bottom: 16px;
}

/* === ページ全体の最大幅 === */
.site-content .wrap,
.content-area,
#primary {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* === モバイル調整 === */
@media (max-width: 767px) {
  .tc-cast-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .tc-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-detail-hero .hero-name {
    font-size: 1.6rem;
  }
}

/* ============================================
   キャスト一覧カード — 充実版スタイル
   ============================================ */

/* カード名前行（名前＋年齢バッジ） */
.delice-cast-card__name-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.delice-cast-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 !important;
}
.delice-cast-card__age-badge {
  font-size: 11px;
  color: #aaa;
  flex-shrink: 0;
}
/* 旧ageスタイル非表示 */
.delice-cast-card__age { display: none !important; }

/* スペックバッジ (身長・血液型・MBTI) */
.delice-cast-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.delice-cast-card__specs span {
  font-size: 10px;
  padding: 2px 6px;
  background: #252525;
  border-radius: 20px;
  color: #aaa;
}

/* タイプバッジ */
.delice-cast-card__type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.delice-cast-card__type--cool {
  background: rgba(139, 92, 246, 0.25);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.delice-cast-card__type--idol {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}
.delice-cast-card__type--bright {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

/* カードフッター (レーティング＋料金) */
.delice-cast-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid #2a2a2a;
  margin-top: 2px;
}
.delice-cast-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: #fbbf24;
  font-weight: 700;
}
.delice-cast-card__rating span {
  color: #ddd;
}

/* 指名料表示 */
.delice-cast-card__fee {
  font-size: 10px;
  color: #888;
  text-align: right;
}
.delice-cast-card__fee strong {
  display: block;
  font-size: 12px;
  color: #ff6b9d;
  font-weight: 800;
}

/* ホバーエフェクト */
.delice-cast-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.15) !important;
}

/* タブにタイプフィルター追加スタイル */
.delice-tab {
  transition: all 0.2s;
}

/* ============================================
   キャスト詳細ページ — delice風プロフィール
   ============================================ */

/* プロフィールカード */
.dc-profile-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 12px 20px;
}

.dc-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #2a2a2a;
  margin-bottom: 0;
}
.dc-spec-item {
  background: #1a1a1a;
  padding: 12px 8px;
  text-align: center;
}
.dc-spec-label {
  font-size: 10px;
  color: #666;
  display: block;
  margin-bottom: 4px;
}
.dc-spec-val {
  font-size: 14px;
  font-weight: 800;
  color: #f0f0f0;
}

/* タイプバッジ（詳細ページ用） */
.dc-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 10px;
  margin: 10px 0 6px;
}
.dc-type-badge--cool {
  background: rgba(139, 92, 246, 0.25);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.dc-type-badge--idol {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

/* 予約ボタン（固定底部） */
.dc-reserve-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111;
  border-top: 1px solid #2a2a2a;
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.dc-reserve-bar .price-box .label {
  font-size: 10px;
  color: #666;
  display: block;
}
.dc-reserve-bar .price-box .val {
  font-size: 16px;
  font-weight: 900;
  color: #ff6b9d;
}
.dc-reserve-btn {
  flex: 1;
  background: #ff6b9d;
  color: #fff !important;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 800;
  padding: 12px;
  text-align: center;
  border: none;
  cursor: pointer;
  display: block;
  text-decoration: none !important;
  transition: background 0.2s;
}
.dc-reserve-btn:hover {
  background: #e85588 !important;
}

/* body padding-bottom (fixed barの分) */
body {
  padding-bottom: 80px !important;
}

/* 出勤スケジュールバー */
.dc-schedule-bar {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 12px 16px;
  font-size: 13px;
  color: #aaa;
}
.dc-schedule-bar .label {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  display: block;
}
.dc-schedule-bar .value {
  font-weight: 700;
  color: #f0f0f0;
}

/* タグ一覧 */
.dc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 12px 0;
}
.dc-tag {
  background: #252525;
  color: #aaa;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
}

/* ===== ともカレ ホームページ全体背景 ===== */
body.home,
body.page-id-8 {
  background: #F7F5FB !important;
}
body.home .site-content,
body.page-id-8 .site-content {
  background: #F7F5FB !important;
}
/* メインコンテンツ幅を全幅に */
body.home .entry-content,
body.page-id-8 .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.home .l-main,
body.page-id-8 .l-main {
  padding: 0 !important;
}
body.home article,
body.page-id-8 article {
  padding: 0 !important;
}
/* 既存サイトヘッダーを隠す（ホームのみ） */
body.home .site-header,
body.page-id-8 .site-header {
  display: none !important;
}
body.home .global-nav,
body.page-id-8 .global-nav {
  display: none !important;
}

