@charset "utf-8";

/* header */
.header_container {
    width: 100%;
}
.header_content {
    width: 100%;
    position: relative;
    z-index: 997;
}

/* header_logo */
.header_logo {
    position: absolute;
}
.header_logo img {
    width: 20rem;
    margin: 100px;
}
.header_logo a:hover {
    filter: blur(1.3px);
}

/* responsive */
@media screen and (max-width: 960px) {
    .header_logo img {
        width: 10rem;
        margin: 10px;
    }
}