﻿@charset "utf-8";
/* ========================================

	SHISHAMO CSS
	style.css

========================================== */




/*===================================================

	リセット

====================================================*/
* html body, * html input, * html textarea {font-family: "メイリオ", meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif;}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
font-weight:200;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

img{
	width:100%;
}
a{
	text-decoration: none;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*==========================================================

	フレーム

============================================================*/

html,body{
	height: 100%;
    color: #000;
    font-family: "Noto Sans Japanese","メイリオ", meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    font-weight: 200;
    min-width: 1280px;
}
html{

}
body{

}
.contentsBox{

}
.inBox{
	width: 1000px;
    margin: 0 auto;
padding: 100px 0 140px;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*==========================================================

	フッター

============================================================*/
.footer{
	margin: 0 0 40px;
    text-align: center;
    padding: 100px 0;
}
.footer .credit{
	font-size: 11px;
    font-weight: 500;
    color: #000;    
}
.footer .credit a{
    color: #000;
    transition: 0.3s;    
}
.footer .credit a:hover{
    color: #E50112;
    transition: 0.3s;
}
/*==========================================================

	共通

============================================================*/

.anc{
	position: relative;
}
.ancPoint{
    display: block;
    position: absolute;
    top: -100px;
}

@keyframes fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}

#fade {
    width: 100%;
    height: 100%;
    display: block;
    background: #FFF;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
}
#fade .loadingLogo{
	position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    transform: translate(-50%,-50%);
}
.frame{
    background-color: #E50112;
    position: fixed;
    z-index: 1000;
}
.border-top {
    height: 40px;
    left: 0;
    top: 0;
    width: 100%;
}
.border-right {
    height: 100%;
    right: 0;
    top: 0;
    width: 40px;
}
.border-bottom {
    bottom: 0;
    height: 40px;
    left: 0;
    width: 100%;
}
.border-left {
    height: 100%;
    left: 0;
    top: 0;
    width: 40px;
}
.attentionList{

}
.attentionList li{
	font-size: 12px;
	margin:0 0 10px 0;
}
.attentionList li:last-child{
	margin:0 ;
}

.fadeBox{
	transform:translateY(30px);
    opacity: 0;
    transition: 1s ease;
}
.started .fadeBox{
	opacity:1;
	transform:translateY(0px);
}

.exclam{
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 500;
}

/*==========================================================

	ポップアップ

============================================================*/
.popup {
    visibility: hidden;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,1);
    color: #fff;
    padding: 40px 5%;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.popActive{
	opacity: 1;
}

.popup .popInBox{
	width: 800px;
    padding: 40px 0;
    margin: 0 auto;
    position: relative;
}
.popup .popTit{
    text-align: center;
    font-size: 35px;
    line-height: 1.4em;
    margin: 0 0 15px;
    color: #e50112;
    font-weight: 800;
}
.popup .close {
	width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    top: 30px;
    cursor: pointer;
}

.popup .close::before,
.popup .close::after {
    content: '';
    display: inline-block;
    width: 48px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 13px;
}

.popup .close::before {
-webkit-transform: translateY(20px) translatex(-12px) rotate(-45deg);
transform: translateY(20px) translatex(-12px) rotate(-45deg);
top: 4px;
}

.popup .close::after {
-webkit-transform: translateY(-20px) translatex(-12px) rotate(45deg);
transform: translateY(-20px) translatex(-12px) rotate(45deg);
bottom: 4px;
}

.popup .messageIcon{
    position: absolute;
    width: 130px;
    top: 10px;
    left: 0px;
}
.popup .messageCard{

}
#act4 {
    background: rgba(0,0,0,0.7);
}
#act4 .popInBox {
    width: 1280px;
    padding: 0;
    top: 0; 
}
#act4.popup .close::before, .popup .close::after {
    background: #fff;
}
#act5 {
    background: rgba(0,0,0,0.7);
}
#act5 .close::before, #act5 .close::after {
    content: '';
    background: #fff;
}
#act5  .popInBox {
    width: 890px;
    padding: 100px 0;
    margin: 0 auto;
    position: relative;
}


/*****************************************************************
	アコーディオン
*******************************************************************/


#acd h5::after {
    position: absolute;
    margin: -12px 0 0;
    content: "";
    vertical-align: middle;
    top: 50%;
    right: 5px;
    width: 15px;
    height: 15px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#acd h5.open::after {
    margin: -5px 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#acd.block{
    width: 100%;
    margin: 0 auto 0;
    background: #000;
    border-color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
  }
#acd h5 {
    position: relative;
    margin: 0;
    padding: 18px 0 25px;
    text-align: left;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}
#acd > div {
    display: none;
    padding: 25px 0 20px;
    border-top: 1px solid #fff;
}
#acd ul {
    margin: 0;
}
#acd ul li{
    font-size: 15px;
    margin: 0 0 5px 0;
    color: #fff;    
}
#acd ul li:last-child{
    margin: 0;
}


/*=================================
	youtube
===================================*/
.mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 10px;
}
.mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}



/*==========================================================

	トップ

============================================================*/




