@charset "utf-8";
/*--京news.css--*/
/* ##########PC########## */

/*
.news_box .box_header h2{
    margin: 0 0 0.5em 0;
    font-size: 1.4em;
    padding: 0 0.3em 0.3em 0.3em;
    text-align: left;
    display: block;
    border-bottom: 2px solid #980f16;
    line-height: 1.5;
    font-weight: 600;
}
*/

.page_body .news_box .box_header h2{
    display: block;
    border-top: 0.2rem solid #2a2661;
    padding: 0.5rem 0 0 0.5rem;
    position: unset;
}

.page_body .news_box .box_header h2::before{
    display: none;
}

.news_list{
    padding-bottom: 3rem;
}

.news_list li{
    border-bottom: 1px dotted #b2bcbe;
    padding: 0.2rem 0;
}

.news_list li a{
    display: flex;
    justify-content: flex-start;
    padding: 1rem;
    color: #222;
    text-decoration: none;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.news_list li a:hover{
    background: rgba(53,77,163,0.05);
    color: #222;
}

.news_list li a .news_text{
    flex: 1;
    display: block;
}

.news_list li a .news_text .date_category{
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.news_list li a .news_text .entry_category{
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.news_list li a .news_text .entry_category span{
    padding-left: 1.5rem;
    position: relative;
}

.news_list li a .news_text .entry_category span::before{
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 0;
    background: #d55995;
}

.news_list li a .news_text .entry_category span.cat_event{
    color: #d55995;
}
.news_list li a .news_text .entry_category span.cat_event::before{
    background: #d55995;
}
.news_list li a .news_text .entry_category span.cat_news{
    color: #0068b8;
}
.news_list li a .news_text .entry_category span.cat_news::before{
    background: #0068b8;
}
.news_list li a .news_text .entry_category span.cat_school_life{
    color: #028b91;
}
.news_list li a .news_text .entry_category span.cat_school_life::before{
    background: #028b91;
}
.news_list li a .news_text .entry_category span.cat_entrance_examination{
    color: #83469c;
}
.news_list li a .news_text .entry_category span.cat_entrance_examination::before{
    background: #83469c;
}

.news_list li a .news_img_sp{
    display: none;
}

.news_list li a .news_img{
    display: block;
    width: 10.5rem;
}

.news_list li a .news_img img{
    max-width: 100%;
    height: auto;
}

.pagination-container{
    margin-top: 3rem;
}

.pagination-container .pagination{
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

    .pagination-container .pagination li.disabled{
        display: none;
    }

    .pagination-container .pagination li a{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2rem;
        height: 2rem;
        background: rgba(0,0,0,0.02);
        text-decoration: none;
        color: #111;
        font-size: 0.9em;
        white-space: nowrap;
        transition: .3s all ease;
    }

    .pagination-container .pagination li.number a:hover{
        box-shadow: 0 0 0 1px #0d6799 inset;
        background: #fff;
    }

    .pagination-container .pagination li.active a,
    .pagination-container .pagination li.active a:hover{
        background: #0d6799;
        color: #fff;
    }

    .pagination-container .pagination li.next,
    .pagination-container .pagination li.prev{
        margin: 0 1rem;
    }

    .pagination-container .pagination li.next a,
    .pagination-container .pagination li.prev a{
        width: auto;
        background: none;
    }

    .pagination-container .pagination li.next a::after,
    .pagination-container .pagination li.prev a::before{
        color: #0d6799;
        font-family: FontAwesome;
        display: inline-block;
        margin-top: 0.2em;
    }

    .pagination-container .pagination li.next a::after{
        content:"\f0da";
        margin-left: 0.5em;
    }

    .pagination-container .pagination li.prev a::before{
        content:"\f0d9";
        margin-right: 0.5em;
    }

    .label_new {
        display: inline-block;
        margin-left: 0.375rem;
        padding: 0 0.375rem;
        background-color: #c40026;
        color: #fff;
        font-size: 0.75em;
        border-radius: 0.1875rem;
        font-weight: 500;
    }

    

/*詳細*/
.entry_detail_box{}

.entry_detail_box > .box_header{
    margin-bottom: 1.5rem;
}
/*
    .entry_detail_box > .box_header h2{
        margin: 0 0 0.3em 0;
        font-size: 1.4em;
        padding: 0 0.3em 0.3em 0.3em;
        text-align: left;
        display: block;
        border-bottom: 2px solid #980f16;
        line-height: 1.5;
        font-weight: 600;
    }
*/
.page_body .entry_detail_box > .box_header h2{
    display: block;
    border-top: 0.2rem solid #2a2661;
    padding: 0.5rem 0 0 0.5rem;
    position: unset;
}

    .entry_detail_box > .box_header .entry_meta{
        display: flex;
        justify-content: flex-end;
        font-size: 0.9em;
        padding-right: 0.5em;
    }

        .entry_detail_box > .box_header .entry_categories{
            margin-right: 1em;
        }

            .entry_detail_box > .box_header .entry_categories ul{
                display: flex;
            }

            .entry_detail_box > .box_header .entry_categories ul li{
                margin-right: 0.5em;
            }

            .entry_detail_box > .box_header .entry_categories ul li:last-child{
                margin-right: 0;
            }

        .entry_detail_box > .box_header .entry_date{}

.entry_detail_box > .box_inner{
    margin-bottom: 5em;
    padding: 0 1em;
}

.entry_detail_box > .box_inner p{
    margin-right: 0;
    margin-left: 0;
}

.entry_detail_box > .box_inner ul,
.entry_detail_box > .box_inner ol{
    margin-right: 1em;
    margin-left: 1em;
}

.entry_detail_box > .box_inner table td ul,
.entry_detail_box > .box_inner table td ol{
    margin: 0 1em;
}

.entry_detail_box > .box_inner .movie_single{
    box-sizing: border-box;
    margin-top: 2em;
    width: 100%;
    padding: 0 1em;
}

    .entry_detail_box > .box_inner .movie_single video{
        width: 100%;
        height: auto;
    }

.entry_detail_box > .box_footer{
    display: flex;
    justify-content: center;
}

    .entry_detail_box > .box_footer a{
        display: block;
        color: #222;
        text-decoration: none;
        border-bottom: 1px solid #222;
        font-size: 0.9em;
        font-weight: 500;
        padding: 0.1em 0.8em 0;
        transition: .3s all ease;
    }

    .entry_detail_box > .box_footer a:hover{
        background: rgba(25, 91, 175,0.1);
    }

/*アーカイブリスト*/
.archives_box{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

        /*カテゴリ*/
        .archives_box dl.archive_category{
            display: flex;
            align-items: center;
        }

            .archives_box dl.archive_category dt{
                font-size: 0.9em;
                margin-right: 0.5rem;
            }

            .archives_box dl.archive_category dd{

            }

        .archives_box dl.archive_category dd ul{
            display: flex;
            gap: 0 0.5rem;
        }

            .archives_box dl.archive_category dd ul li{}

                .archives_box dl.archive_category dd ul li a{
                    display: flex;
                    text-decoration: none;
                    color: #222;
                    background: #ededed;
                    padding: 0.4em 1em 0.5em;
                    border: 1px solid rgba(13,103,153,0);
                    transition: .3s all ease;
                }

                .archives_box dl.archive_category dd ul li a:hover{
                    border-color: #0d6799;
                    background: #fff;
                }

                .archives_box dl.archive_category dd ul li.current-cat a{
                    background: #0d6799;
                    color: #fff;
                }

        /*年別*/
        .archives_box dl.archive_year{
            margin: 0 1rem 0 auto;
        }
        .archives_box dl.archive_year dt{}

            .archives_box dl.archive_year dt button{
                color: #222;
                background: #ededed;
                border: none;
                padding: 0.4em 1em 0.5em;
                font-size: 1em;
                line-height: 1;
                border: 1px solid rgba(13,103,153,0);
                cursor: pointer;
                transition: .3s all ease;
            }

            .archives_box dl.archive_year dt button:hover{
                border: 1px solid rgba(13,103,153,1);
                background: #fff;

            }

            .archives_box dl.archive_year dt button::after{
                font-family: FontAwesome;
                content:"\f107";
                display: inline-block;
                margin-left: 1em;
            }

            .archives_box dl.archive_year dt button.open::after{
                transform: rotate(180deg);
            }

            .archives_box dl.archive_year dt .lbl_sp{
                display: none;
            }

        .archives_box dl.archive_year dd{
            position: relative;
        }

            .archives_box dl.archive_year dd ul{
                box-sizing: border-box;
                position: absolute;
                top: 0.25rem;
                left: calc(50% - 5em);
                margin: 0;
                padding: 0;
                line-height: 1.4;
                font-size: 0.9em;
                width: 10em;
                background: rgba(255, 255, 255, 0.9);
                height: 0;
                overflow: hidden;
                opacity: 0;
                transition: .4s all ease;
                background: #fff;
                padding: 0;
                border: 1px solid #ccc;
            }

            .archives_box dl.archive_year dd ul.active{
                height: auto;
                opacity: 1;
                padding: 0.5em;
            }

                .archives_box dl.archive_year dd ul li{}

                    .archives_box dl.archive_year dd ul li a{
                        color: #111;
                        text-decoration: none;
                        display: block;
                        text-align: center;
                        padding: 0.3em 0;
                        transition: .3s  all ease;
                    }

                    .archives_box dl.archive_year dd ul li a:hover{
                        color: #0d6799;
                    }





@media screen and (min-width:1px) and (max-width:1400px) {
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    .news_box_wrap{
        width: 90vw;
        margin: 0 auto;
        position: relative;
        display: flex;
        justify-content: flex-start;
        gap: 2rem;
    }

    .news_box_wrap .box_header{
        width: 15rem;
        padding-left: 4.5rem;
    }

    .news_box_wrap .box_header .en_ttl{
        font-size: 7.2rem;
        top: 5.2rem;
        left: -6.4rem;
    }

    .news_box_wrap .box_header h2{
        font-size: 1.6rem;
        margin: 2rem 0 0 0;
    }

    .news_box_wrap .box_inner .category_list{
        margin-bottom: 1.5rem;
    }

    .news_list li a .news_text .date_category{
        gap: 1.5rem;
    }

    .news_list li a .news_img{
        width: 8.4rem;
    }

}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
    .page_body{
        width: 100%;
    }

    .column_wrapper .column_main{
        display: flex;
        flex-direction: column-reverse;
    }

    .archives_box{
        margin-top: 2rem;
        margin-bottom: 0;
        flex-direction: column;
    }

        .archives_box dl.archive_category{
            flex-direction: column;
            align-items: center;
            margin-bottom: 1rem;
        }

            .archives_box dl.archive_category dt{
                margin-right: 0;
                margin-bottom: 0.375rem;
            }

            .archives_box dl.archive_year dt .lbl_sp{
                display: inline;
            }

            .archives_box dl.archive_year{
                display: flex;
                flex-direction: column;
                align-items: center;
                margin: 0 0 3rem 0;
            }

            .archives_box dl.archive_year dt{
                font-size: 0.9em;
                margin-bottom: 0.375rem;
            }

            .archives_box dl.archive_year dt button{
                display: none;
            }

            .archives_box dl.archive_year dd{
                width: 100%;
            }

            .archives_box dl.archive_year dd ul{
                position: relative;
                top: auto;
                left: 0;
                width: auto;
                height: auto;
                opacity: 1;
                border: none;
                padding: 0;
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                flex-wrap: wrap;
            }

            .archives_box dl.archive_year dd ul li{
                width: calc((100% - 4.5rem) / 5);
            }

    .news_box_wrap{
        flex-direction: column;
    }

    .news_box_wrap .box_header{
        width: auto;
        padding: 0;
    }

    .news_box_wrap .box_header .en_ttl{
        font-size: 5rem;
        top: auto;
        bottom: 0;
        right: 0;
        left: auto;
        transform: rotate(0deg);
    }

    .news_list li a{
        flex-direction: column;
        gap: 0;
        padding: 1em 0.5em;
    }

    .news_list li a .news_text{
        display: flex;
        flex-wrap: wrap;
    }

    .news_list li a .news_text .date_category{
        font-size: 0.9em;
        width: 100%;
        margin-bottom: 0.2em;
    }

    .news_list li a .news_text .entry_category span{
        padding-left: 1.3em;
    }

    .news_list li a .news_text .entry_category span::before{
        width: 1em;
        height: 1em;
    }

    .news_list li a .news_text .date_ttl{
        flex: 1;
        padding-right: 1em;
    }

    .news_list li a .news_img{
        display: none;
    }

    .news_list li a .news_img_sp{
        display: block;
        width: 30%;
    }

    .entry_list_box > ul > li > a{
        flex-direction: column;
    }

    .entry_list_box > ul > li .date_cat{
        margin-bottom: 0.2em;
    }

    .entry_list_box > ul > li .title_outline{
        padding-left: 0;
    }


    .entry_list_box > ul > li .entry_title{
        margin-bottom: 0.15em;
    }


}


/* ##########印刷用########## */
@media print{

}