/* 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: #974097;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    transition: opacity 0.5s;
}

/*背景*/
.loader,
.loader:before,
.loader:after {
    background: #fff;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    height: 4em;
    width: 1em;
    top: 50%;
}

.loader {
    color: #d24533;
    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 */

.zen {
    font-family: "Zen Antique", serif;
}

.red {
    color: #cc2d27;
}

.big {
    font-size: 1.1em;
}

.margin-b{
    display: inline-block;
    margin-bottom: 0.5em;
}

.onlySp {
    display: none;
}

.bold {
    font-weight: 900;
}

body {
    background: #fff;
}

.top_main,
main {
    font-family: "Zen Old Mincho", serif;
    font-size: min(3.75vw, 20px);
    color: #333;
    line-height: 1.5;
}

img {
    vertical-align: bottom;
}

#pan_box {
    background: #000;
    color: #fff;
    overflow-x: scroll;
    scrollbar-width: none;
}

#pan_box::-webkit-scrollbar {
    display: none;
}

.in {
    display: flex;
    font-size: 12px;
    line-height: 28px;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding-left: 1em;
    white-space: nowrap;
}

.in a {
    text-decoration: none;
    color: #fff;
}

.in li::after {
    content: ">";
    display: inline-block;
    padding: 0 1em;
}

.in li:last-of-type::after {
    content: "";
}

#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 */
.bgbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 110vw;
    height: 110vh;
    background-image: url(../img/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

main {
    text-align: left;
}

.inner,
article {
    width: min(90%, 1080px);
    margin: 0 auto;
}

.kv {
    width: 100%;
    background: #974097;
    padding: 2em 0;
    box-sizing: border-box;
}

.kv .imgbox {
    width: min(100%, 720px);
    aspect-ratio: 1/1;
    background-image: url(../img/kv.webp);
    background-size: 105% auto;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 auto;
    filter: blur(6px);
    transition: 1s;
}

.imgbox.active {
    animation: blur 2s forwards;
}

@keyframes blur {
    0% {
        filter: blur(6px);
        background-size: 105% auto;
    }

    50% {
        filter: blur(0px);
    }

    100% {
        filter: blur(0px);
        background-size: 100% auto;
    }
}

.top_main {
    background-color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 2em;
    padding: 2em 0;
}

.top_main .inner {
    padding: 0em 1em;
}

.top_box {
    /*
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
*/
}

.top_box .group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.top_box .catch {
    width: 100%;
}

.top_box figure {
    width: calc(30% - 20px);
    box-shadow: 0 0 4px #852d86;
}

.top_box figure img {
    display: block;
    width: 100%;
    border: 4px solid #fff;
    box-sizing: border-box;
}

.top_box figure a{
    text-decoration: none;
}

.top_box figcaption {
    /*    background: #cc2d27;*/
    background: #852d86;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    -webkit-text-stroke: 0.25em rgba(0, 0, 0, 0.35);
    text-stroke: 0.25em rgba(0, 0, 0, 0.35);
    paint-order: stroke;
}

.top_box h1 {
    font-size: min(11vw, 60px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5em;
    -webkit-text-stroke: 0.1em #fff;
    text-stroke: 0.1em #fff;
    paint-order: stroke;
}

.top_box h1 span {
    display: block;
    font-size: 0.5em;
    margin-bottom: 0.5em;
}

.top_box h1 strong {
    display: block;
    margin-left: -0.5em;
}

.top_box h1 span,
.top_box h1 strong {
    /*    filter: drop-shadow(0 0 2px #b994ff);*/
}

.top_box h1 img {
    display: block;
    width: 8em;
    padding-left: 0.5em;
}

.top_box .date {
    display: block;
    font-size: 0.5em;
    padding-top: 1em;
    line-height: 1.5;
    margin-left: 0;
}

.top_box h1::after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, #832a84, transparent);
    margin-top: 0.5em;
}

.top_box p {
    line-height: 2;
}

main article {
    background: rgba(255, 255, 255, 0.8);
    /*
    border-width: 2px;
    border-style: solid;
    border-image-source: linear-gradient(45deg, #cc2d27, #ff655f, #cc2d27, #ff655f, #cc2d27);
    border-image-slice: 1;
*/
    box-sizing: border-box;
    margin-bottom: 2em;
}

main section {
    padding: 2em;
}

section h2 {
    font-size: min(7vw, 40px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    margin-bottom: 1em;
    font-weight: 900;
}

section h2::before,
section h2::after {
    content: "";
    width: 0.35em;
    height: 0.35em;
    background: #333;
    transform: rotate(45deg);
    margin: 0.2em 0.5em 0;
}

section h2 small {
    font-size: min(0.5em, 16px);
    display: inline-block;
    padding-left: 0.5em;
}

section#about dl {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    border-bottom: 0;
    background: #fff;
}

section#about dt {
    width: 6em;
    background: #852d86;
    color: #fff;
    padding: 1em 0;
    text-align: center;
    border-bottom: 1px solid #fff;
    font-weight: 600;
}

