@charset "utf-8";

/* ----------------
page_title
---------------- */
#page_title .page_title_inner .page_title_img {
    background: url(../img/schedule/page_title_img.webp) no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--purple);
}
@media (max-width: 768px) {
    #page_title .page_title_inner .page_title_img {
    background-size: cover;
    background-position: center;
}
}

/* ----------------
sec_ttl
---------------- */
body .sec_ttl .pdf {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--purple);
    border-bottom: solid 1px var(--purple);
    margin-bottom: 1%;
}

body .sec_ttl .pdf::after {
    content: url(../img/common/pdf_purple.svg);
    vertical-align: middle;
    width: 1.2em;
    height: 1em;
    margin-left: 0.5em;
    margin-top: -1em;
    display: inline-block;
    transition: all 0.3s;
}

body .sec_ttl .pdf:hover {
    opacity: 0.5;
}

@media (max-width: 1080px) {
    body .sec_ttl .pdf {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    body .sec_ttl {
        gap: 15px;
    }
}

/* ----------------
schedule
---------------- */

#schedule.schedule-com {
    background-color: var(--purple-light);
}

#schedule .schedule_box {
    background-color: #fff;
    border: solid 2px var(--purple);
    padding: 60px;
    text-align: center;
}

#schedule .schedule_box img {
    /* border: solid 1px var(--purple); */
    width: 100%;
    /* max-width: 700px; */
    max-width: 850px;
    height: auto;
}

@media (max-width: 768px) {
    #schedule .schedule_box {
        /* padding: 25px; */
        padding: 0;
        overflow-x: scroll;
    }
    #schedule .schedule_box img {
        /* width: 600px;
        max-width: 600px; */
        max-width: 100%;
    }
}