/* 出勤テーブル */
.csc-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 14px;
}

.csc-schedule-table th,
.csc-schedule-table td {
    border: 1px solid #ddd;
    padding: 6px 8px;
    text-align: center;
}

.csc-schedule-table thead {
    background: #f5f5f5;
}

/* 本日出勤キャスト グリッド */
.csc-today-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* カード本体 */
.csc-today-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ヘッダー部分（サムネ＋名前） */
.csc-today-header {
    display: flex;
    gap: 10px;
}

.csc-today-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.csc-today-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.csc-today-name a {
    font-weight: 600;
    text-decoration: none;
}

.csc-today-time {
    font-size: 13px;
    color: #555;
}

.csc-today-stock-code {
    font-size: 13px;
    color: #333;
}

/* チャートコンテナ */
.csc-today-chart-wrapper {
    margin-top: 6px;
}

.today-stock-chart {
    width: 100%;
    height: 150px;
}

/* カードフッター */
.csc-today-footer {
    margin-top: 6px;
    text-align: right;
}

.csc-today-detail-link {
    font-size: 13px;
    text-decoration: none;
    color: #0073aa;
}

/* チャート用メッセージ */
.csc-chart-empty,
.csc-chart-empty-mini {
    font-size: 12px;
    color: #777;
    text-align: center;
    padding: 12px 0;
}

/* キャスト詳細ページのチャート */
.cast-stock-chart {
    width: 100%;
    height: 300px;
    margin-top: 10px;
}

/* === カード共通 === */
.csc-today-card {
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,0.04);
  padding:16px 18px 14px;
}

/* === グリッド === */
.csc-today-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* iPad最適化 */
@media (max-width: 1024px) {
  .csc-today-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホは横スクロール */
@media (max-width: 767px) {
  .csc-today-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .csc-today-card {
    min-width: 90%;
    scroll-snap-align: start;
  }
}

/* ヘッダー整形 */
.csc-today-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.csc-today-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.csc-today-name a {
  font-weight: 700;
  font-size: 17px;
  color: #0066cc;
  text-decoration: none;
}

.csc-today-stock-code {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

.csc-today-time {
  font-size:13px;
  color:#ff4f8b;
  font-weight:600;
}

/* フッター */
.csc-today-footer {
  margin-top: 10px;
  text-align: right;
}

.csc-today-detail-link {
  font-size:13px;
  color:#0066cc;
  text-decoration:none;
}

.csc-big-chart-box {
  margin: 30px 0;
}

.csc-range-buttons {
  text-align: center;
  margin-top: 12px;
}

.csc-range-buttons button {
  background: #f3f3f3;
  border: none;
  padding: 6px 14px;
  margin: 0 4px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.csc-range-buttons button.active {
  background: #ff4f8b;
  color: #fff;
}

/* ===== buzz-b.net プロフィールの見た目調整 ===== */
.csp-remote-profile {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* 段落・リストをきれいに間隔あける */
.csp-remote-profile p,
.csp-remote-profile li {
  margin: 0 0 4px;
}

/* 画像まわり */
.csp-remote-profile img {
  max-width: 180px;
  height: auto;
  border-radius: 16px;
  display: block;
  margin-bottom: 8px;
}

/* 例えば最初の行を「キャッチコピー」っぽく大きく */
.csp-remote-profile p:first-child {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

/* 箇条書きっぽいところを2カラムにするイメージ */
@media (min-width: 768px) {
  .csp-remote-profile ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 16px;
    padding-left: 0;
    list-style: none;
  }
}

