/* header -----*/


.header_2nd {
    background-image: url(../images/schedule/header_bg.jpg);
    background-position:500% 0;
}

.main_inner {
    padding:100px!important;
}

.main_inner h3 {
    font-family: oswald,sans-serif;
    font-size: 2.85rem;
    color:#C11830;
    margin:0 0 30px 0;
}



@media screen and (max-width: 690px) {

    .main_inner {
        padding:20px!important;
    }

    .header_2nd {
        background-image: url(../images/schedule/header_bg.jpg);
        background-size:130vw;
        background-position:25% 100%;
    }

    .main_inner h3 {
        font-size: 2.125rem;
        color:#C11830;
        margin:30px 0 10px 0;
}
}



/* schedule -----*/

.top_schedule {
    background:url(../images/schedule_bg.jpg) no-repeat 50% 50%;
    background-size: cover;
    padding:20px 0 100px;
}
.schedule_ttl {
    margin:20px 100px 40px;
    display: flex;
}
.schedule_ttl a {
    display: block;
    padding:10px 15px;
    margin:5px 10px;
    background:url(../images/wh_10per.png) repeat;
    font-size:1rem;
    line-height: 110%;
    text-decoration: none;
    color:#fff;
}
.schedule_ttl a:hover {
    color:#fff;
    opacity: 0.8;
}
.schedule_ttl a span {
    padding:0 25px 0 0px;
    background:url(../images/forward.png) no-repeat center right;
    background-size:15px;
    font-size:0.95rem;
}
.schedule_ttl p {
    color:#fff;
    font-family: oswald,sans-serif;
    font-size:2.5rem;
    line-height: 110%;
}
.schedule_wrap ul {
    display: flex;
    margin:0 100px;
    border-left:1px solid #fff;
    border-right:1px solid #fff;
}
.schedule_wrap ul li {
    text-align: center;
    color:#fff;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    border-right:1px solid #fff;
}
.schedule_inner {
    padding:0 0 0 0;
}
.schedule_inner .date {
    background:rgba(255, 255, 255, 0.2);
    display: block;
    padding:15px 20px;
}
.schedule_inner .time {
    font-family: oswald,sans-serif;
    font-size:3.25rem;
    padding:50px 0;
    min-height: 3rem;
}
.schedule_inner .event,
.schedule_inner .location {
    font-size:0.8rem;
    line-height: 130%;
}

.schedule_inner .location {
    border-top:1px solid rgba(255,255,255,0.5);
    padding:30px 0 30px;
    margin:20px 40px 10px;
    display: initial!important;
}

.schedule_inner .location p::before {
    display: inline-block;
    content:"";
    width:18px;
    height:18px;
    background:url(../images/location_icon.png) no-repeat 0% 0%;
    background-size: 18px;
    margin:0 5px 0 0;
}

.top_schedule .next {
    display: block;
    width:45px;
    height:45px;
    background:url(../images/forward_red.png) no-repeat 50% 50% #fff;
    background-size:50%;
    position: absolute;
    bottom:110px;
    right:-40px;
    z-index: 1;
}

.top_schedule .prev {
    display: block;
    width:45px;
    height:45px;
    background:url(../images/backward_red.png) no-repeat 50% 50% #fff;
    background-size:50%;
    position: absolute;
    bottom:110px;
    left:-40px;
    z-index: 1;
}

@media screen and (max-width: 690px) {
    .top_schedule {
        padding:20px 0 20px;
    }
    .schedule_ttl {
        margin:20px 20px 10px;
    }
    .schedule_ttl p {
        color:#fff;
        font-size:2.125rem;
        line-height: 110%;
    }
    .schedule_wrap ul {
        display: flex;
        margin:0 20px 20px;
    }
    .schedule_inner {
        padding:0 0 0 0;
    }
    .schedule_inner .time {
        font-size:3rem;
        padding:50px 0;
        min-height: 3rem;
    }

    .top_schedule .next {
        bottom:110px;
        right:-30px;
    }

    .top_schedule .prev {
        bottom:110px;
        left:-30px;
    }
}


