.schedule-hero {
    padding: 86px 0 92px;
    background: linear-gradient(180deg, #fff 0%, #fff7f9 100%);
    border-bottom: 1px solid var(--wtb-border);
}

.schedule-hero__inner {
    text-align: center;
}

.schedule-eyebrow {
    margin: 0 0 10px;
    color: #a17483;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.schedule-hero h1,
.schedule-page-heading h1 {
    margin: 0;
    color: #3b1020;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.schedule-hero p:not(.schedule-eyebrow),
.schedule-page-heading > p {
    margin: 15px 0 0;
    color: var(--wtb-muted);
}

.schedule-primary-button,
.schedule-secondary-button {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
    transition: transform .16s ease, opacity .16s ease, background .16s ease;
}

.schedule-primary-button {
    border: 1px solid var(--wtb-primary);
    background: var(--wtb-primary);
    color: #fff;
}

.schedule-primary-button:hover:not(:disabled) {
    background: var(--wtb-primary-hover);
    transform: translateY(-1px);
}

.schedule-primary-button:disabled {
    cursor: not-allowed;
    opacity: .42;
}

.schedule-primary-button--hero {
    min-width: 280px;
    margin-top: 32px;
}

.schedule-secondary-button {
    border: 1px solid #d7aeba;
    background: #fff7f9;
    color: #7f1737;
}

.schedule-secondary-button:hover {
    background: #fff0f4;
}

.schedule-guide {
    padding: 72px 0 84px;
    background: #fff;
}

.schedule-section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.schedule-section-heading h2 {
    margin: 0;
    color: #3b1020;
    font-size: 30px;
}

.schedule-section-heading p {
    margin: 8px 0 0;
    color: var(--wtb-muted);
}

.schedule-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.schedule-guide-card {
    padding: 26px 23px;
    border: 1px solid var(--wtb-border);
    border-radius: 14px;
    background: #fffafb;
}

.schedule-guide-card > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff0f4;
    color: var(--wtb-primary);
    font-weight: 900;
}

.schedule-guide-card h3 {
    margin: 16px 0 7px;
    color: #3b1020;
    font-size: 17px;
}

.schedule-guide-card p,
.schedule-guide-note p {
    margin: 0;
    color: #7c5b66;
    font-size: 13px;
    line-height: 1.8;
}

.schedule-guide-note {
    margin-top: 22px;
    padding: 24px 28px;
    border: 1px solid #edd1da;
    border-radius: 13px;
    background: #fff7f9;
}

.schedule-guide-note strong {
    display: block;
    margin-bottom: 5px;
    color: #5f1830;
}

.schedule-page {
    padding: 58px 0 78px;
    background: #fff7f9;
}

.schedule-page-heading {
    margin-bottom: 28px;
}

.schedule-page-heading h1 {
    font-size: clamp(30px, 4vw, 42px);
}

.schedule-description {
    white-space: normal;
    line-height: 1.9;
}

.schedule-back-link {
    display: inline-block;
    margin-bottom: 11px;
    color: #8f6070;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.schedule-back-link:hover {
    color: var(--wtb-primary);
}

.schedule-message {
    margin: 0 auto 22px;
    padding: 14px 17px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
}

.schedule-message ul {
    margin: 6px 0 0;
    padding-left: 20px;
}

.schedule-message--success {
    border: 1px solid #b8dccb;
    background: #eff9f4;
    color: #21654a;
}

.schedule-message--error {
    border: 1px solid #e7bdc8;
    background: #fff4f6;
    color: #8e2944;
}

.schedule-message.is-hidden {
    display: none;
}

.schedule-form-card,
.schedule-card,
.schedule-status-card {
    border: 1px solid #ead5dc;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(75, 18, 39, .035);
}

.schedule-form-card {
    padding: 30px;
}

.schedule-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.schedule-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.schedule-field--full {
    grid-column: 1 / -1;
}

.schedule-field__label,
.schedule-member-form label > span {
    display: block;
    margin-bottom: 7px;
    color: #4b2432;
    font-size: 13px;
    font-weight: 800;
}

.schedule-field__label em {
    margin-left: 5px;
    color: #b4234c;
    font-size: 10px;
    font-style: normal;
}

.schedule-field input[type="text"],
.schedule-field input[type="email"],
.schedule-field textarea,
.schedule-member-form input {
    width: 100%;
    border: 1px solid #dfc8d0;
    border-radius: 9px;
    background: #fff;
    color: #351923;
    outline: none;
}

.schedule-field input[type="text"],
.schedule-field input[type="email"],
.schedule-member-form input {
    min-height: 46px;
    padding: 0 13px;
}

.schedule-field textarea {
    min-height: 128px;
    padding: 12px 13px;
    resize: vertical;
}

.schedule-field input:focus,
.schedule-field textarea:focus,
.schedule-member-form input:focus {
    border-color: #bd8294;
    box-shadow: 0 0 0 3px rgba(159, 18, 57, .08);
}

.schedule-field__hint {
    display: block;
    margin-top: 7px;
    color: #907783;
    font-size: 11px;
}

.schedule-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.schedule-radio-row label {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #ead5dc;
    border-radius: 9px;
    background: #fffafb;
    color: #5c3946;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.schedule-candidate-section,
.schedule-timeline-section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid #f0dce2;
}

.schedule-subheading,
.schedule-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.schedule-subheading h2,
.schedule-card__heading h2 {
    margin: 0;
    color: #3b1020;
    font-size: 21px;
}

.schedule-subheading p,
.schedule-card__heading p {
    margin: 4px 0 0;
    color: #856a75;
    font-size: 12px;
}

.schedule-selected-count,
.schedule-member-count {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff1f4;
    color: #8d2847;
    font-size: 11px;
    font-weight: 800;
}

.schedule-calendar {
    max-width: 760px;
    padding: 18px;
    border: 1px solid #ead5dc;
    border-radius: 13px;
    background: #fffafb;
}

.schedule-calendar__header {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    margin-bottom: 14px;
}

.schedule-calendar__header strong {
    text-align: center;
    color: #4b2432;
}

.schedule-calendar__header button {
    width: 36px;
    height: 36px;
    border: 1px solid #e5cfd7;
    border-radius: 8px;
    background: #fff;
    color: #704657;
    cursor: pointer;
    font-size: 23px;
}

.schedule-calendar__weekdays,
.schedule-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.schedule-calendar__weekdays {
    margin-bottom: 6px;
    color: #9a7f89;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.schedule-calendar__day,
.schedule-calendar__spacer {
    aspect-ratio: 1.25 / 1;
}

.schedule-calendar__day {
    border: 1px solid #eddce2;
    border-radius: 8px;
    background: #fff;
    color: #563240;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.schedule-calendar__day:hover:not(:disabled) {
    border-color: #ce9aaa;
    background: #fff3f6;
}

.schedule-calendar__day.is-selected {
    border-color: #9f1239;
    background: #9f1239;
    color: #fff;
}

.schedule-calendar__day.is-past,
.schedule-calendar__day.is-out-of-range {
    cursor: not-allowed;
    opacity: .35;
}

.schedule-calendar__header button:disabled {
    cursor: not-allowed;
    opacity: .35;
}

.schedule-calendar__day.is-sunday:not(.is-selected) { color: #b03c58; }
.schedule-calendar__day.is-saturday:not(.is-selected) { color: #3e6899; }

.schedule-empty-state {
    padding: 28px;
    border: 1px dashed #dcbec8;
    border-radius: 11px;
    background: #fffafb;
    color: #907783;
    text-align: center;
    font-size: 13px;
}

.schedule-create-timelines,
.schedule-final-selection {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.schedule-timeline-card {
    min-width: 0;
    overflow: hidden;
    padding: 15px 16px 17px;
    border: 1px solid #ead5dc;
    border-radius: 12px;
    background: #fffafb;
}

.schedule-timeline-card h3,
.schedule-create-timeline-heading h3 {
    margin: 0;
    color: #4b2432;
    font-size: 14px;
}

.schedule-create-timeline-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.schedule-create-timeline-heading span {
    color: #8b707a;
    font-size: 11px;
}

.schedule-timeline-heading-actions,
.schedule-timeline-bulk-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.schedule-timeline-bulk-button {
    min-height: 30px;
    padding: 4px 11px;
    border: 1px solid #d9b7c2;
    border-radius: 7px;
    background: #fff;
    color: #7f1737;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.schedule-timeline-bulk-button:hover {
    border-color: #b8758a;
    background: #fff0f4;
}

.schedule-member-timeline-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.schedule-member-timeline-heading h3 {
    margin: 0;
}

.schedule-timeline-scroll {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

.schedule-timeline-board {
    width: 1560px;
    min-width: 1560px;
    max-width: none;
    margin-top: 10px;
}

.schedule-timeline-board--single {
    width: 1560px;
    min-width: 1560px;
    max-width: none;
}

.schedule-hour-row,
.schedule-timeline-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    min-width: 0;
}

.schedule-hour-row {
    margin-bottom: 4px;
}

.schedule-hour-track,
.schedule-slot-track {
    display: grid;
    grid-template-columns: repeat(96, minmax(0, 1fr));
    min-width: 0;
}

.schedule-hour-track span {
    grid-column: span 4;
    min-width: 0;
    color: #9b808a;
    font-size: 9px;
    text-align: left;
}

.schedule-row-label {
    padding-right: 14px;
    overflow: hidden;
    color: #5b3442;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-timeline-row {
    min-height: 34px;
}

.schedule-timeline-row + .schedule-timeline-row {
    margin-top: 5px;
}

.schedule-timeline-row.is-current-member .schedule-row-label {
    color: #8d1739;
}

.schedule-slot {
    width: auto;
    height: 32px;
    min-width: 0;
    padding: 0;
    display: block;
    border: 1px solid #eadce1;
    border-right-width: 0;
    background: #f3eef0;
}

.schedule-slot:nth-child(4n + 1) {
    border-left-color: #cdb6bf;
}

.schedule-slot:last-child {
    border-right-width: 1px;
}

.schedule-slot.is-disabled {
    background: #f4f1f2;
    opacity: .45;
}

.schedule-slot.is-candidate {
    background: #fff;
}

.schedule-slot.is-available,
.schedule-slot.is-selected {
    background: #4f86bd;
    border-color: #4375a6;
}

.schedule-slot.is-all-ok {
    background: #58a77e;
    border-color: #4c966f;
}

.schedule-slot-button {
    cursor: pointer;
}

.schedule-slot-button:hover {
    position: relative;
    z-index: 1;
    outline: 2px solid rgba(159, 18, 57, .25);
    outline-offset: -2px;
}

.schedule-slot-button.is-saving {
    opacity: .55;
}

.schedule-slot-button.is-final-selected {
    background: #9f1239;
    border-color: #881337;
}

.schedule-timeline-row--all-ok .schedule-row-label {
    color: #35785a;
}

.schedule-submit-row {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.schedule-status-card {
    margin-bottom: 22px;
    padding: 18px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 36px;
}

.schedule-status-card > div {
    display: grid;
    gap: 2px;
}

.schedule-status-card span {
    color: #927984;
    font-size: 10px;
    font-weight: 700;
}

.schedule-status-card strong {
    color: #4b2432;
    font-size: 13px;
}

.schedule-status-card.is-finalized {
    border-color: #b8dccb;
    background: #f5fbf8;
}

.schedule-final-badge strong {
    color: #21654a;
    font-size: 15px;
}

.schedule-card {
    margin-top: 22px;
    padding: 26px;
}

.schedule-member-form {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(260px, 1.2fr) auto;
    align-items: end;
    gap: 14px;
}

.schedule-member-form label {
    min-width: 0;
}

.schedule-final-summary {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 9px;
    background: #fff1f4;
    color: #6f2940;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 980px) {
    .schedule-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .schedule-member-form {
        grid-template-columns: 1fr 1fr;
    }

    .schedule-member-form .schedule-secondary-button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 780px) {
    .schedule-hero {
        padding: 62px 0 68px;
    }

    .schedule-guide,
    .schedule-page {
        padding: 48px 0 58px;
    }

    .schedule-form-card,
    .schedule-card {
        padding: 21px 18px;
    }

    .schedule-form-grid,
    .schedule-member-form {
        grid-template-columns: 1fr;
    }

    .schedule-member-form .schedule-secondary-button {
        grid-column: auto;
    }

    .schedule-subheading,
    .schedule-card__heading {
        display: block;
    }

    .schedule-selected-count,
    .schedule-member-count {
        display: inline-block;
        margin-top: 10px;
    }

    .schedule-hour-row,
    .schedule-timeline-row {
        grid-template-columns: 135px 1fr;
    }

    .schedule-timeline-board,
    .schedule-timeline-board--single {
        width: 1500px;
        min-width: 1500px;
    }
}

@media (max-width: 560px) {
    .schedule-create-timeline-heading,
    .schedule-member-timeline-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-timeline-heading-actions,
    .schedule-timeline-bulk-actions {
        justify-content: flex-start;
    }

    .schedule-guide-grid {
        grid-template-columns: 1fr;
    }

    .schedule-calendar {
        padding: 12px;
    }

    .schedule-calendar__weekdays,
    .schedule-calendar__days {
        gap: 4px;
    }

    .schedule-radio-row {
        display: grid;
    }

    .schedule-primary-button--hero {
        min-width: 0;
        width: 100%;
    }
}

/* 0:00〜24:00 の終端ラベル */
.schedule-hour-track {
    position: relative;
}

.schedule-hour-track::after {
    content: "24:00";
    position: absolute;
    top: 0;
    right: 0;
    color: #9b808a;
    font-size: 9px;
    transform: translateX(45%);
}

/* Schedule member registration / multi-status responses */
.schedule-member-form--with-note {
    grid-template-columns: minmax(150px, .7fr) minmax(220px, 1fr) minmax(220px, 1fr) auto;
}

.schedule-option-form {
    display: grid;
    gap: 18px;
}

.schedule-option-list {
    display: grid;
    gap: 10px;
}

.schedule-option-row {
    display: grid;
    grid-template-columns: 150px minmax(240px, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid #eddce2;
    border-radius: 10px;
    background: #fffafb;
}

.schedule-option-enable {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #5c3946;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.schedule-option-enable strong {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #fff0f4;
    color: #8d1739;
    font-size: 17px;
}

.schedule-option-label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.schedule-option-label > span {
    color: #80616d;
    font-size: 11px;
    font-weight: 700;
}

.schedule-option-label input {
    min-height: 40px;
    width: 100%;
    padding: 0 11px;
    border: 1px solid #dfc8d0;
    border-radius: 8px;
    background: #fff;
    color: #351923;
    outline: none;
}

.schedule-option-label input:focus {
    border-color: #bd8294;
    box-shadow: 0 0 0 3px rgba(159, 18, 57, .08);
}

.schedule-submit-row--left {
    margin-top: 0;
    justify-content: flex-start;
}

.schedule-member-accordion-list {
    display: grid;
    gap: 12px;
}

.schedule-member-accordion {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #ead5dc;
    border-radius: 12px;
    background: #fffafb;
}

.schedule-member-accordion > summary {
    position: relative;
    padding: 17px 46px 17px 18px;
    display: grid;
    grid-template-columns: minmax(140px, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.schedule-member-accordion > summary::-webkit-details-marker {
    display: none;
}

.schedule-member-accordion > summary::after {
    content: '＋';
    position: absolute;
    top: 50%;
    right: 18px;
    color: #9f1239;
    font-size: 20px;
    font-weight: 700;
    transform: translateY(-50%);
}

.schedule-member-accordion[open] > summary::after {
    content: '−';
}

.schedule-member-accordion[open] > summary {
    border-bottom: 1px solid #ead5dc;
    background: #fff5f7;
}

.schedule-member-accordion__name {
    color: #4b2432;
    font-size: 14px;
    font-weight: 800;
}

.schedule-member-accordion__name small {
    margin-left: 7px;
    padding: 3px 7px;
    border-radius: 999px;
    background: #9f1239;
    color: #fff;
    font-size: 9px;
    vertical-align: middle;
}

.schedule-member-accordion__meta {
    min-width: 0;
    overflow: hidden;
    color: #8a707a;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-member-accordion__body {
    min-width: 0;
    padding: 18px;
    background: #fff;
}

.schedule-member-accordion__body .schedule-timeline-card + .schedule-timeline-card {
    margin-top: 12px;
}

.schedule-timeline-card--member {
    background: #fffafb;
}

.schedule-response-toolbar {
    margin-bottom: 16px;
    padding: 13px 14px;
    border: 1px solid #ead5dc;
    border-radius: 10px;
    background: #fffafb;
}

.schedule-response-toolbar__label {
    display: block;
    margin-bottom: 8px;
    color: #5b3442;
    font-size: 11px;
    font-weight: 800;
}

.schedule-response-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.schedule-response-choice {
    min-height: 38px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #e4cfd6;
    border-radius: 8px;
    background: #fff;
    color: #61404c;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
}

.schedule-response-choice strong {
    font-size: 16px;
    line-height: 1;
}

.schedule-response-choice:hover,
.schedule-response-choice.is-active {
    border-color: #9f1239;
    box-shadow: 0 0 0 2px rgba(159, 18, 57, .08);
}

.schedule-response-choice.is-active {
    background: #fff0f4;
    color: #7c1233;
}

.schedule-response-choice--clear.is-active {
    background: #f4f1f2;
    color: #67545b;
}

.schedule-response-toolbar p {
    margin: 8px 0 0;
    color: #927984;
    font-size: 10px;
}

.schedule-response-legend {
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: #6f5360;
    font-size: 11px;
}

.schedule-response-legend strong {
    margin-right: 3px;
    color: #4b2432;
    font-size: 14px;
}

.schedule-response-slot {
    display: grid;
    place-items: center;
    color: #4b2432;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    user-select: none;
    touch-action: pan-y;
}

.schedule-response-slot.has-response {
    border-color: rgba(75, 36, 50, .18);
}

.schedule-response-slot.schedule-response-1 {
    background: #f8d9e3;
    color: #8c1237;
}

.schedule-response-slot.schedule-response-2 {
    background: #dcecff;
    color: #315f91;
}

.schedule-response-slot.schedule-response-3 {
    background: #fff0c8;
    color: #846015;
}

.schedule-response-slot.schedule-response-4 {
    background: #ece8ea;
    color: #6f5c64;
}

.schedule-response-slot.is-saving {
    opacity: .55;
}

.schedule-confirm-card {
    border-color: #dfbcc8;
    background: linear-gradient(180deg, #fff 0%, #fff9fb 100%);
}

.schedule-confirmed-message {
    margin-top: 22px;
}

@media (max-width: 1100px) {
    .schedule-member-form--with-note {
        grid-template-columns: 1fr 1fr;
    }

    .schedule-member-form--with-note .schedule-secondary-button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 780px) {
    .schedule-member-form--with-note,
    .schedule-option-row,
    .schedule-option-label,
    .schedule-member-accordion > summary {
        grid-template-columns: 1fr;
    }

    .schedule-member-form--with-note .schedule-secondary-button {
        grid-column: auto;
        justify-self: stretch;
    }

    .schedule-option-label {
        gap: 6px;
    }

    .schedule-member-accordion > summary {
        gap: 5px;
    }

    .schedule-member-accordion__meta {
        padding-right: 4px;
        white-space: normal;
    }

    .schedule-member-accordion__body {
        padding: 14px 12px;
    }

    .schedule-response-choice {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }
}

/* Schedule management readability */
.schedule-manage-page-title,
.schedule-member-page-title {
    margin: 0 0 30px;
    color: #3b1020;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

.schedule-page-heading--member {
    margin-bottom: 28px;
}

.schedule-member-save-row .schedule-primary-button {
    min-width: 220px;
}

.schedule-page-heading--manage {
    margin-bottom: 28px;
}

#scheduleManageApp .schedule-page-heading h1 {
    font-size: clamp(32px, 4vw, 44px);
}

#scheduleManageApp .schedule-page-heading > p,
#scheduleManageApp .schedule-description {
    font-size: 16px;
    line-height: 1.9;
}

#scheduleManageApp .schedule-status-card {
    padding: 22px 24px;
    gap: 20px 44px;
}

#scheduleManageApp .schedule-status-card span {
    font-size: 14px;
    line-height: 1.5;
}

#scheduleManageApp .schedule-status-card strong {
    font-size: 17px;
    line-height: 1.5;
}

#scheduleManageApp .schedule-final-badge strong {
    font-size: 18px;
}

#scheduleManageApp .schedule-card__heading h2 {
    font-size: 24px;
}

#scheduleManageApp .schedule-card__heading p,
#scheduleManageApp .schedule-field__hint,
#scheduleManageApp .schedule-response-toolbar__label,
#scheduleManageApp .schedule-option-enable,
#scheduleManageApp .schedule-option-label > span,
#scheduleManageApp .schedule-member-form label > span {
    font-size: 14px;
    line-height: 1.7;
}

#scheduleManageApp .schedule-option-enable strong {
    width: 34px;
    height: 34px;
    font-size: 20px;
}

#scheduleManageApp .schedule-option-label input,
#scheduleManageApp .schedule-member-form input {
    font-size: 16px;
}

#scheduleManageApp .schedule-member-count {
    font-size: 13px;
}

#scheduleManageApp .schedule-member-accordion__name {
    font-size: 17px;
}

