/* reset */

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
    list-style-type: none;
}

/* reset end */

/* loader */

#loader {
    background: #fdf3dd;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
}

/*背景*/
.loader,
.loader:before,
.loader:after {
    background: #aaa;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    height: 4em;
    width: 1em;
    top: 50%;
}

.loader {
    color: #ccc;
    text-indent: -9999em;
    margin: auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 1.5em;
}

@-webkit-keyframes load1 {

    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {

    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

/* End loader */

/* Common */

body {
    font-size: min(3.5vw, 16px);
    font-family: sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.5;
}

img {
    vertical-align: bottom;
}

.panlist {
    text-align: left;
    font-size: 12px;
    padding: 0.2em 0 0.2em 1em;
    color: #fff;
    background: #000;
}

.panlist a {
    display: inline-block;
    color: #fff;
}

#page_all {
    position: relative;
    background: url(../img/bg.webp);
    background-size: cover;
    background-position: center center;
}

#footer #f_PC,
footer #f_SP {
    margin: 0 auto !important;
}

#sns_button {
    padding: 60px 0 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#sns_button a {
    display: block;
    width: 40px;
    height: 40px;
}

#sns_button img {
    width: 40px;
    height: 40px;
}

.stream_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2em 0;
}

.stream_list li {
    width: min(90%, 420px);

}

.stream_list li a {
    width: 100%;
    display: block;
}

.stream_list li img {
    width: 100%;
}

.bg_box {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: url(../img/bg_smoke.webp);
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
}

.wrapper {
    position: relative;
    z-index: 2;
}

.yellow {
    color: #fff500;
}

.bold {
    font-weight: 900;
}

/* PC */
main {
    text-align: left;
}

main article {
    width: min(90%, 1200px);
    margin: 0 auto;
    color: #fff;
}

.top_main {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.top_main img {
    display: block;
    width: 100%;
}

.navbtn {
    display: none;
}

nav.pagenav {
    position: sticky;
    top: 0;
    background: url(../img/bg_nav.webp);
    background-size: cover;
    z-index: 9999;
}

.pagenav ul {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    box-sizing: border-box;
}

.pagenav li {
    width: 16%;
    background: url(../img/bg_ttl.webp);
    background-size: cover;
    transform: skewX(-20deg);
    margin-right: 1%;
    border: 1px solid #444;
    transition: 0.25s;
}

.pagenav li:last-of-type {
    margin-right: 0;
}

.pagenav li:hover {
    border: 1px solid #999;
}

.pagenav li a {
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transform: skewX(20deg);
    line-height: 1;
    padding: 1em 0;
    box-sizing: border-box;
}

.pagenav p {
    font-size: min(1.75vw, 24px);
    font-weight: 900;
    margin-bottom: 0.25em;
}

.pagenav small {
    font-size: min(3vw, 14px);
    font-weight: normal;
}

article section {}

section h2 {
    position: relative;
    text-align: center;
    font-weight: 900;
    line-height: 1;
    margin: 8em 0 2em;
}

section h2 > span {
    font-size: min(12vw, 120px);
    color: rgba(0, 0, 0, 0);
    -webkit-background-clip: text;
    background-image: url(../img/bg_ttl.webp);
    background-size: contain;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    pointer-events: none;
}

section h2 p {
    font-size: min(7vw, 60px);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

article section .wrap {
    background: url(../img/bg_sec.webp);
    background-size: cover;
    padding: 3em;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-image-source: linear-gradient(45deg, #ffb700, #555, #ffb700);
    border-image-slice: 1;
}

#about .wrap p {
    margin-bottom: 1em;
    line-height: 2;
}

#schedule h3 {
    font-weight: 900;
    font-size: min(4vw, 28px);
    margin-bottom: 0.5em;
}

#schedule h3::before,
#movie h3::before {
    content: "▼";
    display: inline-block;
    color: #fff500;
}

#schedule .wrap p {
    margin-bottom: 3em;
    line-height: 2;
    background: #222;
    padding: 1em;
}

#schedule .wrap p:last-of-type {
    margin-bottom: 0;
}

#card strong {
    display: block;
    font-weight: bold;
    font-size: min(3.5vw, 24px);
    margin-bottom: 1em;
}

#card strong small {
    display: block;
    font-size: min(3vw, 16px);
    font-weight: 400;
    border-radius: 4px;
    width: 6em;
    margin: 0 auto 0.5em;
    border: 1px solid #555;
    background: rgba(0, 0, 0, 0.5);
}

