@charset "UTF-8";


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


	reset.css


====================================================*/
*{
	-webkit-touch-callout: none;
	user-select: none;
	outline:none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	vertical-align:baseline;
	background:transparent;
}


html, body {
    font-family: "tot-shizukago-stdn", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
background: #f3f4f6;
}
body {
	width: 100%;
	font-smoothing: antialiased;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: antialiased;
color: #000;
    overflow-x: hidden;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}
ul, ol {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	vertical-align:baseline;
	text-decoration: none;
	color: inherit;
}
input, select {
	vertical-align:middle;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	line-height: 1.0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

img {
	width:100%;
	vertical-align: bottom;
	line-height: 1.0;
}
.drawer__btn{
	display:none;
}
.section--detail {
    position: relative;
    z-index: 1;
    padding-top: 5vw;
}
.delighter {
    transition: all .5s ease-out;
    transform: translatey(5%);
    opacity: 0;
   }

.delighter.started {
      transform: none;
      opacity: 1;
   }
 
.anc{
display:block;
position: absolute;
top: -20px;
}

.ancPoint{
position:relative;
    display: block;
    padding-top: 50px;
    margin-top: -50px;
}

.bgBox {
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    transition: all 0.6s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    pointer-events: none;
}

.bgBox::before, .bgBox::after {
    content: '';
    display: block;
    width: 5%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/static/exit/fanclub/feature/hatsutandoku/images/bg_lace_l_V3jvu7QF.png);
    background-size: 100%;
}

.bgBox::after {
    left: auto;
    right: 0;
    background-position: right top;
    background-image: url(/static/exit/fanclub/feature/hatsutandoku/images/bg_lace_r_V3jvu7QF.png);
}

.bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    opacity: 1;

}
.bg01 {
    opacity: 1;
    background: url(/static/exit/fanclub/feature/hatsutandoku/images/bg_main_V3jvu7QF.jpg) no-repeat center center;
    background-size: cover;
    background-position: bottom;
    transition: 0.4s;
}

.bg01::before {
    content: '';
    background-image: url(/static/exit/fanclub/feature/hatsutandoku/images/bg_kira_V3jvu7QF.png);
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 1;
    top: 0;
    left: 0;
    mask-image: url(/static/exit/fanclub/feature/hatsutandoku/images/twinkling.png);
    mask-size: 300px;
    mask-position: 0 0;
    animation: mask 2s linear 0s infinite;
}


@keyframes mask {
    0%   { mask-position: 0 0; }
    100% { mask-position: 300px 300px; }
}

.scrolling .bg01{
}


@keyframes rotation {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}



.loading {
    background: linear-gradient(45deg, #d0ffc3, #fc96d9);
    background-size: cover;
    z-index: 99999;
    transition: 0.8s ease 0.5s;
}

.loaded .loading {
    opacity: 0;
    pointer-events: none;
}


#acd .acdTit {
    width: 100%;
    display: block;
    box-sizing: border-box;
    position: relative;
    transition: 0.4s;
    cursor: pointer;
    margin: 0;
}
#acd .acdTit::after {
    position: absolute;
    margin: -12px 0 0;
    content: "";
    vertical-align: middle;
    top: 53%;
    right: 25px;
    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.on .acdTit::after {
    margin: -5px 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 0.4s;        
}
#acd .acdIn {
    margin: 40px 0 0 0;
    display: none;
}

.visual {
    height: 100vh;
    position: relative;
    margin: 0 auto;
    min-height: 46vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    gap: 1%;
    max-width: 160vh;
    min-width: 72%;
}

.visual h2 {
    margin: 0 auto 1.5rem;
    width: 100%;
    position: relative;
    line-height: 0;
}

.loaded .visual h2{
	transform-origin:center;
}

.visual .mainImg {
    width: 44%;
    transition: 0.5s;
    z-index: 1;
    position: relative;
    line-height: 0;
}

.scrolling .visual .mainImg{
}

.kv_detail {
    width: 55%;
}

.menuList_top {
    display: flex;
    flex-wrap: wrap;
    width: 92%;
    margin: 0 auto 2rem;
}

.menuList_top > li {
    width: 50%;
    margin-bottom: 0.5rem;
}


@keyframes slideL {
	0% {
		opacity: 0;
		-webkit-transform: translate(-100%, 0);
	    transform: translate(-100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0, 0);
	    transform: translate(0, 0);
	}
}
@keyframes slideR {
	0% {
		opacity: 0;
		-webkit-transform: translate(100%, 0);
	    transform: translate(100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0, 0);
	    transform: translate(0, 0);
	}
}

