@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@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: #222;
    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;
}

.now_pagetop header{
    background: rgba(255, 255, 255, 0);
}

    header > .box_inner{
        box-sizing: border-box;
        display: flex;
        align-items: center;
        height: 8.25rem;
        padding: 0 3.5vw;
        transition: .3s all ease;
        position: relative;
    }

        header > .box_inner > .logo_site_title {
        }

            header > .box_inner > .logo_site_title a {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: .3s all ease;
                color: #111;
                text-decoration: none;
            }

            header > .box_inner > .logo_site_title a:hover {
                opacity: 0.9;
            }

                header > .box_inner > .logo_site_title a img{
                    max-width: 100%;
                    height: auto;
                }

                header > .box_inner > .logo_site_title a .logo{
                    width: 15.75rem;
                    margin-bottom: 1rem;
                    transition: .4s all ease;
                }

                header > .box_inner > .logo_site_title a .site_title{
                    display: flex;
                    align-items: center;
                }

                    header > .box_inner > .logo_site_title a .site_title .lbl1{
                        margin-right: 0.3em;
                        font-weight: 500;
                    }

                    header > .box_inner > .logo_site_title a .site_title .lbl2{
                        font-weight: 800;
                        font-size: 1.1rem;
                    }

        header > .box_inner .navs{
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 5vw;
        }

            header > .box_inner .navs .global_nav{

            }

                header > .box_inner .navs .global_nav > ul{
                    display: flex;
                }

                    header > .box_inner .navs .global_nav > ul > li{
                        margin-right: 1vw;
                        position: relative;
                    }

                    header > .box_inner .navs .global_nav > ul > li:last-child{
                        margin-right: 0;
                    }

                        header > .box_inner .navs .global_nav > ul > li > a{
                            font-size: 1.1rem;
                            font-weight: 500;
                            text-decoration: none;
                            color: #111;
                            position: relative;
                            padding: 0 2rem 0 1.5rem;
                            height: 2.75rem;
                            display: flex;
                            align-items: center;
                            /*
                            text-shadow: 0 0 2px rgba(255,255,255,1), 0 0 2px rgba(255,255,255,1);
                            */
                            transition: .3s all ease;
                        }

                            header > .box_inner .navs .global_nav > ul > li > a:before{
                                content: "";
                                display: inline-block;
                                width:0;
                                height:0;
                                border-style:solid;
                                border-width: 0.375rem 0.3375rem 0 0.3375rem;
                                border-color: #222 transparent transparent transparent;
                                position: absolute;
                                top: 1.25rem;
                                right: 0.8rem;
                            }

                        header > .box_inner .navs .global_nav > ul > li.active > a{
                            color: #1a508c;
                        }

                            header > .box_inner .navs .global_nav > ul > li.active > a:before{
                                border-color: #1a508c transparent transparent transparent;
                            }

                        header > .box_inner .navs .global_nav > ul > li:hover > a{
                            /*
                            color: #fff;
                            background: #1a508c;
                            */
                        }

                            header > .box_inner .navs .global_nav > ul > li:hover > a:before{
                                /*
                                border-color: #fff transparent transparent transparent;
                                */
                            }

                        header > .box_inner .navs .global_nav > ul > li .child_nav{
                            box-sizing: border-box;
                            position: absolute;
                            top: 2.75rem;
                            left: calc(50% - 7.5rem);
                            /*background: rgba(255,255,255,0.98);*/
                            min-width: 15rem;
                            line-height: 1.4;
                            font-size: 0.92rem;
                            transition: .3s all ease;
                            overflow: hidden;
                            height: 0;
                            opacity: 0;
                            padding: 0 0.5rem;
                        }

                        header > .box_inner .navs .global_nav > ul > li:hover .child_nav{
                            height: auto;
                            opacity: 1;
                            padding: 1rem 0.5rem 0.5rem;
                        }

                            header > .box_inner .navs .global_nav > ul > li .child_nav > ul{
                                background: rgba(26,80,140,0.9);
                                padding: 0.75rem;
                                position: relative;
                                border-radius: 0.25rem;
                                box-shadow: 0 2px 4px 1px rgba(0,0,0,0.2);
                            }

                                header > .box_inner .navs .global_nav > ul > li .child_nav > ul::before{
                                    content: "";
                                    display: block;
                                    position: absolute;
                                    width: 1.5rem;
                                    height: 0.75rem;
                                    clip-path: polygon(50% 0, 100% 100%, 0 100%);
                                    background: rgba(26,80,140,0.9);
                                    position: absolute;
                                    left: calc(50% - 0.75rem);
                                    top: -0.75rem;
                                }


                            header > .box_inner .navs .global_nav > ul > li .child_nav > ul > li{
                            }

                            header > .box_inner .navs .global_nav > ul > li .child_nav > ul > li:last-child{
                            }

                            header > .box_inner .navs .global_nav > ul > li .child_nav > ul > li > a{
                                display: block;
                                color: #fff;
                                text-decoration: none;
                                padding: 0.6em;
                                transition: .3s all ease;
                            }

                            header > .box_inner .navs .global_nav > ul > li .child_nav > ul > li > a:hover{
                                background: rgba(0,0,0,0.3);
                            }

                            /*下層は非表示*/
                            header > .box_inner .navs .global_nav > ul > li .child_nav ul ul{
                                display: none;
                            }

            header > .box_inner .navs .contact_site_search{
                display: flex;
            }

                header > .box_inner .navs .contact_site_search .btn_contact{
                    margin-right: 1rem;
                }

                    header > .box_inner .navs .contact_site_search .btn_contact a{
                        box-sizing: border-box;
                        display: flex;
                        height: 2.75rem;
                        align-items: center;
                        justify-content: center;
                        background: #1a508c;
                        color: #fff;
                        text-decoration: none;
                        font-weight: 500;
                        padding: 0 1.5rem 0.1em 1.5rem;
                        border-radius: 1.375rem;
                        transition: .3s all ease;
                    }

                    header > .box_inner .navs .contact_site_search .btn_contact a:hover{
                        background: #008ad4;
                    }

                header > .box_inner .navs .contact_site_search .site_search{
                    position: relative;
                }

                    header > .box_inner .navs .contact_site_search .site_search .btn_search_oc{
                        position: relative;
                    }

                        header > .box_inner .navs .contact_site_search .site_search .btn_search_oc button{
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 2.75rem;
                            height: 2.75rem;
                            border: none;
                            border-radius: 50%;
                            background: #1a508c;
                            cursor: pointer;
                            transition: .3s all ease;
                        }

                        header > .box_inner .navs .contact_site_search .site_search .btn_search_oc button:hover{
                            background: #008ad4;
                        }

                            header > .box_inner .navs .contact_site_search .site_search .btn_search_oc button .fig{
                                width: 1.5rem;
                            }

                                header > .box_inner .navs .contact_site_search .site_search .btn_search_oc button .fig img{
                                    max-width: 100%;
                                    height: auto;
                                }

                
                    header > .box_inner .navs .contact_site_search .site_search_inner{
                        display: none;
                        position: absolute;
                        top: 3.25rem;
                        right: 0;
                        background: #fff;
                        padding: 0.75rem 1rem;
                        border-radius: 0.25rem;
                        box-shadow: 2px 2px 0 0 rgba(0,0,0,0.1);
                    }

                    header > .box_inner .navs .contact_site_search .site_search_inner.active{
                        display: block;
                    }

                        header > .box_inner .navs .contact_site_search .site_search_inner .input_submit_box{
                            display: flex;
                        }

                            header > .box_inner .navs .contact_site_search .site_search_inner .input_submit_box .input_box{

                            }

                                header > .box_inner .navs .contact_site_search .site_search_inner .input_submit_box .input_box input[type="search"]{
                                    box-sizing: border-box;
                                    border: 1px solid #bbb;
                                    padding: 0.4em 0.5em 0.5em;
                                    width: 20em;
                                    font-size: 0.96em;
                                    outline: none;
                                    border-radius: 0.375rem 0 0 0.375rem;
                                }

                            header > .box_inner .navs .contact_site_search .site_search_inner .input_submit_box .submit_box{}

                                header > .box_inner .navs .contact_site_search .site_search_inner .input_submit_box .submit_box input[type="submit"]{
                                    box-sizing: border-box;
                                    height: 100%;
                                    padding: 0 1.25em 0.1em;
                                    font-size: 0.96em;
                                    background: #1a508c;
                                    color: #fff;
                                    border-radius: 0 0.375rem 0.375rem 0;
                                    transition: .3s all ease;
                                }

                                header > .box_inner .navs .contact_site_search .site_search_inner .input_submit_box .submit_box input[type="submit"]:hover{
                                    background: #008ad4;
                                }



