@charset "UTF-8";

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

/*PC--------------------------------------------------------------------------------------*/

#content {
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    font-size: clamp(10px, 16 / 1200 * 100vw, 16px);
    line-height: 1.8;
    line-break: strict;
    word-break: break-all;
    text-align: justify;
    text-justify: distribute;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: url(../images/common/bg.png) fixed;
    color: #fff;
}

#content .bg-ill {
    position: fixed;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}

#content .bg-ill .ill {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 64.42857%;
    position: relative;
    width: 100%;
    background: url("../images/common/bg2.png") no-repeat;
    text-indent: -9999px;
    background-size: cover;
    display: block;
}

#content p:not(last-child) {
    margin: 0 0 1.5em 0;
}

#content p:last-child {
    margin: 0;
}

#content img {
    vertical-align: bottom;
}

#content a {
    text-decoration: none;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    color: #c9027a;
}

#content a:hover {
    opacity: 0.7;
}

nav {
    display: block;
    position: fixed;
    top: 0;
    right: -900px;
    bottom: 0;
    width: 450px;
    background: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 999;
    opacity: 0;
}

.open nav {
    right: 0;
    opacity: 1;
}

nav .inner {
    padding: 15px 15px 25px 15px;
}

nav .inner p{
	text-align: center;
}

nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
	margin-bottom: 1.5em;
}

nav .inner ul li {
    display: flex;
    position: relative;
    margin: 0;
    justify-content: center;
    align-items: center;
	border-bottom: 1px solid #d1aaf9;
}

nav .inner ul li a {
    display: block;
    width: 100%;
    color: #333;
    text-align: center;
    padding: 1em 0;
    text-decoration: none;
    transition-duration: 0.2s;
    font-weight: bold;
	font-size: 1.2em;
}

nav .inner ul li a:hover {
    opacity: 0.7;
}

nav a.nav__logo {
    width: 200px !important;
    justify-content: center;
    align-items: center;
}

.nav__logo a,
.nav__logo img{
    width: 100%;
    padding: 0;
}

nav .inner ul li a img {
    width: 40%;
    padding: 0;
}

.toggle_btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    transition: all .5s;
    cursor: pointer;
    z-index: 1000;
    background: #c9027a;
    -moz-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
    -webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
    box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 20%;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 30%;
}

.toggle_btn span:nth-child(2) {
    top: 50%;
}

.toggle_btn span:nth-child(3) {
    top: 70%;
}

.open .toggle_btn {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

.open .toggle_btn span {
    background-color: #c9027a;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
}

#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    z-index: 998;
    cursor: pointer;
}