/*======================================

	トップ：ヴィジュアル

========================================*/
.mainBg{
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    background: url(/static/shishamo/fanclub/feature/todoroki2019/images/ph_bg_mem_re.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    opacity: 0;
    transition: 0.5s;
    transition-delay: 3.2s;
}
.loaded .mainBg{
    opacity:1;
}
h1{
	width: 90px;
    position: fixed;
    left: 50px;
    top: 50px;
    line-height: 0;
    z-index: 1000;
}
h1 a{
	transition:0.3s;
}

.pageTop h2{
	opacity: 0;
    transition: 0.5s;
    transition-delay: 1s;
    z-index: 1;
    width: 100%;    
}

.loaded.pageTop h2{
	opacity:1;
}

.pageTop h2 img{
    width: 90%;
    max-width: 1500px;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%,50%);
    position: absolute;
    line-height: 0;
    transition: 0.5s;
    transition-delay: 2.5s;
}
.loaded.pageTop h2 img{
    transform: translate(-50%,0);
    bottom: 8vh;
    left: 50%;
    width: 90%;
}


/*
.pageTop h2 .mainTit li{
    bottom: 50%;
    left: 50%;
    transform: translate(-50%,50%);
    position: absolute;
    line-height: 0;
    transition: 0.5s;
    transition-delay: 2.5s;
}
.pageTop h2 .mainTit li:nth-child(1){
	width: 77vw;

    transform: translate(-50%,-50%);
}
.pageTop h2 .mainTit li:nth-child(2){
	width: 48vw;

}
.pageTop h2 .mainTit li:nth-child(3){
    width: 64vw;

    transform: translate(-50%,150%);
}
.loaded.pageTop h2 .mainTit li:nth-child(1){
	transform: translate(0,0);
    bottom: 17vw;
    left: 150px;
}
.loaded.pageTop h2 .mainTit li:nth-child(2){
    transform: translate(0,0);
    bottom: 11vw;
    left: 150px;
}
.loaded.pageTop h2 .mainTit li:nth-child(3){
    transform: translate(0,0);
    bottom: 6vw;
    left: 150px;
}
*/
.pageTop h3{

    width: 320px;
    bottom: 70px;
    right: 80px;
    position: absolute;
    line-height: 0;
	animation:anim1 1s ease infinite alternate;
	transform:translateY(0);
    opacity: 0;
    transition: 0.5s;
    transition-delay: 1s;
}
.loaded.pageTop h3{
	opacity:1;
}

@keyframes anim1{
	0%{	transform:translateY(0);}
	100%{	transform:translateY(20px);}
}


.pageTop h4{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
	transform:translateY(30px);
    opacity: 0;
    transition: 1s ease;
}

.pageTop .started h4{
	opacity:1;
	transform:translateY(0px);
}

.pageTop .subTit{
	font-weight: 800;
    font-size: 20px;
    margin: 0 0 80px;
	transform:translateY(30px);
    opacity: 0;
    transition: 1s ease;
}
.pageTop .started .subTit{
	opacity:1;
	transform:translateY(0px);
}


.downsc{
	position: fixed;
    bottom: 50px;
    left: 60px;
    width: 45px;
    z-index: 999;
    animation: fadein 3s ease both;
    animation-delay: 1s;
}
.downsc svg{
    transition:0.3s;
}
.headerFix .downsc{
	pointer-events:none;
}
.headerFix .downsc svg{
	opacity:0;
}
.scSvg{
	fill:none;
	stroke:#D61719;
	stroke-width:8;
	stroke-miterlimit:10;	
	stroke-dasharray: 400%;
    stroke-dashoffset: 100%;
    animation: scroll 3s ease infinite;
}

@keyframes scroll {
0% {stroke-dashoffset: 800%;}
100% {stroke-dashoffset: 0%;}
}



.menu{
	position: fixed;
    left: 0;
    top: 0;
    padding: 70px;
    width: 100%;
    min-width: 1280px;
    box-sizing: border-box;
    z-index: 999;
    mix-blend-mode: difference;

}
.nav{
    display: flex;
    z-index: 999;
    justify-content: flex-end;
}

.nav li{
	margin: 0 20px 0 0;
}
.nav li:last-child{
	margin: 0;
}
.nav li a{
    color: #e50112;
    font-weight: 700;
    letter-spacing: 0.05em;
	position: relative;
}
.nav li a:after {
    content: "　";
    background: #e50112;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 0;
    height: 10px;
    opacity: 0.2;
    transition: 0.5s;
}

.heroView{
	position: relative;
    min-height: 740px;
    background: #222744;  
}
.heroInner{

}



