.nav {
    position: sticky;
    top: 0;
    background: linear-gradient(to right, #fafafa, #fff, #fafafa);
    padding: 0.5em 0;
    box-shadow: 0 0 4px #ccc;
    z-index: 9999;
}

.nav ul {
    display: flex;
    justify-content: center;
}

.nav ul li {
    border-left: 1px solid #333;
}

.nav ul li:last-of-type {
    border-right: 1px solid #333;
}

.nav ul li a {
    display: block;
    text-decoration: none;
    font-family: "Yuji Syuku", serif;
    padding: 1em 0;
    margin: 0 0.5em;
    text-align: center;
    line-height: 1;
    color: #333;
    width: 9em;
    background: linear-gradient(45deg, #f1f1f1, #fff);
}

.nav ul li a p {
    font-size: 1.25em;
}

.nav ul li a small {
    font-size: 0.75em;
}

/* loader */

#loader {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

/*背景*/
.loader,
.loader:before,
.loader:after {
    background: #000;
    -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;
    }
}

/* loader */

body {
    font-size: min(3.5vw, 16px);
    font-family: sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    vertical-align: bottom;
}

.panlist {
    text-align: left;
    font-size: 12px;
    padding-left: 1em;
    color: #fff;
    background: #000;
}

#footer #f_PC,
footer #f_SP {
    margin: 0 auto !important;
}

#sns_button {
    padding: 40px 0;
    text-align: center;
}

/* PC */

.top_main img {
    display: block;
    width: min(100%, 1920px);
    margin: 0 auto;
}

main {
    text-align: left;
    font-family: "Yuji Syuku", serif;
    font-size: min(3.5vw, 20px);
}

main section h2 {
    font-size: min(6vw, 52px);
    text-align: center;
    margin-bottom: 1em;
}

main section h2 span {
    display: flex;
    justify-content: center;
    align-items: center;
}

main section h2 span::before,
main section h2 span::after {
    content: "";
    display: block;
    width: 0.25em;
    height: 0.25em;
    margin: 0 0.5em;
    transform: rotate(45deg);
    background: #333;
}

main article section {
    width: min(90%, 1200px);
    margin: 0 auto;
    padding: 4em 0 6em;
    box-sizing: border-box;
}

main article section.staff {
    padding: 3em 0;
    margin-bottom: 3em;
}

.inner:nth-of-type(2) {
    background: url(../images/bg02.webp);
    background-size: cover;
    background-position: center;
}

.inner:nth-of-type(4) {
    background: url(../images/bg01.webp);
    background-size: cover;
    background-position: center;
}

.inner:nth-of-type(6) {
    background: url(../images/bg04.webp);
    background-size: cover;
    background-position: center;
}

.inner:nth-of-type(8) {
    background: url(../images/bg03.webp);
    background-size: cover;
    background-position: center;
}

.inner:nth-of-type(3),
.inner:nth-of-type(5) {
    background: #f2f2f2;
}

section.news .newslist {
    width: min(95%, 1200px);
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 4px #ccc;
    padding: 2em;
    box-sizing: border-box;
    height: 10em;
    overflow-y: scroll;
}

section.news .newslist li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1em;
}

section.news .newslist li:last-of-type {
    margin-bottom: 0;
}

section.news .newslist small {
    display: block;
    font-size: 14px;
    padding: 0.2em 1em 0.3em;
    background: #333;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    margin-right: 1em;
}

section.news .newslist a {
    display: block;
    color: #333;
    text-decoration-thickness: from-font;
    text-decoration-color: #666;
}

main a {
    transition: 0.25s;
}

main a:hover {
    opacity: 0.75;
}

section.intro p {
    line-height: 2;
}