#scheduleManageApp .schedule-member-accordion__name small {
    font-size: 11px;
}

#scheduleManageApp .schedule-member-accordion__meta {
    font-size: 14px;
}

#scheduleManageApp .schedule-row-label {
    font-size: 13px;
}

#scheduleManageApp .schedule-hour-track span,
#scheduleManageApp .schedule-hour-track::after {
    font-size: 11px;
}

#scheduleManageApp .schedule-primary-button,
#scheduleManageApp .schedule-secondary-button {
    font-size: 15px;
}

.schedule-self-member-option {
    min-height: 58px;
    padding: 13px 16px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    border: 1px solid #ead5dc;
    border-radius: 10px;
    background: #fffafb;
    color: #4b2432;
    cursor: pointer;
}

.schedule-self-member-option > input {
    width: 17px;
    height: 17px;
    margin: 3px 0 0;
    flex: 0 0 auto;
}

.schedule-self-member-option > span {
    display: grid;
    gap: 3px;
}

.schedule-self-member-option strong {
    font-size: 14px;
    line-height: 1.5;
}

.schedule-self-member-option small {
    color: #856a75;
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 780px) {
    .schedule-manage-page-title {
        margin-bottom: 24px;
        font-size: 27px;
    }
}


#scheduleManageApp .schedule-message {
    font-size: 15px;
}

#scheduleManageApp .schedule-option-row {
    padding: 14px 16px;
}

#scheduleManageApp .schedule-response-choice {
    min-height: 42px;
    font-size: 14px;
}

#scheduleManageApp .schedule-response-choice strong {
    font-size: 19px;
}

#scheduleManageApp .schedule-response-toolbar p {
    font-size: 13px;
    line-height: 1.7;
}

#scheduleManageApp .schedule-response-legend {
    font-size: 14px;
}

#scheduleManageApp .schedule-response-legend strong {
    font-size: 17px;
}

#scheduleManageApp .schedule-timeline-card h3,
#scheduleManageApp .schedule-create-timeline-heading h3 {
    font-size: 16px;
}

#scheduleManageApp .schedule-response-slot {
    font-size: 13px;
}

#scheduleManageApp .schedule-final-summary {
    font-size: 15px;
}

.schedule-final-deadline {
    margin: 10px 0 0;
    color: #856a75;
    font-size: 13px;
    text-align: center;
}