@keyframes upIn {
	0% {
		opacity: 0;
		-webkit-transform: translate(0, 30px);
		transform: translate(0, 30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
	}
}

.hamBtnBox {
    background: linear-gradient(180deg, #e6196c, #e75290);
    position: fixed;
    width: 50px;
    height: 50px;
    right: 5%;
    top: 20px;
    z-index: 9999;
    border-radius: 50%;
    border-top: 1px solid #ffffffbf;
    border-bottom: 1px solid #5f1d53;
    box-shadow: 0 0 15px #fff, 0 0 15px #fff;
}
.hamBtn {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 14px;
    transition: all .3s ease;
    cursor: pointer;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    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 {

}
.hamBtn.open span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
.hamBtn.open span:nth-of-type(2) {
	opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}


.hamBox {
    display: none;
    min-height: 100%;
    box-sizing: border-box;
    position: fixed;
    height: auto;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: auto;
    background: rgb(32 0 20 / 66%);
    backdrop-filter: blur(13px);
}

.menuList {
position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: none;
    padding: 0;
    width: auto;
    margin: auto;
    text-align: center;
    display: block;
width: 100%;
}
.menuList > li > a {
    text-decoration: none;
    font-size: 40px;
    position: relative;
    color: #ff62a5;
    display: block;
    width: fit-content;
    margin: 0 auto 35px;
    font-family: ab-j-gu, sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}


.menuList li:last-child a{
    margin: 0 auto 0px;
}
.snsList {
    width: 94%;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    font-family: ab-j-gu, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.snsList li {
    width: 48%;
    display: flex;
    align-items: center;
}

.snsList li a {
    font-size: clamp(10px, 1.2vw, 1.7vh);
    padding: 0.7em 1.4em;
    line-height: 1;
    background: #fff;
    color: #4f4f4f;
    display: block;
    border-radius: 5rem;
    text-decoration: none;
    letter-spacing: 0;
}

.snsList li .sns_tit {
    color: #f24597;
    width: 80px;
    font-size: 14px;
    letter-spacing: 0;
}

.menuList .snsList {
    width: 500px;
    margin-top: 50px;
}


.notesub {
margin: 15px auto 15px;
font-size: 15px;
}

.btnArea{
    margin: 0 auto 50px;
}
.btnArea:last-of-type{
    margin: 0 auto;
}
.btnArea .txt{
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: bold;
}
.btn a, .btn input {
   min-width: 400px;
}

.btn .btn--main {
    text-decoration: none;
    background: linear-gradient(180deg, #e61066 0%, #fe7ab0 80%);
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 999px;
    padding: 25px;
    line-height: 1;
    height: auto;
    display: block;
    text-align: center;
    width: 90%;
    max-width: 300px;
    margin: auto;
    color: #fff;
    box-shadow: 0 2px 0 #000;
    transition: 0.2s;
    top: 0;
}

.btn.sub .btn--main {
    background: rgb(255 251 204);
    margin: 20px auto 2px;
    color: #000;
}

.btn.memberArea .btn--main {
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto 0;
    color: #1b297b;
    border: 1px solid #1b297b;
}
.btn .btn--main.off{
    background: #ccc;
    border: 1px solid #ccc;
    pointer-events: none;
}



.btn .btn--sub {
text-decoration: none;
background: #808080;
color: #fff;
margin: 20px 0 15px;
border-radius: 3em;
pointer-events: none;
}


.box .serviceBox {
display:-webkit-box;
display:-ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 auto 15px;
}
.box .serviceBox li {
    width: 100%;
    margin: 0 0 30px 0;
    text-align: center;
    box-sizing: border-box;
    font-size: 15px;
    border: solid 2px;
    border-radius: 0;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    position: relative;
}

.box .serviceBox li::before {
    content: '';
    background: #fff;
    border-radius: 20px;
    border: solid 2px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 6px;
    left: 7px;
    z-index: -1;
}

.box .serviceBox li:last-child{
    margin: 0;
    /*padding: 0;*/
}

.box .serviceBox li .typeTit {
    margin: 0 auto 12px;
    font-size: 22px;
    font-weight: bold;
}

.box .serviceBox li .typeTit span{
    display: block;
    font-size: 25px;
}
.box .serviceBox li dl.entryArea {
    margin: 0 auto 20px;
    filter: none;
    border: 1px solid;
}

.box .serviceBox li dl.entryArea .mini {
    font-size: 11px;
}

ul.btnArea {

display:-webkit-box;
display:-ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
justify-content: center;
}
ul.btnArea li {
margin: 20px 20px 0;
padding: 0px 0 0px;
border: none;
}
ul.btnArea li .btn a {
min-width: 350px;
}

.scrolldown {
    position: absolute;
    bottom: 30px;
    left: 5%;
    z-index: 10;
}


.scrolldown span {
    position: absolute;
    left: 10px;
    bottom: 6px;
    color: #f24597;
    font-size: 13px;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-family: ab-j-gu, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}


.scrolldown:before {
    content: "";
    position: absolute;
    bottom:0;
    left:-4px;
  width:10px;
  height:10px;
  border-radius: 50%;
  background:#fff;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
      0%{bottom:65px;}
     100%{bottom:-5px;}
 }


@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
 }

.scrolldown:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 70px;
    background: #f24597;
}



header{
    display: none;
}

.section--detail .lead {
text-align: center;
background: #222;
position: relative;
color: #fff;
padding: 30px;
font-weight: normal;
}

.box {
    position: relative;
    width: 84%;
    margin: 0 auto 10vw;
}

.box:nth-child(odd){

}
.box:nth-child(even){

}

.box .inner {
    position: relative;
    padding: 5vw;
    border-radius: 5vw;
    z-index: 1;
    background: #fff;
    color: #424242;
}

.box h3 {
    font-weight: bold;
    font-size: 7vw;
    padding: 0 0.1em;
    text-align: center;
    color: #fff;
    line-height: 1.5;
    font-family: blow-up, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    margin-bottom: 0.4em;
    background: linear-gradient(180deg, #bd10e6 0%, #98b3e8 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 0.04em;
    filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 11px #fff);
}

.box h3.ja{
    font-size: 3.8vw;
    letter-spacing: 0.3em;
}

.box h3.tit_img {
    width: 500px;
    padding: 0;
}


.text {
}
a{
text-decoration: underline;
	-webkit-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}
a:hover{
text-decoration: none;

}


.note {
font-size: 13px;
font-weight: normal;
text-indent: -1em;
padding: 0 0 0 1em;
display: inline-block;
}

.bold{
font-weight:bold;
}

/***************************************

	comment

***************************************/

.box#comment::before{
    display:none;
}
.box#comment .commentArea{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.box#comment .commentBox {
    padding: 40px;
    color: #ffffff;
    width: 49%;
    text-align: center;
    background: linear-gradient(180deg, #bd10e6 0%, #98b3e8 80%);
    border-radius: 2vw;
    -webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
    box-shadow: 0 0 15px #fff, 0 0 15px #fff;
}

.box#comment .commentBox.ri{

}
.box#comment .commentBox.kn{

}
.box#comment .commentBox .name {
    font-size: 24px;
    margin: 0 0 20px 0;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 900;
}
.box#comment .commentBox .txt {
    font-size: 14px;
    background: #ffffff;
    padding: 15px;
    color: #4f4f4f;
    font-weight: 500;
    border-radius: 15px;
    border: 1px solid;
}