section#about dt:last-of-type {
    border-bottom: 0;
}

section#about dd {
    width: calc(100% - 6em);
    padding: 1em;
    border-bottom: 1px solid #ccc;
}

section#about dd img {
    display: block;
    /*    width: min(100%, 440px);*/
    width: 100%;
    margin-bottom: 0.5em;
    cursor: pointer;
}

section#about .ticket {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    width: 16em;
    text-align: center;
    text-decoration: none;
    font-size: min(3.25vw, 20px);
    padding: 1em;
    border-radius: 8px;
    color: #fff;
/*    background: linear-gradient(45deg, #da4b45, #cc2d27, #da4b45);*/
    background: #cc2d27;
    outline: 1px solid #fff;
    outline-offset: -2px;
    margin-top: 1em;
}

section#about .ticket::after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: url(../img/icon_window.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

section#about dd li {
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 1em;
    padding: 0.5em;
}

section#about dd li.coming {
    filter: grayscale(1);
    pointer-events: none;
}

section#about dd li small {
    display: block;
    font-size: 0.9em;
    margin: 0.25em 0;
}

section#about dd small span {
    display: inline-block;
    background: #fff;
    color: #333;
    border: 1px solid #999;
    padding: 0.15em 1em 0.25em;
    font-weight: bold;
    font-size: 0.85em;
    text-align: center;
    border-radius: 8px;
    margin-right: 0.5em;
}

section#about dd ul strong {
    display: block;
    font-weight: 900;
    padding-left: 0.25em;
    margin-bottom: 1em;
    padding-bottom: 0.25em;
    border-bottom: 1px solid #ccc;
}

section#about dd ul strong::before {
    content: "▼";
    display: inline-block;
    font-weight: 900;
    margin-right: 0.25em;
}

section#cast h3 {
    font-size: min(5vw, 40px);
    font-weight: 900;
    color: #fff;
    padding: 0.25em 0.5em;
}

section#cast h3 small {
    display: inline-block;
    font-size: 0.5em;
}

section#cast .am h3 {
    background: #cd5e3c;
}

section#cast .pm h3 {
    background: #393e4f;
}

section#cast dl {
    background: #fff;
    border-top: 0;
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
}

section#cast .am dl {
    border: 2px solid #cd5e3c;
    margin-bottom: 1em;
}

section#cast .pm dl {
    border: 2px solid #393e4f;
    margin-bottom: 2em;
}

section#cast dl.mc {
    width: 80%;
    margin: 0 auto;
}

section#cast dl dt {
    width: min(100%, 200px);
    margin-bottom: 1em;
}

section#cast dl dd {
    width: calc(100% - 200px);
    margin-bottom: 1em;
    padding-left: 1em;
}

section#cast dt img {
    display: block;
    width: 100%;
}

section#cast dd strong {
    line-height: 1;
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: min(3.75vw, 24px);
    padding: 0.25em 0;
    background: url(../img/bg.webp);
    background-size: cover;
    padding: 0.25em 0.5em;
    display: flex;
    align-items: center;
    gap: 0.25em;
    border-bottom: 1px solid #852d86;
}

