@charset "UTF-8";
/*======================================================= 
    header用スタイル
=======================================================*/
.header{
    width: 100%;
    height: auto!important;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 999;
}
.header-inner{
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 150px 1fr 180px;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    margin: auto;
}
.header-menu-area ul{
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 30px;
    padding: 0;
    margin-right: 30px;
}
.header-menu-area ul li{
    list-style: none;
}
.header-menu-area ul li a{
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    color: #fff;
}
.header-menu-area ul li a span{
    display: block;
    font-size: 20px;
}
.header-cta a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    padding: 10px 0;
}
.menu-btn{
    display: none;
}

/*1000px以下*/
@media screen and (max-width: 1000px){
    .header-inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
    }
    .menu-btn{
        display: block;
        box-sizing: border-box;
        width: fit-content;
    }
    .menu-btn .h_menu {
        position: relative;
        width: 30px;
        height: 25px;
        margin: 0 auto;
    }
    .menu-btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
    }
    .menu-btn span:nth-of-type(1) {
        top: 0;
    }
    .menu-btn span:nth-of-type(2) {
        top: 11px;
    }
        .menu-btn span:nth-of-type(3) {
        bottom: 1px;
    }
    .menu-btn.active span:nth-of-type(1) {
        -webkit-transform: translateY(11px) rotate(-45deg);
        transform: translateY(11px) rotate(-45deg);
    }
    .menu-btn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-btn.active span:nth-of-type(3) {
        -webkit-transform: translateY(-11px) rotate(45deg);
        transform: translateY(-11px) rotate(45deg);
    }
    .menu-btn p{
        color: #fff;
        line-height: 1;
        font-size: 14px;
        font-weight: bold;
        margin-top: 10px;
    }
    /* header */
    .header-logo-area img{
        width: 160px;
    }
    .header-menu-area,
    .header-cta{
        display: none;
    }
    .header-menu-area.active{
        display: block;
        position: fixed;
        top: 80px;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 0 20px;
        background-color: #000;
    }
    .header-menu-area ul{
        display: block;
    }
    .nav-link:hover{
    border-bottom: none;
    }
    .nav-link a{
        position: relative;
        border-bottom: 1px solid #dbdbdb;
        text-align: left;
        padding: 15px;
    }
}

/*750px以下*/
@media screen and (max-width: 750px){

}

/*480px以下*/
@media screen and (max-width: 480px){

}