/***************************************

	概要

***************************************/

.box#about{

}
.box#about .contact{
margin: 80px 0 0 0;
}
.box#about .contact .faqTxt{
    font-size: 16px;
    margin: 0 0 20px 0;
}
.box#about .contact dl.entryArea {
    margin: 0 auto 20px;
}
.box#about .contact dl.entryArea dt {
    width: 30%;
    font-size: 14px;
}
.box#about .contact dl.entryArea dd {
    width: calc(100% - 30%);
}



.box_table {
    margin: 0 auto 50px;
    border: 2px solid;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.s-table {
    width: 100%;
    border-collapse: collapse;
}
.s-table thead{

}
.s-table thead th {
    padding: 1em 0;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid;
    background: #f963a0;
}
.s-table td {
    padding: 25px 0;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    border-bottom: dashed 1px;
    position: relative;
    letter-spacing: 0.02em;
}

.s-table tr:last-child td {
    border-bottom: none;
}

.s-table td + td::before {
    width: 1px;
    height: 84%;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 1px solid #aaa;
}
.s-table .day {
    width: 18%;
    position: relative;
}
.s-table .addition .day:before{
    display: block;
    width: 100px;
    margin: 0 auto 0;
    content: "振替公演";
    font-size: 12px;
    font-weight: 600;
    background: #000;
    padding: 3px 5px;
    vertical-align: 3px;
    position: relative;
}

.s-table .date {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    font-family: "tot-shizukago-stdn", sans-serif;
    letter-spacing: 0;
}
.s-table .youbi {
    padding-left: 7px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 3px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}
.s-table .time {
    width: 17%;
    font-weight: bold;
}
.s-table .area {
    width: 12%;
    font-weight: bold;
}
.s-table .venue {
    width: 30%;
    padding-left: 4%;
    padding-right: 4%;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
.s-table .ticketGuid {
    width: 23%;
    padding-left: 4%;
    padding-right: 1%;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    font-size: 12px;
}
.s-table .transfer .date,
.s-table .transfer .youbi,
.s-table .transfer .time,
.s-table .transfer .area,
.s-table .transfer .venue .line,
.s-table .transfer .ticketGuid,
..s-table .transfer .ticketGuid a{
    text-decoration: line-through;
    text-decoration-color: #FF0000;
}
.s-table .transfer .infoBtn{

}
.s-table .transfer .infoBtn a{
    background: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    text-align: center;
    display: block;
    width: 140px;
    border-radius: 100px;
    margin: 5px 0 0;
}
.s-table .new {
  background: #1b297b;
  line-height: 1;
  padding: 20px 10px;
  border-radius: 53px;
  margin: 0 11px 0 0;
  font-weight: bold;
  font-size: 13px;
  /*position: absolute;*/
  border: 1px solid ;
  top: 25%;
  left: -10%;
}

dl.entryArea {
    color: #424242;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    font-size: 16px;
    margin: 0 auto 50px;
    border-radius: 1vw;
    -webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
    background: #f963a0;
    padding: 20px 20px 20px 0;
}

dl.entryArea dt {
    width: 25%;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

dl.entryArea dd {
    display: inline-block;
    width: calc(100% - 25%);
    padding: 20px 30px;
    font-size: 15px;
    text-align: left;
    background: #fff;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid;
}

dl.entryArea dd .fcTicket{
	padding:10px 20px;
	text-align:left;
}



dl.entryArea dd p.seat {

}
dl.entryArea dd p.sub {
margin: 0 auto 10px;
padding: 0 0 10px;
font-size: 14px;
border-bottom: 1px dotted #fff;
}

dl.entryArea dd table.seatArea {
width:100%;
    background: #f4f4f4;
    
}
dl.entryArea dd table.seatArea th {
border: solid 5px #fff;
padding: 10px 0em;
position:relative;
width:20%;
}
dl.entryArea dd table.seatArea td {
border: solid 5px #fff;
    padding:10px 3em;
    text-align: left;
width:40%;
}
dl.entryArea dd table.seatArea td span{
    font-size: 0.7em;
    line-height: 16px;
    display: block;
    letter-spacing: -0.5px;
}

dl.entryArea dd table.seatArea {
position:relative;
}

dl.entryArea dd table.seatArea.sold::before {
  content: "SOLD OUT";
  position: absolute;
  color: #f00;
  top: 50%;
  left: 50%;
  transform: rotate(-0deg) translate(-50%,-50%);
  font-size: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: solid 2px;
  display: inline-block;
    width: 90%;
	padding:5px;
	z-index:10;
}
dl.entryArea dd .price{
 
}
dl.entryArea dd .price .tit{
text-align: left;
    font-size: 18px;
    margin: 0 0 15px 0;
    padding: 0;
    line-height: 1.5;
    font-weight: bold;
}
dl.entryArea dd .price .list{
    margin: 0 0 40px 0;
}
dl.entryArea dd .price .list li {
    font-size: min(1.8vw, 21px);
    font-weight: bold;
    margin: 0 0 15px 0;
    border-bottom: 1px dotted;
    padding: 0 0 16px 0;
}
dl.entryArea dd .price .list li:last-child{
    margin:0;
    border-bottom: none;
    padding: 0;
}
dl.entryArea dd .price .list li .priceTxt{
    font-size: min(3vw, 32px);
}
dl.entryArea dd .price .list li .priceTxt .mini{
    font-size: 13px;
}
dl.entryArea dd .price .seatTit{
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: bold;
}
dl.entryArea dd .price .seat {
    background: rgb(255 155 224 / 31%);
    padding: 30px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    border-radius: 15px;
}

dl.entryArea dd .price .seat dt {
    width: 100%;
    text-align: left;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px dashed;
    color: #f963a0;
}

dl.entryArea dd .price .seat dd {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    background: none;
}

dl.entryArea dd .price .seat dd .tit {
    line-height: 1;
    margin: 0 0 5px 0;
    background: #f963a0;
    color: #fff;
    font-size: 14px;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 999px;
}

dl.entryArea dd .price .seat dd .txt{
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 600;
}
dl.entryArea dd .price .seat dd .mini{
    font-size: 12px;
}
dl.entryArea dd .price .seat dd .attentionList li{
    font-size: 13px;
    text-indent: -1em;
    margin: 0 0 5px 1em;
}
dl.entryArea dd .faqTxt{
    margin: 0 0 20px 0;
    font-size: 16px;
}
dl.entryArea dd .qaList{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0 auto 20px;
}
dl.entryArea dd .qaList li{
    width: 32%;
    margin: 0;
}
dl.entryArea dd .qaArea {
    margin: 0 auto;
    padding: 15px;
    height: 100%;
    background: rgb(255 155 224 / 31%);
    border-radius: 10px;
}
dl.entryArea dd .qaArea dt {
    width: 100%;
    padding: 0;
    text-align: center;
    margin: 0 0 10px 0;
    font-size: min(1vw, 16px);
    letter-spacing: 0;
    color: #f963a0;
}
dl.entryArea dd .qaArea dd {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    font-size: 12px;
    background: no-repeat;
}

.cs {
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    color: #f963a0;
    font-family: blow-up, sans-serif;
    font-weight: 400;
}

.mlead {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}


.ticketBtnArea{
margin: 30px 0 12px !important;
}
.ticketBtn {
text-align:center;	
	
}
.ticketBtn a{
	appearance: none;
display: inline-block;
border-radius: 3em;
border: none;
position: relative;
z-index: 1;
font-family: "Roboto Condensed", sans-serif;
min-width: 300px;
height: 60px;
line-height: 60px;
cursor: pointer;
overflow: hidden;
background: #d22d27;
color: #fff;
text-align: center;
text-decoration: none;
	  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 15px;
  font-weight:bold;
}
.ticketBtn a:hover {
  color: #d22d27;
  background: #fff100;
}


.wrap {
    padding-bottom: 0;
    overflow: initial;
}
footer {
    position: relative;
    z-index: 99;
    height: auto;
    padding: 40px 20px;
}
footer .inner{

}
footer .inner .footer--sns,
footer .inner .list--support,
footer .exhibition{
    display: none;
}
footer .copyright::before {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url(/static/exit/fanclub/cmn/yoshimotokogyo.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0;
    background-position: 50% 50%;
}

.livetit {
text-align: center;
    margin: 0 auto 20px;
    font-size: 30px;
}


.logo{
width: 500px;
margin: 0 auto;
}

ul.serviceBox.archive {
/*border-top:solid 1px #000;*/
margin: 15px auto 0px;
}

ul.serviceBox.archive li {
border-bottom:solid 1px #000;
margin: 0;
padding: 15px 10px 10px;
}

ul.serviceBox.archive li .typeTit {
position: relative;
cursor: pointer;
}

ul.serviceBox.archive li .typeTit:after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    top: -10px;
    right: 15px;
    width: 17px;
    height: 17px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

ul.serviceBox.archive li .typeTit.active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
}
ul.serviceBox.archive li .typehidden {
display:none;
padding: 15px 0 0px;
}

/***************************************

	goods

***************************************/

.ph_goods {
    margin: 0 auto 20px;
    width: 100%;
}

.goodstext {
    padding: 25px;
    font-weight: bold;
    font-size: 15px;
    background: #fff;
    margin: 0 auto 30px;
    border: 1px solid;
    border-radius: 15px;
}

dl.goodsInfo {
  margin: 0 auto 20px;
}

.phSub  {
  width: 20%;
  margin: 0 auto;
}

#cboxOverlay {
    background: #000;
    }
#colorbox, #cboxOverlay, #cboxWrapper, #cboxContent{
  border-radius: 0;
  overflow: visible;
}

#cboxClose {
    position: absolute;
    top: -35px;
    right: -5px;
    display: block;
    background: url(/static/exit/fanclub/feature/hatsutandoku/images/close.png) no-repeat top center;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: 30px;
    z-index: 999999;
    pointer-events: all;
    display: block!important;    
}
#cboxClose:hover{
    background-position: center;
}
#colorbox, #cboxOverlay, #cboxWrapper {
    overflow: visible;
}
#cboxContent {
    background: #fff;
    overflow: visible;
    border-radius: 0;
}
#cboxNext:hover{
    background-position: center right;    