.rce-wrap{
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.rce-wrap .rce-header {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 66.66666%;
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
}

.rce-wrap .rce-header .mainpic-pos {
    position: absolute;
    top: 0.000000%;
    left: 6.416667%;
    width: 79.166667%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: mainpicFadeIn 2s ease 0s 1 normal;
    -webkit-animation: mainpicFadeIn 2s ease 0s 1 normal;
}

@keyframes mainpicFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes mainpicFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rce-wrap .rce-header .mainpic-pos .mainpic {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 70.73684%;
    position: relative;
    width: 100%;
    background: url("../images/common/mainpic.jpg") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.rce-wrap .rce-header .logo-pos {
    position: absolute;
    top: 65.750000%;
    left: 0.750000%;
    width: 56.416667%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: logoFadeIn 2s ease 0s 1 normal;
    -webkit-animation: logoFadeIn 2s ease 0s 1 normal;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    50% {
        opacity: 0;
        transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    50% {
        opacity: 0;
        transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.rce-wrap .rce-header .logo-pos .rce-logo {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 37.81388%;
    position: relative;
    width: 100%;
    background: url("../images/common/logo.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.rce-wrap .rce-header .schedule-pos {
    position: absolute;
    top: 79.500000%;
    left: 59.583333%;
    width: 40.500000%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: scheduleFadeIn 2s ease 0s 1 normal;
    -webkit-animation: scheduleFadeIn 2s ease 0s 1 normal;
}

@keyframes scheduleFadeIn {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    50% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes scheduleFadeIn {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    50% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.rce-wrap .rce-header .schedule-pos .schedule {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 32.09877%;
    position: relative;
    width: 100%;
    background: url("../images/common/schedule.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.rce-wrap .rce-header .read-pos {
    position: absolute;
    top: 3.875000%;
    left: 79.000000%;
    width: 17.500000%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: readFadeIn 2s ease 0s 1 normal;
    -webkit-animation: readFadeIn 2s ease 0s 1 normal;
}

@keyframes readFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15%);
    }

    50% {
        opacity: 0;
        transform: translateY(-15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes readFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15%);
    }

    50% {
        opacity: 0;
        transform: translateY(-15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rce-wrap .rce-header .read-pos .read {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 266.66667%;
    position: relative;
    width: 100%;
    background: url("../images/common/read.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.rce-wrap .rce-header .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
}

.rce-wrap h2{
    height: 70px;
    margin: 100px 0;
    position: relative;
}

.rce-wrap h2 .midashi{
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.rce-wrap h2 .midashi img{
    width: 100%;
}

.rce-wrap h2::before{
    content: "";
    position: absolute;
    background: url(../images/common/h2bg.png) no-repeat;
    background-size: 110px 138px;
    z-index: -1;
    top: -54px;
    left: calc(50% - 49px);
    width: 110px;
    height: 138px;
}

.rce-wrap h2::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    z-index: -2;
    background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.49763655462184875) 10%, rgba(255,255,255,0.49763655462184875) 90%, rgba(255,255,255,0) 100%);
    top: 50%;
    left: 0;
}

.rce-wrap hr{
    border: none;
    border-top: 1px solid #666;
    margin: 50px 0;
}

.title01{
    display: block;
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
    color: #d1aaf9;
    font-size: 1.2em;
}

.title02{
    display: block;
    width: 100%;
    max-width: max-content;
    margin: 0 auto 100px auto;
}

.title02 span.underline{
    font-size: 2em;
    background:linear-gradient(transparent 70%, #c9027a 70%);
    padding: 0 0.3em 0.2em 0.3em;
    line-height: 1.5;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.rce-wrap .info-wrap{
    display: flex;
    flex-wrap: wrap;
}

.rce-wrap .info-wrap .outline{
    flex: 1;
    padding-right: 2em;
    box-sizing: border-box;
}

.rce-wrap .info-wrap .xtimeline{
    width: 45%;
}

.rce-wrap dl.info{
    width: 100%;
    margin: 0;
}

.rce-wrap dl.info dt{
border: 1px solid #862e79;
line-height: 1;
font-size: 0.9em;
display: inline-block;
margin: 0 0 0.5em 0;
padding: 0.3em;
background: #000;
color: #d1aaf9;
}

.rce-wrap dl.info dd{
margin: 0 0 1.5em 0;
font-size: 1.1em;
}

.rce-wrap h3{
    color: #d1aaf9;
    font-size: 1.2em;
    font-weight: bold;
    border-left: 5px solid #862e79;
    padding-left: 0.5em;
    margin: 40px 0;
    font-weight: bold;
}

.rce-wrap h5.ticketbuy{
    margin: 1.5em 0 0.5em 0;
    font-size: 1.1em;
}

.rce-wrap dl.ticket{
    width: 100%;
}

.rce-wrap dl.ticket dt{
line-height: 1;
display: inline-block;
margin: 0;
padding: 0.3em;
background: #862e79;
}

.rce-wrap dl.ticket dd{
margin: 0 0 1.5em 0;
font-size: 1.1em;
}

.rce-wrap .price,
.rce-wrap .date{
    font-size: 1.6em;
    font-family: 'Oswald', sans-serif;
    margin-right: 0.1em;
    vertical-align: baseline;
    font-weight: 700;
}

.rce-wrap .venue{
    font-size: 1.3em;
    font-weight: bold;
}

.rce-wrap .game-wrap{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.rce-wrap .game-wrap .package{
    width: 23%;
}

.rce-wrap .game-wrap .package img{
    width: 100%;
}

.rce-wrap .game-wrap .spec{
    flex: 1;
    padding-left: 3em;
    box-sizing: border-box;
}

.rce-wrap .game-wrap .spec h4{
    color: #d1aaf9;
    font-weight: bold;
    font-size: 1.4em;
    margin: 0;
    line-height: 1.3;
}

.rce-wrap .game-wrap .spec h4 span{
    font-size: 0.8em;
}

.rce-wrap dl.spec-list{
    width: 100%;
    font-size: 0.9em;
    margin-bottom: 1.5em;
}

.rce-wrap dl.spec-list dt{
    float: left;
    width: 7em;
    color: #999;
}

.rce-wrap dl.spec-list dd{
    margin: 0 0 0.5em 7em;
}

.rce-wrap .link-btn a{
    background: #c9027a;
    display: block;
    text-align: center;
    padding: 0.3em 1.5em;
    box-sizing: border-box;
    border-radius: 50px;
    color: #fff!important;
    margin-top: 1.5em;
    max-width: 500px;
    width: 100%;
}

.rce-wrap .-buy a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f07a";
    margin-right: 0.5em;
    font-weight: bold;
    color: #000;
}

.rce-wrap .-official a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f06e";
    margin-right: 0.5em;
    font-weight: bold;
    color: #000;
}

.rce-wrap .-other a{
    margin-top: 0.3em!important;
}

.rce-wrap .-other a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    margin-right: 0.5em;
    font-weight: bold;
    color: #000;
}

.rce-wrap ul.cast-wrap{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5% -3% -1.5%;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.rce-wrap ul.cast-wrap li{
    width: 25%;
    padding: 0 1.5%;
    box-sizing: border-box;
    margin-bottom: 3%;
    text-align: center;
}

.rce-wrap ul.cast-wrap li img{
    width: 100%;
    border-radius: 10px;
}

.rce-wrap ul.cast-wrap li h5{
    font-size: 1.4em;
    margin: 1em 0 0.2em 0;
    line-height: 1;
}

.rce-wrap ul.cast-wrap li p{
    color: #d1aaf9;
}

.rce-wrap ul.pic-wrap{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 100px -1.5% 0 -1.5%;
    padding: 0;
}

.rce-wrap ul.pic-wrap li{
    width: calc(100% / 3);
    padding: 0 1.5%;
    box-sizing: border-box;
}

.rce-wrap ul.pic-wrap li img{
    width: 100%;
    -moz-box-shadow: 0px 0px 5px rgba(200, 170, 250, 1);
	-webkit-box-shadow: 0px 0px 5px rgba(200, 170, 250, 1);
	box-shadow: 0px 0px 5px rgba(200, 170, 250, 1);
}

.rce-wrap .goodsall,
.rce-wrap .ticketbonus{
    width: 100%;
    margin: 50px 0;
}

.rce-wrap .goodspay{
    max-width: 600px;
    width: 100%;
    margin: 50px auto;
}

.rce-wrap .goodsall img,
.rce-wrap .ticketbonus img,
.rce-wrap .goodspay img{
    width: 100%;
}

.rce-wrap ul.goods-wrap{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5% 0 -1.5%;
    padding: 0;
}

.rce-wrap ul.goods-wrap li{
    width: calc(100% / 4);
    padding: 0 1.5%;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.rce-wrap ul.goods-wrap li h5{
    font-size: 1.1em;
    margin: 0.5em 0 0 0;
    line-height: 1.5;
}

.rce-wrap ul.goods-wrap li .sub{
    font-size: 0.8em;
    color: #d1aaf9;
    margin-top: 1em;
    line-height: 1.5;
}

.rce-wrap ul.goods-wrap li img{
    width: 100%;
    border-radius: 10px;
}

#page-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    margin-bottom: 0;
    z-index: 200;
}

#page-top img {
    width: 100%;
}

.rce-footer{
    width: 100%;
    padding: 50px 0;
    text-align: center;
    background: #3d0053;
    color: #fff;
    font-size: 0.9em;
    z-index: 10;
    position: relative;
    margin-top: 100px;
}

.over{
    opacity: 0.3;
}


.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}

.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}





/*RESPONSIVE--------------------------------------------------------------------------------------*/


@media only screen and (max-width: 1000px) {


}

/*MOBILE--------------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px) {

    span.br::before {
		content: "\A";
		white-space: pre;
	}

    #content {
        font-size: clamp(10px, 14 / 375 * 100vw, 14px);
        line-height: 1.8;
    }

    #content .bg-ill .ill {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 100%;
        position: relative;
        width: 100%;
        background: url("../images/common/bg2.png") no-repeat center top;
        text-indent: -9999px;
        background-size: cover;
        display: block;
    }

    nav {
        width: 100%;
    }

    .toggle_btn {
        top: 0;
        right: 0;
    }

    .rce-wrap h2{
        height: 56px;
        margin: 10vh 0;
        position: relative;
    }
    
    .rce-wrap h2 .midashi{
        max-width: 200px;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .rce-wrap h2::before{
        content: "";
        position: absolute;
        background: url(../images/common/h2bg.png) no-repeat;
        background-size: 90px 113px;
        z-index: -1;
        top: -44px;
        left: calc(50% - 40px);
        width: 90px;
        height: 113px;
    }

    .rce-wrap .rce-header {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 150%;
        position: relative;
        width: 100vw;
        display: block;
        -webkit-transition: all 500ms 0s ease;
        transition: all 500ms 0s ease;
        margin: 0 calc(50% - 50vw);
    }
    
    .rce-wrap .rce-header .mainpic-pos {
        position: absolute;
        top: 0.000000%;
        left: 0%;
        width: 100%;
        -webkit-transition: all 500ms 0s ease;
        transition: all 500ms 0s ease;
        animation: mainpicFadeIn 2s ease 0s 1 normal;
        -webkit-animation: mainpicFadeIn 2s ease 0s 1 normal;
    }

    .rce-wrap .rce-header .logo-pos {
        position: absolute;
        top: 57%;
        left: 5%;
        width: 90%;
        -webkit-transition: all 500ms 0s ease;
        transition: all 500ms 0s ease;
        animation: logoFadeIn 2s ease 0s 1 normal;
        -webkit-animation: logoFadeIn 2s ease 0s 1 normal;
    }

    .rce-wrap .rce-header .schedule-pos {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 20%;
        width: 60%;
        -webkit-transition: all 500ms 0s ease;
        transition: all 500ms 0s ease;
        animation: scheduleFadeIn 2s ease 0s 1 normal;
        -webkit-animation: scheduleFadeIn 2s ease 0s 1 normal;
    }

    .rce-wrap .rce-header .read-pos {
        position: absolute;
        top: 38%;
        left: 5%;
        width: 90%;
        -webkit-transition: all 500ms 0s ease;
        transition: all 500ms 0s ease;
        animation: readFadeIn 2s ease 0s 1 normal;
        -webkit-animation: readFadeIn 2s ease 0s 1 normal;
    }
    

    .rce-wrap .rce-header .read-pos .read {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 25.04201%;
        position: relative;
        width: 100%;
        background: url("../images/common/read2.png") no-repeat;
        background-size: cover;
        display: block;
        overflow: hidden;
        text-indent: -9999px;
    }
    

    .rce-wrap .info-wrap .outline{
        flex: auto;
        padding-right: 0;
        box-sizing: border-box;
        margin-bottom: 3vh;
        width: 100%;
    }
    
    .rce-wrap .info-wrap .xtimeline{
        width: 100%;
    }

    .title01{
        display: block;
        width: 100%;
        max-width: max-content;
        margin: 0 auto;
        color: #d1aaf9;
        font-size: 1em;
        text-align: center;
    }

    .title02{
        margin: 1vh auto 10vh auto;
        text-align: center;
    }

    .title02 span.underline{
        font-size: 1.7em;
        background:linear-gradient(transparent 70%, #c9027a 70%);
        padding: 0 0 0.2em 0;
        line-height: 1.6;
        font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    }

    .rce-wrap h3{
        margin: 4vh 0;
    }

    .rce-wrap hr{
        border: none;
        border-top: 1px solid #666;
        margin: 5vh 0;
    }

    .rce-wrap .game-wrap{
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10vh;
    }
    
    .rce-wrap .game-wrap .package{
        width: 60%;
        margin: 0 auto;
        display: block;
    }
    
    .rce-wrap .game-wrap .spec{
        flex: auto;
        padding-left: 0;
        width: 100%;
        box-sizing: border-box;
        margin-top: 5vh;
    }

    .rce-wrap .game-wrap .spec h4{
        text-align: center;
        margin-bottom: 5vh;
    }

    .rce-wrap dl.spec-list{
        width: 100%;
        font-size: 0.9em;
        margin-bottom: 5vh;
    }
    
    .rce-wrap ul.cast-wrap{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -2% -3vh -2%;
        list-style: none;
        padding: 0;
        justify-content: center;
    }
    
    .rce-wrap ul.cast-wrap li{
        width: 50%;
        padding: 0 2%;
        box-sizing: border-box;
        margin-bottom: 3vh;
        text-align: center;
    }

    .rce-wrap ul.cast-wrap li p{
        font-size: 0.7em;
    }

    .rce-wrap ul.pic-wrap{
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        margin: 10vh -1.5% -3% -1.5%;
        padding: 0;
        justify-content: center;
    }

    .rce-wrap ul.pic-wrap li{
        width: 50%;
        margin-bottom: 3%;
    }

    .rce-wrap .goodsall,
.rce-wrap .ticketbonus{
    width: 100%;
    margin: 5vh 0;
}


    .rce-wrap ul.goods-wrap li{
        width: calc(100% / 2);
        padding: 0 1.5%;
        box-sizing: border-box;
        margin-bottom: 3vh;
    }

    .rce-wrap ul.goods-wrap li h5{
        font-size: 1em;
    }
    

    #page-top {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 50px;
        margin-bottom: 0;
        z-index: 200;
    }

    .rce-footer{
        width: 100%;
        padding: 5vh 15px;
        box-sizing: border-box;
        text-align: center;
        background: #3d0053;
        color: #fff;
        font-size: 0.9em;
        margin-top: 10vh;
    }

}