@charset "UTF-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 1.8;
    background: #000000;
    -webkit-text-size-adjust: auto;
}
body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-size: cover;
}


html, body {
    width: 100%;
    height: 100%;
    font-feature-settings: "palt";
}

a {
    outline: none;
    text-decoration: none;
}
a img {
    border: none;
    outline: none;
}
section, div, span {
    box-sizing: border-box;
}



/* --- L O A D I N G --- */

#fade {
    width: 150%;
    height: 150vh;
    display: none;
    background-color: rgba(0,0,0,1);
    position: fixed;
    left: -10%;
    top: 0;
    z-index: 20;
    
    -webkit-transform: rotate(-8deg) translateX(-5%) scale(1.25);
    transform: rotate(-8deg) translateX(-5%) scale(1.25);
}
#loader {
    width: 280px;
    height: 280px;
    position: fixed;
    background: url(../img/loading.png) no-repeat center center;
    background-size: 100% auto;
    top: 50%;
    left: 50%;
    margin-left: -140px;
    margin-top: -140px;
    z-index: 21;
    
    animation: rotate-anime 12s linear infinite;
}
@keyframes rotate-anime {
    0%    { transform: rotate(0); }
    100%  { transform: rotate(360deg); }
}



/* --- T O P --- */

.wrap {
    width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

#top {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    background-size: 100% auto;
}


.tp-pic {
    width: 100%;
    height: auto;
    background: url(../img/contents_story_sp.jpg) no-repeat left top;
    background-size: 100% auto;
    position: absolute;
    top: 0px;
    left: 0;
    
    -webkit-transform: translateX(0);
    transform: translateX(0);
}.tp-pic::before {
    content: "";
    display: block;
    padding-bottom: 700px;
}


.tp-title_T {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/top-title_T.png") no-repeat left top;
    background-size: 100% auto;
    
    -webkit-transform: translate(2%,30%);
    transform: translate(2%,30%);
    opacity: 0;
}
.tp-title_B {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    bottom: 100px;
    left: 0;
    background: url("../img/top-title_B.png") no-repeat left top;
    background-size: 100% auto;
    
    -webkit-transform: translate(-2%,-30%);
    transform: translate(-2%,-30%);
    opacity: 0;
}
.tp-title_T::before, .tp-title_B::before {
    content: "";
    display: block;
    padding-bottom: 33.4%;
}
.tp-txt {
    width: 57%;
    height: auto;
    display: block;
    position: absolute;
    top: 40px;
    right: 167px;
    background-size: 100% auto;
    
    -webkit-transform: translate(-3%,-18%);
    transform: translate(-3%,-18%);
    opacity: 0;
}
.tp-txt::before {
    content: "";
    display: block;
    padding-bottom: 20%;
}
.tp-day {
    width: 50%;
    height: auto;
    display: block;
    position: absolute;
    bottom: 58px;
    right: 0;
    background: url("../img/top-daysB.png") no-repeat left top;
    background-size: 100% auto;
    
    -webkit-transform: translate(-20%,0);
    transform: translate(-20%,0);
    opacity: 0;
}
.tp-day::before {
    content: "";
    display: block;
    padding-bottom: 20.6%;
}

.yt {
    display: none;
}




/* --- trigger --- */