right: -40px;
    top: 50%;
}
#cboxPrevious:hover{
    background-position: center left;    
left: -40px;
    top: 50%;
}
#cboxCurrent {
    display: none!important;
}    
#cboxLoadedContent {
    margin-bottom: 0;
}


/***************************************

	fc

***************************************/

#fcArea{

}
#fcArea .memberbox{
}

#fcArea .tit{
    width: 100%;
    /*max-width: 600px;*/
    margin: 0 auto 20px;
}
#fcArea .subTit{
    text-align: center;
    font-size: 27px;
    font-weight: bold;
    margin: 0 auto 30px;
}
#fcArea .lead{
    margin: 0 0 50px 0;
}
#fcArea .lead p{
    margin: 0 0 15px 0;
}
#fcArea .lead p:last-child{
    margin: 0;
}
#fcArea .textbox {
    padding: 3vw;
    margin: 0 auto 30px;
    background: rgb(255 224 245);
    border-radius: 15px;
}
#fcArea .textbox dt{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 20px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #1b297b;
}
#fcArea .textbox dd{
	text-align: center;
}
#fcArea .textbox dd .txtfirst {
  text-align: left;
}
#fcArea .qr{
    width: 80%;
    max-width: 300px;
    margin: 0 auto 15px;
}
#fcArea .qrTxt{
    text-align: center;
    font-size: 13px;
}

