@charset "utf-8";
body, html{
    font-family: 'suit';
    font-size: 0.83vw;
    width: 100vw;
    overflow-x: clip;
    font-weight: 500;
    color: #000;
    line-height: normal;
}
body::-webkit-scrollbar{
    width: 10px;
}
body::-webkit-scrollbar-thumb{
    width: 10px;
    background-color: #000;
    border-radius: 10px;
}
#hd_login_msg{
    display: none;
}
figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mo{
    display: none;
}
.head.mo{
    display: none;
}


/* head */
.head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 3.64vw;
    background-color: #fff;
    padding: 0 7.03125vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.head .logo{
    width: auto;
    height: 2.60vw;
}
.head .logo figure{
    width: auto;
    height: 100%;
}
.head .call{
    display: block;
    width: 3.125vw;
    height: 1.66vw;
}
.head > ul{
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.head > ul li .depth_02{
    position: fixed;
    top: 3.64vw;
    left: -36vw;
    width: 100vw;
    padding: 2vw 7.03125vw;
    display: none;
    background-color: #fff;
    border-top: 1px solid #000;
}
.head > ul li .depth_02 .inner{
    display: flex;
    justify-content: center;
    margin: 0;
    height: max-content;
}
.head > ul li .depth_02 li{
    font-size: 1vw;
    margin-right: 2vw;
    font-weight: 700;
}
.head > ul li .depth_02 li:last-child{
    margin-right: 0;
}
.head > ul li .depth_02 li:hover{
    color: #000;
}
.head > ul> li{
    height: 100%;
}
.head > ul> li > p{
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 0.9vw;
    font-weight: 500;
    padding: 0 1.82vw;
}
.head > ul> li > p:hover{
    color: #000;
}
.head > ul> li > a{
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 0.9vw;
    font-weight: 500;
    padding: 0 1.82vw;
}
.head > ul> li > a:hover{
    color: #000;
}
/* head */



@media screen and (max-width:500px) {
    .pc{
        display: none;
    }
    .mo{
        display: block;
    }


    /* head */
    .head.mo{
        display: block;
        width: 100vw;
        height: 14vw;
        padding: 0;
    }
    .head.mo .inner{
        width: 100%;
        height: 100%;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .head .call{
        width: 12vw;
        height: 6.4vw;
    }
    .head .logo{
        width: 22.8vw;
        height: 11vw;
    }
    .head .menu_btn{
        width: 8vw;
        height: 5vw;
    }
    .head .menu_btn span{
        display: block;
        width: 100%;
        height: 1vw;
        background-color: #0123B4;
        margin-bottom: 1vw;
    }
    .head .menu_btn span:last-child{
        margin-bottom: 0;
    }




    .head .mo_menu{
        position: fixed;
        z-index: 10;
        top: 0;
        right: -80vw;
        width: 80vw;
        height: 100vh;
        background: linear-gradient(to bottom, #0123B4, #000);
        padding: 20vw 0 0 10vw;
        transition: 1s;
    }
    .head .mo_menu.on{
        right: 0;
    }
    .head .mo_menu .close{
        width: 10vw;
        height: 10vw;
        position: absolute;
        top: 2vw;
        right: 6vw;
        cursor: pointer;
    }
    .head .mo_menu > ul > li{
        margin-bottom: 6vw;
    }
    .head .mo_menu ul li .depth_01{
        display: block;
        font-weight: 800;
        font-size: 5vw;
        color: #fff;
        position: relative;
        cursor: pointer;
    }
    .head .mo_menu ul li .depth_01::after{
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30vw;
        height: 1px;
        background-color: #fff;
        right: 0;
        transition: 1s;
        opacity: 1;
    }
    .head .mo_menu ul li .depth_01.active::after{
        right: -30vw;
        opacity: 0;
    }

    .head .mo_menu ul li .depth_02{
        display: none;
        margin-top: 3vw;
        width: 100%;
        padding: 4vw 0 4vw 6vw;
        background-color: #fff;
        border-radius: 4vw 0 0 4vw;
    }
    .head .mo_menu ul li .depth_02 li a{
        display: block;
        padding: 1vw 0 ;
        font-size: 3.6vw;
        font-weight: 700;
    }
    /* head */

}