@charset "utf-8";
/* basic
----------------------------------------------------------- */
/* title --------------- */
.h1program {
    padding-top: 75px;
    padding-right: 10%;
}
.schedule-item .h3 {
    margin-bottom: 0.9em;
    font-size: clamp(16.00px, calc(0.71vw + 13.43px), 17.00px);
    line-height: 1.2;
}
@media print, screen and (min-width: 1200px) {
    .h1program {
        padding-top: 1em;
        padding-right: 0;
    }
}
/* schedule --------------- */
.area-schedule-date {
    margin-bottom: 0.8em;
    font-weight: 700;
}
.schedule-date {
    font-size: clamp(32.00px, calc(7.27vw + 8.73px), 40.00px);
    line-height: 0.8;
    margin-right: 15px;
}
.schedule-date small, .schedule-time {
    font-size: 19px;
}
.schedule-time {
    display: inline-block;
}
.btn-apply {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 3em;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(77, 206, 212, 0.80) 33.24%, rgba(23, 103, 215, 0.80) 99.93%);
    transition: opacity .2s ease;
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 26px;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        background-image: url("../images/ic_arrow_schedule.svg");
        background-size: contain;
        background-repeat: no-repeat;
    }
    &:hover {
        opacity: var(--hoverOpacity);
    }
}
a.btn-apply {
    color: #fff;
}
/*  --------------- */
.schedule {
    position: relative;
}
.schedule::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--mainColor);
}
.schedule-item {
    position: relative;
    display: block;
    margin-bottom: 2em;
    &::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 18px;
        height: 18px;
        background: var(--mainColor);
        border-radius: 50%;
    }
}
.time {
    width: auto;
    order: 1;
    padding-left: 28px;
    padding-right: 0;
    font-weight: 700;
    white-space: nowrap;
}
.content {
    flex: 1;
    order: 2;
    padding-left: 28px;
}
.content p {
    line-height: 1.5;
}
@media print, screen and (min-width: 440px) {
    .schedule::before {
        left: 72px;
    }
    .schedule-item {
        display: flex;
        gap: 20px;
        &::before {
            left: 64px;
        }
    }
    .time {
        width: 74px;
        padding-left: 0;
    }
    .content {
    padding-left: 0;
    }
}
/* accordion --------------- */
.dept-accordion {
    box-shadow: 0 0 10px 0 rgba(183, 219, 245, 0.50);
    border-radius: 13px;
    overflow: hidden;
    margin-bottom: 10px;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: 50px;
}
.dept-accordion.open {
    max-height: 500px;
}
.dept-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #fff;
    font-family: var(--mainFont);
    font-size: 15px;
    font-weight: 700;
    color: var(--txtColor);
    cursor: pointer;
    border: none;
}
.icon-img {
    width: 12px;
    height: 12px;
    transition: opacity .35s ease;
}
.dept-accordion.open .v-line {
    opacity: 0;
}
.dept-content {
    padding: 0 18px 16px;
    background: #fff;
}
.dept-content p {
    font-size: 14px;
    line-height: 1.6;
}
@media screen and (max-width: 370px) {
    .dept-btn {
    font-size: clamp(13.00px, calc(4.00vw + 0.20px), 15.00px);
    }
}
    