/*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.5rem;
    }

        .small_header header > .box_inner > .logo_site_title a .logo {
            margin-bottom: 0.5rem;
        }

        .small_header header > .box_inner > .logo_site_title a .site_title {
        }



/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:0;
    padding-bottom: 8rem;
}


/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
}

    footer > .box_inner{
        display: flex;
    }

        footer > .box_inner .f_nav_box{
            box-sizing: border-box;
            background: #f0f0f0;
            padding: 4rem 7vw 2.5rem;
            display: flex;
            flex-direction: column;
            position: relative;
            flex: 1;
            transition: .3s all ease;
        }

            footer > .box_inner .f_nav_box > .box_header{
                margin-bottom: 3rem;
                display: flex;
                justify-content: space-between;
            }

                footer > .box_inner .f_nav_box > .box_header > .logo_site_title a {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    transition: .3s all ease;
                    color: #111;
                    text-decoration: none;
                }

                footer > .box_inner .f_nav_box > .box_header > .logo_site_title a:hover {
                    opacity: 0.9;
                }

                    footer > .box_inner .f_nav_box > .box_header > .logo_site_title a img{
                        max-width: 100%;
                        height: auto;
                    }

                    footer > .box_inner .f_nav_box > .box_header > .logo_site_title a .logo{
                        width: 21rem;
                        margin-bottom: 1rem;
                    }

                    footer > .box_inner .f_nav_box > .box_header > .logo_site_title a .site_title{
                        display: flex;
                        align-items: flex-end;
                        padding-left: 5rem;
                    }

                        footer > .box_inner .f_nav_box > .box_header > .logo_site_title a .site_title .lbl1{
                            margin-right: 0.3em;
                            font-size: 1.1rem;
                            font-weight: 500;
                        }

                        footer > .box_inner .f_nav_box > .box_header > .logo_site_title a .site_title .lbl2{
                            font-weight: 600;
                            font-size: 1.4rem;
                        }

            footer > .box_inner .f_nav_box > .box_header .sns_links{

            }

                footer > .box_inner .f_nav_box > .box_header .sns_links ul{
                    display: flex;
                    justify-content: center;
                }

                    footer > .box_inner .f_nav_box > .box_header .sns_links ul li{
                        margin-right: 1rem;
                    }

                    footer > .box_inner .f_nav_box > .box_header .sns_links ul li:last-child{
                        margin-right: 0;
                    }

                    footer > .box_inner .f_nav_box > .box_header .sns_links ul li a{
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 3.125rem;
                        height: 3.125rem;
                        background: #fff;
                        border-radius: 50%;
                    }

                        footer > .box_inner .f_nav_box > .box_header .sns_links ul li a .fig{
                            display: block;
                            width: 1.75rem;
                        }

                            footer > .box_inner .f_nav_box > .box_header .sns_links ul li a .fig img{
                                max-width: 100%;
                                height: auto;
                            }

            footer > .box_inner .f_nav_box > .box_inner{
                display: flex;
                justify-content: space-between;
                padding: 0 1rem;
                margin-bottom: 3em;
            }

                footer > .box_inner .f_nav_box > .box_inner > ul{
                    line-height: 1.4;
                    font-size: 0.94em;
                }

                    footer > .box_inner .f_nav_box > .box_inner > ul > li{
                        margin-bottom: 0.6em;
                    }

                    footer > .box_inner .f_nav_box > .box_inner > ul > li:last-child{
                        margin-bottom: 0;
                    }

                        footer > .box_inner .f_nav_box > .box_inner > ul > li a{
                            display: inline-block;
                            position: relative;
                            transition: .3s all ease;
                        }

                        footer > .box_inner .f_nav_box > .box_inner > ul > li a::after{
                            content: "";
                            display: block;
                            width: 100%;
                            height: 0;
                            border-bottom: 1px solid #1a508c;
                            transition: .3s all ease;
                            transform: scaleX(0);
                            transform-origin: left bottom;
                            opacity: 0;
                        }

                        footer > .box_inner .f_nav_box > .box_inner > ul > li a:hover{
                            color: #1a508c;
                        }

                        footer > .box_inner .f_nav_box > .box_inner > ul > li a:hover::after{
                            transform: scaleX(1);
                            opacity: 1;
                        }

                        

                        footer > .box_inner .f_nav_box > .box_inner > ul > li > a{
                            color: #111;
                            text-decoration: none;
                            font-weight: 500;
                        }

                        footer > .box_inner .f_nav_box > .box_inner > ul > li ul{
                            font-size: 0.9em;
                            padding-top: 0.8em;
                        }

                            footer > .box_inner .f_nav_box > .box_inner > ul > li ul li{
                                margin-bottom: 0.3em;
                            }

                            footer > .box_inner .f_nav_box > .box_inner > ul > li ul li:last-child{
                                margin-bottom: 0;
                            }

                                footer > .box_inner .f_nav_box > .box_inner > ul > li ul li a{
                                    color: #222;
                                    text-decoration: none;
                                }

                        footer > .box_inner .f_nav_box > .box_inner > ul > li ul ul{
                            display: none;
                        }

            footer > .box_inner .f_nav_box > .box_footer .copyright {
                font-size: 0.84rem;
            }

        footer > .box_inner .f_contact_box{
            box-sizing: border-box;
            width: 35%;
            min-width: 32rem;
            background: #1a508c;
            padding: 6rem 3vw 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

            footer > .box_inner .f_contact_box > .box_inner{}

                footer > .box_inner .f_contact_box > .box_inner .contact_tel{
                    border-top: 2px solid rgba(255,255,255,0.5);
                    border-bottom: 2px solid rgba(255,255,255,0.5);
                    color: #fff;
                    padding: 1.75rem 0;
                }

                    footer > .box_inner .f_contact_box > .box_inner .contact_tel dl{
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                    }

                        footer > .box_inner .f_contact_box > .box_inner .contact_tel dl dt{
                            margin-bottom: 2rem;
                            font-size: 1.1rem;
                        }

                        footer > .box_inner .f_contact_box > .box_inner .contact_tel dl dd .lbl{
                            display: block;
                            width: 25.3125rem;
                        }

                        footer > .box_inner .f_contact_box > .box_inner .contact_tel dl dd .lbl img{
                            max-width: 100%;
                            height: auto;
                        }

/*-----fixed_btn_side-----*/
.fixed_btn_side{
    position: fixed;
    top: 10rem;
    right: 0;
    z-index: 9;
    transition: .3s all ease;
}

    .fixed_btn_side ul{}

        .fixed_btn_side ul li{
            margin: 0 0 0.5rem 0;
        }

        .fixed_btn_side ul li:last-child{
            margin-bottom: 0;
        }

            .fixed_btn_side ul li a{
                background: #333;
                color: #fff;
                display: block;
                text-decoration: none;
                width: 1em;
                padding: 1.5em 1.375em 1.25em 1em;
                border-radius: 0.5rem 0 0 0.5rem;
                transform: translateX(0.375em);
                transition: .3s all ease;
            }

            .fixed_btn_side ul li a:hover{
                transform: translateX(0);
            }

            .fixed_btn_side ul li.ext_link a{
                background-image: url('../shared/icon_ext_link_w.png');
                background-repeat: no-repeat;
                background-size: 0.75rem auto;
                background-position: left 1.15em bottom 1em;
                padding-bottom: 2.5em;
            }

