@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------
 base
--------------------------------------------------*/
html {
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
background-color: #000000;
color: #fff;
font-size: 14px;
line-height:1.8;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
letter-spacing:0.1em;
/*letter-spacing:0.15em;*/
position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

.red {
color: #D52941;
}
.bold {
font-weight: 700;
}

ul,ol {
	padding:0px;
	margin:0;
	list-style:none;
}

ul.indent li,
ol.indent li {
	text-indent:-1em;
	padding-left:1em;
}

dt {
	font-weight:normal;
}

td,dl,dd,p {
	margin:0;
	padding:0;
}

a {
color: inherit;
text-decoration:underline;
word-wrap:break-word;
word-break: break-all;
transition: 0.3s;
scroll-behavior: smooth;
}

a:hover {
color: inherit;
text-decoration:underline;
opacity: 0.5;
}
 
a:focus {
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
}

a.btn {
display: block;
color: #fff;
border: 1px solid #fff;
font-weight: 700;
text-align: center;
border-radius: 100vmax;
text-decoration: none;
max-width: 480px;
margin: 0 auto;
padding: 10px;
}

@media ( any-hover: hover ) {
a.btn:hover {
color: #000;
border: 1px solid #fff;
background-color: #fff;
opacity: 1;
}
}

section {
margin-bottom: 50px;

}
section .inner {
max-width: 1040px;
width: 92%;
margin: 0 auto;
padding-top:90px;
}

.title-area {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}

.title-area h2 {
	margin: 0;
}

.title-area hr {
	display: block;
	width: 100%;
	color: #fff;
	border: 1px solid #fff;
	margin: 0;
}

table {
border-collapse: collapse;
border-spacing:0;
}

@media screen and (max-width: 991px) {
body {
font-size: 12px;
}
section {
margin-bottom: 50px;
}
section .inner {
width: 92%;
padding-top:60px;
}

a.btn {
background-color: #fff;
border: 1px solid #fff;
color: #000;
opacity: 1;
}

}

/*-----------------------------
  fadein
-----------------------------*/
.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 1s;
}
.fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*--------------------------------------------------
  header
--------------------------------------------------*/

header {
width: 100%;
height: 93px;
position: fixed;
z-index: 9999;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #000000;
padding: 5px 20px;
border-bottom: 1px rgba(0,0,0,0.3) solid;
}

.logo-top {
max-width: 148px;
}

h1 {
margin-bottom: 0;
}

.home {
max-width: 110px;
font-size: 11px;
margin: 20px auto 0;
text-align: center;
}

.home a {
text-decoration: none;
opacity: 1;
}

.home a:hover {
  opacity: 0.5;
}

header .hamburger {
top:33px;
right:20px;
position:fixed;
display: block;
width: 32px;
height: 23px;
z-index: 99999;
transition: all .4s;
box-sizing: border-box;
cursor:pointer;
}

header .hamburger span {
display: inline-block;
transition: all .4s;
box-sizing: border-box;
position: absolute;
left: 0;
width: 100%;
height: 3px;
margin: 0 auto;
background-color: #fff;
}

header .hamburger  span:nth-of-type(1) {
  top: 0;
}
header .hamburger  span:nth-of-type(2) {
  top: 10px;
}
header .hamburger  span:nth-of-type(3) {
  bottom: 0;
}

header .hamburger  span:nth-of-type(1) {
  -webkit-animation: menu-ber01 .75s forwards;
  animation: menu-ber01 .75s forwards;

}
header .hamburger  span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
header .hamburger  span:nth-of-type(3) {
  -webkit-animation: menu-ber02 .75s forwards;
  animation: menu-ber02 .75s forwards;
}

header .active span:nth-of-type(1) {
  -webkit-animation: active-menu-ber01 .75s forwards;
  animation: active-menu-ber01 .75s forwards;
 
}
header .active span:nth-of-type(2) {
  opacity: 0;
}
header .active span:nth-of-type(3) {
  -webkit-animation: active-menu-ber03 .75s forwards;
  animation: active-menu-ber03 .75s forwards;
}

@-webkit-keyframes menu-ber01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu-ber02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber02 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes active-menu-ber01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}

@keyframes active-menu-ber01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

