@charset "UTF-8";

/* ------------------------------- 
施設見学・インターンシップ
------------------------------- */
ul.list-style-indent {
    list-style: none;
    padding: 0;
}

ul.list-style-indent li {
    padding-left: 1em;
    text-indent: -1em;
}


/* 施設見学 */
.sec-tour {
    padding-bottom: 60px;
}

.sec-tour .title-h3+.text-center {
    margin-bottom: 40px;
}

.schedule-title {
    font-size: clamp(18px, 4vw, 20px);
    font-weight: 500;
    color: var(--c-green);
    position: relative;
    padding-left: 15px;
}

.schedule-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: var(--grd);
    border-radius: 8px;
}

.block-schedule {
    max-width: 780px;
    margin: 0 auto;
}

.block-schedule .list {
    align-items: baseline;
    gap: 12px;
}

.block-schedule .list .label {
    width: 91px;
    display: block;
    border-radius: 5px;
    color: #fff;
    background: var(--c-green);
    font-weight: 500;
    text-align: center;
}

.block-schedule .list .com {
    width: 100%;
    margin: 0;
}

.schedule-list .timeline dt,
.schedule-list .timeline dd {
    padding-bottom: 15px;
}

.schedule-list .timeline dt {
    margin: 0;
    width: 88px;
    position: relative;
    padding-left: 30px;
    color: var(--c-green);
    font-weight: 600;
}

.schedule-list .timeline dt::before,
.schedule-list .timeline dt::after {
    content: "";
    position: absolute;
    top: 3px;
}

.schedule-list .timeline dt::before {
    left: 12px;
    width: 1px;
    height: 100%;
    background: var(--c-green);
}

.schedule-list .timeline dt::after {
    left: 0;
    width: 25px;
    height: 25px;
    background: #fff;
    border: solid 1px var(--c-green);
    border-radius: 50%;
}

.schedule-list .timeline dt:last-of-type::before {
    display: none;
}

.schedule-list .timeline dd {
    margin: 0;
    width: calc(100% - 88px);
}

.schedule-grid {
    gap: 20px;
    margin: 30px 0;
}

.schedule-grid .schedule-list {
    width: 100%;
}

.schedule-grid .schedule-img {
    width: 100%;
}

@media (min-width: 768px) {
    .sec-tour {
        padding-bottom: 100px;
    }

    .block-schedule .list {
        gap: 24px;
    }

    .block-schedule .list .com {
        width: calc(100% - 91px - 24px);
    }

    .schedule-grid .schedule-list {
        width: 55%;
    }

    .schedule-grid .schedule-img {
        width: calc(45% - 20px);
    }
}

/* 高校生可能バナー */
.bnr-student {
    border: solid 1px #E4E2DF;
    border-radius: 10px;
    padding: 30px;
}

.bnr-student .inner {
    gap: 20px;
    align-items: center;
}

.bnr-student .inner .txt {
    width: 100%;
}

.bnr-student .inner .img {
    width: 100%;
}

.bnr-student .inner .title {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 500;
    color: var(--c-green);
    margin: 0 0 20px;
}

.bnr-student ul.list-style-indent {
    list-style: none;
    padding: 0;
}

.bnr-student ul.list-style-indent li {
    position: relative;
    padding-left: 20px;
    text-indent: 0;
}

.bnr-student ul.list-style-indent li::before {
    content: "";
    width: 16px;
    height: 16px;
    background: rgba(71, 159, 137, 0.4);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

@media (min-width: 768px) {
    .bnr-student {
        padding: 40px 60px;
    }

    .bnr-student .inner .txt {
        width: 70%;
    }

    .bnr-student .inner .img {
        width: calc(30% - 20px);
    }
}

/* インターンシップ */
.sec-intern {
    padding-bottom: 40px;
}

.sec-intern .title-h3+.text-center {
    margin-bottom: 40px;
}

.sec-intern .block-schedule {
    margin-bottom: 80px;
}