@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=IBM+Plex+Sans+JP:wght@300;400;500;600;700&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: "IBM Plex Sans JP", sans-serif;
    background-color: #fff;
    line-height: 1.0;
}

button,
input[type="search"],
input[type="text"],
input[type="submit"],
input[type="button"],
select,
textarea{
    font-family: 'Noto Sans JP', sans-serif;
}

img{
    vertical-align:bottom;
}

#container{
    width: 100%;
    position: relative;
}

/*----------header----------*/
header{
    width:100%;
    background: rgba(255,255,255,0);
    position: fixed;
    top:0;
    left: 0;
    z-index: 3;
    transition: .3s all ease;
    /*box-shadow: 0 5px 10px -10px rgb(0 0 0 / 30%);*/
}

body.on_header header{
    background: rgba(255,255,255,1);
}

    header > .box_inner{
        box-sizing: border-box;
        height: 6.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10rem 0 3vw;
        transition: .3s all ease;
    }

        header > .box_inner .logo_site_title{
            height: 100%;
        }

            header > .box_inner .logo_site_title a{
                display: flex;
                align-items: center;
                height: 100%;
                transition: .5s all ease;
            }

            header > .box_inner .logo_site_title a:hover{
                opacity: 0.8;
            }

            header > .box_inner .logo_site_title a img{
                max-width: 100%;
                height: auto;
            }

                header > .box_inner .logo_site_title a .logo{
                    width: 2.1875rem;
                    margin-right: 0.75rem;
                }

                header > .box_inner .logo_site_title a .site_title{
                    width: 8.75rem;
                }

        header > .box_inner .navs{
            box-sizing: border-box;
            display: flex;
            align-items: center;
            height: 100%;
            padding-top: 1rem;
        }

            header > .box_inner .global_nav1{
                margin-right: 1.5rem;
                height: 100%;
            }

                header > .box_inner .global_nav1 > ul{
                    display: flex;
                    height: 100%;
                }

                    header > .box_inner .global_nav1 > ul > li{
                        position: relative;
                    }

                    header > .box_inner .global_nav1 > ul > li.gn_support{}

                    header > .box_inner .global_nav1 > ul > li.gn_support::before,
                    header > .box_inner .global_nav1 > ul > li.gn_support::after{
                        content: "";
                        display: block;
                        width: 0;
                        height: 2.5rem;
                        border-left: 1px solid #d9d9d9;
                        position: absolute;
                        top: 2.5rem;
                    }

                    header > .box_inner .global_nav1 > ul > li.gn_support::before{
                        left: 0;
                    }

                    header > .box_inner .global_nav1 > ul > li.gn_support::after{
                        right: 0;
                    }

                        header > .box_inner .global_nav1 > ul > li > a,
                        header > .box_inner .global_nav1 > ul > li > button{
                            box-sizing: border-box;
                            position: relative;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            text-decoration: none;
                            padding: 1.5rem 1.5rem 0;
                            height: 100%;
                        }

                        header > .box_inner .global_nav1 > ul > li > button{
                            padding: 0.95rem 1.5rem 0;
                            background: none;
                            border: none;
                            cursor: pointer;
                        }

                        header > .box_inner .global_nav1 > ul > li > a .lbl_ja,
                        header > .box_inner .global_nav1 > ul > li > button .fig{
                            color: #000;
                            font-size: 1.02rem;
                            font-weight: 600;
                            transition: .3s all ease;
                            white-space: nowrap;
                            margin-bottom: 0.4em;
                        }

                        header > .box_inner .global_nav1 > ul > li > button .fig{
                            width: 1.375rem;
                            height: 1.375rem;
                        }

                            header > .box_inner .global_nav1 > ul > li > button .fig::before{
                                content: "";
                                display: inline-block;
                                width: 100%;
                                height: 100%;
                                /*色変更は　fill="%23[16進数]"　部分で設定*/
                                background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23333333" xml:space="preserve" width="22" height="22" style="enable-background:new 0 0 22 22"><path d="m21.311 19.189-2.591-2.591a10.183 10.183 0 0 0 2.031-6.098c0-5.652-4.598-10.25-10.25-10.25S.25 4.848.25 10.5 4.848 20.75 10.5 20.75c2.286 0 4.392-.761 6.098-2.031l2.591 2.591c.293.293.677.439 1.061.439s.768-.146 1.061-.439a1.501 1.501 0 0 0 0-2.121zM3.25 10.5c0-3.998 3.252-7.25 7.25-7.25s7.25 3.252 7.25 7.25-3.252 7.25-7.25 7.25-7.25-3.252-7.25-7.25z" /><path d="M0 0h22v22H0z" style="fill:none"/></svg>');
                            }

                            header > .box_inner .global_nav1 > ul > li > button:hover .fig::before{
                                /*色変更は　fill="%23[16進数]"　部分で設定*/
                                background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23800000" xml:space="preserve" width="22" height="22" style="enable-background:new 0 0 22 22"><path d="m21.311 19.189-2.591-2.591a10.183 10.183 0 0 0 2.031-6.098c0-5.652-4.598-10.25-10.25-10.25S.25 4.848.25 10.5 4.848 20.75 10.5 20.75c2.286 0 4.392-.761 6.098-2.031l2.591 2.591c.293.293.677.439 1.061.439s.768-.146 1.061-.439a1.501 1.501 0 0 0 0-2.121zM3.25 10.5c0-3.998 3.252-7.25 7.25-7.25s7.25 3.252 7.25 7.25-3.252 7.25-7.25 7.25-7.25-3.252-7.25-7.25z" /><path d="M0 0h22v22H0z" style="fill:none"/></svg>');
                            }


                        header > .box_inner .global_nav1 > ul > li > a .lbl_en,
                        header > .box_inner .global_nav1 > ul > li > button .lbl{
                            color: #666;
                            font-family: "Cardo", serif;
                            text-transform: uppercase;
                            font-size: 0.68rem;
                            transition: .3s all ease;
                        }

                        header > .box_inner .global_nav1 > ul > li > a:hover .lbl_en,
                        header > .box_inner .global_nav1 > ul > li > a:hover .lbl_ja,
                        header > .box_inner .global_nav1 > ul > li > button:hover .lbl,
                        header > .box_inner .global_nav1 > ul > li.active > a .lbl_en,
                        header > .box_inner .global_nav1 > ul > li.active > a .lbl_ja{
                            color: #800000;
                        }

                        header > .box_inner .global_nav1 > ul > li > a::after{
                            content: "";
                            display: inline-block;
                            width: 0.625rem;
                            height: 0.625rem;
                            border-radius: 50%;
                            position: absolute;
                            bottom: 0.75rem;
                            left: calc(50% - 0.3125rem);
                            background: #800000;
                            transition: .3s all ease;
                            opacity: 0;
                        }

                        header > .box_inner .global_nav1 > ul > li.active > a::after{
                            opacity: 1;
                        }

                        header > .box_inner .global_nav1 > ul > li > .child_nav{
                            box-sizing: border-box;
                            /*width: 24rem;*/
                            background: #fff;
                            position: absolute;
                            top: 5rem;
                            left: calc(50% - 7rem);
                            z-index: 1;
                            box-shadow: 0 0 10px 1px rgba(0,0,0,0.08);
                            transition: .3s all ease;
                            overflow: hidden;
                            height: 0;
                            opacity: 0;
                            padding: 0 1rem;
                        }

                        header > .box_inner .global_nav1 > ul > li:hover > .child_nav{
                            height: auto;
                            opacity: 1;
                            padding: 1rem;
                            border-radius: 0.5rem;
                        }

                            header > .box_inner .global_nav1 > ul > li > .child_nav ul{
                                font-size: 0.94em;
                                line-height: 1.4;
                            }

                                header > .box_inner .global_nav1 > ul > li > .child_nav ul li{
                                    margin: 0 0 0.1em 0;
                                }

                                header > .box_inner .global_nav1 > ul > li > .child_nav ul li:last-child{
                                    margin-bottom: 0;
                                }

                                    header > .box_inner .global_nav1 > ul > li > .child_nav ul li a{
                                        position: relative;
                                        text-decoration: none;
                                        color: #555;
                                        display: block;
                                        padding: 0.6em 1.2em 0.4em 1.2em;
                                        font-weight: 600;
                                        transition: .4s all ease;
                                    }

                                    header > .box_inner .global_nav1 > ul > li > .child_nav ul li a:hover{
                                        color: #800000;
                                    }

                                        header > .box_inner .global_nav1 > ul > li > .child_nav ul li a::before{
                                            content: "";
                                            display: block;
                                            width: 0.5625rem;
                                            height: 0.5625rem;
                                            border-radius: 50%;
                                            background: #800000;
                                            position: absolute;
                                            top: 0.88em;
                                            left: 0;
                                            opacity: 0;
                                            transition: .4s all ease;
                                        }

                                        header > .box_inner .global_nav1 > ul > li > .child_nav ul li a:hover::before{
                                            opacity: 1;
                                        }

                                        header > .box_inner .global_nav1 > ul > li > .child_nav ul li a .lbl{
                                            white-space: nowrap;
                                            position: relative;
                                        }


            header > .box_inner .global_nav2{
                height: 100%;
            }

                header > .box_inner .global_nav2 > ul{
                    display: flex;
                    height: 100%;
                }

                    header > .box_inner .global_nav2 > ul > li{
                        height: 100%;
                    }

                        header > .box_inner .global_nav2 > ul > li > a{
                            box-sizing: border-box;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            text-decoration: none;
                            padding: 0.5rem 2rem 0;
                            height: 5.25rem;
                            border-radius: 2.625rem;
                            background: #767676;
                            color: #fff;
                            border: 2px solid #767676;
                            transition: .4s all ease;
                        }

                        header > .box_inner .global_nav2 > ul > li > a:hover{
                            background: #fff;
                            color: #800000;
                            border-color: #800000;
                        }

                            header > .box_inner .global_nav2 > ul > li > a .lbl_ja{
                                font-size: 1.02rem;
                                font-weight: 600;
                                white-space: nowrap;
                                margin-bottom: 0.4em;
                            }

                            header > .box_inner .global_nav2 > ul > li > a .lbl_en{
                                font-family: "Cardo", serif;
                                text-transform: uppercase;
                                font-size: 0.68rem;
                            }