@-webkit-keyframes active-menu-ber03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
  }
}

@keyframes active-menu-ber03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(-11px) rotate(-45deg);
  }
}

.nav-area {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100vh;
z-index: 9999;
background-color: #000000;
}

.nav-area .nav-list {
position: absolute;
width: 490px;
max-width: 90%;
height: 480px;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
}

.nav-area .nav-list ul {
flex-direction: column;
width: 100%;
}

.nav-area .nav-list ul li {
margin: 15px 0;
font-weight: bold;
}

.nav-area .nav-list ul li:nth-of-type(6) a {
font-size: 20px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.nav-area .nav-list ul li:not(:first-of-type)::after {
position: relative;
display: none;
}

.nav-area .nav-list ul li a {
display: block;
color: #fff;
font-family: "Montserrat", sans-serif;
font-weight: bold;
text-decoration: none;
transition: opacity 0.3s;
font-size: 25px;
text-align: center;
}

.nav-area .nav-list ul li a span {
display: inline-block;
}

@media screen and (max-width: 991px) {

header {
height: 59px;
display: block;
padding: 0 15px;
}

.logo-top {
max-width: 96px;
padding-bottom: 10px;
}

header .hamburger {
top: 18px;
right: 15px;
}

}


/*--------------------------------------------------
 footer
--------------------------------------------------*/
footer {
	max-width: 1040px;
	width: 92%;
	margin: 200px auto 0;
}

footer a.btn {
font-size: 24px;
margin-bottom: 2rem;
position: relative;
}

footer a.btn:after {
font-family: "Font Awesome 5 Free";
content: "\f061";
position: absolute;
right: 20px;
}

footer p {
text-align: center;
padding-bottom: 2rem;
}

@media screen and (max-width: 991px) {
footer a.btn {
font-size: 20px;
}

footer {
	margin-top: 130px;
}
}


/*--------------------------------------------------
 contents
--------------------------------------------------*/

#contents {
padding-top: 93px;
}


.mainvisual {
max-width: 1368px;
margin: 0 auto;
}
.mainvisual img {
width: 100%;
}
.mainvisual .main-sp {
  display: none;
}
@media screen and (max-width: 991px) {
.mainvisual .main-sp {
display: block;
}
.mainvisual .main-pc {
display: none;
}
}


h2 {
letter-spacing: 2px;
text-align: center;
font-family: "Montserrat", sans-serif;
font-weight: bold;
font-size: 40px;
padding: 0 30px;
color: #fff;
position: relative;
}

h2.deco {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
h2.deco::before,
h2.deco::after {
content: '';
width: 100%;
height: 1px;
background-color: #000;
}
h2.deco::before {
margin-right: 30px;
}
h2.deco:after {
margin-left: 30px;
}

h2 span {
	display: block;
}

#fcbooth h2 {
font-size: 28px;
}

/*
#fcbooth h2::before,
#fcbooth h2::after,
#streaming h2::before,
#streaming h2::after,
#merch h2::before,
#merch h2::after {
position: absolute;
content: '';
top: calc(50% - 1px);
width: 2em;
height: 1px;
background-color: #000;
}

#fcbooth h2::before,
#fcbooth h2::after {
max-width: 210px;
width: 22%;
}

#streaming h2::before,
#streaming h2::after {
/*max-width: 180px;
width: 21%;
}

#merch h2::before,
#merch h2::after {
max-width: 180px;
width: 17%;
}

#fcbooth h2::before,
#streaming h2::before,
#merch h2::before {
left:0;
}

#fcbooth h2::after,
#streaming h2::after,
#merch h2::after {
right: 0;
}
*/


@media screen and (max-width: 1301px) {

}

@media screen and (max-width: 991px) {
#contents {
padding-top: 62px;
}
.mainvisual {
padding-bottom: 0;
}
h2 {
font-size: 35px;
}
#fcbooth h2 {
font-size: 20px;
padding: 0;
}
#streaming h2 {
font-size: 30px;
word-break: keep-all;
}

h2.deco::before {
margin-right: 20px;
}
h2.deco:after {
margin-left: 20px;
}
}