/*fixed_bn_d_staff*/
.fixed_bn_d_staff{
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9;
}

    .fixed_bn_d_staff > .box_inner{
        position: relative;
    }

        .fixed_bn_d_staff > .box_inner button{
            cursor: pointer;
            position: absolute;
            top: -1rem;
            left: -1rem;
            z-index: 1;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: #1a508c;
            color: #fff;
            line-height: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1em;
        }

        .fixed_bn_d_staff a{
            display: block;
            width: 12.5rem;
            transition: .3s all ease;
            position: relative;
        }

        .fixed_bn_d_staff a:hover{
            filter: brightness(1.1);
        }

        .fixed_bn_d_staff a img{
            max-width: 100%;
            height: auto;
        }

/*-----nav_oc-----*/
.nav_oc{
    /*display: block;*/
    display: none;
    width: 100px;
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    transition: .3s all ease;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #1a508c;
        padding: 0;
        border: none;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .3s all ease;
    }

    .menu-trigger:hover{
        
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 1.5rem;
            height: 1.2rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #fff;
                position: absolute;
                width: 1.5rem;
                left: 0;
                height: 1px;
            }

            .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(-0.6rem) rotate(315deg);
            }

        .menu-trigger .lbl{
            color: #1a508c;
            font-size: 0.75rem;
            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);
    display: none;
    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_nav .side_global_nav{
        box-sizing: border-box;
        width: 100%;
        padding: 0 10vw;
        margin-top: 0;
    }

        .side_nav .side_global_nav > ul{
            width: 100%;
            display: flex;
            flex-wrap: wrap;
        }


            .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;
                }

                .side_nav .side_global_nav > ul > li > a:hover{
                    color: #111;
                }


                    .side_nav .side_global_nav > ul > li > a:before{
                        font-family: FontAwesome;
                        content:"\f105";
                        display: inline-block;
                        position: absolute;
                        top: 1.5rem;
                        left: 0.8rem;
                        color: #e07893;
                    }

                    .side_nav .side_global_nav > ul > li > a:after{
                        content: "";
                        display: block;
                        width: 100%;
                        height: 100%;
                        background: rgba(25, 91, 175,0.1);
                        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);
                    }

    .side_nav .side_global_nav2{
        box-sizing: border-box;
        width: 100%;
        padding: 0 10vw;
        margin-top: 4vw;
    }

        .side_nav .side_global_nav2 ul{
            display: flex;
            justify-content: center;
            font-size: 1.05rem;
        }

            .side_nav .side_global_nav2 ul li{
                margin-right: 3em;
            }

            .side_nav .side_global_nav2 ul li:last-child{
                margin-right: 0;
            }

                .side_nav .side_global_nav2 ul li a{
                    display: block;
                    color: #222;
                    text-decoration: none;
                    position: relative;
                    padding-left: 1em;
                    padding-bottom: 0.4em;
                    transition: .3s all ease;
                }

                .side_nav .side_global_nav2 ul li a:hover{
                }

                    .side_nav .side_global_nav2 ul li a:before{
                        font-family: FontAwesome;
                        content: "\f105";
                        display: inline-block;
                        position: absolute;
                        top: 0;
                        left: 0;
                        color: #1a508c;
                    }

                    .side_nav .side_global_nav2 ul li a:after{
                        content: "";
                        display: block;
                        width: 100%;
                        height: 0;
                        border-bottom: 1px solid #1a508c;
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        transition: .3s all ease;
                        opacity: 0;
                    }

                    .side_nav .side_global_nav2 ul li a:hover:after{
                        opacity: 1;
                    }


