@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
/*--京base.css--*/
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
    outline-offset: -2px;
}

html {
    font-size: 16px;
}

body {
    width: 100%;
    height: 100%;
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fff;
    line-height: 1.0;
    -webkit-text-size-adjust: 100%;
}

button,
input[type="search"],
input[type="text"],
input[type="submit"]{
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

img{
    vertical-align:bottom;
}

#container{
    width: 100%;
    position: relative;
}

/*----------header----------*/
header{
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.99);
    transition: .5s all ease;
}


    header > .box_inner{
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 7.5rem;
        padding: 0 7.5rem 0 3vw;
        transition: .3s all ease;
        position: relative;
    }

        header > .box_inner img{
            max-width: 100%;
            height: auto;
        }

        header > .box_inner .logo_site_title{

        }

            header > .box_inner .logo_site_title a{
                display: flex;
                align-items: flex-end;
                text-decoration: none;
                color: #505050;
                transition: .4s all ease;
            }

            header > .box_inner .logo_site_title a:hover{
                opacity: 0.8;
            }

                header > .box_inner .logo_site_title a .logo{
                    width: 3.75rem;
                    margin-right: 1.25rem;
                }

                header > .box_inner .logo_site_title a .site_title{
                    display: flex;
                    flex-direction: column;
                }

                    header > .box_inner .logo_site_title a .site_title .fig{
                        width: 20rem;
                    }


                    header > .box_inner .logo_site_title a .site_title .lbl{
                        font-size: 0.94em;
                        font-weight: 500;
                        margin-top: 0.5em;
                    }

        header > .box_inner .navs{

        }

            header > .box_inner .navs .global_nav{

            }

            header > .box_inner .navs .global_nav > ul{
                display: flex;
            }

                header > .box_inner .navs .global_nav > ul{
                    display: flex;
                }

                    header > .box_inner .navs .global_nav > ul > li{
                        margin-right: 2.8vw;
                    }

                    header > .box_inner .navs .global_nav > ul > li:last-child{
                        margin-right: 0;
                    }

                    header > .box_inner .navs .global_nav > ul > li > a{
                        text-decoration: none;
                        color: #212121;
                        display: block;
                        font-size: 1.1rem;
                        font-weight: 500;
                        padding: 1rem 0;
                        position: relative;
                    }

                        header > .box_inner .navs .global_nav > ul > li > a::after{
                            content: "";
                            display: block;
                            width: 100%;
                            height: 0;
                            border-top: 0.1875rem solid rgba(43,64,90,0.7);
                            position: absolute;
                            left: 0;
                            bottom: 0.25rem;
                            transition: .3s all ease;
                            opacity: 0;
                        }

                        header > .box_inner .navs .global_nav > ul > li > a:hover::after{
                            opacity: 1;
                        }

                        header > .box_inner .navs .global_nav > ul > li.active > a::after{
                            border-top-color: #a02d14;
                            opacity: 1;
                        }

/*small_header*/
.small_header header {
    background: rgba(255,255,255,0.99);
    box-shadow: 0 5px 10px -10px rgb(0 0 0 / 30%);
}

    .small_header header > .box_inner{
        height: 5.625rem;
    }

 

/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:0;
    padding-top: 7.5rem;
    padding-bottom: 5rem;
}