.gNav {
    min-width: 1100px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 0;
    background: #E50112;
}
.gNav li{ margin: 0 5px; display: inline-block; position: relative; }
.gNav li.current::after {
    content: '';
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
 .gNav .home { display: none; }
.gNav li a {
display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    position: relative;
    font-size: 19px;
}
.gNav li a:hover{
    opacity: 0.2;
    transition: 0.3s;
}
.gNav li span { display: block; color: #fff; opacity: .3; padding: 15px 10px; }
/*=================================

	トップ：アバウト

========================================*/
.aboutBox{

}
.aboutBox .inBox{
	padding: 100px 0 100px;
}
.aboutBox .inBox h4{
	margin:0 0 80px;
}
.aboutBox .inBox .eventDetail{
    border: 2px solid #000;
    margin: 0 0 20px;
    display: flex;
    padding: 20px;
    clear: both;
}
.aboutBox .inBox .eventDetail:last-child{
    margin: 0 0 40px;
}

.aboutBox .inBox .eventDetail dt{
    width: 25%;
    font-size: 19px;
    text-align: center;
    border-right: 2px solid;
    font-weight: 400;
    letter-spacing: 0.5em;
}
.aboutBox .inBox .eventDetail dd{
	padding: 0 0 0 60px;
    font-size: 19px;
    font-weight: 400;
}
.aboutBox .inBox .eventDetail.time span{
    color: #515151;
    font-size: 15px;
}
.aboutBox .inBox .eventDetail.contact dt{
height: 80px;
    line-height: 80px;
}
.aboutBox .inBox .eventDetail.contact li{
	font-size: 16px;
}
.aboutBox .inBox .eventDetail.contact span{
    font-size: 21px;
}
.aboutBox .inBox .eventDetail.contact .fas{
    font-size: 16px;
    position: relative;
    bottom: 3px;
    left: 4px;
}
.aboutBox .inBox .eventDetail.contact .fas:hover{
    opacity: 0.7;
    transition: 0.3s;
}
.aboutBox .txtBox {
    width: 50%;
    float: left;
    font-size: 15px;
    margin: 0 0 50px 0;
}
.aboutBox .txtBox p{
    line-height: 1.8em;
    font-weight: 400;
}
.aboutBox .movBox{
    width: 45%;
    float: right;
    margin: 0 0 50px 0;
}
.aboutBox .btn{
    width: 50%;
    clear: both;
    background: #e50112;
    color: #fff;
    display: block;
    margin: auto;

}
.aboutBox .btn a{
    clear: both;
    background: #e50112;
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 0 40px 0;
    padding: 15px;
    font-size: 19px;
    border: 2px solid;
     transition: 0.3s;      
}
.aboutBox .btn a:hover{
    border: 2px solid #e50112;
    background: #fff;
    color: #e50112;
    transition: 0.3s;
}

/*======================================

	アバウト下層

========================================*/

.aboutDetailBox{
 
 }
.aboutDetailBox .inBox{
     width: 700px;
 } 
.aboutDetailBox h4{
     margin: 0 0 50px 0;
 } 
.aboutDetailBox .mainLead{
    margin: 0 0 40px 0;
    font-size: 18px;
    line-height: 1.8em;
    font-weight: 500;
    border-top: 2px solid;
    border-bottom: 2px solid;
    padding: 40px 0 40px 0;
 }
.aboutDetailBox .rightBox{
    width: 50%;
    display: block;
    float: right;
    padding: 10px;
    box-sizing: border-box;
    height: 280px;
    margin: 0 0 20px;
    overflow: hidden;     
}
.aboutDetailBox .leftBox{
    width: 50%;
    display: block;
    float: left;
    padding: 10px;
    box-sizing: border-box;
    height: 280px;
    margin: 0 0 20px;
    overflow: hidden;     
}
.aboutDetailBox .centerBox{

}
.aboutDetailBox .innerBox{
margin: 0 0 40px 0;
}
.aboutDetailBox .txt{
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 500;
}
.aboutDetailBox .box{
    margin: 0 0 50px 0;
}
.aboutDetailBox .btn{
    width: 50%;
    clear: both;
    background: #e50112;
    color: #fff;
    display: block;
    margin: auto;

}
.aboutDetailBox .btn a{
    clear: both;
    background: #e50112;
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 0 40px 0;
    padding: 15px;
    font-size: 19px;
    border: 2px solid; 
     transition: 0.3s;      
}
.aboutDetailBox .btn a:hover{
    border: 2px solid #e50112;
    background: #fff;
    color: #e50112;
    transition: 0.3s;
}
.aboutDetailBox .innerBox span{
    text-align: center;
    display: block;
    font-size: 13px;
    color: #707070; 
}

/*======================================

	トップ：チケット

========================================*/
.ticketBox{

}
.ticketBox h4{
    margin: 0 0 80px;
}
.ticketBox .mainBlock{

}
.ticketBox .mainBlock .attentionList {
    margin: 0 0 45px 0;
}
.ticketBox .mainBlock .attentionList li{
    font-size: 16px;
}
.ticketBox .mainBlock ul{
	margin: 0 0 50px 0;
}
.ticketBox .mainBlock ul li{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0 0 10px 0;    
}
.ticketBox .mainBlock ul li span{
	font-size: 20px;
    font-weight: bold;
    line-height: 1.5em;
    color: #585858;
}
.ticketBox .mainBlock ul li .min{
    font-size: 15px;
}
.ticketBox .mainBlock ul li:last-child{
    margin: 0;    
}
.ticketBox .mainBlock .seat li{
    margin: 0 0 25px 0;
    line-height: 1;
}
.ticketBox .attentionList{
    background: #dfdfdf;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    margin: 10px 0 0 0;
}
.ticketBox .attentionList li{
	margin: 0;
}
.ticketBox .attentionList .fas{
	display:inline;
}
.ticketBox .attentionList a{
    color: #E50112;
    transition: 0.3s;
}
.ticketBox .attentionList a:hover{
    opacity: 0.7;
    transition: 0.3s;
}
.ticketBox .btn a {
    background: #E50112;
    color: #fff;
    padding: 16px;
    display: block;
    width: 300px;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    border: 2px solid;
    transition: 0.3s;
    margin: 0 auto 50px auto;
}
.ticketBox .btn a:hover{
    border: 2px solid;
    background: #fff;
    color: #E50112;
    transition: 0.3s;
}
.ticketBox .ticketDetail .btn a{
    margin: 0 auto 30px auto; 
}
.ticketBox .ticketDetail .btn .none{
    margin: 0 auto 0 auto; 
}
.ticketBox .ticketDetail{
    border: 2px solid #000;
    margin: 0 0 20px;
    padding: 20px;
}
.ticketBox .ticketDetail .btn{
float: right;
    width: 400px;
}
.ticketBox .btn .end {
    position: relative;
    border: none;    
}
.ticketBox .btn .end:before {
    content: "受付は終了しました";
    position: absolute;
    top: 50%;
    left: 50%;
    color: #ffffff;
    z-index: 999;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}
.ticketBox .btn .end:after {
content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(134, 134, 134, 0.9);
}
.ticketBox .btn a.end:hover{
    border: none;   
    background: #E50112;  
    color:#fff;   
}


.ticketBox .ticketDetail dt{
	font-size: 19px;
    font-weight: 600;
    margin: 0 0 15px 0;
    border-left: 5px solid;
    padding: 0 0 0 9px;
}
.ticketBox .ticketDetail dd{

}
.ticketBox .ticketDetail dd .prizeBox{
position: relative;
    clear: both;
    padding: 65px 0 40px;
    height: 125px;
}
.ticketBox .ticketDetail dd .prizeImage{
    width: 400px;
    line-height: 0;
    padding: 10px 0 5px;
    clear: both;
}
.ticketBox .ticketDetail dd .lead{
    margin: 0 0 15px;
    font-size: 15px;
}
.ticketBox .ticketDetail dd .prizeCap{
    clear: both;
    padding: 10px 0 0;
    color: #0471fd;
    font-size: 13px;
    text-indent: -0.7em;
    margin: 0 0 0 13px;
    text-align: center;
    display: flex;
    line-height: 1.5em;
    position: absolute;
    top: 15px;
    left: 2%;
    font-weight: 400;    

}
.ticketBox .ticketDetail dd .prizeTxt{
    text-align: center;
    left: 40%;
    top: -171px;
    font-size: 13px;
    position: relative;
    width: 80px;
    height: 80px;
    background:#0471fd;
    border-radius: 100px;
}
.ticketBox .ticketDetail dd .prizeTxt span {
    position: absolute;
    display: inline-block;
    left: 1%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 80px;
    color: #fff;
    text-align: center;
    line-height: 1.5em;
}
.ticketBox .ticketDetail dd ul{
    float: left;
    display: block;
    font-size: 16px;
}
.ticketBox .ticketDetail dd ul li{
}
.ticketBox .ticketDetail dd ul li span{
    color: #ff0000;
    font-size: 12px;
    text-indent: -0.7em;
    display: inline-block;
    margin: 0 0 0 18px;
}
.ticketBox .ticketDetail dd .attentionList li{
    text-indent: -13px;
    padding: 0 0 0 13px;
    line-height: 1.5em;
    margin: 0 0 10px;
}
.ticketBox .ticketDetail dd .attentionList li:last-child{
    margin: 0;
}
.ticketBox .seatAttention{
    border: 2px solid;
    padding: 20px;
    margin: 0 0 20px 0;
}
.ticketBox .seatAttention .tit{
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 20px 0;
}
.ticketBox .seatAttention .attentionList{
    margin: 0 0 25px 0;
}
.ticketBox .seatAttention .attentionList li{

}

.ticketBox .seatImg img{
    width: 100%;
    margin: 0 auto 50px;
    display: block;
}
.ticketBox #acd .lead{
	color: #fff;
    margin: 0 0 20px 0;
    font-size: 15px;
}
.ticketBox #acd .attentionList{
    background: none;
    border: solid 1px #fff;
}
.ticketBox #acd .attentionList li{
font-size: 13px;
    margin: 0 0 10px 1em;
    color: #fff;
    font-weight: normal;
    text-indent: -0.55em;
}
.ticketBox #acd .attentionList li:last-child{
    margin: 0 0 0 1em;
}
.ticketBox #acd .ex{

}
.ticketBox #acd .box{
    background: rgba(255,255,255,0.1);
    margin: 0 0 10px 0;
    padding: 20px;    
}
.ticketBox #acd .ex li:nth-child(even){

}
.ticketBox #acd .ex li:nth-child(odd){

}