/*
@media screen and (min-width: 577px) and (max-width: 992px) {
#fcbooth h2::before,
#fcbooth h2::after {
width: 17%;
}
#streaming h2::before,
#streaming h2::after {
width: 21%;
}
#merch h2::before,
#merch h2::after {
width: 11%;
}
}
*/

@media screen and (max-width: 576px) {
/*
#fcbooth h2::before,
#fcbooth h2::after,
#merch h2::before,
#merch h2::after {
width: 0;
}

#streaming h2::before,
#streaming h2::after {
width: 8%;
}
*/
}

/* MOVIE */
#movie h3 {
text-align: center;
font-size: 20px;
margin-bottom: 15px;
}

.mov-area {
	margin:auto 0;
	width:100%;
}

@media screen and (max-width: 991px) {
.mov-area {
	width:100%;
}
}

.mov-area .iframe {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
}

.mov-area .iframe iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* banner */
#banner {
margin-bottom: 0;
}

#banner ul {
display: flex;
justify-content:center;
}

#banner ul li {
max-width: 460px;
}

@media screen and (max-width: 991px){
#banner {
margin-top: 30px;
}
}

/* NEWS */
#news .news_list {
overflow-y: scroll;
height: 200px;
border: 1px solid #fff;
padding: 10px;
margin-bottom: 50px;
}

#news .news_list table {
width: 100%;
}

#news .news_list table tr {
border-bottom: 1px solid #5E5E5E;
vertical-align:middle;
}

#news .news_list table td {
padding:10px 0 10px 0;
font-size: 14px;
vertical-align:middle;
}
#news .news_list table td:first-child {
padding:10px 40px 10px 0;
}

#news .news_list table td a {
	text-decoration: none;
}

/*
a.more {
display: block;
color: #000;
border: 1px solid #000;
font-weight: 700;
text-align: center;
border-radius: 30px;
text-decoration: none;
max-width: 480px;
margin: 0 auto;
padding: 10px;
font-size: 16px;
}
a.more:hover {
color: #000;
border: 1px solid #fff;
background-color: #fff;
}
*/


@media screen and (max-width: 991px) {
#news .news_list {
margin-bottom: 30px;
height: 220px;
}
#news .news_list table td {
display: block;
font-size: 12px;
}

#news .news_list table td:first-child {
padding-top:15px;
padding-bottom: 0;
}

#news .news_list table td:last-child {
padding-top: 0;
padding-bottom:15px;
}

/*
a.more {
background-color: #fff;
border: none;
color: #000;
}
a.more:hover {
background-color: #fff;
border: none;
color: #000;
}
*/

}

/* SCHEDULE */
.schedule-list {
border-top: 1px solid #707070;
display: flex;
align-items:center;
padding: 20px 0 40px;
}

.schedule-list:first-of-type {
border-top: 1px solid #707070;
}
.schedule-list:last-of-type {
border-bottom: 1px solid #707070;
}

.date {
min-width: 250px;
margin-right: 110px;
margin-left: 15%;
font-size: 23px;
position: relative;
}
.date .week,
.date .time {
font-size: 16px;
line-height:1.2;
}

.place .area {
font-family: "Montserrat", sans-serif;
font-weight: bold;
font-size: 40px;
}

.place .name {
margin-bottom: 10px;
font-size: 18px;
}

.place .contact {
font-size: 12px;
line-height: 1.3;
}

.schedule-content .date .sun {
color: #C90606;
}
.schedule-content .date .sat {
color: #0066FF;
}

/*追加公演*/
.schedule-list.additional .date:before{
position: relative;
background-color: #000;
color: #000;
content: "追加公演";
font-size: 18px;
padding: 5px 20px;
font-weight: bold;
}



@media screen and (max-width: 991px) {
.schedule-list {
}

.date {
min-width: 44%;
margin-left: 0;
margin-right: 10px;
font-size: 16px;
letter-spacing:1px;
}

.date .week {
font-size: 10px;
}

.date .time {
font-size: 10px!important;
letter-spacing:1px;
}

.place .area {
font-size: 25px;
}

.place .name {
  font-size: 12px;
}

.schedule-list:nth-of-type(5) .place .area {
font-size: 28px;
}

.place .contact {
font-size: 9px;
}

.schedule-list.additional .date:before{
font-size: 12px;
padding: 5px 20px;
}


}