/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    background: #2b405b;
    padding: 4.5rem 10vw;
    color: #fff;
}

    footer > .box_inner{
        display: flex;
        justify-content: space-between;
    }

        footer > .box_inner img{
            max-width: 100%;
            height: auto;
        }

        footer > .box_inner .f_addr_contact{}

            footer > .box_inner .f_addr_contact > dl{}

                footer > .box_inner .f_addr_contact > dl > dt{
                    display: flex;
                    flex-direction: column;
                }

                    footer > .box_inner .f_addr_contact > dl > dt .f_logo{
                        display: block;
                        width: 7rem;
                        margin-bottom: 1.5rem;
                    }

                    footer > .box_inner .f_addr_contact > dl > dt .lbl{
                        font-size: 1.12rem;
                        font-weight: 600;
                        line-height: 1.3;
                        margin-bottom: 1.4rem;
                    }

                footer > .box_inner .f_addr_contact > dl > dd{
                    line-height: 1.8;
                    font-size: 0.8em;
                }

                footer > .box_inner .f_addr_contact > dl > dd .f_addr{
                    display: flex;
                    flex-direction: column;
                }

                    footer > .box_inner .f_addr_contact > dl > dd .f_contact dl{
                        display: flex;
                    }

                        footer > .box_inner .f_addr_contact > dl > dd .f_contact dl dt{}

                        footer > .box_inner .f_addr_contact > dl > dd .f_contact dl dt::after{
                            content: "：";
                        }

                        footer > .box_inner .f_addr_contact > dl > dd .f_contact dl dd{}

                            footer > .box_inner .f_addr_contact > dl > dd .f_contact dl dd a{
                                color: #fff;
                                pointer-events: none;
                                text-decoration: none;
                            }

        footer > .box_inner .f_navs{
            display: flex;
            line-height: 1.4;
            font-size: 0.92rem;
        }

            footer > .box_inner .f_navs a{
                color: #fff;
                text-decoration: none;
            }

            footer > .box_inner .f_navs a:hover{
                text-decoration: underline;
            }

                footer > .box_inner .f_navs > ul{
                    margin-right: 5vw;
                }

                footer > .box_inner .f_navs > ul:last-child{
                    margin-right: 0;
                }

                    footer > .box_inner .f_navs > ul > li{
                        margin-bottom: 1em;
                        padding-left: 1em;
                        position: relative;
                    }

                    footer > .box_inner .f_navs > ul > li:last-child{
                        margin-bottom: 0;
                    }

                        footer > .box_inner .f_navs > ul > li::before{
                            font-family: FontAwesome;
                            content:"\f105";
                            display: inline-block;
                            position: absolute;
                            top: 0.3em;
                            left: 0;
                            font-size: 0.8em;
                            opacity: 0.5;
                        }

    footer > .box_footer{
        display: flex;
        justify-content: flex-end;
    }

        footer > .box_footer .copyright{
            font-size: 0.84em;
        }