#card li {
    /*    background: rgba(255, 255, 255, 0.1);*/
    background: url(../img/bg_ttl.webp);
    background-size: cover;
    border-radius: 1em;
    text-align: center;
    padding: 2em;
    box-sizing: border-box;
    margin-bottom: 2em;
}

#card .player_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

#card .player_box .red,
#card .player_box .blue {
    width: min(40%, 320px);
}

#card .player_box .red small,
#card .player_box .red span,
#card .player_box .blue small,
#card .player_box .blue span {
    display: block;
}

#card .player_box .red span,
#card .player_box .blue span {
    font-size: min(4vw, 24px);
    font-weight: bold;
    border-bottom: 1px solid #fff;
    padding-bottom: 0.25em;
    margin: 0 auto 0.25em;
}

#card .player_box .red small,
#card .player_box .blue small {
    font-size: min(2.5vw, 14px);
}

#card .player_box .red small::after {
    content: "RED";
    display: block;
    width: 5em;
    font-size: 14px;
    background: #bd0000;
    text-align: center;
    border-radius: 4px;
    margin: 0.5em auto 0;
    font-weight: 900;
}

#card .player_box .blue small::after {
    content: "BLUE";
    display: block;
    width: 5em;
    font-size: 14px;
    background: #0016bd;
    text-align: center;
    border-radius: 4px;
    margin: 0.5em auto 0;
    font-weight: 900;
}

#card .player_box p {
    width: 20%;
    color: #fff500;
    font-size: min(5vw, 60px);
    font-weight: 900;
    filter: drop-shadow(0.05em 0.05em 0 #000);
}

#card .player_box img {
    display: block;
    width: 100%;
    border-radius: 8px;
    margin: 0 auto 0.5em;
}

#movie .wrap {
    text-align: center;
    font-weight: bold;
}

#movie iframe {
    display: block;
    width: min(100%, 800px);
    aspect-ratio: 16/9;
    margin: 0.5em auto 4em;
}

#movie img.coming {
    display: block;
    width: min(100%, 800px);
    margin: 0.5em auto 4em;
    pointer-events: none;
    border: 1px solid #ccc;
}

#movie a.sub {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #bd0000;
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    padding: 1em 1em 1em 2em;
    border-radius: 8px;
    font-size: min(3vw, 20px);
    width: 25em;
    box-sizing: border-box;
    transition: 0.25s;
}

#movie a.sub:hover {
    opacity: 0.75;
}

#movie a.sub::after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: url(../img/icon_new_window.webp);
    background-size: contain;
    background-position: center center;
    margin-left: 1em;
}


/* SP */

@media screen and (max-width:800px) {
    #header {
        min-height: auto;
    }

    #page_all {
        overflow-x: hidden;
    }

    section h2 {
        margin: 4em 0 2em;
    }

    .navbtn {
        display: block;
        width: 60px;
        height: 60px;
        background: #fff;
        position: fixed;
        top: -60px;
        right: 0;
        cursor: pointer;
        z-index: 99999;
        transition: 0.25s;
    }

    .navbtn.show {
        top: 0;
    }

    .navbtn div {
        width: 40px;
        height: 6px;
        background: #333;
        transition: 0.25s;
        left: 0;
        right: 0;
        margin: 0 auto;
        position: absolute;
    }

    .navbtn div:nth-of-type(1) {
        top: 15px;
    }

    .navbtn div:nth-of-type(2) {
        top: 27px;
    }

    .navbtn div:nth-of-type(3) {
        top: 39px;
        margin-bottom: 0;
    }

    .navbtn.is-active div:nth-of-type(1) {
        transform: rotate(45deg);
        top: 27px;
    }

    .navbtn.is-active div:nth-of-type(2) {
        opacity: 0;
    }

    .navbtn.is-active div:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 27px;
    }

    nav.pagenav {
        display: block;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
    }

    nav.pagenav.is-active {
        animation: navslide 0.5s forwards;
    }

    @keyframes navslide {
        0% {
            top: -100%;
        }

        100% {
            top: 0;
        }
    }

    nav.pagenav ul {
        flex-direction: column;
        padding: 68px 2em 1em;
    }

    nav.pagenav li {
        width: 100%;
        margin-bottom: 0.5em;
    }

    nav.pagenav p {
        font-size: min(4vw, 24px);
    }

    article section .wrap {
        padding: 2em;
    }

    section#card .wrap {
        padding: 1em;
    }

    #card li {
        padding: 1em;
    }
}
