@charset "UTF-8";

/* ===== スケジュール日付タイトル ===== */
#schedule_title {
  list-style: none;
  padding: 20px 16px 8px;
  margin: 0;
  text-align: center;
}
#schedule_title #day {
  font-size: 1.1rem;
  font-weight: bold;
  color: #4a3060;
  display: inline-block;
  border-bottom: 2px solid #c8a0d0;
  padding-bottom: 4px;
}

/* ===== 出勤なし ===== */
.no-staff {
  text-align: center;
  padding: 48px 20px;
  color: #aaa;
  font-size: 0.95rem;
}

/* ===== 週間スケジュール ===== */
.weeklysc_heading {
  font-size: 0.9rem;
  font-weight: bold;
  color: #4a3060;
  background: #f0e8f8;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.weeklysc_heading--today {
  background: linear-gradient(135deg, #f08cb0, #e8709a);
  color: #fff;
}
.weeklysc_day {
  margin-bottom: 20px;
}

/* ===== シングルカレンダー ===== */
.single_calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 0 8px;
}
.single_calendar dl {
  flex: 1;
  min-width: 0;
  text-align: center;
  margin: 0;
}
.single_calendar dt {
  font-size: 11px;
  font-weight: bold;
  padding: 4px 2px;
  background: #f0e0f0;
  border-radius: 4px 4px 0 0;
  color: #555;
}
.single_calendar dt.target {
  background: linear-gradient(135deg, #f08cb0, #e8709a);
  color: #fff;
}
.single_calendar dd {
  font-size: 11px;
  padding: 4px 2px;
  color: #555;
  border: 1px solid #f0e0f0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  background: #fff;
  margin: 0;
}
.schon { color: #e05080; font-weight: bold; }


  /* ===== SCHEDULE SECTION ===== */
  .sc-schedule {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 20px 56px;
    background: linear-gradient(135deg, #f5eaf4 0%, #ede8f6 50%, #f0e8f5 100%);
    border-radius: 16px;
  }

  /* heading */
  .sc-schedule__heading {
    text-align: center;
    margin-bottom: 28px;
  }

  .sc-schedule__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #e06fa0;
    margin-bottom: 6px;
  }

  .sc-schedule__title {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4a3060;
    letter-spacing: 0.06em;
  }

  /* divider */
  .sc-schedule__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #c8a0d0 20%, #c8a0d0 80%, transparent);
    margin-bottom: 32px;
  }

  /* date tabs wrapper */
  .sc-schedule__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* single tab */
  .sc-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    user-select: none;
    border: none;
    outline: none;
  }

  /* default (inactive) tab */
  .sc-tab--default {
    background: #ffffff;
    color: #5a4070;
    box-shadow: 0 2px 8px rgba(180, 120, 200, 0.15);
  }

  .sc-tab--default:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(180, 120, 200, 0.25);
  }

  /* active / 本日 tab */
  .sc-tab--active {
    background: linear-gradient(135deg, #f08cb0 0%, #e8709a 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(230, 100, 150, 0.35);
  }

  .sc-tab--active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 100, 150, 0.45);
  }

  /* ===== RESPONSIVE: SP ===== */
  @media (max-width: 767px) {
    .sc-schedule {
      padding: 36px 16px 44px;
      border-radius: 0;
    }

    .sc-schedule__title {
      font-size: 22px;
    }

    .sc-schedule__tabs {
      gap: 8px;
    }

    .sc-tab {
      height: 40px;
      padding: 0 20px;
      font-size: 13px;
    }
  }