/*-----nav_oc-----*/
.nav_oc{
    display: block;
    width: 7.5rem;
    height: 7.5rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    transition: .3s all ease;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        padding: 0 0 1.75rem 0;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        transition: .3s all ease;
    }

    .small_header .nav_oc{
        height: 5.625rem;
    }

    .small_header .menu-trigger{
        padding-bottom: 1rem;
    }

    .menu-trigger:hover{
        
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 2.5rem;
            height: 1.75rem;
            margin-bottom: 0.8rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #222;
                position: absolute;
                width: 2.5rem;
                left: 0;
                height: 2px;
            }

            .menu-trigger .lines span:nth-of-type(1) {
                top: 0;
            }

            .menu-trigger .lines span:nth-of-type(2) {
                top: calc(50% - 1px);
            }
            .menu-trigger .lines span:nth-of-type(3) {
                bottom: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(1) {
                transform: translateY(0.55rem) rotate(-315deg);
            }

            .menu-trigger.active .lines span:nth-of-type(2) {
                opacity: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(3) {
                transform: translateY(-1rem) rotate(315deg);
            }

        .menu-trigger .lbl{
            color: #222;
            font-size: 0.8rem;
            line-height: 1;
            font-weight: 500;
        }

/*-----side_nav-----*/
.side_nav{
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: .3s all ease;
    background: rgba(255,255,255,0);
    flex-direction: column;
    align-items: center;
    padding-top: 10rem;
}

.side_nav.active{
    z-index: 10;
    opacity: 1;
    background: rgba(255,255,255,0.99);
}

    .side_site_search{
        display: none;
    }


    .side_nav .side_global_nav{
        box-sizing: border-box;
        width: 100%;
        padding: 0 10vw;
        margin-top: 0;
    }

        .side_nav .side_global_nav > ul{
            width: 50%;
            display: flex;
            flex-direction: column;
            margin: 0 auto;
        }


            .side_nav .side_global_nav > ul > li{
                position: relative;
                /*width: calc((100% - 1rem) / 2);*/
                /*margin-right: 1rem;*/
                border-bottom: 1px dotted #aaa;
                padding: 2px 0;
            }

            .side_nav .side_global_nav > ul > li:nth-child(even){
                margin-right: 0;
            }

                .side_nav .side_global_nav > ul > li > a{
                    display: block;
                    font-size: 1.2rem;
                    padding: 1.5rem 1rem 1.5rem 2rem;
                    color: #222;
                    text-decoration: none;
                    font-weight: 500;
                    position: relative;
                    transition: .3s all ease;
                    text-align: center;
                }

                .side_nav .side_global_nav > ul > li > a:hover{
                    color: #111;
                }

                    .side_nav .side_global_nav > ul > li > a:after{
                        content: "";
                        display: block;
                        width: 100%;
                        height: 100%;
                        background: #fae3a5;
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: -1;
                        transition: .3s all ease;
                        opacity: 0;
                        transform: scaleX(0);
                        transform-origin: left center;
                    }

                    .side_nav .side_global_nav > ul > li > a:hover:after{
                        opacity: 1;
                        transform: scaleX(1);
                    }


/*ページトップ*/
.pagetop{
    width:5rem;
    height:5rem;
    position:fixed;
    bottom:7rem;
    right:3.75rem;
    z-index:10;
    transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
}

    .pagetop a{
        box-sizing: border-box;
        display:flex;
        justify-content: center;
        align-items: center;
        transition:.5s all ease;
        width:100%;
        height:100%;
        text-decoration:none;
        border-radius: 50%;
        background: #2b405b;
        color: #fff;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
    }


    .pagetop a::before{
        font-family: FontAwesome;
        content:"\f106";
        display: inline-block;
        font-size: 1.1rem;
    }


/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    padding-top: 7.5rem;
    margin-top:-7.5rem;
}


/*改行のPC,SPでの表示切替*/
br.pc,
img.pc,
span.pc{
    display:inline;
}

br.sp,
img.sp,
span.sp{
    display:none;
}

.ta_center{
    text-align:center;
}

.ta_left{
    text-align:left;
}

.ta_right{
    text-align:right;
}

/*entry_list_box*/
.entry_list_box{}

.entry_list_box ul{
    display: flex;
    flex-wrap: wrap;
}

    .entry_list_box ul li{
        width: calc((100% - 2.375rem) / 2);
        margin-right: 2.375rem;
        margin-bottom: 2.5rem;
    }

    .entry_list_box ul li:nth-child(2n){
        margin-right: 0;
    }

        .entry_list_box ul li a{
            display: flex;
            align-items: flex-start;
            text-decoration: none;
            color: #2b405a;
            padding: 1rem;
            background: rgba(255,255,255,0);
            border-radius: 0.75rem;
            transition: .4s all ease;
        }

        .entry_list_box ul li a:hover{
            background: rgba(255,255,255,1);
            box-shadow: 0 0 5px 1px rgba(0,0,0,0.05);
        }

            .entry_list_box ul li a .entry_fig{
                width: 13.75rem;
                background: #ccc;
                border-radius: 0.75rem;
                overflow: hidden;
            }

                .entry_list_box ul li a .entry_fig img{
                    max-width: 100%;
                    height: auto;
                }

            .entry_list_box ul li a .entry_text{
                flex: 1;
                display: flex;
                flex-wrap: wrap;
                padding-left: 1.75em;
                font-size: 0.94em;
            }

                .entry_list_box ul li a .entry_text .entry_date{
                    margin-right: 1em;
                    padding-top: 0.6em;
                }

                .entry_list_box ul li a .entry_text .entry_category{}

                    .entry_list_box ul li a .entry_text .entry_category .lbl{
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        height: 1.875rem;
                        border-radius: 0.9375rem;
                        background: #2b405b;
                        color: #fff;
                        font-size: 0.9em;
                        width: 9em;
                    }

                .entry_list_box ul li a .entry_text .entry_title{
                    width: 100%;
                    line-height: 1.5;
                    padding-top: 1em;
                }


/*1400px以下*/
@media screen and (min-width:1px) and (max-width:1400px){

}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
    
}

/*1100px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
    
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
    }

    header > .box_inner .navs{
        display: none;
    }

    footer{
        padding: 3rem 8rem 3rem 5rem;
    }

    .entry_list_box ul li a{
        flex-direction: column;
    }

        .entry_list_box ul li a .entry_fig{
            width: 100%;
            margin-bottom: 1em;
        }

        .entry_list_box ul li a .entry_text{
            padding-left: 0;
        }
}

/* ##########印刷用########## */
@media print{
    html{
        width: 1024px;
    }
    
    header{
        position:relative;
    }
   
    
    .contents{
        padding-top: 0;
    }
    
    
    .pagetop{
        display: none;
    }
    
}