/* セクション全体 */
.pv-reasons-section {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* ヘッダー・見出しエリア */
.pv-reasons-header {
  text-align: center;
  margin-bottom: 32px;
}

.pv-reasons-title {
  margin: 0 0 12px 0;
  font-weight: bold;
  color: #111111;
  line-height: 1.4;
}

.pv-reasons-subtitle {
  margin: 0;
  font-weight: bold;
  color: #1d6bf3;
  line-height: 1.4;
}

/* カードグリッドレイアウト */
.pv-reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* 個別カードスタイル */
.pv-reasons-card {
  width: calc(50% - 8px);
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1.5px solid #d0dbe7;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* 7番目のカード（中央配置・幅固定） */
.pv-reasons-card--full {
  width: calc(50% - 8px);
}

.pv-reasons-card-text {
  font-weight: bold;
  color: #111111;
  line-height: 1.5;
}

.pv-reasons-num {
  display: inline-block;
  margin-right: 2px;
}

/* スマホ表示向けレスポンシブ設定 */
@media screen and (max-width: 768px) {
  .pv-reasons-section {
    padding: 24px 16px;
  }

  .pv-reasons-header {
    margin-bottom: 24px;
  }

  .pv-reasons-card,
  .pv-reasons-card--full {
    width: 100%;
    padding: 14px 16px;
  }
}

/* コンテナ全般 */
.biz-sched-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
  background-color: #fdf3d8;
  box-sizing: border-box;
}

/* ヘッダーエリア */
.biz-sched-header {
  background-color: #0d6fb8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  margin-bottom: 12px;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 10px;
}

/* ヘッダー左側バッジ風パーツ */
.biz-sched-header-left {
  display: flex;
  align-items: center;
}

.biz-sched-badge {
  background-color: #ffff00;
  color: #000000;
  font-weight: bold;
  padding: 6px 20px 6px 12px;
  border-radius: 30px;
  line-height: 1.2;
  text-align: center;
  display: inline-block;
  position: relative;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}

.biz-sched-badge-highlight {
  color: #e60000;
  font-weight: 900;
}

/* ヘッダー右側テキスト */
.biz-sched-header-right {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.biz-sched-title-text {
  color: #ffffff;
}

.biz-sched-title-number {
  color: #ffff00;
  font-size: 2.2em;
  line-height: 1;
  margin: 0 2px;
}

.biz-sched-title-accent {
  color: #ffff00;
}

/* 表のスクロールコンテナ */
.biz-sched-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #000000;
  background-color: #ffffff;
}

/* スケジュール表本体 */
.biz-sched-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}

.biz-sched-table th,
.biz-sched-table td {
  border-right: 1px solid #000000;
  border-bottom: 1px dashed #a0a0a0;
  text-align: center;
  vertical-align: middle;
  padding: 3px 2px;
  box-sizing: border-box;
}

.biz-sched-table tr:last-child td {
  border-bottom: none;
}

.biz-sched-table th:last-child,
.biz-sched-table td:last-child {
  border-right: none;
}

/* ヘッダー行 */
.biz-sched-table thead tr {
  background-color: #dce6f1;
}

.biz-sched-table thead th {
  border-bottom: 2px solid #000000;
  font-weight: bold;
  color: #000000;
  padding: 6px 2px;
}

/* タスク名列と各月列の幅設定 */
.biz-sched-th-task {
  width: 28%;
}

.biz-sched-th-month {
  width: 7.2%;
}

.biz-sched-task {
  text-align: left !important;
  padding-left: 6px !important;
  font-weight: normal;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.biz-sched-cell {
  background-color: #ffffff;
}

/* 矢印・アイコンの装飾 */
.biz-sched-arrow {
  color: #0044cc;
  font-weight: bold;
  display: inline-block;
  transform: scaleX(1.3);
}

.biz-sched-star {
  color: #e60000;
  font-size: 1.2em;
}

/* 注記テキスト */
.biz-sched-note {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
}

.biz-sched-sp-br {
  display: none;
}

/* レスポンシブ対応（スマホ向け） */
@media screen and (max-width: 600px) {
  .biz-sched-container {
    padding: 10px 8px;
  }

  .biz-sched-header {
    justify-content: center;
    padding: 8px 6px;
  }

  .biz-sched-badge {
    clip-path: none;
    border-radius: 6px;
    padding: 4px 8px;
  }

  .biz-sched-sp-br {
    display: inline;
  }
}