/* 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 */

.loading {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    /*    background: linear-gradient(45deg, rgba(41, 163, 208, 1), rgba(88, 41, 208, 1));*/
    background: linear-gradient(45deg, rgba(208, 41, 41, 1), rgba(41, 41, 208, 1));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loading.off {
    animation: off 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes off {
    0% {
        opacity: 1;
        visibility: visible;
    }

    99.9% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
    }
}

.loading img {
    width: min(50%, 400px);
    opacity: 0;
    animation: zoom 0.5s forwards;
}

@keyframes zoom {
    0% {
        opacity: 0;
        width: min(55%, 450px);
    }

    100% {
        opacity: 1;
        width: min(50%, 400px);
    }
}

/* End loader */

/* Common */

header {
    font-size: min(3.5vw, 16px);
}

.onlySp {
    display: none;
}

.onlyPc {
    display: block;
}

.fade {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s;
}

.fade.is-active {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-size: min(3.5vw, 20px);
    font-family: "LINE Seed JP", sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.5;
}

img {
    vertical-align: bottom;
}

.red {
    color: #910111;
    display: inline-block;
}

.bold {
    font-weight: bold;
}

.under {
    text-decoration: underline;
}

.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;
}

#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;
}

.stream_list li {
    width: min(90%, 400px);
}

.stream_list li a {
    width: 100%;
    display: block;
}

/* PC */
main {
    text-align: left;
}

#page_all {
    position: relative;
}

.bg_box {
    position: fixed;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/bg.webp);
    background-size: cover;
    z-index: -2;
}

.top_main {
    background: linear-gradient(45deg, rgba(41, 163, 208, 0.75), rgba(88, 41, 208, 0.75));
}

.top_main .inner {
    padding: 1em 0;
}

.top_main img {
    display: block;
    width: min(100%, 960px);
    margin: 0 auto;
    border-radius: 0.5em;
}

.top_main strong {
    text-align: center;
    display: block;
    font-weight: 900;
    color: #fff;
    padding: 2em 0;
    line-height: 1;
    -webkit-text-stroke: 0.4em rgba(0, 0, 0, 0.5);
    paint-order: stroke;
}

.top_main strong span:nth-of-type(1) {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: min(5.5vw, 2.75em);
    letter-spacing: 0.1em;
}

.top_main strong span:nth-of-type(2)::before {
    content: "";
    display: block;
    width: min(90%, 20em);
    height: 4px;
    margin: 0.5em auto;
    background: linear-gradient(to right, transparent, #fff, transparent);
}

.top_main strong span:nth-of-type(2) {
    display: block;
    font-size: min(6vw, 2em);
}

.top_main strong small {
    font-size: 0.75em;
}

.top_main strong small {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.05em;
    padding: 0 0.15em;
}

.inner {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.top_main .inner {
    width: min(95%, 1200px);
}

nav.pagenav {
    background: #333;
    text-align: center;
    position: sticky;
    padding: 0.5em 0;
    top: 0;
    box-shadow: 0 0 4px #ccc;
    z-index: 9999;
}

nav.pagenav ul {
    display: flex;
    font-size: min(2vw, 1.1em);
    line-height: ;
    justify-content: center;
}

nav.pagenav ul li {
    width: 160px;
    border-right: 1px solid #efefef;
}

nav.pagenav ul li:first-of-type {
    border-left: 1px solid #efefef;
}

nav.pagenav small {
    display: block;
    font-size: 0.65em;
    padding-top: 0.25em;
    font-weight: 600;
}

nav.pagenav li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    padding: 0.5em 0;
    box-sizing: border-box;
    transition: 0.25s;
}

nav.pagenav li a:hover {
    opacity: 0.75;
}

article section {
    padding: 4em 0;
}

article section:nth-of-type(even) {
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

section .wrap {
    background: url(../img/bg_wrap.webp);
    background-size: cover;
    padding: min(5vw, 3em) min(5vw, 4em);
    box-sizing: border-box;
    border-radius: 0.5em;
}

section .inner h2 {
    font-size: min(6.5vw, 2.5em);
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 0.15em rgba(0, 0, 0, 0.5);
    paint-order: stroke;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    width: fit-content;
    margin: 0 auto 1em;
    position: relative;
    overflow: hidden;
    padding: 0.1em;
    z-index: 1;
}

section .inner h2::before {
    position: absolute;
    content: "";
    display: block;
    width: 0%;
    height: 70%;
    left: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(208, 41, 41, 0.75), rgba(88, 41, 208, 0.75));
    transition: 1s;
    z-index: -1;
}

section .inner h2.is-active::before {
    width: 100%;
}

section .inner h2 small {
    display: block;
    font-size: 0.5em;
    font-weight: 600;
    padding-top: 0.25em;
}

#info dl {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 30em);
    margin: 0 auto 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px dashed #333;
    line-height: 2;
}

#info dt {
    width: 6em;
    font-weight: bold;
}

#info dd {
    width: calc(100% - 6em);
}

#artist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    width: min(100%, calc(800px + 2em));
    margin: 0 auto;
}

#artist li {
    width: calc(50% - 1em);
    text-align: center;
}

#artist li img {
    width: 100%;
}

#artist li.mc img {
    width: 80%;
}

#artist p {
    background: #b30236;
    background-size: 200% auto;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    font-weight: 900;
    padding: 1em;
    box-sizing: border-box;
    margin: -0.25em auto 0;
    position: relative;
    z-index: 1;
    width: fit-content;
    transform: skewX(-10deg);
    filter: drop-shadow(4px 4px 0px #ff2263);
}

#artist p span {
    display: block;
    transform: skewX(10deg);
}

#info dl:first-of-type {
    padding-top: 0.5em;
    border-top: 1px dashed #333;
}