.ticketBox #acd .ex li{

}


.ticketBox #acd .tit {
    color: #fff;
    text-align: center;
    font-size: 16px;
    margin: 20px 0;    
}
.ticketBox #acd .txt {
    clear: both;
    color: #fff;
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 15px;    
}



table.ticketTable {
border:2px solid #000;
font-size: 16px;
margin:0 auto 35px;
    width: 100%;
}
table.ticketTable tr {

}
table.ticketTable th {
    border-bottom: 1px solid #000;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    text-align: center;
    padding: 20px;
    width: 205px;
    box-sizing: border-box;
    font-weight: bold;    
}
table.ticketTable td {
border-bottom:1px solid #000;
padding:25px 0 25px 30px;
position: relative;
    box-sizing: border-box;
}
table.ticketTable td:after {
content: "";
background: #000;
bottom: 0;
height:auto;
left: 0;
margin:15px auto;
/*right: 0px;*/
position: absolute;
top: 0;
width:1px;
}
table.ticketTable td .attentionTxt {
text-align: left!important;
}
table.ticketTable td a {
    color:#EB6972;
   -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: block;
}
table.ticketTable td a:hover {
text-decoration: underline;
}

dl.ticketList {

}
dl.ticketList dt {
border-right: 1px solid #000;
float: left;
margin: 0 25px 0 0;
width: 55%;
    font-weight: bold;
padding: 0 10px;    
}
dl.ticketList dd {
border-bottom: 1px solid #000;
padding: 0 0 20px;
margin: 0 0 20px;
    line-height: 1.2em;  
}
dl.ticketList dd span {
font-size:13px;
}

