@charset "UTF-8";

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 100;
    /* background: rgb(0, 0, 0, .1); */
}


@media screen and (min-width: 681px) {
    header {
        padding: 20px 0;
    }
}


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

.logo_content {}

.logo_content .logo {
    line-height: 1.1em;
    font-size: 8vw;
    letter-spacing: 0.05em;
}

.logo_content .logo img {
    width: 28vw;
}

@media screen and (min-width: 681px) {
    .logo_content .logo {
        font-size: 25px;
    }

    .logo_content .logo img {
        width: 110px;
    }

}

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

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

.global_nav {
    display: flex;
    gap: 30px;
    color: #fff
}

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

.global_nav ul li {}

.global_nav ul li a {
    transition: all .3s;
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.global_nav ul li a:hover {
    opacity: 0.5;
}

.contact {
    display: flex;
    gap: 5px;
    position: relative;
}

.contact::before {
    position: absolute;
    display: block;
    content: "";

}

.contact svg {
    width: 20px;
    padding-bottom: 3vw;
}



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

    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 {}

    .logo_content .box {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5vw;
    }


    .reserve {
        text-align: center;
        display: flex;
        flex-direction: row;
        gap: 2vw;
    }

    .reserve svg {
        width: 6vw;
        height: 6vw;
    }

    .reserve p {
        font-size: 5vw;
        line-height: 6vw;
    }

    /* ハンバーガーメニュー */
    .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;
        flex-direction: column;
        font-size: 6vw;
    }

    .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 {
        border-bottom: 1px solid #fff;
        padding-right: 3vw;

    }

    .global_nav ul li a span {
        font-size: 3vw;
        padding-left: 2vw;
    }

    .contact {}

    .contact::before {
        position: absolute;
        display: block;
        content: "";
        background: #fff;
        left: 0;
        bottom: 0;
        height: 1px;
        width: 55vw;
    }

    .contact svg {
        width: 5vw;

    }
}

@media screen and (min-width: 681px) {

    .logo_content .box {
        display: none;
    }

    .global_nav {
        color: #000;
    }

    .global_nav svg path {
        fill: #000;
    }

    .global_nav .reserve {
        display: flex;
        flex-direction: row;
        gap: 5px;
        align-items: center;
        transition: all .3s;
    }

    .global_nav .reserve:hover {
        opacity: 0.5;

    }

    .global_nav .reserve svg {
        height: 16px;
    }
}