@media screen and (min-width:961px) {

.snsList{
}

.link:hover{
	text-decoration: underline;
    opacity: 0.8;
}

.snsList li a:hover{
    opacity: 0.8;
}
.btn .btn--main:hover {
    box-shadow: 0 0px 0 #000;
    top: 2px;
    background: linear-gradient(180deg, #e61066 0%, #fe7ab0 80%);
}
.btn.sub .btn--main:hover {
    background: rgb(255 251 204);
}


}

@media screen and (min-width:1px) and (max-width: 961px) {

.wrap:not(.page--home) {
    padding-bottom: 0;
}

.bgBox::before, .bgBox::after {
    width: 14%;
    max-width: 80px;
}

.visual_inner {
    max-width: 90vw;
    width: 95%;
}

.menuList > li > a {
    font-size: 27px;
    margin-bottom: 25px;
}

.menuList .snsList {
    width: 100%;
    margin-top: 40px;
}

.snsList li {
    width: 80%;
    margin: 0 auto;
    max-width: 265px;
    margin-bottom: 12px;
}

.snsList li:last-child {
    margin-bottom: 0;
}

footer .inner {
    padding: 0 20px;
}

#acd .acdTit {
    text-align: left;
}
#acd .acdTit::after {
    right: 0;
    width: 10px;
    height: 10px;
}
#acd .acdIn {
    margin: 20px 0 0 0;
}