dl.ticketList dd .red {
color:#f00;
}

dl.ticketList dd:last-child {
    border: none;
    padding: 0;
    margin: 0;
}
dl.ticketList dt .min{
    font-size: 12px;
    line-height: 1em;
}
dl.ticketList dd:nth-of-type(3),
dl.ticketList dd:nth-of-type(4)
 {
    height: 100px;
}
dl.ticketList dt a{
display: inline-block;
}
dl.ticketList dd .price{
    position: relative;
    top: 32%;
}


/*======================================

	トップ：メッセージ

========================================*/

.messageBox{

}
.messageBox .inBox{
	padding: 0 0 100px;
}
.messageBox .inBox h4 {
	margin:0 0 20px;
}
.messageBox  .subTit {
    opacity: 1;
    border-left: 5px solid;
    padding: 0 0 0 10px;
}
.messageList{
    display: flex;
    margin: 0 0 60px;
}
.messageList li{
	box-sizing:border-box;
}
.messageList li:nth-child(1){
	padding:0 30px 0 0;
}
.messageList li:nth-child(2){
	padding:0 15px 0;
}
.messageList li:nth-child(3){
	padding:0 0 0 30px;
}
.messageList li a{
	display: block;
	transition:0.3s ease;
}

.messageList li a .name{
	text-align: center;
    display: block;
    color: #e50112;
    font-weight: 600;
    line-height: 1.3em;
    margin: 0 0 20px;
    font-size: 22px;
}

.subMesList{
display: flex;
}
.subMesList li{
	box-sizing: border-box;
    width: 50%;
}
.subMesList li:nth-child(odd){
padding: 0 10px 0 0;
}
.subMesList li:nth-child(even){
padding: 0 0 0 10px;
}
.subMessage{
	background: #efefef;
    padding: 40px;
}
.subMessageTit{
    font-weight: 800;
    font-size: 20px;
    margin: 0 0 20px;
    border-left: 5px solid;
    padding: 0 0 0 10px;
}
.subMessageImg{
	float: right;
    width: 200px;
    line-height: 0;
    padding: 0 0 20px 20px;
}
.subMessageImg img{
    border-radius: 100px;
}
.subMessageTxt{
	line-height: 1.8em;
    letter-spacing: 0.1em;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 300;
}
.subMessageName{
	text-align: right;
    font-weight: 600;
}


/*======================================

	トップ：バナーボックス

========================================*/

.bnrBox{

}
.bnrBox .inBox{
	padding: 0;
}
.bnrBox .bnr a{
	display: block;
    line-height: 0;
    width: 500px;
    margin: 0 auto;
    transition:0.3s;
}



/* footer
------------------------------------------ */