.schedule_nav {
    display: flex;
    margin:0px 100px;
    align-items: center;
    justify-content: flex-end;
}
.schedule_nav a {
    display: block;
    font-size:0.85rem;
    line-height: 100%;
    width: 100px;
    text-align: center;
    font-family: oswald,sans-serif;
    color:#ccc;
    text-decoration: none;
    padding:10px;
    /* background:#666; */
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
    border-left:1px solid #ccc;
    margin:0 0;
}
.schedule_nav li:last-child a {
    border-right:1px solid #fff;
}
.schedule_nav a.active {
    background:#ccc;
    color:#333;
}
.schedule_nav a:hover {
    color:#ccc;
    background:#C11830;
    opacity: 1;
}

.next_nav {
    display: flex;
    width:100%;
    margin:0px 0px 10px 0;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.next_nav a.next {
    display: block;
    width:40px;
    height:40px;
    background:url(../images/forward.png) no-repeat 50% 50% #333;
    background-size:40%;
    position: absolute;
    bottom:-60px;
    right:0;
    z-index: 1;
}
.next_nav a.next_nolink {
    display: block;
    width:40px;
    height:40px;
    background:url(../images/forward.png) no-repeat 50% 50% #ccc;
    background-size:40%;
    position: absolute;
    bottom:-60px;
    right:0;
    z-index: 1;
}
.next_nav a.prev {
    display: block;
    width:40px;
    height:40px;
    background:url(../images/backward.png) no-repeat 50% 50% #333;
    background-size:40%;
    position: absolute;
    bottom:-60px;
    right:42px;
    z-index: 1;
}
.next_nav a.prev_nolink {
    display: block;
    width:40px;
    height:40px;
    background:url(../images/backward.png) no-repeat 50% 50% #ccc;
    background-size:40%;
    position: absolute;
    bottom:-60px;
    right:42px;
    z-index: 1;
}
.monthly_wrap {
    margin:30px 0;
}

.monthly_wrap h4.pblack {
    text-align: left;
    font-size:2rem;
}

@media screen and (max-width: 690px) {

    .schedule_nav {
        display: flex;
        margin:0px auto 20px;
        align-items: center;
        justify-content: center;
    }
    .schedule_nav a {
        display: block;
        font-size:0.7rem;
        text-decoration: none;
        padding:6px 8px 6px;
    }

    .next_nav {
        display: flex;
        width:100%;
        margin:0px 0px 10px 0;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .next_nav a.next {
        display: block;
        width:35px;
        height:35px;
        background:url(../images/forward.png) no-repeat 50% 50% #333;
        background-size:40%;
        position: absolute;
        bottom:-60px;
        right:0;
        z-index: 1;
    }
    .next_nav a.next_nolink {
        display: block;
        width:35px;
        height:35px;
        background:url(../images/forward.png) no-repeat 50% 50% #ccc;
        background-size:40%;
        position: absolute;
        bottom:-60px;
        right:0;
        z-index: 1;
    }
    .next_nav a.prev {
        display: block;
        width:35px;
        height:35px;
        background:url(../images/backward.png) no-repeat 50% 50% #333;
        background-size:40%;
        position: absolute;
        bottom:-60px;
        right:37px;
        z-index: 1;
    }
    .next_nav a.prev_nolink {
        display: block;
        width:35px;
        height:35px;
        background:url(../images/backward.png) no-repeat 50% 50% #ccc;
        background-size:40%;
        position: absolute;
        bottom:-60px;
        right:37px;
        z-index: 1;
    }
    .monthly_wrap {
        margin:30px 0;
    }

    .monthly_wrap h4.pblack {
        text-align: left;
        font-size:1.4rem;
    }

}