.box .serviceBox li dl.entryArea {
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px 8px 8px;
}

.btn a, .btn input {
    min-width: 100%;
}

.visual {
    height: 100dvh;
    min-height: auto;
}
.visual h2 {
        width: 80%;
        max-width: 500px;
        top: 20vh;
}
.visual .mainImg {
    width: 95vh;
    padding-left: 3%;
}
.scrolldown {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: auto;
}
.scrolldown span {
    position: absolute;
    left: 10px;
    bottom: 8px;
    font-size: 12px;
}
.scrolldown:after {
}
.scrolldown:before {
}


.snsList {

}
.box {
        margin: 0 auto 50px;
        display: block;
}
.box h3 {
        font-size: 30px;
        width: 100%;
        writing-mode: initial;
        margin: 0 0 20px 0;
}
.box#about h3,
.box#goodsArea h3{
    text-align: right;
}
.box h3.ja {
    font-size: 24px;
}

.box h3.tit_img {
    width: 88%;
    max-width: 400px;
}

.page--entry .section--detail .lead {
    margin: 0 0 100px;
    padding: 20px;
}

.livetit{
  margin: 10px auto 20px;
  font-size: 17px;
}

.box .inner {
        padding: 20px;
        outline-offset: -5px;
        width: 100%;
}
.box .tit {
font-size: 25px;
padding: 0;
    margin: 0 0 20px 0;
}

.box#comment .commentBox {
    padding: 20px 15px 15px;
    width: 100%;
    border-radius: 15px;
}
.box#comment .commentBox .name {
    font-size: 17px;
    margin: 0 0 15px 0;
}
.box#comment .commentBox .txt {
    font-size: 13px;
    text-align: left;
    line-height: 1.6;
}


dl.ticket {
display: block;
}

dl.ticket dt{
width: 100%;
}
dl.ticket dd{
padding: 0;
margin: 0;
border-left: solid 0px;
}



.scroll {
    left: 10px;

}


.sub {
font-size: 13px;
}

.block--notice {
padding: 20px 10px 15px;
}
.block--notice .headline {
font-size: 20px;
margin: 0 auto 20px;
}
.block--notice ul.noticeList {
font-size: 13px;
}

ul.meadiaLogo li {
width:100%;
}

dl.vrHowto dd {
font-size: 15px;
text-align: left;
}
dl.vrAttention dt {
font-size: 15px;
margin: 0 0 5px;
}
dl.vrAttention dd {
font-size: 13px;
}