/* TICKET */

.ticket-info dt.type {
font-size: 18px;
}

.ticket-info {
font-size: 18px;
}

.ticket-info .price {
font-size: 26px;
font-weight: 700;
}

.ticket-info .price span {
font-size: 60%;
}

#ticket p.small {
margin-bottom: 3rem;
}


.ticket_summary,
.ticket_summary_normal {
border:solid 1px #fff;
margin-bottom:1em;
position:relative;
}

.ticket_summary .md-fs-18 {
font-size: 18px;
}

.ticket_summary .title,
.ticket_summary_normal .title {
padding:20px 90px 20px 60px;
cursor: pointer;
position: relative;
font-size: 16px;
}

.ticket_summary_normal.accept .ttl:after,
.ticket_summary.accept .ttl:after {
color: #fff;
background-color: #FF0022;
content: 'OPEN';
position: absolute;
right: 110px;
top:15px;
padding: 0.2rem 1rem 0.3rem;
width: 120px;
display: inline-block;
text-align: center;
}


.ticket_summary .txt,
.ticket_summary_normal .txt {
border-top:solid 1px #707070;
margin:0 60px ;
padding:30px 0;
}

.ticket_summary.attention {
border:solid 1px #FF0022;
}
.ticket_summary.attention .title {
color: #fff;
background-color: #FF0022;
}

.ticket_summary.attention .txt {
border-top:none;
margin:0 70px 30px ;
padding:30px 0;
}

.ticket_summary.disables,
.ticket_summary_normal.disables {
pointer-events: none;
cursor: none;
opacity: 0.3;
}

.ticket_summary.lottery.disables ,
.ticket_summary_normal.lottery.disables {
pointer-events: auto;
cursor: auto;
opacity: 0.3;
}

.ticket_summary_normal.accept .ttl,
.ticket_summary.accept .ttl {
padding-right:148px;
}

.ticket_summary .title:before,
.ticket_summary_normal .title:before {
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:70px;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
.ticket_summary .title:after,
.ticket_summary_normal .title:after{
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:70px;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .3s;
}

.ticket_summary.open .title:before,
.ticket_summary_normal.open .title:before {
  transform: rotate(0);
  -webkit-transform: rotate(0);
}

.ticket_summary.attention .title:before,
.ticket_summary.attention .title:after,
.ticket_summary_normal .title:before,
.ticket_summary_normal .title:after {
background-color:#fff;
}


.ticket_summary .title.select:before,
.ticket_summary_normal .title.select:before {
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
/*
.ticket_summary .title.select:after,
.ticket_summary_normal .title.select:after{
	background-color: transparent;
}
*/
.ticket_summary.open .title.select:before,
.ticket_summary_normal.open .title.select:before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
/*
.ticket_summary.open .title.select:after,
.ticket_summary_normal.open .title.select:after {
  background-color: #000;
}
*/


#ticket .ticket_summary .txt dl {
	margin-bottom:30px;
}

#ticket .ticket_summary .txt dt {
	font-weight:bold;
}

.txt {
	display: none;
}

.play-guide {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.play-guide .icon {
	width: 25%;
	height: 80px;
	border-right: 1px solid #fff;
	text-align: center;
}

.play-guide .icon:nth-child(4) {
	border: none;
}

.play-guide .icon a {
	display: block;
	width: 100%;
	height: 100%;
}

.play-guide .icon img {
	width: 80px;
	height: 80px;
}


@media screen and (max-width: 991px) {

.ticket-info dt.type {
font-size: 16px;
}

.ticket_summary .md-fs-18 {
font-size: 17px;
}

.ticket_summary .title,
.ticket_summary_normal .title {
padding: 20px 35px 20px 15px;
font-size: 15px;
}

.ticket_summary .txt,
.ticket_summary.attention .txt,
.ticket_summary_normal .txt {
margin: 0 15px 20px;
padding:20px 0;
}

.ticket_summary_normal .title:before,
.ticket_summary_normal .title:after,
.ticket_summary .title:before,
.ticket_summary .title:after {
	right: 15px;
}

/*
.ticket_summary_normal .title .ttl {
	padding-right: 40px;
}
*/

.ticket_summary_normal.accept .ttl,
.ticket_summary.accept .ttl {
padding-bottom: 2.5rem;
padding-right:1rem!important;
}
.ticket_summary_normal.accept .ttl:after,
.ticket_summary.accept .ttl:after {
left:15px;
top: auto;
bottom: 20px;
}

.play-guide .icon {
	width: 100%;
	height: 96px;
	border-right: none;
	border-bottom: 1px solid #fff;
	text-align: center;
	padding:16px 0;
}

.play-guide .icon img {
	height: 60px;
}
}


/* STREAMING */
#streaming .schedule {
margin-bottom:50px;
border-top: dotted 1px #707070;
}

