@charset "UTF-8";

.main_container {
    padding-bottom: 205px;
}

.title-bg-area {
    background-image: url(../images/program-title_bg.png);
    background-repeat: no-repeat;
    background-position-x: 54.5%;
    background-size: clamp(37.5rem, 5.5rem + 66.67vw, 55.5rem);
}

.title-bottom_text {
    max-width: 800px;
    width: 90%;
    margin: auto;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #707070;
    color: #484848;
    padding-bottom: 16px;
    margin-top: 23px;
}

.title-bottom_text br {
    display: none;
}

.time-table_container {
    margin-top: 80px;
}

.program_wrap {
    display: flex;
    justify-content: flex-start;
    max-width: 928px;
    margin: auto;
}

.time-text_wrap {
    position: relative;
    z-index: 2;
}

.time-text_wrap::after {
    content: "";
    width: 3px;
    height: calc(100% - 116px);
    position: absolute;
    top: 116px;
    left: 50%;
    background-color: #084288;
}

.program_wrap:last-of-type .time-text_wrap::after {
    content: none;
}

.time-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 116px;
    height: 116px;
    color: #FFFFFF;
    background-color: #084288;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 700;
}

.program-contents {
    display: flex;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    left: -26px;
    z-index: 1;
}

.program-img {
    max-width: 252px;
    height: 100%;
}

.program-title {
    font-size: 30px;
    font-weight: 700;
    color: #084288;
    padding-left: 70px;
    position: relative;
}

.program-title::before {
    content: "";
    background-image: url(../images/arrow_right.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 30px;
    top: 55%;
    transform: translateY(-50%);
    width: 34px;
    height: 40px;
}

.program-textarea {
    max-width: 430px;
    margin-left: 70px;
    font-size: 17px;
    color: #084288;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 10px;
}

.page-link-button_wrap {
    max-width: 800px;
    width: 90%;
    margin: auto;
    text-align: right;
    margin-top: 70px;
}

.page-link-button {
    padding: 16px 46px;
    color: #FFFFFF;
    background-color: #FA7B35;
    border-radius: 5px 0 0 5px;
    position: relative;
    box-shadow: 5px 5px 0px 0px rgba(227, 227, 227, 1);
    margin-right: 75px;
}

.page-link-button::after {
    content: "";
    width: 75px;
    height: 100%;
    background-color: #FFFFFF;
    background-image: url(../images/link-arrow-right_n.png);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 0;
    right: -75px;
    box-shadow: 5px 5px 0px 0px rgba(227, 227, 227, 1);
}

@media screen and (max-width: 970px) {
    .program_wrap {
        flex-direction: column;
        max-width: 500px;
        width: 90%;
        margin: auto;
    }
    .time-text_wrap::after {
        content: none;
    }
    .time-text {
        width: 90px;
        height: 90px;
        font-size: 20px;
    }
    .program-contents {
        flex-direction: column;
        left: 0;
        padding-top: 0;
        margin-top: -50px;
        padding-left: 40px;
    }
    .program-text_container {
        margin-top: 16px;
    }
    .program-title {
        font-size: 24px;
        padding-left: 35px;
    }
    .program-title::before {
        width: 25px;
        height: 28px;
        background-size: 100%;
        left: 0;
    }
    .program-textarea {
        margin-left: 35px;
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .main_container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .title-bg-area {
        background-size: clamp(22.188rem, 5.543rem + 66.58vw, 37.5rem);
        background-position-x: 62%;
        background-position-y: 10%;
    }
    .title-bottom_text {
        font-size: 14px;
    }
    .title-bottom_text br {
        display: inline;
    }
    .time-table_container {
        margin-top: 45px;
    }
    .page-link-button {
        padding: 12px 36px;
        margin-right: 60px;
        font-size: 13px;
    }
    .page-link-button::after {
        background-size: 12px;
        width: 60px;
        right: -60px;
    }
}

@media screen and (max-width: 500px) {
    .program-contents {
        padding-left: 30px;
    }
    .program-title {
        font-size: 20px;
        padding-left: 30px;
    }
    .program-title::before {
        width: 22px;
        height: 25px;
    }
    .program-textarea {
        font-size: 13px;
        margin-left: 30px;
    }
}