.footer { background: #fff; padding: 70px 0 35px; margin: 0 -20px 20px;clear: both; }
.footer .copyLight { color: #aaa; padding: 20px 0 0; }
.footer {
    background: #fff;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
}
.footer .copyLight {
    color: #aaa;
    font-size: 11px;
    text-align: center;
    padding: 20px 0;
}
.footer .inner { width: 1000px; margin: 0 auto 30px; }
.footer .sponsorList {
	display: block;
	text-align: center;
}
.footer .sponsorList dt,
.footer .sponsorList dd {
	display: inline-block;
	line-height: 40px;
	margin: 0 0 10px;
}
.footer .sponsorList dt { margin: 0 15px; }
.footer .sponsorList dd::after {
	content: '/';
	color: #aaa;
	font-size: 18px;
	margin: 0 15px;
}
.footer .sponsorList dd:last-child::after {  content: none; }
.footer .sponsorList a { color: #000; text-decoration: none; }
.footer .sponsorList a:hover { color: #32d8ff; text-decoration: underline; }
.footer .sponsorList img { vertical-align: middle; width: 60%;}




/*==========================================================

	レスポンシブ：PC

============================================================*/
@media screen and (min-width: 960px){

.sp{display:none;}
.menu {
    display: none!important;
}
.hamBtn{
	display:none;
}


/*======================================

	レスポンシブ：PC：hover

========================================*/
h1 a:hover{
	opacity:0.7;
}
.nav li a:hover:after {
    width: 100%;
}
.messageList li a:hover{
    transform: scale(1.2);
}
.bnrBox .bnr a:hover{
	opacity:0.7;
}


}



/*==========================================================

	レスポンシブ：SP

============================================================*/
@media screen and (max-width: 960px){
.pc{display: none!important;}


/*======================================

	レスポンシブ：SP：フレーム

========================================*/
html, body {
    min-width: 100%;
}
.contentsBox {
}
.inBox {
    width: 100%;
    margin: 0 auto;
	padding: 40px 25px 0;
    box-sizing: border-box;
}


/*======================================

	レスポンシブ：SP：フッター

========================================*/
.footer {
    margin: 0 0 10px;
    text-align: center;
    padding: 60px 0;
}
.footer .credit {
	font-size: 9px;
    line-height: 1.5em;
}
.footer .credit a{
    color: #000;
    transition: 0.3s;    
}
.footer .credit a:hover{
    color: #000;
    transition: 0.3s;
}
.footer .inner {
width: 100%;
    margin: 0 auto 30px;
    padding: 0 10px;
    box-sizing: border-box;
}
.footer .sponsorList dt{
    line-height: normal;
    margin: 0;
    width: auto;
    font-size: 9px;
    display: inline-block;
    font-size: 10px;
}
.footer .sponsorList dd {
    width: auto;
    display: inline-block;
    margin: 0 0 10px;
}
.footer .sponsorList img {
    height: 22px;
    vertical-align: middle;
    max-width: 100%;
    width: auto;
}
.footer .sponsorList dd::after {
    display: none;
}
/*======================================

	レスポンシブ：SP：共通

========================================*/
.border-top {
    height: 10px;
}
.border-right {
    width: 10px;
}
.border-bottom {
    height: 10px;
}
.border-left {
    width: 10px;
}
.heroView {
    position: relative;
    min-height: 100%;
}



/*======================================

	レスポンシブ：SP：ポップアップ

========================================*/
.popup {
    z-index: 9999;
}
.popup .popInBox {
    width: 100%;
    padding: 0;
}
.popup .messageIcon {
    width: 60px;
    top: -20px;
    left: calc(50% - 150px);
}
.popup .popTit {
    font-size: 30px;
}
.popup .close {
    right: 10px;
    top: 10px;
	z-index: 999;
}
#act4 .popInBox {
    width: 100%;
top: 30px;
}
#act5 .popInBox {
    width: 100%;
    padding: 35px 0;
}



/*======================================

	レスポンシブ：SP：トップ

========================================*/




/*======================================

	レスポンシブ：SP：トップ：ヴィジュアル

========================================*/
.mainBg {
    width: 100%;
    height: 100%;
    background: url(/static/shishamo/fanclub/feature/todoroki2019/images/ph_bg_mem_sp_re.jpg);
    background-repeat: no-repeat;
    background-position: top;
background-size:80%;
}
h1 {
    width: 60px;
    left: 20px;
    top: 20px;
	z-index: 1001;
}
.hamBtn {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 22px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
}
.hamBtn.open{
transform: rotate(180deg);
}
.hamBtn span {
	display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #e50112;
    transition: all .3s ease;
}

.hamBtn :nth-of-type(1) {
    top: 0;
}
.hamBtn :nth-of-type(2) {
    top: 10px;
}
.hamBtn :nth-of-type(3) {
    top: 20px;
}
.hamBtn.open span {
    background: #FFF;
}
.hamBtn.open span:nth-of-type(1) {
	transform: translate(2px,13px) rotate(-45deg);
    width: 10px;
}
.hamBtn.open span:nth-of-type(2) {
    opacity: 1;
}
.hamBtn.open span:nth-of-type(3) {
	transform: translate(2px , -13px) rotate(45deg);
    width: 10px;
}
.menu {
	display: none;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 1000;
    mix-blend-mode: unset;
    background: #e50112;
}
.nav {
	position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    z-index: 999;
    justify-content: flex-end;
    transform: translate(-50%,-50%);
    width: 70%;
}
.nav li {
	margin: 0 0 15px;
    text-align: right;
    
    margin: 0 0 30px;
    text-align: center;
    font-size: 22px;    
}

.nav li a {
    color: #FFF;
}
.gNav {

    display: none;
}
.downsc {
    bottom: 10px;
    left: 17px;
	width: 35px;
}

.pageTop h2 {

}
.loaded.pageTop h2 {

}


.pageTop h2 img{
	width: 75%;
    max-width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    line-height: 0;
    transition: 0.5s;
    transition-delay: 2.5s;
}
.loaded.pageTop h2 img{
    transform: translate(-50%,-110%);
    bottom: 90px;
    left: 50%;
	width: 75%;
    top: 90%;	
}




.pageTop h3 {
    width: 120px;
    bottom: 40px;
    right: 20px;
}
.pageTop h4 {
    font-size: 55px;
}
.pageTop .subTit {
	font-weight: 800;
    font-size: 16px;
    margin: 0 0 30px;
}


/*======================================

	レスポンシブ：SP：トップ：アバウト

========================================*/

.aboutBox .inBox {
	padding: 30px 25px 50px;
}
.aboutBox .inBox h4 {
    margin: 0 0 20px;
}
.aboutBox .inBox .eventDetail {
    border: 2px solid #000;
    margin: 0 0 15px;
    display: block;
    padding: 15px;
}
.aboutBox .inBox .eventDetail dt {
    width: 100%;
    font-size: 13px;
    text-align: left;
    border-right: none;
    font-weight: 600;
    letter-spacing: 0.5em;
    margin: 0 0 5px;
    line-height: 1em;
}
.aboutBox .inBox .eventDetail dd {
    padding: 0;
    font-size: 14px;
    font-weight: 400;
}
.aboutBox .inBox .eventDetail.contact dt {
    height: auto;
    line-height: 1.5em;
}
.aboutBox .inBox .eventDetail.time span {
    color: #515151;
    font-size: 10px;
}
.aboutBox .inBox .eventDetail.contact span {
    font-size: 16px;
    font-weight: 300;
}
.aboutBox .inBox .eventDetail:last-child {
    margin: 0;
}
.aboutBox .inBox .eventDetail.contact .fas {
    font-size: 12px;
    position: relative;
    bottom: 2px;
    left: 4px;
}
.aboutBox .txtBox {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
font-size: 13px;
}
.aboutBox .txtBox p {
    line-height: 1.5em;
    font-weight: 400;
}
.aboutBox .movBox {
    width: 100%;
    float: none;
    margin: 0 0 30px 0;
}
.aboutBox .btn {
    width: 100%;
    clear: both;
    background: #e50112;
    color: #fff;
    display: block;
    margin: auto;
}
.aboutBox .btn a{
    clear: both;
    background: #e50112;
    color: #fff;
    text-align: center;
    display: block;
	margin: 0 0 30px 0;
    padding: 15px;
    font-size: 15px;
    border: none; 
     transition: 0.3s;      
}
.aboutBox .btn a:hover{
    background: #e50112;
    color: #fff;
    border: none;     
}


/*======================================

	レスポンシブ：SP：トップ：チケット

========================================*/

.aboutDetailBox{
 
 }
.aboutDetailBox h4{
     margin: 0 0 50px 0;
font-size: 39px;     
 } 
.aboutDetailBox .mainLead{
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.8em;
    font-weight: 500;
    border-top: 2px solid;
    border-bottom: 2px solid;
    padding: 30px 0 30px 0;
 }
.aboutDetailBox .rightBox{
width: 100%;
    display: block;
    float: none;
    padding: 0;
    box-sizing: border-box;
    height: auto;
    margin: 0 0 20px;
    overflow: visible;   
}
.aboutDetailBox .leftBox{
width: 100%;
    display: block;
    float: none;
    padding: 0;
    box-sizing: border-box;
    height: auto;
    margin: 0 0 20px;
    overflow: visible;   
}
.aboutDetailBox .centerBox{

}
.aboutDetailBox .txt{
font-size: 12px;
    line-height: 1.8em;
    padding: 0;
    font-weight: 500;
}
.aboutDetailBox .box {
    margin: 0 0 20px 0;
}

.aboutDetailBox .btn {
    width: 100%;
    clear: both;
    background: #e50112;
    color: #fff;
    display: block;
    margin: auto;
}
.aboutDetailBox .btn a{
    clear: both;
    background: #e50112;
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 0 40px 0;
    padding: 15px;
    font-size: 19px;
    border: 2px solid; 
     transition: 0.3s;      
}
.aboutDetailBox .btn a:hover{
    background: #e50112;
    color: #fff;
}

.aboutDetailBox .inBox {
    width: 100%;
}
.aboutDetailBox .innerBox {
    margin: 0 0 30px 0;
}
.aboutDetailBox .innerBox span {
    text-align: center;
    display: block;
    font-size: 10px;
    line-height: 1.3em;
}

/*======================================

	レスポンシブ：SP：トップ：チケット

========================================*/
.ticketBox{
margin: 0 0 40px 0;
}
.ticketBox .inBox{
    padding: 0 25px 0;
}
.ticketBox h4{
    margin: 0 0 20px;
}
.ticketBox .mainBlock{

}
.ticketBox .mainBlock .attentionList {
    margin: 0 0 35px 0;
}
.ticketBox .mainBlock .attentionList li{
    font-size: 13px;
}
.ticketBox .mainBlock ul{
	margin: 0 0 20px 0;
}
.ticketBox .mainBlock ul li{
    font-size: 15px;
}
.ticketBox .attentionList{
    padding: 10px;
}
.ticketBox .attentionList li{
	margin: 0;
}
.ticketBox .attentionList .fas{
    font-size: 9px;
}
.ticketBox .name {
    font-weight: 500;
}
.ticketBox .btn a {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 16px;
    border: none;    
    margin: 0 auto 30px auto;    
}
.ticketBox .btn a:hover{
    background: #E50112;
    color: #fff;
}
.ticketBox .ticketDetail .btn a{
    margin: 0 auto 15px auto;
    font-size: 14px;
}

.ticketBox .ticketDetail .btn .none{
    margin: 0 auto 0 auto; 
}
.ticketBox .btn .end:before {
    font-size: 15px;
}
.ticketBox .ticketDetail{
    border: 2px solid #000;
    margin: 0 0 20px;
    padding: 20px;
}
.ticketBox .ticketDetail dd .prizeBox {
    height: auto;
}
.ticketBox .ticketDetail dd .prizeImage {
    width: 100%;
    padding: 10px 0 15px;
}
.ticketBox .ticketDetail dd .prizeCap {
    padding: 0 0 0 5px;
    top: 5px;
    left: auto;
    text-align: center;
    margin: 0 auto 0;
    width: 100%;
    display: block;
    font-size: 13px;
}
.ticketBox .ticketDetail dd .prizeTxt span {
    left: 0;
    top: 0;
    width: 100%;
    color: #0471fd;   
}
.ticketBox .ticketDetail dd .prizeTxt {
background: none;
    left: 0;
    top: 0;
    color: #000;
    width: auto;
    height: auto;
}
.ticketBox .ticketDetail .btn{
    float: none;
    width: 100%;
}
.ticketBox .ticketDetail dt{
	font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px 0;
    border-left: 5px solid;
    padding: 0 0 0 9px;
}
.ticketBox .ticketDetail dd{

}
.ticketBox .ticketDetail dd .lead{
font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
}
.ticketBox .ticketDetail dd ul{
    padding: 0;
    float: none;
    margin: 0 0 10px 0;
    display: block;
}
.ticketBox .ticketDetail dd ul li span {
    color: #ff0000;
    font-size: 12px;
    text-indent: -0.7em;
    display: inline-block;
    margin: 0 0 0 16px;
    line-height: 1.2em;    
}
.ticketBox .ticketDetail dd ul li{
    font-size: 13px;
    font-weight: 400;
}
.ticketBox .ticketDetail dd .attentionList{
    padding: 15px;
    margin: 0;  
}
.ticketBox .ticketDetail dd .attentionList li{
	font-size: 11px;
    text-indent: -13px;
    margin: 0 0 10px;
    line-height: 1.3em; 
}
.ticketBox .ticketDetail dd .attentionList li:last-child{
    margin: 0;
}
.ticketBox .seatAttention {
    border: 2px solid;
    padding: 10px;
    margin: 0 0 20px 0;
}
.ticketBox .seatAttention .tit {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
}
.ticketBox .mainBlock .attentionList li {
    font-size: 11px;
    text-indent: -13px;
    padding: 0 0 0 13px;
    margin: 0 0 5px;

}
.ticketBox .mainBlock ul li:last-child {
    margin: 0;
}
.ticketBox .mainBlock ul li.none{
    margin: 0 ;
}
.ticketBox .mainBlock ul li span {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5em;
    color: #585858;
}
.ticketBox .mainBlock ul li {
    font-size: 13px;
    line-height: 1.3em;
}
.ticketBox .mainBlock .attentionList {
    margin: 0 0 15px 0;
}
.ticketBox .mainBlock .seat li {
    margin: 0 0 15px 0!important;
    line-height: 1;
}
.ticketBox .mainBlock ul li .min {
    font-size: 10px;
}
.ticketBox #acd .lead {
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 12px;
}
.ticketBox #acd .attentionList li {
    font-size: 11px;
    margin: 0 0 10px 1em;
    color: #fff;
    font-weight: 200;
    text-indent: -0.5em;
    line-height: 1.5em;
}
.ticketBox #acd .attentionList li:last-child{
    margin: 0 0 0 1em;
}
.ticketBox #acd .box {
    background: rgba(255,255,255,0.1);
    margin: 0 0 10px 0;
    padding: 10px;
}
.ticketBox #acd .txt {
    clear: both;
    color: #fff;
    margin: 0 0 30px 0;
    text-align: left;
    font-size: 10px;
}


