@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600&family=Noto+Sans+JP:wght@400;500;600;700&display=swap');
@import url("reset.css");
/*--京base.css--*/
html {
    font-size: 16px;
}

body {
    width: 100%;
    height: 100%;
    color: #000;
    background-color: #fff;
    line-height: 1.0;
    position:relative;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
}

img{
    vertical-align:bottom;
}

#container{
    box-sizing: border-box;
    width: 100%;
    padding-top: 5.625rem;
    position: relative;
    top:0;
    left:0;
    z-index:1;
}

/*----------header----------*/
header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    transition: .3s all ease;
}

    header > .box_inner{
        box-sizing: border-box;
        height: 5.625rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        transition: .3s all ease;
        margin: 0 auto;
        border-bottom: 1px solid #ccc;
    }

    header > .box_inner .ku_logo_site_title{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 1.25rem 0 0 2.5rem;
    }

        header > .box_inner .ku_logo_site_title img{
            max-width: 100%;
            width: auto;
        }

        header > .box_inner .ku_logo_site_title .ku_logo{
            margin-right: 0.875rem;
            width: 3.375rem;
        }

            header > .box_inner .ku_logo_site_title .ku_logo a{
                display: block;
                transition: .3s all ease;
            }

            header > .box_inner .ku_logo_site_title .ku_logo a:hover{
                opacity: 0.8;
            }

        header > .box_inner .ku_logo_site_title .site_title{
            width: 13rem;
        }

            header > .box_inner .ku_logo_site_title .site_title a{
                display: block;
                transition: .3s all ease;
            }

            header > .box_inner .ku_logo_site_title .site_title a:hover{
                opacity: 0.8;
            }

    header > .box_inner .site_nav{
        margin: auto 0 auto 0;
    }

    header > .box_inner .site_nav .global_nav{
        padding: 0 2rem 0 0;
        margin-top: 0.6rem;
    }

        header > .box_inner .site_nav .global_nav ul{
            display: flex;
            gap: 2rem;
        }

            header > .box_inner .site_nav .global_nav ul li{}

            header > .box_inner .site_nav .global_nav ul li:last-child{
                margin-right: 0;
            }

                header > .box_inner .site_nav .global_nav ul li a{
                    display: block;
                    font-size: 1rem;
                    font-weight: 700;
                    text-decoration: none;
                    color: #03306d;
                    padding: 0 0 0.6rem 0;
                    position: relative;
                    transition: .3s all ease;
                }

                header > .box_inner .site_nav .global_nav ul li a::before{
                    content: "";
                    display: block;
                    width: 0;
                    height: 2px;
                    background: #03306d;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    transition: .5s all ease;
                }

                header > .box_inner .site_nav .global_nav ul li a:hover::before{
                    width: 100%;
                }


/*small_header*/
/*関連部まとめて指定*/
header > .box_inner .ku_logo_site_title,
header > .box_inner .ku_logo_site_title .ku_logo,
header > .box_inner .ku_logo_site_title .site_title,
header > .box_inner .site_nav .header_link ul,
header > .box_inner .site_nav .header_link ul:before{
    transition: .3s all ease;
}


/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:0;
}

/*links_box*/
.links_box{
    padding: 3rem 0;
    background: #edf0f9;
}

