@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

.container{
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}
header{
    position: fixed;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    border-bottom: 2px solid purple;
    align-content: center;
    height: 80px;
    z-index: 1;
}
header img{
    height: 100px;
}
header nav{
    flex-shrink: 1;
    position: relative;
    margin: auto;
}
header nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header nav li{
    position: relative;
    margin: 0 5px
}
header nav a{
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 1.3em;
}
header nav .submenu-item-child {
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
header #header_logo{
    position: absolute;
    top: -10px;
    left: 10px;
}
header .submenu {
    position: fixed;
    top: 106px;
    left: 0;
    width: 100vw;
    background: #333;
    display: none;
    z-index: 9999;
}
header .submenu.open {
    display: block;
}
header .submenu-inner.container {
    padding: 20px;
    box-sizing: border-box;
}
header .submenu-item {
    width: calc(25% - 20px);
    text-align: center;
}
header .submenu-item a {
    font-size: 14px;
}
header .submenu-toggle {
    display: flex;
    align-items: center;
    position: relative;
}
header .submenu-icon {
    display: none;
    margin-left: 10px;
    font-weight: bold;
    font-size: 22px;
    position: absolute;
    right: 20px;
}
header .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 32px;
}
header .hamburger span {
    background: #fff;
    height: 3px;
    width: 100%;
    margin: 4px 0;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform .3s, opacity .3s, top .3s;
}
header .hamburger span:nth-child(1) {
    top: 0;
}
header .hamburger span:nth-child(2) {
    top: 10px;
}
header .hamburger span:nth-child(3) {
    top: 20px;
}
header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}
header .hamburger.active span:nth-child(2) {
    opacity: 0;
}
header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

footer{
    background-image: url(../imgs/link/bg_pc.webp);
    background-size: cover;
    background-position: center center;
    text-align: center;
    color: #fff;
    padding: 30px 0;
}
footer img{
    width: 300px;
}
footer p{
    font-weight: bold;
    font-size: 0.9em;
    margin: 30px 0 0;
}
#ticket_icon{
    display: none;
    width: 250px;
    position: fixed;
    right: 10px;
    bottom: 10px;
}

@media screen and (max-width: 1200px) {
    .container{
        justify-content: flex-end;
    }
    header nav{
        margin: 0;
    }
    header nav li{
        margin: 0 4px;
    }
    header img{
        height: 90px;
    }
}
@media screen and (max-width: 1055px) {
    header nav li{
        margin: 0;
    }
    header nav a{
        padding: 10px 7px;
    }
    header img{
        height: 85px;
    }
}
@media screen and (max-width: 910px) {
    header nav a{
        font-size: 1.1em;
        padding: 10px 5px;
    }
    header img{
        height: 80px;
    }
    #ticket_icon{
        width: 150px;
    }
}
@media screen and (max-width: 767px) {
    header{
        border: 0;
        background: transparent;
    }
    header #header_logo{
        display: none;
    }
    header #hamburger_parent{
        background: linear-gradient(to right, #db0097, #5f4fce);
        padding: 15px;
        border-radius: 35px;
    }
    header .hamburger {
        display: flex;
    }
    header nav{
    }
    header nav a,
    header nav .submenu-item-child{
        flex-direction: row;
        padding: 10px;
        justify-content: start;
    }
    header nav ul {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background: #222;
        transition: right .3s;
        justify-content: flex-start;
        z-index: -1;
    }
    header nav ul.active {
        right: 0;
    }
    header nav li {
        margin-left: 0;
        border-bottom: 1px solid #444;
        width: 100%;
    }
    header nav li:last-child {
        border-bottom: none;
    }
    header .submenu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        background: none;
    }
    header .submenu.open {
        max-height: 100vh;
        padding: 0px 20px;
        background: #333;
    }
    header .submenu-item {
        width: 100%;
    }
    header .submenu-icon {
        display: block;
    }
    .container{
        width: 100px;
        float: right;
    }

    footer{
        background-image: url(../imgs/link/bg_sp.webp);
        padding: 15px 0;
    }
    footer img{
        width: 150px;
    }
    footer p{
        font-size: 0.5em;
        margin: 15px 0;
    }
    #ticket_icon{
        width: 120px;
    }
}