@charset "utf-8";
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
        min-width: auto;
        min-width: initial;
    }

    body{
        min-width:initial;
        min-width:auto;
    }

    img{
        max-width: 100%;
        height: auto;
    }

    header.tab_sp{
        box-sizing: border-box;
        display: block;
        width: 100%;
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        transition: .5s all ease;
    }

        header.tab_sp > .box_inner{
            height: 5rem;
            display: flex;
            align-items: center;
            background: #fff;
            padding-left: 2vw;
        }

            header.tab_sp > .box_inner .site_title{
                width: 24rem;
            }

            header.tab_sp > .box_inner .site_title a{
                display: block;
            }

    #main_box{
        padding-top: 5rem;
        position: relative;
        z-index: 2;
    }

    #main_box_inner{
        width: 100%;
        display: block;
    }

    #main_column{
        width: 100%;
        margin-left: 0;
    }


    #sub_column{
        display: none;
    }

    #footer{
        background: none;
    }

    #footer_inner{
        box-sizing: border-box;
        width: 100%;
        height: auto;
        background: #505050;
        padding: 1em;
    }

    #f_title{
        padding: 1em;
    }

    #f_nav{
        box-sizing: border-box;
        width: 100%;
        display: flex;
        margin-bottom: 0;
        padding: 1em;
    }

    .f_nav_01,
    .f_nav_02,
    .f_nav_03,
    .f_nav_04{
        width: auto;
        float: none;
        padding: 0.5em 1em;
    }

    #f_nav li{
        margin-left: 0;
    }

    #f_nav li li{
        margin-left: 0;
    }

    #copyright{
        background: #afafaf;
        height: auto;
        padding: 1em 0;
    }


.btn_mypage{
    width: 5rem;
    height: 5rem;
    position: fixed;
    top: 0;
    right: 5rem;
    z-index: 11;
    transition: .3s all ease;
    display: block;
}

    .btn_mypage a{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #1e4682;
        color: #fff;
        padding-top: 0.5rem;
    }

        .btn_mypage a .icon{
            margin-bottom: 0.3em;
        }

        .btn_mypage a .icon::before{
            font-family: FontAwesome;
            content:"\f2be";
            font-size: 1.5em;
        }

        .btn_mypage a .lbl{
            font-size: 0.8em;
        }


/*-----nav_oc-----*/
.nav_oc{
    width: 5rem;
    height: 5rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    transition: .3s all ease;
    display: block;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        background: #ca3842;
        border: 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 .lines{
            position: relative;
            display: block;
            width: 2rem;
            height: 1.375rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #fff;
                position: absolute;
                width: 2rem;
                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: rotate(35deg) scaleX(1.15);
                transform-origin: left top;
            }

            .menu-trigger.active .lines span:nth-of-type(2) {
                opacity: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(3) {
                transform: rotate(-35deg) scaleX(1.15);
                transform-origin: left bottom;
            }

/*-----side_nav-----*/
.side_nav{
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    transition: .3s all ease;
    background: rgba(0,0,0,0);
    transform: translateX(0.5rem);
}

.side_nav.active{
    z-index: 10;
    opacity: 1;
    transform: translateX(0);
    background: rgba(0,0,0,0.75);
    overflow-y: auto;
}

    .side_nav_box{
        box-sizing: border-box;
        background: #fff;
        padding: 1.5rem;
        width: 55%;
        height: 100vh;
        overflow-y: auto;
        box-shadow: 1rem 0 1rem 1rem rgba(0,0,0,0.2);
    }

        .side_nav_box > .box_header{
            margin-bottom: 1.5rem;
        }

            .side_nav_box > .box_header .site_title{
                width: 65%;
            }

            .side_nav_box > .box_header .site_title a{
                display: block;
            }



        .side_nav_box > .box_inner{
            padding-top: 0.75rem;
        }

            .side_nav_box > .box_inner a{
                color: #222;
                text-decoration: none;
                transition: .3s all ease;
            }

            .side_nav_box > .box_inner a:hover{
                color: #ca3842;
            }

            .side_status_nav{
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-bottom: 0.5rem;
            }

                .side_status_nav p{
                    font-size: 1.1em;
                    margin-bottom: 0.5em;
                    font-weight: bold;
                }

                .side_status_nav ul{
                    width: 100%;
                    display: flex;
                    gap: 0.5rem;
                }

                .side_status_nav ul li{
                    width: calc((100% - 1rem) / 3);
                }

                    .side_status_nav ul li a{
                        width: 100%;
                        height: 3rem;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background: #aaa;
                        color: #fff !important;
                        font-weight: bold;
                        box-shadow: 3px 3px 0 0 rgba(0,0,0,0.2);
                    }

                    .side_status_nav ul li.ssn_registration a{
                        background: #117411;
                    }

                    .side_status_nav ul li.ssn_login a,
                    .side_status_nav ul li.ssn_mypage a{
                        background: #1e4682;
                    }

                    .side_status_nav ul li.ssn_contact a{
                        background: #496ca5;
                    }

                    .side_status_nav ul li.ssn_logout a{
                        background: #c50067;
                    }

            .side_nav .side_global_nav1{
            }

                .side_nav .side_global_nav1 > ul{}

                    .side_nav .side_global_nav1 > ul > li{
                        position: relative;
                        border-bottom: 1px solid #ccc;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h{
                        position: relative;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h a{
                        display: flex;
                        align-items: center;
                        padding: 1em;
                        font-size: 1.1em;
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h a:hover{
                    }


                    .side_nav .side_global_nav1 > ul > li > .sgn_h button{
                        position: absolute;
                        top: 0;
                        right: 0;
                        background-color: rgba(255,255,255,0);
                        width: 3rem;
                        height: 100%;
                        border: none;
                        cursor: pointer;
                    }

                    .side_nav .side_global_nav1 > ul > li > .sgn_h button::before{
                        font-family: FontAwesome;
                        content:"\f0d7";
                        display: inline-block;
                        color: var(--base_color1);
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav1 > ul > li.active > .sgn_h button::before{
                        transform: rotate(180deg);
                    }

                    .side_nav .side_global_nav1 > ul > li > .child_nav{
                        position: relative;
                        line-height: 1.4;
                        border-top: 1px solid #ccc;
                        padding: 0;
                        height: 0;
                        opacity: 0;
                        overflow: hidden;
                        transition: .3s all ease;
                    }

                    .side_nav .side_global_nav1 > ul > li.active > .child_nav{
                        padding: 0.5em;
                        height: auto;
                        opacity: 1;
                    }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul{
                            position: relative;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li{
                            position: relative;
                        }

                        .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a{
                            position: relative;
                            display: block;
                            padding: 0.4em 2em 0.3em 0.8em;
                        }

                            .side_nav .side_global_nav1 > ul > li > .child_nav > ul > li a::before{
                                font-family: FontAwesome;
                                content:"\f105";
                                position: absolute;
                                top: 0.3em;
                                left: 0;
                            }


/*ページトップ*/
.pagetop{
    width:4rem;
    height:4rem;
    position:fixed;
    bottom:3rem;
    right:1rem;
     transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
    z-index: -1;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
    z-index:9;
}

    .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: #2DB1B9;
        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;
    }


}