/*ページトップ*/
.pagetop{
    width:94px;
    height:94px;
    position:fixed;
    bottom:3rem;
    right:3.75rem;
     transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
    z-index: -1;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
    z-index:10;
}

    .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: #1a508c;
        padding-bottom: 0.2rem;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
    }


    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: #fff;
        font-size: 2.4rem;
    }


/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    padding-top: 150px;
    margin-top:-150px;
}


/*改行の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;
}

/*WP汎用*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  /*margin-top: 1.5em;*/
  text-align: center;
}
.wp-caption-text {
  margin-top: 0;
}

/*1400px以下*/
@media screen and (min-width:1px) and (max-width:1400px){
    footer > .box_inner .f_nav_box{
        padding-left: 4vw;
        padding-right: 4vw;
    }

    footer > .box_inner .f_nav_box > .box_header{
        flex-direction: column;
        align-items: center;
    }

        footer > .box_inner .f_nav_box > .box_header .sns_links{
            margin-top: 2rem;
        }


    footer > .box_inner .f_contact_box > .box_inner .contact_tel dl dd .lbl{
        width: 90%;
        margin: 0 auto;
    }
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
    footer > .box_inner{
        flex-direction: column-reverse;
    }

        footer > .box_inner .f_nav_box{
            padding: 3rem 6vw;
        }

            footer > .box_inner .f_nav_box > .box_inner{
                padding-right: 7rem;
            }

            footer > .box_inner .f_nav_box > .box_footer .copyright{
                text-align: center;
            }

        footer > .box_inner .f_contact_box{
            width: 100%;
            padding: 2rem 0;
        }

            footer > .box_inner .f_contact_box > .box_inner{}

                footer > .box_inner .f_contact_box > .box_inner .contact_tel{
                    border-top: none;
                    border-bottom: none;
                    padding: 0;
                }

                footer > .box_inner .f_contact_box > .box_inner .contact_tel dl{
                    flex-direction: row;
                    justify-content: center;
                }

                    footer > .box_inner .f_contact_box > .box_inner .contact_tel dl dt{
                        margin-right: 2em;
                        margin-bottom: 1em;
                    }

                    footer > .box_inner .f_contact_box > .box_inner .contact_tel dl dd .lbl{
                        width: 40vw;
                    }

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
    }
    
    header > .box_inner,
    .small_header header > .box_inner{

    }
    
    .contents{
        padding-top: 12vw;
    }
    
    .pagetop{
        width: 10vw;
        height: 10vw;
        right: 5vw;
        bottom: 8vw;
    }
    
    
}

/* ##########印刷用########## */
@media print{
    html{
        width: 1024px;
    }
    
    header{
        position:relative;
    }
   
    
    .contents{
        padding-top: 0;
    }
    
    .pagetop{
        display: none;
    }
    
}