@charset "utf-8";
/*--news.css--*/

/* ##########PC########## */
/*news_list_box*/
.news_list_box{}

        .news_list_box ul{
            line-height: 1.6;
        }

            .news_list_box ul li{
                border-bottom: 1px solid #e5e5e5;
            }

                .news_list_box ul li a{
                    display: flex;
                    text-decoration: none;
                    color: #000;
                    padding: 1em 0.9em;
                }

                    .news_list_box ul li a .entry_date{
                        width: 7em;
                        color: #555;
                    }


                    .news_list_box ul li a .entry_title{
                        width:calc(100% - 7em);
                    }

/*news_detail_box*/
.news_detail_box{}

    .news_detail_box > .box_header{
        margin-bottom: 2em;
    }

        .news_detail_box > .box_header h3{
            border-bottom: 1px dotted #aaa;
            font-size:1.3em;
            margin-bottom: 0.3em;
            padding: 0 0 0.3em 1.5em;
            position: relative;
            line-height: 1.6;
        }

        .news_detail_box > .box_header h3:before{
            font-family: FontAwesome;
            content:"\f111";
            color: #eac978;
            font-size: 0.9em;
            line-height: 1;
            position: absolute;
            top: 0.4em;
            left: 0.2em;
        }

        .news_detail_box > .box_header .entry_meta{
            display: flex;
            justify-content: flex-end;
            font-size: 0.9em;
        }

    .news_detail_box > .box_inner{
        min-height: 300px;
        padding-bottom: 3em;
    }

    .news_detail_box > .box_footer{}

        .news_detail_box > .box_footer .news_nav{
            font-size: 0.9em;
        }

            .news_detail_box > .box_footer .news_nav ul{
                display: flex;
                justify-content: center;
            }

                .news_detail_box > .box_footer .news_nav ul li{}

                .news_detail_box > .box_footer .news_nav ul li.prev,
                .news_detail_box > .box_footer .news_nav ul li.next{
                    width: 5em;
                }

                .news_detail_box > .box_footer .news_nav ul li.next{
                    text-align: right;
                }

                    .news_detail_box > .box_footer .news_nav ul li a{
                        text-decoration: none;
                        color: #111;
                        display: block;
                    }

                    .news_detail_box > .box_footer .news_nav ul li.list a{
                        border: 1px solid rgba(0,0,0,0);
                        padding: 0 2em;
                        transition: .3s all ease;
                    }

                    .news_detail_box > .box_footer .news_nav ul li.list a:hover{
                        border: 1px solid #274691;
                    }

                    .news_detail_box > .box_footer .news_nav ul li.next a:after{
                        font-family: FontAwesome;
                        content:"\f105";
                        color: #888;
                        font-size: 1.1em;
                        margin-left: 1em;
                    }

                    .news_detail_box > .box_footer .news_nav ul li.prev a:before{
                        font-family: FontAwesome;
                        content:"\f104";
                        color: #888;
                        font-size: 1.1em;
                        margin-right: 1em;
                    }

                    .news_detail_box > .box_footer .news_nav ul li.prev a:hover,
                    .news_detail_box > .box_footer .news_nav ul li.next a:hover{
                        color:#005eae;
                    }

                    .news_detail_box > .box_footer .news_nav ul li.prev a:hover:before,
                    .news_detail_box > .box_footer .news_nav ul li.next a:hover:after{
                        color:#005eae;
                    }


@media screen and (min-width:1px) and (max-width:1024px) {
}

@media screen and (min-width:1px) and (max-width:768px) {
}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
    /*news_list_box*/
    .news_list_box{
        width: auto;
        margin: 2em 0 0 0;
    }

        .news_list_box ul li a{
            flex-wrap:wrap;
            padding: 0.8em;
        }

            .news_list_box ul li a .entry_date_category{
                padding-right: 0;
                align-items: center;
            }

                .news_list_box ul li a .entry_category .lbl{
                    line-height: 1;
                }

            .news_list_box ul li a .entry_title{
                width:100%;
                padding-top: 0.2em;
            }

    /*news_detail_box*/
    .news_detail_box{
        margin-top: 2em;
    }

        .news_detail_box > .box_header{
            margin-bottom: 1em;
        }

            .news_detail_box > .box_header h3{
                font-size:1.2em;
            }

        .news_detail_box > .box_inner{
            min-height: 50vh;
            padding-bottom: 3em;
        }


}

/* ##########印刷用########## */
@media print{

}