/*small_header*/
.small_header header {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 5px 10px -10px rgb(0 0 0 / 30%);
}
/*
    .small_header header > .box_inner{
        height: 5.5rem;
    }
*/

/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:0;
    transition: .3s all ease;
}

body.on_header .contents{
    /*filter: brightness(0.5);*/
}
/*あとで削除
.contents::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(0,0,0,0);
    transition: .5s all ease;
}

body.on_header .contents::after{
    z-index: 9;
    background: rgba(0,0,0,0.3);
}
*/


/*-----footer-----*/
footer {
    position: relative;
    z-index: 1;
    padding: 4rem 5vw;
    background: #f4f3f1;
    overflow: hidden;
}

    footer::after {
        content: "";
        display: block;
        width: 890px;
        height: 420px;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        background: #505050;
        position: absolute;
        bottom: 0;
        right: -270px;
        z-index: -1;
    }

    footer > .box_inner{
        display: flex;
        justify-content: space-between;
        margin-bottom: 5rem;
    }

        footer > .box_inner .f_site_title_addr_contact{
            display: flex;
            flex-direction: column;
            margin-right: 5vw;
            padding-top: 1.3rem;
        }

            footer > .box_inner .f_site_title_addr_contact .logo_site_title{
                margin-bottom: 1em;
            }

            footer > .box_inner .f_site_title_addr_contact .logo_site_title a{
                display: flex;
                align-items: center;
                transition: .5s all ease;
            }

            footer > .box_inner .f_site_title_addr_contact .logo_site_title a:hover{
                opacity: 0.8;
            }

                footer > .box_inner .f_site_title_addr_contact .logo_site_title a img{
                    max-width: 100%;
                    height: auto;
                }

                footer > .box_inner .f_site_title_addr_contact .logo_site_title a .logo{
                    width: 3rem;
                    width: 2.5rem;
                    margin-right: 1rem;
                }

                footer > .box_inner .f_site_title_addr_contact .logo_site_title a .site_title{
                    width: 11.25rem;
                    width: calc(2.5rem / 7 * 28);
                }


            footer > .box_inner .f_addr_contact{
                line-height: 2;
                font-weight: 500;
                padding-left: 0.75rem;
                margin-bottom: 2rem;
            }

                footer > .box_inner .f_addr_contact > dl{}

                    footer > .box_inner .f_addr_contact > dl > dt{
                        font-size: 1.1em;
                        font-weight: 600;
                        margin-bottom: 0.3em;
                    }

                    footer > .box_inner .f_addr_contact > dl > dd{
                        font-size: 0.9em;
                    }

                        footer > .box_inner .f_addr_contact .f_contact{
                            display: flex;
                            margin-bottom: 1em;
                        }

                            footer > .box_inner .f_addr_contact .f_contact dl{
                                display: flex;
                                margin-right: 1em;
                            }

                            footer > .box_inner .f_addr_contact .f_contact dl:last-child{
                                margin-right: 0;
                            }

                            footer > .box_inner .f_addr_contact .f_contact dl dt{
                                margin-right: 0.25em;
                            }

                            footer > .box_inner .f_addr_contact .f_contact a{
                                color: #222;
                                text-decoration: none;
                                pointer-events: none;
                            }

                        footer > .box_inner .f_addr_contact .goto_access{}

                            footer > .box_inner .f_addr_contact .goto_access a{
                                display: inline-block;
                                color: #222;
                                text-decoration: none;
                                border-bottom: 3px solid #222;
                                padding: 0 0.8em;
                                font-weight: 600;
                                position: relative;
                                transition: .5s all ease;
                            }

                            footer > .box_inner .f_addr_contact .goto_access a:hover{
                                color: #800000;
                            }

                                footer > .box_inner .f_addr_contact .goto_access a::after{
                                    content: "";
                                    display: block;
                                    width: 100%;
                                    height: 0;
                                    border-bottom: 3px solid #800000;
                                    position: absolute;
                                    left: 0;
                                    bottom: -3px;
                                    transition: .5s all ease;
                                    transform: scaleX(0);
                                    opacity: 0;
                                }

                                footer > .box_inner .f_addr_contact .goto_access a:hover::after{
                                    transform: scaleX(1);
                                    opacity: 1;
                                }

                footer > .box_inner .certification_logos{
                    padding-left: 0.75rem;
                }

                    footer > .box_inner .certification_logos ul{
                        display: flex;
                        align-items: flex-end;
                    }

                        footer > .box_inner .certification_logos ul li{
                            width: 5rem;
                            margin-right: 2.5rem;
                        }

                        footer > .box_inner .certification_logos ul li:last-child{
                            margin-right: 0;
                        }

                            footer > .box_inner .certification_logos ul li a{
                                display: block;
                                transition: .3s all ease;
                            }

                            footer > .box_inner .certification_logos ul li a:hover{
                                filter: brightness(1.1);
                            }

                        footer > .box_inner .certification_logos ul li img{
                            max-width: 100%;
                            height: auto;
                        }

            footer > .box_inner .f_navs{
                display: flex;
            }

                footer > .box_inner .f_navs > ul{
                    line-height: 1.4;
                    margin-right: 8vw;
                }

                    footer > .box_inner .f_navs > ul > li{
                        margin-bottom: 1.5em;
                    }

                    footer > .box_inner .f_navs > ul > li:last-child{
                        margin-bottom: 0;
                    }

                        footer > .box_inner .f_navs > ul > li > a{
                            font-weight: 500;
                            text-decoration: none;
                            color: #111;
                        }

                        footer > .box_inner .f_navs > ul > li > a:hover{
                            text-decoration: underline;
                        }

                        footer > .box_inner .f_navs > ul > li ul{
                            font-size: 0.9em;
                            padding: 1em;
                        }

                            footer > .box_inner .f_navs > ul > li ul li{
                                margin-bottom: 0.5em;
                            }

                            footer > .box_inner .f_navs > ul > li ul li:last-child{
                                margin-bottom: 0;
                            }

                            footer > .box_inner .f_navs > ul > li ul li a{
                                text-decoration: none;
                                color: #111;
                            }

                            footer > .box_inner .f_navs > ul > li ul li a:hover{
                                text-decoration: underline;
                            }

    footer > .box_footer{
        display: flex;
        justify-content: space-between;
        font-size: 0.82rem;
    }

        footer > .box_footer .f_nav ul{
            display: flex;
        }

            footer > .box_footer .f_nav ul li{
                margin-right: 2em;
            }

            footer > .box_footer .f_nav ul li:last-child{
                margin-right: 0;
            }

                footer > .box_footer .f_nav ul li a{
                    color: #222;
                    text-decoration: none;
                }

                footer > .box_footer .f_nav ul li a:hover{
                    text-decoration: underline;
                }

        footer > .box_footer .copyright{
            color: #fff;
        }