#streaming .schedule table {
	width:100%;
}

#streaming .schedule table tr {
	border-bottom:dotted 1px #707070;
	vertical-align:middle;
}

#streaming .schedule table td {
	width: 50%;
	padding: 20px 0;
	font-size:20px;
	vertical-align:middle;
}

#streaming .schedule table td:first-child {
text-align: center;
font-weight: bold;
}

#streaming h3 {
text-align: center;
}

#streaming h3.text-color {
color: #000;
font-weight: bold;
}

.streaming_summary{
border:solid 1px #000;
margin-bottom:1em;
}

.streaming_summary .title{
padding:20px 60px;
}

.streaming_summary .title {
cursor: pointer;
position: relative;
}

.streaming_summary .txt {
border-top:solid 1px #5E5E5E;
margin:0 70px 30px ;
padding:30px 0;
}

.streaming_summary.attention {
border:solid 1px #E00000;
}
.streaming_summary.attention .title {
color: #fff;
background-color: #E00000;
}

.streaming_summary.attention .txt {
border-top:none;
margin:0 70px 30px ;
padding:30px 0;
}

.streaming_summary.disables {
pointer-events: none;
cursor: none;
opacity: 0.3;
}

.streaming_summary .title:before{
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:70px;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
.streaming_summary .title:after{
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:70px;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .3s;
}

.streaming_summary .title.select:before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.streaming_summary .title.select:after{
	background-color: transparent;
}


#streaming .streaming_summary .txt dl {
	margin-bottom:50px;
}

#streaming .streaming_summary .txt dt {
	font-weight:bold;
}


@media screen and (max-width: 991px) {
#streaming .schedule {
	margin-bottom:50px;
}

#streaming .schedule table {
	width:100%;
}

#streaming .schedule table td {
	width: 100%;
	display:block;
	font-size:17px;
}

#streaming .schedule table td:first-child {
	text-align: left;
padding-top:15px;
padding-bottom:0;
}

#streaming .schedule table td:last-child {
padding-top: 0;
padding-bottom:15px;
}


.streaming_summary .title{
padding: 20px 35px 20px 15px
}
.streaming_summary .txt,
.streaming_summary.attention .txt{
margin: 0 15px 20px;
padding:20px 0;
}
.streaming_summary .title:before,
.streaming_summary .title:after {
	right: 15px;
}
}

/* FCBOOTH */

#fcbooth .title-area hr {
width:20%;
}
#fcbooth h3 {
border-bottom: 1px solid #000;
font-size: 26px;
text-align: center;
padding: 20px 15px;
font-weight: bold;
}

#fcbooth h3 span {
display: inline-block;
}

#fcbooth h3 span.blink {
animation: blinkAnime 2s ease-in-out infinite;
}


#fcbooth .fcbooth_article dt {
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
#fcbooth .fcbooth_article dd {
margin-bottom: 60px;
}


#fcbooth .fcbooth_article {
border: 1px solid #000;
}

#fcbooth .fcbooth_article_inbox {
padding: 40px 0 50px;
max-width: 900px;
width: 93%;
margin: 0 auto;
}

#fcbooth .fcbooth_article_inbox p {
	margin-bottom: 60px;
}

#fcbooth .fcbooth_article_inbox p.ttl {
margin-bottom: 0;
}

#fcbooth .attention {
border:solid 1px #000;
}
#fcbooth .attention .title {
color: #fff;
background-color: #000;
padding:15px;
font-size: 20px;
text-align: center;
cursor: pointer;
}