#info dl:last-of-type {
    margin-bottom: 0;
}

#tickets .price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /*    gap: 1em;*/
    line-height: 2;
    font-size: 1.25em;
    margin-bottom: 1em;
}

#tickets .price dt {
    width: 3em;
    background: #005070;
    font-weight: bold;
    text-align: center;
    color: #fff;
    border-radius: 8px;
}

#tickets .price dd {
    width: 11em;
    text-align: right;
    font-weight: bold;
}

#tickets dd small {
    font-size: 0.75em;
}

#tickets small.notice {
    display: block;
    width: fit-content;
    font-size: 0.75em;
    margin: 0 auto 4em;
    line-height: 1.75;
}

#tickets h3 {
    font-size: min(5.5vw, 2em);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1em;
}

#tickets .sche {
    display: flex;
    flex-wrap: wrap;
    font-size: min(3.5vw, 18px);
    width: min(100%, 45em);
    margin: 0 auto 2em;
}

#tickets .sche dt {
    font-weight: bold;
    background: #005070;
    color: #fff;
    padding: 1em 0.5em;
    width: min(50%, 20em);
    text-align: center;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
}

#tickets .sche dd {
    padding: 1em 0.5em;
    width: min(50%, 25em);
    text-align: center;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    box-sizing: border-box;
    background: #fff;
}

#tickets .sche dd:first-of-type {
    border-top: 1px solid #999;
}

#tickets .point {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
}

a.btn {
    background: linear-gradient(90deg, #c12bd4, #d22d9e);
    color: #fff !important;
    display: block;
    font-size: 1.25em;
    font-weight: bold;
    margin: 0 auto;
    text-align: center;
    text-decoration: none !important;
    transition: 0.2s opacity;
    width: fit-content;
    padding: 1em 2em;
    box-sizing: border-box;
    border-radius: 0.25em;
    transition: 0.2s;
}

a.btn:hover {
    opacity: 0.75;
}

.plist {
    /* text-align: center; */
    margin-top: 4em;
    border-top: 2px dotted #aaa;
    padding-top: 2em;
}

.plist a.btn{
    font-size: 0.85em;
}

#caution ul {
    margin-left: 0.5em;
    font-size: min(3.5vw, 18px);
    margin: 0 auto 3em;
    width: min(100%, 880px);
}

#caution ul:last-of-type {
    margin: 0 auto;
}

#caution li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}

#caution h3 {
    font-size: 1.5em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1em;
}

#caution .address {
    display: block;
    text-align: center;
}

#sns .hp {
    display: block;
    width: min(100%, 320px);
    margin: 0 auto 1em;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    line-height: 2;
}

#sns img {
    width: 100%;
    border-radius: 0.5em;
    box-shadow: 0 0 4px #ccc;
}

#sns ul {
    display: flex;
    justify-content: center;
    gap: 1em;

}

#sns li {
    width: min(30%, 200px);
}

#sns a {
    transition: 0.2s;
}

#sns a:hover {
    opacity: 0.75;
}

#coope {
    background: url(../img/bg_name.webp);
    background-size: cover;
    color: #fff;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 0;
}

#coope p {
    font-weight: bold;
}

#coope span {
    display: inline-block;
}

/* SP */

@media screen and (max-width:800px) {
    .onlySp {
        display: block;
    }

    .onlyPc {
        display: none;
    }

    #header {
        min-height: auto;
    }

    #page_all {
        overflow-x: hidden;
    }

    .top_main .inner {
        padding: 1em 0 0;
    }

    nav.pagenav ul {
        flex-direction: column;
    }

    nav.pagenav {
        display: none;
        opacity: 0;
        background: rgba(0, 0, 0, 0.9);
    }

    nav.pagenav ul {
        font-size: min(4vw, 1.1em);
        padding: 72px 0 0;
    }

    nav.pagenav ul li:first-of-type {
        border-left: 0;
        border-top: 1px solid #ccc;
    }

    nav.pagenav ul li {
        width: 80%;
        border-right: 0;
        margin: 0 auto;
        border-bottom: 1px solid #ccc;
    }

    nav.pagenav.open {
        display: block;
        animation: navopen forwards 0.25s;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        inset: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    @keyframes navopen {
        0% {
            display: block;
        }

        0.1% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .navbtn {
        width: 60px;
        height: 60px;
        background: rgba(0, 0, 0, 1);
        position: fixed;
        top: -80px;
        right: 0;
        z-index: 9999;
        transition: 0.25s;
    }

    .navbtn.is-active {
        top: 0;
    }

    .navbtn span {
        display: block;
        width: 40px;
        height: 4px;
        background: #fff;
        position: absolute;
        left: 10px;
        transition: 0.25s;
    }

    .navbtn span:nth-of-type(1) {
        top: 16px;
    }

    .navbtn span:nth-of-type(2) {
        top: 28px;
    }

    .navbtn span:nth-of-type(3) {
        top: 40px;
    }

    .navbtn.open span:nth-of-type(1) {
        top: 28px;
        transform: rotate(45deg);
    }

    .navbtn.open span:nth-of-type(2) {
        opacity: 0;
    }

    .navbtn.open span:nth-of-type(3) {
        top: 28px;
        transform: rotate(-45deg);
    }

    #artist li {
        width: 100%;
    }

    #caution ul {
        padding-left: 1.5em;
    }

    #tickets small.notice {
        font-size: 0.9em;
    }

    #tickets .sche dt {
        width: 100%;
        border: 0;
    }

    #tickets .sche dt::before {
        content: "▼ ";
        display: inline;
    }

    #tickets .sche dd {
        width: 100%;
        border: 0;
    }

    .plist {
        text-align: left;
        ;
    }
}