/*-----nav_oc-----*/
.nav_oc{
    width: 5.25rem;
    height: 5.25rem;
    position: fixed;
    top: 1rem;
    right: 1.25rem;
    z-index: 10;
    transition: .3s all ease;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        padding: 0.3rem 0 0 0;
        border: none;
        background: none;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .3s all ease;
    }

    .menu-trigger:hover{
        filter: brightness(1.1);
    }

    .menu-trigger.active{
        background: rgb(128,0,0,0);
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 1.875rem;
            height: 1.25rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #555;
                position: absolute;
                width: 1.875rem;
                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{
                /*background-color: #800000;*/
            }

            .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: #333;
            font-family: "Cardo", serif;
            text-transform: uppercase;
            font-size: 0.7rem;
            margin-top: 0.8em;
            font-weight: 700;
        }

        .menu-trigger.active .lbl{
            /*color: #800000;*/
        }

/*-----side_nav-----*/
.side_nav{
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    /*width: 30%;*/
    width: 56.25rem;
    height: 100%;
    transition: .4s all ease;
    background-color: rgba(255,255,255,0);
    background-image: url('../shared/bg_sgn.png');
    background-repeat: no-repeat;
    background-position: right -10% bottom 20%;
    background-size: 52.2222% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(1rem);
    padding-top: 1vh;
}