#fcbooth .attention .txt {
border-top:none;
margin:0 70px 30px ;
padding:30px 0;
font-size: 13px;
}

#fcbooth a.registrations{
padding: 10px 20px;
word-break:break-all;
overflow-wrap: break-word;
white-space:normal;
}



.fcbooth_summary{
border:solid 1px #000;
margin-bottom:1em;
position:relative;
}

.fcbooth_summary .md-fs-18 {
font-size: 18px;
}

.fcbooth_summary .title{
padding:20px 90px 20px 60px;
}

.fcbooth_summary .title {
cursor: pointer;
position: relative;
}

.fcbooth_summary a.reserve {
display: block;
text-align: center;
text-decoration: none;
background-color: #fff;
color: #000;
width: 250px;
padding: 5px;
margin-top: 5px;
border-radius: 20px;
}


.fcbooth_summary.accept .ttl:after {
color: #fff;
background-color: #E00000;
content: '受付中';
position: absolute;
right: 110px;
top:15px;
padding: 0.2rem 1rem 0.3rem;
width: 120px;
display: inline-block;
text-align: center;
}


.fcbooth_summary .txt {
border-top:solid 1px #5E5E5E;
margin:0 60px 20px ;
padding:30px 0;
}

.fcbooth_summary.important .txt {
border-top:none;
}


.fcbooth_summary.attention {
border:solid 1px #000;
}
.fcbooth_summary.attention .title {
color: #000;
background-color: #fff;
padding:15px;
font-size: 20px;
text-align: center;
cursor: pointer;
}

.fcbooth_summary.attention .txt {
border-top:none;
margin:0 70px 30px ;
padding:30px 0;
font-size: 13px;
}

.fcbooth_summary .title:before{
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:70px;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
.fcbooth_summary .title:after{
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:70px;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .3s;
}


.fcbooth_summary .title.select:before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.fcbooth_summary .title.select:after{
	background-color: transparent;
}


#booth .fcbooth_summary .txt dl {
	margin-bottom:50px;
}

#booth .fcbooth_summary .txt dt {
	font-weight:bold;
}



@media screen and (max-width: 991px) {
#fcbooth .title-area hr {
display: none;
}
#fcbooth h3 {
font-size: 20px;
}
#fcbooth .fcbooth_article dt {
font-size: 20px;
margin-bottom:10px;
}
#fcbooth .fcbooth_article dd {
margin-bottom:40px;
}

#fcbooth .attention .title {
padding:20px;
font-size: 16px;
}
#fcbooth .attention .txt {
margin: 0 15px 20px;
padding:20px 0;
font-size: 11px;
}

.fcbooth_summary .md-fs-18 {
font-size: 17px;
}

.fcbooth_summary .title{
padding: 20px 35px 20px 15px;
font-size: 15px;
}


.fcbooth_summary.accept .ttl {
padding-bottom: 2.5rem;
}
.fcbooth_summary.accept .ttl:after {
left:15px;
top: auto;
bottom: 20px;
}


.fcbooth_summary .txt,
.fcbooth_summary.attention .txt{
margin: 0 15px 20px;
padding:20px 0;
}
.fcbooth_summary .title:before,
.fcbooth_summary .title:after {
	right: 15px;
}

.fcbooth_summary a.reserve {
width: 100%;
}

#fcbooth a.registrations{
padding: 10px 60px;
background-color: #fff;
color: #000;
border: 1px solid #fff;
font-size: 12px;
}


}


/* MERCH */

#merch h3 {
border-bottom: 1px solid #000;
font-size: 26px;
text-align: center;
padding: 20px 15px;
font-weight: bold;
}

#merch h3 span {
display: inline-block;
}

#merch h3 span.blink {
animation: blinkAnime 2s ease-in-out infinite;
}


#merch .merch_article dt {
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
#merch .merch_article dd {
margin-bottom: 60px;
}


#merch .merch_article {
/*border: 1px solid #fff;*/
}

#merch .merch_article_inbox {
padding: 40px 0 50px;
max-width: 900px;
width: 93%;
margin: 0 auto;
}

#merch .merch_article_inbox p {
  margin-bottom: 60px;
}

