@charset "UTF-8";

/* ヘッダー
***************************************************************/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
}

.logo_content {}

.logo_content .logo {}

.logo_content .logo a {}

/* ハンバーガーメニュー非表示 */
.toggle-menu {
    display: none;
}

/* ヘッダーリンク */
.header_nav {}

.global_nav {}

.global_nav ul {
    display: flex;
    gap: 20px;
}

.global_nav ul li {}

.global_nav ul li a {}

@media screen and (max-width: 1080px) {

    header {
        padding: 10px 0;
    }

    .header_inner {
        display: block;
        margin: 0 10px;
    }

    .logo_content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo_content .logo {}

    .logo_content .logo a {}

    /* ハンバーガーメニュー */
    .toggle-menu {
        display: inline-block;
        width: 40px;
        height: 30px;
        position: relative;
        z-index: 100;
    }

    .toggle-menu .toggle-line {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        text-indent: -9999px;
        width: 27px;
        height: 1px;
        background-color: #000;
    }

    .toggle-menu .toggle-line::before,
    .toggle-menu .toggle-line::after {
        content: "";
        position: absolute;
        left: 0;
        width: 27px;
        height: 1px;
        background-color: #000;
        transition: .3s;
    }

    .toggle-menu .toggle-line::before {
        top: -7px;
        -webkit-animation: menu-barTop 0.6s forwards;
        animation: menu-barTop 0.6s forwards;
    }

    .toggle-menu .toggle-line::after {
        top: 7px;
        -webkit-animation: menu-barBottom 0.6s forwards;
        animation: menu-barBottom 0.6s forwards;
    }

    .header_nav {
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 15px 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        background-color: rgb(0, 0, 0, .5);
        z-index: 90;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }

    .global_nav {
        margin-top: 80px;
        padding: 0 30px;
    }

    .open .toggle-menu {
        -webkit-transition: all 0.5s linear 1s;
        transition: all 0.5s linear 1s;
    }

    .open .toggle-menu .toggle-line {
        height: 0;
        background-color: #000;
    }

    .open .toggle-menu .toggle-line::before {
        background-color: #fff;
        -webkit-animation: active-menu-barTop 0.6s forwards;
        animation: active-menu-barTop 0.6s forwards;
        transform: rotate(-45deg);
        top: 0;
    }

    .open .toggle-menu .toggle-line::after {
        background-color: #fff;
        -webkit-animation: active-menu-barBottom 0.6s forwards;
        animation: active-menu-barBottom 0.6s forwards;
        transform: rotate(45deg);
        top: 0;
    }

    .open .header_nav {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        overflow: auto;
    }

    .global_nav ul {
        flex-flow: column;
    }

    .global_nav ul li {}

    .global_nav ul li a {
        color: #fff
    }
}