@charset "utf-8";

/* header */
.header_container {
    width: 100%;
}
.header_content {
    width: 100%;
    position: fixed;
    z-index: 998;
}
.header_logo {
    padding: 10px 0 10px 10px;
}
.header_logo img {
    width: 6rem;
    vertical-align: middle;
    visibility: hidden;
}
.header_logo a:hover {
    filter: blur(0.7px);
}

/* header_menu */
.header_menu_btn {
    width: 50px;
    display: block;
    position: absolute;
    top: 31%;
    right: 6%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    z-index: 999;
}
.header_menu_btn span {
    width: 60%;
    height: 3px;
    display: block;
    position: relative;
    background-color: #000044;
    transition: ease .3s;
}
.header_menu_btn span:nth-child(1) {
    margin: 10px auto;
    top: 3px;
}
.header_menu_btn span:nth-child(2) {
    margin: 0px auto;
}
.header_menu_btn span:nth-child(3) {
    margin: 10px auto;
    bottom: 3px;
}
.header_menu_btn.action {
    transform: translateX(0);
}
.header_menu_btn.action span:nth-child(1) {
    top: 13px;
    transform: rotate(-45deg);
}
.header_menu_btn.action span:nth-child(2) {
    opacity: 0;
}
.header_menu_btn.action span:nth-child(3) {
    top: -13px;
    transform: rotate(45deg);
}
.nav_content {
    width: 70%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    right: -120%;
    background-color: #cc3399;
    visibility: hidden;
    opacity: 0;
    transition: ease .5s;
    z-index: 997;
}
.nav_content.open {
    right: 0;
    visibility: visible;
    opacity: 0.7;
    transform: scale(1);
}
.nav_content ul {
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    font-size: 2rem;
    transform: translate(-50%,-50%);
}