#merch .merch_article_inbox p.ttl {
margin-bottom: 0;
}



.merch_summary{
border:solid 1px #000;
margin-bottom:1em;
position:relative;
}

.merch_summary .md-fs-18 {
font-size: 18px;
}

.merch_summary .title{
padding:20px 90px 20px 60px;
}

.merch_summary .title {
cursor: pointer;
position: relative;
}


.merch_summary.accept .ttl:after {
color: #fff;
background-color: #E00000;
content: '受付中';
position: absolute;
right: 110px;
top:15px;
padding: 0.2rem 1rem 0.3rem;
width: 120px;
display: inline-block;
text-align: center;
}


.merch_summary .txt {
border-top:solid 1px #5E5E5E;
margin:0 60px 20px ;
padding:30px 0;
}

.merch_summary.important .txt {
border-top:none;
}


.merch_summary.attention {
border:solid 1px #000;
}
.merch_summary.attention .title {
color: #fff;
background-color: #000;
padding:15px;
font-size: 20px;
text-align: center;
cursor: pointer;
}

.merch_summary.attention .txt {
border-top:none;
margin:0 70px 30px ;
padding:30px 0;
font-size: 13px;
}

.merch_summary .title:before{
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:70px;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
.merch_summary .title:after{
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:70px;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .3s;
}

.merch_summary.attention .title:before,
.merch_summary.attention .title:after {
content: none;
}


.merch_summary.important {
border:solid 1px #E00000;
}
.merch_summary.important .title {
color: #fff;
background-color: #E00000;
}
.merch_summary.important .title:before,
.merch_summary.important .title:after {
background-color:#fff;
}


.merch_summary .title.select:before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.merch_summary .title.select:after{
	background-color: transparent;
}


#ticket .merch_summary .txt dl {
	margin-bottom:50px;
}

#ticket .merch_summary .txt dt {
	font-weight:bold;
}


@media screen and (max-width: 991px) {
#merch h3 {
font-size: 21px;
}
.merch_summary .md-fs-18 {
font-size: 17px;
}

.merch_summary .title{
padding: 20px 35px 20px 15px;
font-size: 15px;
}


.merch_summary.accept .ttl {
padding-bottom: 2.5rem;
}
.merch_summary.accept .ttl:after {
left:15px;
top: auto;
bottom: 20px;
}


.merch_summary .txt,
.merch_summary.attention .txt{
margin: 0 15px 20px;
padding:20px 0;
}
.merch_summary .title:before,
.merch_summary .title:after {
	right: 15px;
}

.merch_summary.attention .title {
padding:20px;
font-size: 16px;
}

.merch_summary.attention .txt {
font-size: 11px;
}
}

a.store {
font-size: 20px;
}

.goods_list {
width: 100%;
margin: 0 auto;
}

.goods_list .title,
.goods_list .price{
display: block;
text-align: center;
}
.goods_list .price {
	font-size: 80%;
}

.goods_list.row .col-md-3.col-6 {
padding-right: 6px;
padding-left: 6px;
margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
.goods_list.row .col-md-3.col-6 {
margin-bottom: 15px;
}
a.store {
color: #000;
background-color: #fff;
border: 1px solid #fff;
font-size: 16px;
}
}



/* FAQ */
#faq .qa_list dl {
border:solid 1px #000;
padding:20px 60px;
margin-bottom: 1em;
}

#faq .qa_list dt {
position: relative;
cursor: pointer;
font-weight: bold;
padding-right: 35px;
}

#faq .qa_list dt:before {
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:0;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
#faq .qa_list dt:after{
	display: block;
	content: "";
	position: absolute;
	top:0; 
	right:0;
	bottom:0;
	left:auto;
	margin:auto;
	width: 20px;
	height: 3px;
	background-color:#000;
	transition: .3s;
}

#faq .qa_list dt.select:before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
#faq .qa_list dt.select:after{
	background-color: transparent;
}

#faq .qa_list dd {
border-top:solid 1px #5E5E5E;
margin-top: 30px;
padding-top:20px;
}

@media screen and (max-width: 991px) {
#faq .qa_list dl {
padding: 20px 15px;
}
#faq .qa_list dd {
margin-top: 15px;
padding-top:20px;
}
}