section#cast dd strong span {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #cc2d27;
    border-radius: 8px;
    padding: 0.25em 1em 0.4em;
}

section#cast ol {
    padding-left: 1em;
    font-size: min(3.5vw, 16px);
    line-height: 2;
}

.comment {
    display: none;
}

.lity-content .comment {
    display: block;
    background: #fff;
    padding: 1em;
    margin: 0 auto;
    border-radius: 8px;
    max-height: 90% !important;
}

.lity-container {
    overflow-y: scroll;
    width: min(90%, 1200px);
    /*    max-height: 90% !important;*/
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lity-container::-webkit-acrollbar{
    display: none;
}

.comment strong {
    line-height: 1;
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: min(5vw, 24px);
    padding: 0.25em 0;
    background: url(../img/bg.webp);
    background-size: cover;
    padding: 0.25em 0.5em;
    display: flex;
    align-items: center;
    gap: 0.25em;
    border-bottom: 1px solid #852d86;
}

.comment .comment_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.comment img {
    display: block;
    width: 30%;
    margin-bottom: 0.5em;
}

.comment p {
    width: calc(70% - 1em);
    font-size: 0.9em;
    line-height: 1.75;
}

section#cast dl dd a {
    padding: 0.5em 1em;
    background: #852d86;
    color: #fff;
    border: 1px solid #333;
    border-radius: 0.5em;
    text-decoration: none;
    display: block;
    width: min(100%, 14em);
    font-size: 16px;
    text-align: center;
    font-family: "Zen Antique", serif;
    line-height: 1;
    transition: 0.25s;
    margin-left: 1em;
    margin: 1em 0 1em 1em;
}

section#cast dl dd a:hover {
    opacity: 0.75;
}

.lity-close {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.9);
    width: 48px;
    height: 48px;
}

section#cast .special {
    background: linear-gradient(to right, #b89b3c, #e6c76e, #fff3b0, #b89b3c);
    color: #000;
}

.pm dl dt:last-of-type img {
    border: 2px solid;
    border-image: linear-gradient(45deg, #b89b3c, #e6c76e, #fff3b0, #b89b3c);
    border-image-slice: 1;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
    color: #333;
    background: #fff;
    width: min(90%, 1080px);
    margin: 0 auto;
    text-align: center;
    padding: 1.5em 0;
    outline: 1px solid #ccc;
    outline-offset: -4px;
}

.contact::after {
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/icon_window_b.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



/* SP */

@media screen and (max-width:800px) {
    .onlySp {
        display: block;
    }

    #header {
        min-height: auto;
    }

    #page_all {
        overflow-x: hidden;
    }

    .top_main {
        margin: 0 auto 2em;
    }

    .top_box {
        text-align: center;
    }

    .top_box h1 {
        width: 100%;
    }

    .top_box h1::after {
        width: 100%;
        background: linear-gradient(to right, transparent, #832a84, transparent);
    }

    .top_box h1 strong {
        margin-left: 0;
    }

    .top_box h1 img {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .top_box .catch {
        width: 100%;
    }

    .top_box figure {
        width: min(100%, 280px);
        margin: 0 auto 1em;
    }

    .top_box p {
        margin-bottom: 1em;
    }

    .top_box .date {
        font-size: 0.45em;
    }

    main section {
        padding: 2em 1em;
    }

    section#about dd small span {
        display: block;
    }

    section#cast dl {
        flex-direction: column;
    }

    section#cast dl dt {
        width: min(100%, 320px);
        margin: 0 auto;
    }

    section#cast dl dd {
        width: 100%;
        padding: 0;
    }

    section#about .ticket {
        width: 100%;
    }

    section#cast dd strong {
        display: block;
        text-align: center;
        padding: 1em 0;
    }

    section#cast h3 small {
        font-size: 0.65em;
    }

    /*
    section#cast ol {
        margin-bottom: 2em;
    }
*/

    .lity-content .comment {
        margin: 1em auto 0;
    }

    .comment img {
        width: min(100%, 420px);
        margin: 0 auto 0.5em;
    }

    .comment p {
        width: 100%;
    }
    
    section#cast dl dd a{
        margin: 1em auto;
    }
}