#menubt {
    width: 80px;
    height: 80px;
    position: fixed;
    top: 10px;
    right: 30px;
    z-index: 15;
    cursor: pointer;
}
#menubt::before {
    content: "";
    display: block;
    width: 92px;
    height: 92px;
    position: absolute;
    top: 4px;
    left: 4px;
    box-sizing: border-box;
    border: 4px solid #fff;
}
.menu-trigger,
.menu-trigger span {
    display: block;
    
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
.menu-trigger {
    position: absolute;
    width: 68px;
    height: 40px;
    top: 16px;
    left: 16px;
}
.menu-trigger span:nth-of-type(-n+3) {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger span:nth-of-type(2) {
    top: 18px;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}
.menu-trigger span:nth-of-type(4) {
    position: absolute;
    left: 0;
    bottom: -29px;
    width: 100%;
    height: 20px;
    text-align: center;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin: 0;
    line-height: 20px;
    opacity: 1;
}
.menu-trigger.active span:nth-of-type(1) {
    width: 150%;
    -webkit-transform: translateX(-16px) translateY(32px) rotate(-135deg);
    transform: translateX(-16px) translateY(32px) rotate(-135deg);
}
.menu-trigger.active span:nth-of-type(2) {
    top: 16px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}
.menu-trigger.active span:nth-of-type(3) {
    width: 150%;
    -webkit-transform: translateX(-16px) translateY(-4px) rotate(135deg);
    transform: translateX(-16px) translateY(-4px) rotate(135deg);
}
.menu-trigger.active span:nth-of-type(4) {
    opacity: 0;
}




/* --- M E N U --- */

.menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    margin: 0;
    padding: 0;
    display: none;
    z-index: 10;
    -webkit-overflow-scrolling: touch;
}
.menu-wrap {
    width: 100%;
    height: 75vh;
    margin: 0;
    
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}
.menu-main {
    width: 800px;
    height: 600px;
    
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    
    flex-direction: row-reverse;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
}

.menu-main div {
    width: 65px;
    height: auto;
    display: block;
    border-left: 1px solid rgba(255,255,255,0.9);
    padding: 30px 0 0 0;
    
    -webkit-transition: all 0.40s ease-in-out;
    transition: all 0.40s ease-in-out;
}
.menu-main div:first-of-type {
    border-right: 1px solid rgba(255,255,255,0.8);
}
.mn-od{
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}
.mn-ev {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}
.mn-od_after {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.mn-ev_after {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.menu-main div img {
    width: 32px;
    height: auto;
    display: block;
    margin-left: 19px;
    opacity: 1;
    
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-main div a:hover img {
    opacity: 0.7;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}
.menu-main div.yet img {
    opacity: 0.4;
}






/* --- C O N T E N T S --- */

.ct-title {
    width: 100%;
    height: 20px;
    display: block;
    text-align: center;
    margin: 0 0 100px 0;
}
.ct-title img {
    width: auto;
    height: 100%;
    display: inline-block;
}





/* --- B A N N E R --- */

#ct-banner {
    width: 100%;
    height: auto;
    background: #00001e;
    padding: 80px 0 0 0;
    text-align: center;
}
#ct-banner img {
    width: 80%;
    height: auto;
    display: inline-block;
    margin: 0 0 20px 0;
}




/* --- T W I T T E R --- */

#ct-twitter {
    width: 100%;
    height: auto;
    background: #00001e;
    padding: 80px 0;
    text-align: center;
}




/* --- T R A I L E R --- */

#ct-trailer {
    width: 100%;
    height: auto;
    padding: 0px 0 30px 0;

}
.trailer-main {
    width: 100%;
    height: auto;
    
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}
.mv-thum {
    width: 650px;
    height: auto;
    display: block;
    margin: 0 0 100px 0;
    overflow: hidden;
    text-align: center;
}
.mv-thum div:nth-of-type(1) {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
.mv-thum div:nth-of-type(1)::after {
    content: "\f167";
    display: block;
    width: 100%;
    height: 100%;
    font-family: "Font Awesome 5 Brands";
    font-weight: 900;
    color: rgba(223,0,17,0.75);
    background: rgba(223,0,17,0);
    font-size: 6rem;
    line-height: 370px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mv-thum a div:hover::after {
    color: rgba(255,255,255,1.00);
    background: rgba(223,0,17,0.85);
    
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.mv-txt {
    width: 100%;
    height: auto;
    display: inline-block;
    color: #000;
    
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.5em;
    margin: 1em 0 0 0; 
}
.mv-thum img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #000;
}




/* --- I N T R O --- */

#ct-intro {
    width: 100%;
    height: auto;
    padding: 15% 0 30px 0;
    background-size: 382px 382px;
}
.intro-pic {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
}
.intro-pic div {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}
.int-txt:nth-of-type(-n+6) {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
}
.intro-pic div:nth-of-type(-n+6) img {
    width: 100%;
    height: auto;
    display: block;
}
.int-txt:nth-of-type(7) {
    width: 212px;
    height: auto;
    display: block;
    position: absolute;
}
.it1 { top: 312px;  left: 0; }
.it2 { top: 714px;  left: 0; }
.it3 { top: 1124px; left: 0; }
.it4 { top: -80px; right: 20px; }

.intro-main {
    width: 90%;
    height: auto;
    margin: 60px auto 30px;
    position: relative;
    display: block;
}
.intro-main p {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0;
    
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 2em;
}




/* --- S T O R Y --- */

#ct-story {
    width: 100%;
    height: auto;
    padding: 100px 0 0px 0;
}
.story-main {
    width: 90%;
    height: auto;
    margin: 50px auto 30px;
    position: relative;
    display: block;
}
.story-main p {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0;
    
    font-size: 14px;
    letter-spacing: 0.15em;
    line-height: 2em;
    color: #fff;
    font-family: a-otf-ryumin-pr6n, serif;

font-weight: 300;

font-style: normal;
line-height: 60px;
}