.vr {
margin: 20px 0 10px;
border-top: solid 3px #ff0;
padding: 35px 0 0;
}
.vr .text {
    text-align: left;
}

.vrlogo {
text-align: center;
margin: 20px 0;
}
.vrlogo img{
width:60%;
}

dl.vrAttention {
margin: 0 auto 0px;
}

.vr .btn--main {
margin: 10px 0 20px;
}

  
.box_table {
    margin-bottom: 30px;
    border-radius: 15px;
}

.s-table thead {
    display: none;
}
.s-table tr {
border-bottom: 1px solid;
    padding: 15px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.s-table tr:last-child{
border-bottom: none;
}
.s-table .additionLive{
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
}
.s-table .additionLive span{
	display: inline-block;
    padding: 5px 15px;
    background: #000;
    color: #FFF;
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 600;
}
.s-table .day {
    width: auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    align-items: baseline;
    margin: 0 0 5px 0;
    border: none;
    line-height: 1.3;
}
.s-table .date {
    font-size: 12px;
    white-space: nowrap;
    font-size: 20px;
}
.s-table .new {
    padding: 22px 12px;
    top: 30%;
    left: 240%;
    position: absolute;
    border-radius: 53px
}
.s-table .addition .day:before{
	display:none;
}
.s-table .youbi {
        padding-left: 5px;
        display: block;
        font-size: 14px;
        top: -1px;
}
.s-table .time {
    display: none;
}
.s-table .time2 {
    margin-top: 4px;
    display: block;
    font-size: 13px;
    font-weight: 600;
}
.s-table .area {
	width: auto;
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 15px;
    padding: 0 0 0 10px;
    line-height: 1.3;
    display: block;
    border: none;
}
.s-table td + td::before {
	display:none;
}
.s-table .venue {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
    display: block;
    border: none;
    text-align: left;
}

.s-table .ticketGuid {
    width: 100%;
    padding: 0;
    font-size: 12px;
    display: block;
    border: none;
}
.s-table .ticketGuid .fas {
    padding: 0 5px 0 0;
    vertical-align: -0.05em;
}
.s-table .ticketGuid span a {
	font-size: 12px;
    font-weight: 500;
}   

.serviceBox {
margin: 2em auto 1em;
}


.box .serviceBox li {
width: 100%;
margin: 0 auto 20px;
padding: 10px 0;
font-size: 14px
}

.box .serviceBox li .price {
padding: 10px 0;
}

dl.entryArea {
    font-size: 14px;
    margin: 0 0 20px 0;
    padding: 12px;
    border-radius: 15px;
}

dl.entryArea dt {
    display: block;
    width: 100%;
    border-right: 0;
    margin: 0 0 10px 0;
    border-bottom: 0;
    font-size: 14px;
}
dl.entryArea dd {
    display: block;
    width: 100%;
    padding: 20px 15px;
    border: none;
    margin: 0;
    font-size: 13px;
    text-align: center;
}
dl.entryArea dd.detail{
padding: 0;
margin: 10px 10px;
}
dl.entryArea dd p.sub {
  margin: 0 auto 15px;
  padding: 0 0 15px;
  font-size: 12px;
}
dl.entryArea dd table.seatArea {
border: solid 1px #fff;
}
dl.entryArea dd table.seatArea th {
padding: 10px 5px;
}
dl.entryArea dd table.seatArea td {
padding: 10px 5px;
}

dl.entryArea dd .price {
    text-align: left;
    padding: 0;
}
dl.entryArea dd .price .tit {
    text-align: left;
    font-size: 12px;
    margin: 0 0 10px 0;
}
dl.entryArea dd .price .list {
        margin: 0 0 20px 0;
}
dl.entryArea dd .price .list li {
        font-size: 15px;
        margin: 0 0 10px 0;
        padding: 0 0 10px 0;
}
dl.entryArea dd .price .list li .priceTxt {
    font-size: 20px;
    display: block;
}
dl.entryArea dd .price .list li .priceTxt .mini{
    font-size: 11px;
}
dl.entryArea dd .price .seatTit {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: bold;
}
dl.entryArea dd .price .seat {
    padding: 15px 12px;
    margin: 0 0 15px 0;
    border-radius: 10px;
}
dl.entryArea dd .price .seat dt {
	font-size: 13px;
}
dl.entryArea dd .price .seat dd{
	text-align: left;
}
dl.entryArea dd .price .seat dd .tit {
    font-size: 11px;
}
dl.entryArea dd .price .seat dd .txt {
    font-size: 13px;
}
dl.entryArea dd .price .seat dd .attentionList li {
    font-size: 11px;
}
dl.entryArea dd .price .seat dd .mini {
    font-size: 11px;
}
dl.entryArea dd .price .seat:last-of-type{
    margin:  0;
}
dl.entryArea dd .faqTxt {
    margin: 0 0 10px 0;
    font-size: 13px;
    text-align: left;
}
dl.entryArea dd .qaList {
    display: block;
    margin: 0 auto 10px;
}
dl.entryArea dd .qaList li {
    width: 100%;
    margin: 0 0 10px 0;
}
dl.entryArea dd .qaArea {
    padding: 15px 12px;
}
dl.entryArea dd .qaArea dt {
    margin: 0 0 10px 0;
    font-size: 13px;
    text-align: left;
}
dl.entryArea dd .qaArea dd {
    font-size: 11px;
    text-align: left;
}
.box#about .contact {
    margin: 30px 0 0 0;
}
.box#about .contact .faqTxt {
    font-size: 13px;
    margin: 0 0 10px 0;
}