.links_box .box_inner ul{
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.links_box .box_inner ul li{
    padding-left: 1.3rem;
    position: relative;
}

.links_box .box_inner ul li::after{
    content:"";
    width: 0.8125rem;
    aspect-ratio: 1 / 1;
    background: url(../shared/icon_link_black.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.40625rem);
    left: 0;
}

.links_box .box_inner ul li a{
    text-decoration: none;
    color: #222;
}

.links_box .box_inner ul li a:hover{
    text-decoration: underline;
}

/*-----footer-----*/
footer{}

    footer > .box_header{}

        footer > .box_header .f_contact_box{
            background-image: url("../shared/bg_f_contact_box.jpg");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            padding: 3rem 0;
        }

            footer > .box_header .f_contact_box > dl{
                display: flex;
                justify-content: center;
            }

                footer > .box_header .f_contact_box > dl > dt{
                    width: 162px;
                    margin-right: 70px;
                }

                    footer > .box_header .f_contact_box > dl > dt img{
                        max-width: 100%;
                        height: auto;
                    }

                footer > .box_header .f_contact_box > dl > dd{
                    color: #fff;
                    display: flex;
                }

                    footer > .box_header .f_contact_box > dl > dd .addr_info{
                        font-size: 0.94rem;
                        margin-right: 60px;
                    }

                        footer > .box_header .f_contact_box > dl > dd .addr_info dt{
                            display: flex;
                            flex-direction: column;
                            margin-bottom: 1em;
                        }

                            footer > .box_header .f_contact_box > dl > dd .addr_info dt .lbl1{
                                font-size: 0.9em;
                                margin-bottom: 0.2em;
                            }

                            footer > .box_header .f_contact_box > dl > dd .addr_info dt .lbl2{}

                    footer > .box_header .f_contact_box > dl > dd .btn_goto_contact{
                        
                    }

                        footer > .box_header .f_contact_box > dl > dd .btn_goto_contact a{
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 280px;
                            height: 50px;
                            border-radius: 25px;
                            background: #fff;
                            color: #0a326e;
                            text-decoration: none;
                            position: relative;
                            transition: .3s all ease;
                        }

                        footer > .box_header .f_contact_box > dl > dd .btn_goto_contact a:hover{
                            box-shadow: 0 0 0 2px #0a326e inset, 0 0 10px 0 rgba(255,255,255,0.5);
                        }

                            footer > .box_header .f_contact_box > dl > dd .btn_goto_contact a .fig{
                                width: 24px;
                                margin-right: 5px;
                            }

                                footer > .box_header .f_contact_box > dl > dd .btn_goto_contact a .fig img{
                                    max-width: 100%;
                                    height: auto;
                                }

                            footer > .box_header .f_contact_box > dl > dd .btn_goto_contact a .lbl{
                                font-weight: bold;
                                font-size: 1.1rem;
                            }

                            footer > .box_header .f_contact_box > dl > dd .btn_goto_contact a:after{
                                content: "";
                                display: block;
                                width: 6px;
                                height: 10px;
                                background-image: url("../shared/icon_tri1.png");
                                background-repeat: no-repeat;
                                background-size: contain;
                                position: absolute;
                                top: 21px;
                                right: 14px;
                            }

    footer > .box_inner{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 3rem 0 3.5rem;
    }

        footer > .box_inner .f_site_title{
            margin-bottom: 3rem;
        }

            footer > .box_inner .f_site_title a{
                display: flex;
                align-items: center;
                text-decoration: none;
            }

                footer > .box_inner .f_site_title a img{
                    max-width: 100%;
                    height: auto;
                }

                footer > .box_inner .f_site_title a .fig1{
                    width: 8rem;
                    margin-right: 1.25rem;
                }

                footer > .box_inner .f_site_title a .fig2{
                    width: 14.375rem;
                }

        footer > .box_inner .f_nav{}

            footer > .box_inner .f_nav ul{
                display: flex;
                justify-content: center;
                font-size: 0.96rem;
            }

                footer > .box_inner .f_nav ul li{
                    padding: 0 1rem;
                    position: relative;
                }

                footer > .box_inner .f_nav ul li:first-child::before{
                    content:"";
                    width: 1px;
                    height: 1rem;
                    background: #8ca0b9;
                    position: absolute;
                    top: calc(50% - 0.5rem);
                    left: 0;
                }

                footer > .box_inner .f_nav ul li::after{
                    content:"";
                    width: 1px;
                    height: 1rem;
                    background: #8ca0b9;
                    position: absolute;
                    top: calc(50% - 0.5rem);
                    right: 0;
                }

                    footer > .box_inner .f_nav ul li a{
                        display: block;
                        color: #0a326e;
                        text-decoration: none;
                    }

                    footer > .box_inner .f_nav ul li a:hover{
                        text-decoration: underline;
                    }

    footer > .box_footer{
        text-align: center;
        padding-bottom: 2.5rem;
    }

        footer > .box_footer .copyright{
            color: #0a326e;
            font-size: 0.8rem;
        }

.nav_oc{
    display:none;
}

.side_nav{
    display:none;
}

/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    padding-top: 8rem;
    margin-top:-8rem;
}


/*改行の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;
}

/*ページトップ*/
.pagetop{
    width:80px;
    height:80px;
    position:fixed;
    bottom:90px;
    right:60px;
    z-index:9;
    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: rgba(75,100,200,0.8);
    }
    
    .pagetop a:hover{
        transform:translateY(-5px);
        background: rgba(75,100,200,1);
    }


    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: #fff;
        font-size: 2.4rem;
    }