/* --- C A S T --- */

#ct-cast {
    width: 95%;
    margin: 0 auto;
    height: auto;
    padding: 100px 0 100px 0;
    background-size: 382px 382px;
}

.csH-wrap {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.cast-pic {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    float: left;
    padding: 0 2%;
}

.cast-pic img {
    width: 100%;
}

.staff-main {
    width: 90%;
    height: auto;
    margin: 50px auto 30px;
    position: relative;
    display: block;
}
.staff-main p {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0;
    
    font-size: 18px;
    letter-spacing: 0.15em;
    line-height: 2em;
    color: #fff;
    font-family: a-otf-ryumin-pr6n, serif;

font-weight: 300;

font-style: normal;
line-height: 50px;
}



.staff-main p.small {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0;
    
    font-size: 12px;
    letter-spacing: 0.15em;
    line-height: 2em;
    color: #fff;
    font-family: a-otf-ryumin-pr6n, serif;

font-weight: 300;

font-style: normal;
line-height: 40px;
}


/* --- F O O T E R --- */

footer {
    width: 100%;
    display: block;
    position: relative;
}
footer::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}




/* --- I N T E R V A L --- */

.itv-pic1 {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    background: #000;
}
.itv-pic2 {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    background: #000;
}
.itvL {
    width: 100%;
    height: auto;
    display: block;
}
.itv-pic1 img, .itv-pic2 img, .itvL img {
    width: 100%;
    height: auto;
    display: block;
}




/* --- F A D E  I N --- */