.box#about .contact dl.entryArea dt {
    width: 100%;
    font-size: 12px;
    margin: 0 0 10px 0;
}
.box#about .contact dl.entryArea dd {
    width: 100%;
    font-size: 12px;
    text-align: left;
}
.btnArea {
    margin: 0 auto 30px;
}
.btnArea .txt {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: bold;
}
.btnlist {
    display: block;
}

.btnlist .btn {
    display: block;
    margin: -25px 0px 5px;
    {#margin: 0 0px -10px;#}
}
.btnlist .btn .btn--main {
margin-bottom: 0px;
}
.box .serviceBox li {
    padding: 16px;
    margin: 0 auto 15px;
    border-width: 1px;
}
.box .serviceBox li::before {
    border-width: 1px;
    top: 5px;
    left: 5px;
}

.box .serviceBox li .typeTit {
    margin: 0 auto 15px;
    font-size: 15px;
    font-weight: bold;
}
.box .serviceBox li .typeTit span {
    display: block;
    font-size: 13px;
}



ul.serviceBox.archive li .typehidden {
padding: 0px 0 0px;
}

ul.serviceBox.archive li .typehidden .btnlist .btn {
  margin: -25px 0px 0px;
}


.btn .btn--main {
    margin: 0;
    font-size: 14px;
    padding: 22px;
    border-width: 1px;
}

.btn.sub .btn--main {
    margin: 10px auto 0;
}
.ticketBtn {
margin: 0 auto 20px;
}
.ticketBtn a {
min-width: auto;
height: 50px;
line-height: 50px;
padding: 0 30px;
}

.logo--inner {
  width: 90%;
}


.note {
  font-size: 12px;
  font-weight: normal;
  text-indent: -1em;
  padding: 0 0 5px 1em;
  display: inline-block;
}

dl.entryArea dd .fcTicket {
  padding: 5px 0px;
  text-align: left;
}



.logo {
width:100%;
}
.section--detail .lead{
padding: 15px;
font-size: 14px;
}

.cs {
    font-size: 27px;
    padding: 20px;
}

.faqTxt {
  margin: 0 auto 15px;
  font-size: 16px;
}

.status {
font-size: 14px;
line-height: 1.3;
}

.box .commentBox {
font-size: 16px;
}
.box .commentBox:nth-of-type(1) {
  margin: 0 auto 15px;
}





.tab-group {
display: block;
margin: 10px auto 5px;
}
.box.tab {
margin: 0;
}


ul.serviceBox.archive {
  margin: 15px auto 0px;
}

dl.goodsInfo {
  font-size: 16px;
}

.box#bbs {
margin: -50px 0 50px 0;
}
.phbbs a {
margin: 10px 20px;
}

.btn.fromBtn {
  margin: -60px 0 100px;
}
.btn.fromBtn a.btn--main {
font-size: 120%;
width: 100%;
}
.btn.fromBtn a.btn--main:hover {
background: #D8391C;
font-size: 120%;
color: #fff;
}


.phSub  {
  width: 50%;
}

.ph_goods {
    width: 100%;
}
.goodstext {
        padding: 15px;
        font-size: 13px;
        margin: 0 0 20px 0;
        text-align: left;
    }
#fcArea .memberbox {
}
#fcArea .subTit {
    font-size: 17px;
}
#fcArea .lead {
    margin: 0 0 30px 0;
    text-align: left;
}
#fcArea .textbox {
    padding: 15px;
    margin: 0 auto 20px;
}
#fcArea .textbox dt {
    font-size: 16px;
    margin: 0 0 15px 0;
    padding: 0 0 10px 0;
}
#fcArea .textbox dd {
    font-size: 13px;
    text-align: left;
}


}