#acd h5 {
    position: relative;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}
#acd h5::after {
    position: absolute;
    margin: -12px 0 0;
    content: "";
    vertical-align: middle;
    top: 60%;
    right: 5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#acd h5 .redTxt{
    font-size: 11px!important;
}
#acd ul li {
    font-size: 12px;
    margin: 0 0 5px 1em;
    color: #fff;
    text-indent: -1em;
}
#acd ul li:last-child {
    margin: 0 0 0 1em;
}
.ticketBox .seatImg img {
    width: 80%;
    margin: 0 auto 20px;
    display: block;
}
#acd.block {
    width: 100%;
    margin: 0 auto 0;
    background: #000;
    border-color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 1.5;
}
.ticketBox #acd .tit {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 10px 0;
}


table.ticketTable th {border: 0;display: block;font-size: 14px;padding: 5% 5% 0;text-align: left;width: 100%;}
table.ticketTable th:after {
height:1px;
width:auto;
margin: 0 10px;
}
table.ticketTable td {
display: block;
padding:0 5% 5%;
font-size: 14px;
}
table.ticketTable td:after {
content: none;
}
table.ticketTable tr:last-of-type td {
border:none;
}
dl.ticketList {
border-top: 1px solid #aaa;
padding: 10px 0 0;
margin: 10px 0 0;
}
dl.ticketList dt {
	border-right: 0px solid #aaa;
	float: none;
	margin: 0 10px 0 0;
	width: 100%;
    padding: 0;
}
dl.ticketList dd {
border-bottom: 1px solid #aaa;
padding: 0 0 10px;
margin: 0 0 10px;
}