.fd-title {
    opacity: 0;
    
    -webkit-transform: translateY(180px);
    transform: translateY(180px);
   
    -webkit-transition: all 2.0s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 2.0s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-txt {
    opacity: 0;
    
    -webkit-transform: translateY(160px);
    transform: translateY(160px);
   
    -webkit-transition: all 2.0s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 2.0s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-title_after {
    opacity: 1;
    
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.mv-thum {
    opacity: 0;
    -webkit-transform: translateY(180px);
    transform: translateY(180px);
}


.fd-it1 {
    opacity: 0; 
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 2.5s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 2.5s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-it2 {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: all 2.5s cubic-bezier(0.080, 0.800, 0.315, 1.000) 0.5s;
    transition: all 2.5s cubic-bezier(0.080, 0.800, 0.315, 1.000) 0.5s;
}
.fd-it3 {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 2.5s cubic-bezier(0.080, 0.800, 0.315, 1.000) 1s;
    transition: all 2.5s cubic-bezier(0.080, 0.800, 0.315, 1.000) 1s;
}

.fd-it_after {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.fd-itxt1 {
    opacity: 0; 
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-itxt2 {
    opacity: 0; 
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000) 0.5s;
    transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000) 0.5s;
}
.fd-itxt3 {
    opacity: 0; 
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000) 1s;
    transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000) 1s;
}
.fd-itxt4 {
    opacity: 0; 
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 2.8s cubic-bezier(0.080, 0.800, 0.315, 1.000) 1s;
    transition: all 2.8s cubic-bezier(0.080, 0.800, 0.315, 1.000) 1s;
}
.fd-itxt_after {
    opacity: 1;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}

.fd-ctP {
    opacity: 0;
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
    -webkit-transition: all 2.8s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 2.8s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-ctP_after {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.csp-msk1 {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0,0,0,1);
    position: absolute;
    top: 0;
    left: 0;
    
    -webkit-transition: all 1.5s cubic-bezier(0.080, 0.800, 0.315, 1.000) 0.2s;
    transition: all 1.5s cubic-bezier(0.080, 0.800, 0.315, 1.000) 0.2s;
}
.csp-msk2 {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(223,0,17,0.8);
    position: absolute;
    top: 0;
    left: 0;
    
    -webkit-transition: all 2.1s cubic-bezier(0.080, 0.800, 0.315, 1.000) 0.5s;
    transition: all 2.1s cubic-bezier(0.080, 0.800, 0.315, 1.000) 0.5s;
}
.csp-msk_after {
    width: 0;
}

.fd-ctN {
    opacity: 0;
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
    -webkit-transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-ctN_after {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.fd-ctN2 {
    opacity: 0;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 3s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-ctN2_after {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.fd-ctxt {
    opacity: 0; 
    -webkit-transform: translateY(220px);
    transform: translateY(220px);
    -webkit-transition: all 2.8s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 2.8s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-ctxt_after {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.fd-ctxt2 {
    opacity: 0; 
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition: all 2.8s cubic-bezier(0.080, 0.800, 0.315, 1.000);
    transition: all 2.8s cubic-bezier(0.080, 0.800, 0.315, 1.000);
}
.fd-ctxt2_after {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}



.top_news .top_contents_wrap {
    border-left: 0px solid #fff;
}
.top_news {
    margin-bottom: 0%;
}
.top_news .item_wrap {
    overflow: hidden;
    width: 90%;
    margin: 5% auto 0;
}
.top_news .item {
    float: unset;
    width: 80%;
    margin: 0 auto 20%;
    color: #fff;
    height: auto;
}
.top_news .item a {
    color: #c17540;
}
.top_news .item a > img {
    width: 100%;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    box-sizing: border-box;
}
.top_news .item:nth-child(2n) a > img {
    border-left: 0px solid #fff;
}
.top_news .item .update {
    margin: 0;
    padding: 0;
    color: #456984;
    font-size: 28px;
    letter-spacing: 3px;
}
.top_news .item .title {
    margin: 0;
    padding: 0% 0;
    color: #fff;
    font-size: 20px;
    letter-spacing: 3px;
}
.top_news .item .newstitle {
    margin: 0;
    padding: 0% 0;
    color: #fff;
    font-size: 25px;
    letter-spacing: 3px;
}
.top_news .more {
    margin: 0 auto;
    width: 40%;
}
.top_news .more img{
    width: 100%;
}


.banner {
    width: 76.4%;
    margin: 0 auto;
    list-style:none;
}
.banner li + li {
    margin-top: 7%;
    list-style:none;
}
.banner li img {
    width: 100%;
}


.footer .sns {
    display: table;
    margin: 0 auto 9.33%;
}
.footer .sns li {
    display: table-cell;
    vertical-align: middle;
    padding: 0 10px;
    text-align: center;
}
.footer .sns li:nth-child(1) img {
    width: 50%;
}
.footer .copyright {
    padding: 6% 0;
    color: #fff;
    background: rgba(0,0,0,0.8);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}




.sp{display: block;}
.pc{display: none;}


.pagetop {
    display: block;
    position: fixed;
    bottom: 2%;
    right: 4%;
    width: 4%;
    height: auto;
        z-index: 999;

}
.pagetop a {
    cursor: pointer;
}

.pagetop img{
width: 100%;
}




/* = ticket_contents
----------------------------------------------- */
.ticket_contents {
    width: 750px;
    margin: 0 auto;
}
.ticket_contents .subttl {
    background: url(../img/shared/subttl_bg01.png) no-repeat 50% -20px;
    text-align: center;
}
.ticket_contents .lead01 {
    margin-bottom: 70px;
    text-align: center;
}
.ticket_contents .lead02 {
    margin-bottom: 80px;
    text-align: center;
}
.ticket_contents .lead03 {
    margin-bottom: 20px;
    text-align: center;
}
.ticket_contents .block {
    margin-bottom: 70px;
    padding-bottom: 25px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}


.ticket_contents_live .block {
    margin-bottom: 70px;
    border-left: 1px solid #fff;
}


.ticket_contents .block2 {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
}

.ticket_contents .block_wrap {
    position: relative;
    margin: 60px 0 0;
    padding: 20px 0 0;
}
.ticket_contents .block_wrap .img_closed {
    position: absolute;
    top: 0;
    left: 460px;
    z-index: 1;
}
.ticket_contents .block.closed {
    opacity: 0.5;
}
.ticket_contents .block h3 {
    border-bottom: 1px solid #fff;
}
.ticket_contents .block2 h3 {
    border-bottom: 1px solid #fff;
}
.ticket_contents  table {
    margin: 50px 0 0 25px;
    color: #b8bdcd;
    font-size: 1.6rem;
    line-height: 2.5;
}
.ticket_contents  table th,
.ticket_contents  table td {
    vertical-align: top;
}
.ticket_contents  table th {
    padding: 0 25px 18px 0;
}
.ticket_contents  table td {
    padding: 0 0 18px 0;
}
.ticket_contents  table a {
    color: #b8bdcd;
}
.ticket_contents  h4 {
    margin: 25px 0 10px 25px;
    font-size: 2rem;
    line-height: 1.8;
}

.ticket_contents  p,
.ticket_contents  li {
    color: #b8bdcd;
    font-size: 1.6rem;
    line-height: 2.5;
}
.ticket_contents  h4 {
    margin: 25px auto 10px 21px;
    font-size: 2rem;
    line-height: 1.8;
    text-align: left;
}

.ticket_contents  h5 {
    margin: 25px auto 10px 0px;
    font-size: 18px;
    line-height: 1.8;
    color: #3990bd;
}


.ticket_contents  p,
.ticket_contents  li {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 2px;
}
.ticket_contents  ul {
    margin: 0 45px 0 0;
   list-style: none;
}
.ticket_contents  li {
    margin: 0 0 10px -2em;
  text-indent: -2em;
  padding-left: 3em;
}
.ticket_contents  p {
    margin: 0 5% 30px 5%;
}
.ticket_contents .contact h4 {
    margin: 25px 0 10px;
    font-size: 2rem;
    line-height: 1.8;
}
.ticket_contents .contact p {
    color: #b8bdcd;
    font-size: 1.6rem;
    line-height: 2.5;
}
.ticket_contents .contact p a {
    color: #b8bdcd;
}
.ticket_contents a:hover {
    text-decoration: underline;
}



.ticket_contents a {
color: #456984;
}


.notice {
    width: 100%;
    margin: 0 auto;
    color: #c17540;
    border: 1px solid #c17540;
    padding: 4%;
    font-size: 13px;
    line-height: 26px;
}

.x0                 {padding-top: 3px}
.x1                 {vertical-align: top;}
.x2                 {vertical-align: bottom;}
.x3                 {font-weight: bold;}
.x4                 {vertical-align:middle;}
.x5                 {text-decoration:underline;}
.x6                 {text-align: center;}
.x7                 {font-weight: normal;}
.x8                 {text-align: left;}
.x9                 {text-align: right;}
.x10                    {color: #FFF; -webkit-text-stroke: 1px #000;}
.x11                { font-family: "heisei-mincho-std",sans-serif;}

.story_tit{
    font-family: a-otf-ryumin-pr6n, serif;

font-weight: 600;

font-style: normal;
font-size: 2rem !important;
text-align: center;
color: #fff;
line-height: 50px !important;
letter-spacing: 0px !important;
}
