@charset "UTF-8";

.header_inner {
    position: fixed;
    background-color: #0000007a;
    width: 94%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 15px 20px;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    filter: drop-shadow(0px 2px 4px #00000070);
    -webkit-box-shadow: inset -1px 2px 1px 0 #ffffff61, inset 1px -2px 1px 0 #ffffff61;
    -moz-box-shadow: inset -1px 2px 1px 0 #ffffff61, inset 1px -2px 1px 0 #ffffff61;
    box-shadow: inset -1px 2px 1px 0 #ffffff61, inset 1px -2px 1px 0 #ffffff61;
}
.header_logo_brand a{
    line-height: 1;
}
.sp_nav {
    position: fixed;
    z-index: 20;
    right: 16px;
}

.header_logo_brand {
    width: 100%;
    max-width: 200px;
    padding: .5em 0;
}

.menu_btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 45px;
    cursor: pointer;
    position: relative;
}

.menu_wrap {
    position: relative;
}

.list_btn {
    position: absolute;
    top: 32px;
    right: 28px;
    z-index: 9;
}

.menu_btn span {
    width: 100%;
    height: 3px;
    background-color: #fff;
}

.menu_list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #18011dcc;
    z-index: 8;
    transition: right 0.3s cubic-bezier(.58, .3, .49, .95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.menu_list ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    list-style: none;
}

.menu_list li {
    list-style: none;
    margin: 13px 0;
    max-width: 300px;
    width: 100%;
    border: #fff 2px solid;
    border-radius: 20px 0;
}

.menu_list a {
    font-size: 1.6em;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    text-align: left;
    background: linear-gradient(320deg, #39004a 0%, #67137F 100%);
    position: relative;
    font-weight: 700;
    border-radius: 20px 0;
}

.menu_list a::after {
    position: absolute;
    content: url(../images/arrow_white_right.svg);
    top: 50%;
    right: 12px;
    width: 16px;
    transform: translateY(-50%);
}

.menu_list.open_menu {
    max-height: 100vh;
    right: 0;
}

.menu_btn span:first-child {
    transform: none;
}

.menu_btn span:first-child {
    opacity: 1;
}

.menu_btn span:first-child {
    transform: none;
}

.list_btn span {
    background-color: #fff;
}

.list_btn span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}

.list_btn span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}

body.no-scroll {
    overflow: hidden;
}

@media (min-width: 1366px) {
    .header_inner {
        top: 18px;
        width: 100%;
        max-width: 1100px;
        box-sizing: content-box;
    }

    .header_logo_brand a {
        opacity: 1;
        transition: .3s;
        padding: 0 4px;
    }

    .header_logo_brand a:hover {
        opacity: .6;
    }
    .pc_menu.sp_display_none{
        display: flex;
        flex-direction: row;
        width: 50%;
        justify-content: space-between;
    }

    .pc_menu li a {
        color: #fff;
        font-weight: 800;
        font-size: 1.2em;
        padding: 0 4px;
        position: relative;
        transition: .3s;
    }

    .pc_menu li a::after {
        position: absolute;
        content: "";
        bottom: 4px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: #ebad06;
        z-index: -1;
        transform: scaleX(0%);
        transform-origin: left;
        transition: .3s;
    }

    .pc_menu li a:hover::after {
        transform: scaleX(100%);
    }
}

@media (min-width: 1920px) {
    .pc_menu.sp_display_none{
        width: 55%;
    }
    .header_inner {
        max-width: 1400px;
    }
    .pc_menu li a {
        font-size: 1.4em;
    }
}