.side_nav.active{
    z-index: 9;
    opacity: 1;
    /*background: rgba(255,255,255,0.99);*/
    background-color: #ebebeb;
    box-shadow: -10px 0 20px -20px rgba(0,0,0,0.5);
    transform: translateX(0);
}

    .side_nav .side_global_nav{
        box-sizing: border-box;
        width: 100%;
        display: flex;
        justify-content: center;
    }

        .side_nav .side_global_nav .sgn_child{
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-right: 5rem;
        }

        .side_nav .side_global_nav .sgn_child:last-child{
            margin-right: 0;
        }

        .side_nav .side_global_nav .sgn_child > ul.sgn_regular{
            width: 100%;
            line-height: 1.3;
        }


            .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li{
                position: relative;
                margin-bottom: 1.5em;
            }

            .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li:last-child{
                margin-bottom: 0;
            }

                .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li > a{
                    display: block;
                    font-size: 1.15em;
                    padding: 0.4em 0;
                    color: #222;
                    text-decoration: none;
                    font-weight: 500;
                    position: relative;
                    transition: .3s all ease;
                }

                .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li > a:hover{
                    color: #000;
                }

                    .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li > a::after{
                        content: "";
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        display: block;
                        width: 100%;
                        border-bottom: 3px solid #800000;
                        transition: .3s all ease;
                        opacity: 0;
                        transform: scaleX(0);
                        transform-origin: left bottom;
                    }

                    .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li > a:hover::after{
                        opacity: 1;
                        transform: scaleX(1);
                    }

                    .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li a .lbl{
                        display: inline-block;
                        position: relative;
                    }



                .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li > ul{
                    margin-top: 0.5em;
                    margin-left: 0.65em;
                }

                    .side_nav .side_global_nav .sgn_child > ul.sgn_regular > li > ul li{
                        
                    }

                    .side_nav .side_global_nav > .sgn_child ul.sgn_regular > li > ul li a{
                        display: block;
                        color: #555;
                        text-decoration: none;
                        padding: 0.4em 0.5em 0.3em 0.5em;
                        font-weight: 500;
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav > .sgn_child ul.sgn_regular > li > ul li a:hover{
                        color: #800000;
                    }

        .side_nav .side_global_nav .sgn_child > ul.sgn_small{
            line-height: 1.3;
        }

            .side_nav .side_global_nav .sgn_child > ul.sgn_small li{}

                .side_nav .side_global_nav .sgn_child > ul.sgn_small li a{
                    display: block;
                    color: #555;
                    text-decoration: none;
                    padding: 0.4em 0.5em 0.3em 0.5em;
                    font-weight: 500;
                    transition: .3s all ease;
                }

                .side_nav .side_global_nav .sgn_child > ul.sgn_small li a:hover{
                    color: #800000;
                }

/*ページトップ*/
.pagetop{
    width: 3.125rem;
    height: 3.125em;
    position:fixed;
    bottom:5.625rem;
    right: 3rem;
    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: #333;
        opacity: 0.8;
    }
    
    .pagetop a:hover{
        opacity: 1;
    }


    .pagetop a:before{
        content: "";
        display: block;
        width: 0.875rem;
        height: 0.875rem;
        /*色変更は　fill="%23[16進数]"　部分で設定*/
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30"><path d="M15.58,3.46c-0.85-0.71-2.11-0.59-2.82,0.26s-0.59,2.11,0.26,2.82L20.78,13H4.3c-1.1,0-2,0.9-2,2s0.9,2,2,2h16.48 l-7.76,6.46c-0.85,0.71-0.96,1.97-0.26,2.82c0.4,0.47,0.96,0.72,1.54,0.72c0.45,0,0.91-0.15,1.28-0.46L29.43,15L15.58,3.46z"/></svg>');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        transform: rotate(-90deg);
    }


/*ヘッダ固定によるアンカーずれ対応*/
*[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;
}

/*1300px以下*/
@media screen and (min-width:1px) and (max-width:1300px){
    header > .box_inner{
        padding-right: calc(5.25rem + 4.5vw);
    }

    header > .box_inner .global_nav1 > ul > li > a{
        padding-right: 1.5vw;
        padding-left: 1.5vw;
    }

    header > .box_inner .global_nav2 > ul > li > a{
        padding-right: 1vw;
        padding-left: 1vw;
    }

    footer > .box_inner .f_navs > ul:last-child{
        margin-right: 0;
    }
}


/*1200px以下*/
@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.8vw;
    }

    header > .box_inner{
        padding-right: 3vw;
        height: 6.5rem;
        /*justify-content: center;*/
    }

    header > .box_inner .navs{
        display: none;
    }
    
    footer{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

        footer::after {
            width: 100vw;
            height: calc(100vw / 89 * 42);
            right: -55vw;
        }

        footer > .f_pagetop{
            top: calc(0px - (9rem / 36* 26));
        }

            footer > .f_pagetop a .fig{
                width: 9rem;
            }

        footer > .box_inner{
            margin-bottom: 2rem;
        }

        footer > .box_inner .f_addr_contact .f_contact{
            flex-direction: column;
        }

        footer > .box_inner .f_navs > ul{
            margin-right: 4vw;
        }
    
    .nav_oc{
        top: 0.75rem;
        right: 0.75rem;
    }

    .side_nav{
        width: 80%;
        overflow: auto;
        padding-top: 14vw;
        justify-content: flex-start;
        background-position: right -3vw bottom 5vw;
    }
    
}

/* ##########印刷用########## */
@media print{
    header{
        position:relative;
    }
    
    .pagetop{
        display: none;
    }
    
}