dl.ticketList dd span {
    font-size: 12px;
}
.pcbr{
    display: none;
}
dl.ticketList dd:nth-of-type(3),
dl.ticketList dd:nth-of-type(4)
 {
    height: 25px;
}


/*======================================

	レスポンシブ：SP：トップ：メッセージ

========================================*/


.messageBox .inBox {
    padding: 0 25px 50px;
    box-sizing: border-box;
}


.messageList {
    display: block;
    margin: 0 0 20px;
}
.messageList li:nth-child(1) {
    padding: 0 0 10px 0;
}
.messageList li:nth-child(2) {
    padding: 0 0 10px 0;
}
.messageList li:nth-child(3) {
    padding: 0 0 0 0;
}
.messageList li a .name {
    margin: 0 0 10px;
    text-align: left;
    font-size: 15px;
    border-left: 5px solid;
    padding: 0 0 0 10px;
}

.subMesList {
    display: block;
}
.subMesList li {
    box-sizing: border-box;
    width: 100%;
}
.subMesList li:nth-child(odd) {
    padding: 0 0 20px;
}
.subMesList li:nth-child(even) {
    padding: 0;
}
.subMessage {
    background: #efefef;
    padding: 20px;
}
.subMessageTit {
    font-size: 16px;
}
.subMessageImg {
    display: block;
    float: none;
    padding: 0;
    margin: 0 auto 20px;
	width: 60%;
}
.subMessageTxt {
    line-height: 1.6em;
    letter-spacing: 0.05em;
    margin: 0 0 10px;
    font-size: 12px;
}
.subMessageName {
    font-size: 12px;
}

/*======================================

	レスポンシブ：SP：トップ：バナーボックス

========================================*/
.bnrBox .inBox {
    padding: 0 25px;
}
.bnrBox .bnr a {
    width: 100%;
}







}