section.cast dl {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

section.cast dt {
    width: 6em;
    text-align: center;
}

/*
section.cast dt ruby:nth-of-type(2) {
    margin-left: 1em;
}
*/

section.cast dd {
    display: flex;
    /*    width: 6em;*/
    text-align: left;
}

/*
section.cast dd::before {
    content: "：";
    display: block;
    width: 1em;
}
*/

section.sche img {
    display: block;
    width: min(100%, 920px);
    margin: 0 auto 2em;
    border-radius: 12px;
}

section.sche ul {
    width: 38em;
    margin: 0 auto;
}

section.sche li {
    list-style-type: disc;
    line-height: 2;
}

section.tickets .ticket_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.tickets dl {
    font-size: 1.2em;
}

section.tickets .left_box {
    width: 50%;
}

section.tickets .right_box {
    width: 50%;
}

section.tickets .left_box h3 {
    font-size: 1.5em;
    width: 90%;
    padding: 0.2em 1em;
    margin: 0 auto;
    box-sizing: border-box;
    border-bottom: 3px solid #333;
}

section.tickets .left_box h3 small {
    font-size: 0.75em;
    margin-left: 0.5em;
}

section.tickets .left_box dl {
    display: flex;
    width: 85%;
    margin: 0 auto;
    padding: 1em 0.5em;
    box-sizing: border-box;
    border-bottom: 1px solid #333;
}

section.tickets .left_box dl small {
    display: block;
    font-size: 0.75em;
}

section.tickets .left_box dt {
    width: 75%;
}

section.tickets .left_box dd {
    width: 25%;
}

section.tickets .left_box dt p::after {
    content: "※特典付き";
    font-size: 0.75em;
    display: inline-block;
    margin-left: 0.5em;
}

section.tickets .right_box dl {
    width: 90%;
    margin: 0 auto;
}

section.tickets .right_box dt {
    color: #fff;
    background: #333;
    line-height: 2;
    padding: 0 1em;
}

section.tickets .right_box dd {
    box-sizing: border-box;
    border: 1px solid #333;
    padding: 1em;
}

section.tickets .right_box dd small {
    font-size: 0.75em;
    padding: 0 0.5em;
}

section.tickets p.caution {
    text-align: center;
    padding: 2em 0 4em;
}

section.tickets h4 {
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
    align-items: center;
    text-align: center;
}

section.tickets h4 span {
    width: 12em;
}

section.tickets h4::before,
section.tickets h4::after {
    content: "";
    display: block;
    width: 8em;
    height: 1px;
    background: #333;
}

section.tickets .tickets_list {
    padding-bottom: 4em;
    text-align: center;
}

section.tickets .tickets_list:last-of-type {
    padding-bottom: 0;
}

section.tickets .tickets_list li a {
    display: block;
    text-decoration: none;
    width: 15em;
    font-size: 1.25em;
    color: #fff;
    background: linear-gradient(25deg, #000, #333, #000);
    padding: 0.5em;
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 8px;
}

section.tickets .tickets_list li {
    margin-bottom: 0.5em;
}

section.tickets .tickets_list li:last-of-type {
    margin-bottom: 0;
}

section.tickets .tickets_list.before {
    pointer-events: none;
    opacity: 0.75;
}

small.period {
    font-size: 0.8em;
    line-height: 2;
    padding-bottom: 2em;
    display: block;
    text-align: center;
}

section.access .access_wrap {
    display: flex;
    justify-content: center;
}

section.access .left_box {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

section.access .left_box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18em;
}

section.access .right_box {
    width: 90%;
    margin: 0 auto;
}

section.access .right_box iframe {
    display: block;
    width: 100%;
    height: 400px
}

section.notice h2 small {
    display: block;
    font-size: 0.5em;
}

section.notice h3 {
    font-size: 1.25em;
    padding: 0.25em;
    border-bottom: 1px solid #333;
    margin-bottom: 0.5em;
}

section.notice ul li {
    margin-bottom: 1em;
    font-size: 0.9em;
    list-style-type: disc;
    margin-left: 2em;
}

section.notice ul li:last-of-type {
    margin-bottom: 2em;
}

section.notice ul li a {
    color: #333;
}

section.notice p.caution {
    text-align: center;
}

section.staff .product {
    text-align: center;
}

section.staff .product small {
    display: inline-block;
    font-size: 0.65em;
}

ul.sns {
    display: flex;
    justify-content: center;
}

ul.sns li a {
    display: block;
    width: 200px;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 1.5em 0;
    box-sizing: border-box;
    font-size: 0.75em;
    text-align: center;
    border-radius: 8px;
}

ul.sns li img {
    display: block;
    width: 60px;
    margin: 0 auto 0.75em;
}

.copy small {
    display: block;
    text-align: center;
    padding: 3em 0;
    font-size: 0.65em;
}

/*SP*/

@media screen and (max-width:1000px) {
    #header {
        min-height: auto;
    }

    #page_all {
        overflow-x: hidden;
    }

    #pan_box {
        overflow-x: scroll;
    }

    .hamb {
        position: fixed;
        right: 0;
        top: -60px;
        width: 60px;
        height: 60px;
        box-sizing: border-box;
        background: #333;
        cursor: pointer;
        transition: 0.25s;
        z-index: 9999;
    }

    .hamb.on {
        top: 0;
    }

    .hamb span {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        display: block;
        width: 40px;
        height: 4px;
        background: #fff;
        transition: 0.25s;
    }

    .hamb span:nth-of-type(1) {
        top: 10px;
    }

    .hamb span:nth-of-type(2) {
        top: 26px;
    }

    .hamb span:nth-of-type(3) {
        top: 42px;
    }

    .hamb.is-active span:nth-of-type(1) {
        top: 26px;
        transform: rotate(45deg);
    }

    .hamb.is-active span:nth-of-type(2) {
        opacity: 0;
    }

    .hamb.is-active span:nth-of-type(3) {
        top: 26px;
        transform: rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: -100%;
        right: 0;
        display: block;
        width: 100%;
        z-index: 9998;
        padding-top: 70px;
        transition: 0.5s;
    }

    .nav ul {
        display: block;
    }

    .nav ul li a {
        width: min(90%, 800px);
        margin: 0 auto;
        border-top: 1px solid #ccc;
    }

    .nav ul li:last-of-type a {
        border-bottom: 1px solid #ccc;
    }

    .nav.is-active {
        display: block;
        top: 0;

    }

    main article section {
        margin: 0 auto;
        padding: 3em 0 4em;
    }

    section.news .newslist li {
        display: block;
        margin-bottom: 2em;
    }

    section.news .newslist small {
        font-size: 12px;
        width: 8em;
        text-align: center;
        margin-bottom: 0.5em;
    }

    section.sche ul {
        width: 90%;
    }

    section.tickets .ticket_wrap {
        flex-wrap: wrap;
    }

    section.tickets .left_box,
    section.tickets .right_box {
        width: 100%;
    }

    section.tickets .left_box {
        margin-bottom: 2em;
    }

    section.tickets h4::before,
    section.tickets h4::after {
        width: 2em;
    }

    section.access .access_wrap {
        flex-wrap: wrap;
    }

    section.access .left_box {
        order: 2;
        box-sizing: border-box;
        padding: 2em;
        background: rgba(255, 255, 255, 0.85);
        width: 90%;
    }

    section.access .right_box {
        order: 1;
    }

    section.access .right_box iframe {
        height: auto;
        aspect-ratio: 1/0.8;
    }

    section.access .left_box p {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
    }

    main article section.staff {
        margin-bottom: 3em;
    }
}
