@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');


:root {
  --primary: #787878;
}

/*=============================================================
	共通
===============================================================*/
.mb0{margin-bottom:0!important;}
.mb5{margin-bottom:5px!important;}
.mb10{margin-bottom:10px!important;}
.mb15{margin-bottom:15px!important;}
.mb20{margin-bottom:20px!important;}
.mb25{margin-bottom:25px!important;}
.mb30{margin-bottom:30px!important;}
.mb35{margin-bottom:35px!important;}
.mb40{margin-bottom:40px!important;}
.mb45{margin-bottom:45px!important;}
.mb50{margin-bottom:50px!important;}
.mb100{margin-bottom:100px!important;}
.red{color:#ff0000;}
.right{text-align:right;padding: 0 10px 10px 0!important;}
.logoList.blur{
	-webkit-animation: blurAnim 2s linear 0s forwards;
	animation:blurAnim 2s linear 0s forwards;
}
@-webkit-keyframes blurAnim {
0% {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
    opacity: 0;	
}
100% {
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	-ms-filter: blur(0);
	filter: blur(0);
    opacity: 1;
}
}
@keyframes blurAnim {
0% {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
    opacity: 0;	
}
100% {
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	-ms-filter: blur(0);
	filter: blur(0);
    opacity: 1;
}
}

body {
    font-size: 14px;
    font-weight: 300;
    line-height: 0;
    letter-spacing: 0.03em;
    color: #010101;
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#wrap {
    line-height: 1.6;
}
a{
    text-decoration: none;
}
img{
	line-height:0;
    width: 100%;	
}
ul {
  list-style: none;
}
.soon{
    text-align: center;
    font-size: 24px;
}
.delighter {
    transition: all .5s ease-out;
    transform: translatey(5%);
    opacity: 0;
   }

.delighter.started {
      transform: none;
      opacity: 1;
   }
h3{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 80px;
    font-family: "Cal Sans", sans-serif;
    text-align: center;
    line-height: 0.75em;
    transform: translate(0, -90%);
    color: var(--primary);
}
h3 span{

}
.anc{
display:block;
position: absolute;
top: -20px;
}

.ancPoint{
position:relative;
    display: block;
    padding-top: 50px;
    margin-top: -50px;
}
.scroll {
    position: absolute;
    bottom: 5%;
    left: 50%;
    width: 1px;
    height: 50px;
    z-index: 2;
}
.scroll:after {
    content: " ";
    width: 120%;
    position: absolute;
    height: 100%;
    display: block;
    top: 0px;
    background:#645d54;
    -webkit-animation: scroll 2s linear 0s infinite;
    animation: scroll 2s linear 0s infinite;
}


@-webkit-keyframes scroll {
0%{height:0%;top:0px;bottom:auto}
20%{height:0%;top:0px;bottom:auto}
46% {
	height: 100%;
	top: 0px;
	bottom: auto
 }
50% {
	height: 100%;
	bottom: 0px;
	top: auto
 }
54% {
	height: 100%;
	bottom: 0px;
	top: auto
 }
70% {
	height: 0%;
	bottom: 0px;
	top: auto
 }
100% {
	height: 0%;
	bottom: 0px;
	top: auto
 }
}

@keyframes scroll {
0%{height:0%;top:0px;bottom:auto}
20%{height:0%;top:0px;bottom:auto}
46% {
	height: 100%;
	top: 0px;
	bottom: auto
 }
50% {
	height: 100%;
	bottom: 0px;
	top: auto
 }
54% {
	height: 100%;
	bottom: 0px;
	top: auto
 }
70% {
	height: 0%;
	bottom: 0px;
	top: auto
 }
100% {
	height: 0%;
	bottom: 0px;
	top: auto
 }
}

.cautionList{
    position: relative;
    font-size: 12px;
}
.cautionList li{
    position: relative;
    padding-left: 16px;
}
.cautionList li span{
    position: absolute;
    left: 0;
}
.scrollFix .scroll{
    opacity: 0;
}


.hamBtn {
    position: fixed;
    right: 50px;
    top: 50px;
    width: 45px;
    height: 35px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
}
.hamBtn::before {

    }
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 0;
}
.hamBtn :nth-of-type(2) {
	top: 15px;
}
.hamBtn :nth-of-type(3) {
    top: 30px;
}
.hamBtn.open span {
    background: #FFF;
}
.hamBtn.open span:nth-of-type(1) {
	transform: translateY(15px) rotate(-45deg);
}
.hamBtn.open span:nth-of-type(2) {
	opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(-15px) 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: var(--primary);
}
.hamBox .menuList{
    position: absolute;
    margin: 0;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.hamBox .menuList li{
    text-align: center;
    margin: 0 0 20px;
}
.hamBox .menuList li a {
    color: #fff;f
    text-align: center;
    font-size: 2.5vw;
    letter-spacing: 0.05em;
    font-family: 'Abel', sans-serif;
}
.hamBox .menuList li a:hover{
transition: 0.4s;
    opacity: 0.7;
}
.hamBox .menuList li.off a{
    pointer-events: none;
    opacity: 0.3;
}
.contentsBox {
    padding: 160px 0 80px;
}
.btn{
    margin: 0;
    padding: 0;
}
.btn a{
    background: #000;
    width: 300px;
    padding: 15px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: bold;
    transition: 0.4s;
    color: #fff;
    text-align: center;
    border: 2px solid #000;
}

.btn.until a{
    border: 2px solid #888888;
    background:#888888;
    color: #cdcdcd;
    pointer-events: none;
}
.btn.grayout a{
    border: 2px solid #888888;
    background:#888888;
    color: #cdcdcd;
}
.btn.enentnone a{
    pointer-events: none;
}
.btn.sub a{
    border: 2px solid;
    background: transparent;
    color: #000;
}

.coming{
text-align: left;
    font-size: 22px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}
.btn.off a{
    background: #818181;
    pointer-events: none;
}
.btn.sub.brown a {
    border: 2px solid #3a2d2a;
    background: transparent;
    color: #3a2d2a;
}

.bgBox {
    min-width: 1000px;
    min-height: 1000px;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    transition: all 0.6s;
}
.bg {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    opacity: 1;
}
.bg01 {
    opacity: 1;
    background-image: url(/static/fcuru/feature/tour2026/images/bg.jpg);
    background-position: center;
    background-size: cover;
}
.goods_box.inline_02 {
    background: #FFF;
    color: #708da5;
    text-align: left;
    line-height: 1.5;
    border: none; 
    margin: 0;
}
.goods_box.inline_02:hover{
    opacity: 1;
}
.goods_box .txt{
    margin: 0 0 15px 0;
    font-size: 15px;
}
.goods_box .name{
    font-size: 12px;
    text-align: right;
    margin: 0 0 30px 0;
}




/*===================================================
  OP:MODAL
====================================================*/
.op_modal{

}
.op_modal .modPop {
    display:none;
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.op_modal .modPop.popActive {
  display:block;
}
.op_modal .modPop .popupShade{
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 0;
    display: flex;
    align-items: center;
}
.op_modal .modPop .close {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    background: #000;
    border-radius: 100px;
}
.op_modal .modPop .close::before,
.op_modal .modPop .close::after {
    content: '';
    display: inline-block;
    width: 60%;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
}
.op_modal .modPop .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.op_modal .modPop .close::after {
    transform: translate(-50%,-50%) rotate(135deg);
}
.op_modal .modPop .popInBox {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    position: relative;
    background: #f7f7f7;
    color: #000;
    border-radius: 20px;
}
.op_modal .modPop .popInContent{
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
}
.op_modal .modPop .popInContent::-webkit-scrollbar{
    display: none;
}

html:has(body.is-fixed) {
    overflow: clip;
    overscroll-behavior: none;
}

.op_modal .modPop .popInContentInner{
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.op_modal .modPop .popInlogo{
    line-height: 0;
    width: 50%;
    max-width: 400px;
    margin: 0 auto;
}
.op_modal .modPop .popInTit{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.op_modal .modPop .txt{

}
.op_modal .modPop dl{
    border-top: 1px solid;
    padding: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.op_modal .modPop dl dt{
    display: inline-block;
    background: #000;
    color: #FFF;
    width: fit-content;
    line-height: 1em;
    padding: 8px 16px;
}
.op_modal .modPop dl dd{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.op_modal .modPop .bulletList{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.op_modal .modPop .bulletList li{
    position: relative;
    padding-left: 16px;
}
.op_modal .modPop .bulletList li span{
    position: absolute;
    left: 0;
}
.op_modal .modPop .innerLink{
    text-decoration: underline;
    word-wrap: break-word;
}
/* OP:MODAL:PC-min-770 */
@media screen and (min-width: 770px){

}

/* OP:MODALSP-max-769 */
@media screen and (max-width: 769px){
.op_modal .modPop .close {
    width: 30px;
    height: 30px;
    right: 20px;
    top: 20px;
}
.op_modal .modPop .popInBox {
    margin: 60px auto;
}
.op_modal .modPop .popInContent{
    padding: 20px;
}
.op_modal .modPop .popInContentInner {
    gap: 16px;
}
.op_modal .modPop dl {
    padding: 16px 0 0;
}
}
/*=============================================================
	loader
===============================================================*/
.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #FFF;
    z-index: 99999;
}
/*=============================================================
	snsList
===============================================================*/
.snsList {
    display: flex;
}
.snsList li {
    width: 25px;
    margin: 0 20px 0 0;
}
.snsList li a {
    display: block;
    filter: contrast(0.1);
}
.snsList li a img{
    transition:0.3s ease;
}


/*===================================================
  scrollDown
====================================================*/
.scrollDown{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: absolute;
    bottom: 50px;
    right: 50px;
}
.scrollDown .scrollTxt {
    font-size: 70%;
    transition: 0.5s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: var(--primary);
    writing-mode: vertical-rl;
}
.scrollDown .scrollarrow {
    width: 1px;
    height: 60px;
    background: var(--primary);
    animation: scrollarrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollarrow{
  0% {clip-path: inset(0 0 100% 0);}
  25% {clip-path: inset(0 0 0 0);}
  75% {clip-path: inset(0 0 0 0);}
  100% {clip-path: inset(100% 0 0 0);}
}
/*=============================================================
	visual
===============================================================*/
.visual{
    width: 100%;
    margin: 0 0 80px 0;      
    position: relative;
    min-height: 400px;
}
/*
.visual::before {
    content: "";
    background: #e6eff5;
    width: 50%;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
opacity: 0;
}
.loaded .visual::before{
  -webkit-animation: leftIn 0.8s ease 0s 1 forwards;
  animation: leftIn 0.8s ease 0s 1 forwards;
}
*/
.visual .logoArtist{
    position: absolute;
    top: 50px;
    left: 50px;
    width: 120px;
    line-height: 0;
}
.visual .logoArtist a {
    display: block;
    transition: 0.3s ease;
}
.visual .snsList {
    position: absolute;
    left: 50px;
    bottom: 50px;
}
h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    max-width: 1000px;
    max-height: 80vh;
    line-height: 0;
    aspect-ratio: 1400 / 477;
}
h2 p:nth-child(1){
    width: 80%;
    margin: 0 auto;
opacity: 0;
}
h2 p:nth-child(2){
    margin: 0 auto 1vw;
opacity: 0;
}
h2 p:nth-child(3){
opacity: 0;
}

.loaded h2 p:nth-child(1){
  -webkit-animation: upIn 0.8s ease 1s 1 forwards;
  animation: upIn 0.8s ease 1s 1 forwards;
}
.loaded h2 p:nth-child(2){
  -webkit-animation: upIn 0.8s ease 1.2s 1 forwards;
  animation: upIn 0.8s ease 1.2s 1 forwards;
}
.loaded h2 p:nth-child(3){
  -webkit-animation: upIn 0.8s ease 1.4s 1 forwards;
  animation: upIn 0.8s ease 1.4s 1 forwards;
}

.visual .border p:nth-child(1){
    position: fixed;
    width: 100%;
    background: #fff;
    height: 10px;
    top: 0;
    line-height: 0;
    z-index: 1;
}
.visual .border p:nth-child(2){
    position: fixed;
    width: 100%;
    background: #fff;
    height: 10px;
    bottom: 0;
    line-height: 0;
    z-index: 1;
}
.visual .bgLogo{
    position: fixed;
    z-index: -1;
    width: 105%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}


.blur{
	-webkit-animation: blurAnim 2s linear 0s forwards;
	animation:blurAnim 2s linear 0s forwards;
}
@-webkit-keyframes blurAnim {
0% {
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
    opacity: 0;		
}
100% {
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	-ms-filter: blur(0);
	filter: blur(0);
    opacity: 1;	
	
}
}
@keyframes blurAnim {
0% {
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
    opacity: 0;		
}
100% {
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	-ms-filter: blur(0);
	filter: blur(0);
    opacity: 1;	
}
}


@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);
	}
}
@keyframes leftIn {
	0% {
		opacity: 0;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
	}
	100% {
		opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
	}
}

#news{
    position: relative;
    background: #FFF
}
#news .inBox{
    background: transparent;
    color: var(--primary);
    padding: 40px 0;
}
#news .list--news{

}
#news .list--news li{
    border-bottom: 1px solid ;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
}
#news .list--news li a {
    display: block;
    color: var(--primary);
}
#news .list--news li a:hover{
transition: 0.4s;
    opacity: 0.8;
}
#news .list--news li a .date{
    font-weight: bold;
    margin: 0 0 10px 0;
    font-size: 15px;
}
#news .list--news li a .tit{
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;    
}

#news .btnMore a {
    display: block;
    background: #000;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    width: 240px;
    margin: 50px auto 0;
    font-weight: bold;
    color: #FFF;
    border-radius: 10px;
}



#news.newsRe .list--news li{
    display: none;
}
#news.newsRe .list--news li:nth-child(1),
#news.newsRe .list--news li:nth-child(2),
#news.newsRe .list--news li:nth-child(3),
#news.newsRe .list--news li:nth-child(4),
#news.newsRe .list--news li:nth-child(5){
    display: block;
}
#news.newsRe .btnMore a{
    display: block;
    color: #fff;
    border: 3px solid;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    width: 300px;
    margin: 50px auto 0;
    font-weight: bold;
}
#news.newsRe .btnMore a:hover{
opacity: 0.7;
    transition: 0.4s;
}

/*=============================================================
	スケジュール
===============================================================*/
#schedule {
    position: relative;
}
#schedule .inBox{
    background: transparent;
    color: var(--primary);
    padding: 40px 0;
}
#schedule .scheduleBox{

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

}
#schedule .s-table thead{

}
#schedule .s-table thead th {
    padding: 0 0 20px 0;
    text-align: center;
    font-size: 16px;
    border-bottom: solid 1px var(--primary);
    vertical-align: middle;
    font-weight: bold;
    font-family: 'Abel', sans-serif;
}
#schedule .s-table td {
padding: 25px 0;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    border-bottom: solid 1px var(--primary);
    position: relative;
    font-weight: 400;
}
#schedule .s-table td .sold{
    color: #fff;
    background: #ff0000;
    text-decoration: none;
    display: inline-block;
    padding: 2px 8px 1px;
    font-size: 11px;
    margin: 0 5px 0 0;
}
/*
#schedule .s-table td + td::before {
    width: 1px;
    height: 84%;
    content: "";
    background: #000;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
*/
#schedule .s-table .day {
    width:25%;
}
#schedule .s-table .day.day_sold{
    text-align: left;
}
#schedule .s-table .date {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;

}
#schedule .s-table .youbi {
    padding-left: 1em;
    font-family: 'Overpass-Bold';
    display: inline-block;
    vertical-align: middle;
}
#schedule .s-table .time {
    width: 20%;

}
#schedule .s-table .area {
    width: 7%;
}
#schedule .s-table .venue {
    width: 25%;
    font-weight: bold;
    line-height: 1.5;
}
#schedule .s-table .ticketGuid {
    width: 23%;
    padding-left: 3%;
    padding-right: 1%;
    line-height: 1.2;
    text-align: left;
    font-size: 12px;
}
#schedule .s-table .ticketGuid span{
font-size: 11px;
    margin: 10px 0 0 0;
    display: block;
    line-height: 1.8;    
}
#schedule .s-table .ticketGuid span a {
    word-break: break-all;    
    color: var(--primary);
}
#schedule .scheduleBox .s-table tr:last-child td{
    border-bottom: none;
    padding: 25px 0 0;    
}
#schedule .scheduleBox .s-table tr:last-child td.ticketGuid{
padding-left: 3%;
    padding-right: 1%;    
}



/*=============================================================
	チケット
===============================================================*/
#ticket {
    position: relative;
    background: #FFF;
}
#ticket .inBox{
    background: transparent;
    padding: 40px 0;
    color: var(--primary);
}
#ticket .box{
    padding: 40px;
    margin: 0 0 40px 0;
    border-radius: 16px;
}
#ticket .box.main{
    border: 2px solid;
}
#ticket .box.main dl{

}
#ticket .box.main dt{
    font-size: 15px;
    margin: 0 0 10px 0;
    font-weight: bold;
}
#ticket .box.main dl dd{
    font-size: 15px;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid;
}
#ticket .box.main dl dd .mini{
font-size: 12px;
}
#ticket .box.main dl dd:last-child{
margin: 0;
    padding: 0;
    border-bottom:none;
}
#ticket .box .tit{
    text-align: center;
    font-size: 20px;
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-weight: bold;
    color: #000;
}
#ticket .box.ippan{
    background: #231815;
    color: #fff;
}
#ticket .box.ippan dl{
display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 10px 0;
}
#ticket .box.ippan dl dt{
width: 35%;
    text-align: center;
    background: #fff;
    color: #231815;
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
}
#ticket .box.ippan dl dd{
    text-align: center;
    width: 63%;
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    font-size: 16px;
}
#ticket .box.normal{
    background: #dadada;
    color: #ffffff;
}
#ticket .box.normal .subTit{
    text-align: center;
    font-size: 18px;
    margin: 0 0 30px 0;
    line-height: 1.5;
    cursor: pointer;
    background: #000;
    color: #fff;
    border-radius: 8px;
}
#ticket .box.normal .subTit span{
    display: block;
    font-size: 15px;
}
#ticket .box.normal dl {
    border: 2px solid;
    padding: 30px;
    margin: 0 0 20px 0;
    text-align: center;
    color: #000;
    border-radius: 16px;
}
#ticket .box.normal dl dt{
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px dashed;
    font-size: 16px;
    font-weight: 500;
}
#ticket .box.normal dl dd{
    text-align: left;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#ticket .box.normal dl dd .innerLink{
    text-decoration: underline;
}
#ticket .box.normal dl dd .innerLink i{
    padding-right: 4px;
}
#ticket .box.normal dl dd:last-child{
    margin: 0 auto;
}

#ticket .box.normal dl dd .txt{
    font-size: 14px;
    font-weight: normal;
    color: unset;
    text-align: left;
}
#ticket .box.normal dl dd .turmBox{
    display: flex;
    justify-content: center;
    width: auto;
    flex-direction: row;
    gap: 8px;
    background: #eeeeee;
    padding: 8px;
    border-radius: 8px;
}
#ticket .box.normal dl dd .turmBox .tit{
    text-align: left;
    font-size: 14px;
    border-right: 1px solid;
    padding: 0 16px 0 0;
    margin: 0 16px 0 0;
}


.sold {
color: #f00;
text-decoration : line-through ;
margin: 0 10px 20px 0;
display: inline-block;
}
.sold .soldIn {
color: #000;
}
.soldTxt{
color: #f00;
}

#ticket .box.normal .inner{
    padding: 0 0 80px 0;
    margin: 0 auto 80px;
    border-bottom: 1px dotted;
}
#ticket .box.normal .inner.last{
    padding: 0;
    margin: 0 auto 80px;
    border-bottom: none;
}
#ticket .box.normal .txt{
text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #bb8576;
}

#ticket .box.normal .ticketBox.ippan{
    background: none;
    padding: 0;
    margin: 0;
}
#ticket .box.normal .ticketBox.ippan .ticketList dd .tit{
    text-align: left;
    font-size: 17px;
    margin: 0 0 5px;
}
#ticket .box.normal .ticketBox.ippan .ticketList dd .txt{
text-align: left;
    color: #231815;
    margin: 0 0 20px 0;
}
#ticket .box.normal .ticketBox.ippan .ticketList{
    border: none;
    padding: 30px;
    margin: 0 0 20px 0;
    text-align: center;
    background: #fff;
    color: #231815;
}
#ticket .box.normal .ticketBox.ippan .ticketList dd dt {
    margin: 0 0 10px 0;
    padding: 0;
    border-bottom: none;
    font-size: 16px;
    text-align: left;
    font-weight: bold;
}
#ticket .box.normal .ticketBox.ippan .ticketList dd dl{
padding: 30px;
    margin: 0 0 20px 0;
    text-align: center;
    background: #e5dcda;
    border: none;
}
#ticket .box.normal .ticketBox.ippan .ticketList dl dd {
    border: 1px solid;
    padding: 20px;
}

#ticket .box.normal .ticketBox.ippan .ticketList dd dl dd{
    border: none;
    padding: 0 0 15px 0;
    text-align: left;
    margin: 0 0 20px 0;
    border-bottom: 1px solid;
}
#ticket .box.normal .ticketBox.ippan .ticketList dl dd:last-child{
    padding: 0;
    margin: 0;
    border: none;
}
#ticket .box.normal .ticketBox.ippan .ticketList dl dd .link{
font-weight: bold;
    text-decoration: underline;
    transition: 0.4s;
    margin: 0 0 10px 0;
    display: block;
color: #6a563f;
}
/*=============================================================
	グッズ
===============================================================*/
#goods {
background: #dfd7ca;
}
#wrap #goods h2:before, #wrap #goods h2:after {
    background-color: #2d2d2d;
}
#wrap #goods .attentionBox{
    padding: 40px;
    border: 2px solid #ddd;
    margin: 0 0 50px 0;
}
#wrap #goods .attentionBox .tit{
    font-size: 21px;
    text-align: center;
    margin: 0 0 20px;
    font-weight: 300;
}
#wrap #goods .attentionBox .lead{
font-weight: 100;
}
#wrap #goods .attentionBox .date{
    padding: 20px;
    background:#dfd7ca;
    margin: 0 0 20px 0;
}
#wrap #goods .attentionBox .date dt{
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 15px;
}
#wrap #goods .attentionBox .date dd{

}
#wrap #goods .attentionBox .date dd .attentionList li{
    font-size: 14px;
}
#goods .tit{
    text-align: center;
    font-size: 18px;
    margin: 0 auto 50px;
}
#goods ul.goodsList{
    margin: 0 auto 80px;
}


/*=============================================================
	スペシャル
===============================================================*/
#fanclub{
    background: #c1b09c;
}
#fanclub .lead{
    font-size: 21px;
    line-height: 1.8;
    font-weight: bold;
    margin: 0 0 50px 0;
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid;
    border-top: 1px solid;
}
#fanclub .box{
    margin: 0 auto 80px;
    border-bottom: 1px dotted #ddd;
    padding: 0 0 80px 0;
}
#fanclub .box:last-of-type{
    margin: 0 auto ;
    border-bottom:none;
    padding: 0;
}

#fanclub .box .tit{
    text-align: center;
    font-size: 38px;
    margin: 0 0 30px 0;
    font-weight: bold;
    letter-spacing: 0.02em;
}
#fanclub .box .tit img{
    width: 40%;
}
#fanclub .box .subTit{
    width: 30%;
    margin: 0 auto 20px;
}
#fanclub .box .txt{
    font-size: 15px;
    text-align: center;
    margin: 0 0 30px 0;
}
#fanclub .box .ph{
    margin: 0 auto 30px;
    width: 60%;
}
#fanclub .box .ph.sticker{
    width: 35%;
}
#fanclub .box .detail{
    border: 2px solid;
    padding: 20px;
    margin: 0 0 20px 0;
    text-align: center;
}
#fanclub .box .detail dt{
border-bottom: 1px solid;
    padding: 0 0 10px 0;
    font-size: 20px;
    margin: 0 0 15px 0;
}
#fanclub .box .detail dd{
    font-size: 18px;
}
#fanclub .box .detail dd .attentionList{
    text-align: left;
}
#fanclub .box .detail dd .link{
    color: #fff;
    text-decoration: underline;
}
#fanclub .inBox .linkArea {
    padding: 0;
}
#fanclub .inBox .linkArea a{
    width: 35%;

    margin: 100px auto 0;
}

/* =================================
	フッター
==================================== */
footer{
line-height: 1.8;    
}
.linkArea {
    padding: 50px 0 0 0; 
    }
.linkArea a {
    width: 20%;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 auto;
    filter: contrast(0.1);
}
.nav--support{
    margin: 0;
}
footer {
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  width: 100%;
    position: relative;
}
footer .inner {
  padding: 40px 5%;
}
footer .copyright {
    font-family: 'Times New Roman', 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
}
footer .nav--support {
  margin-bottom: 30px;
}
footer .nav--support li {
  display: inline-block;
}
footer .nav--support li a {
  padding: 0 15px;
  color: var(--primary);
}
footer .nav--support li a:hover {
  opacity: 0.5;
}
footer .nav--sns {
  margin: 0 0 30px;
}
footer .nav--sns li {
  display: inline-block;
}
footer .nav--sns li a {
  padding: 0 15px;
  color: #999;
  font-size: 20px;
}
footer .nav--sns li a:hover {
  opacity: 0.5;
}



#popupInfotop{
	display:block;
	position:fixed;
	top:0;
	left: 0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.5);
	z-index:10010;
}
.pages #popupInfotop{
	display:none;
}

.popupBox{
	display:none;
	position:fixed;
	top:0;
	left: 0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.85);
	z-index:10010;
    text-align: left;
}
.popupBox .closeBg{
	display:block;
	position:fixed;
	top:0;
	width:100%;
	height:100%;
	z-index:1001;
}
.popupBox .block{
	position:absolute;
	top:49%;
	left:50%;
	width:90%;
	max-width: 800px;
	z-index:1100;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.popupBox .block{top:55%;}

.popupBox{
  overflow: scroll;
}
.popupBox .block{
    position: absolute;
    top: 10%;
    left: 50%;
    width: 90%;
    max-width: 800px;
    z-index: 1100;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    margin: 0 0 60px;
}


.popupBox .close .top{
	position:absolute;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.popupBox .close .bottom{
	position:absolute;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.popupBox .inner {
    background: #fff;
    padding: 30px 30px 35px;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: 1px;
    color: #222;
}
.popupBox .inner .tit {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    line-height: 2;
    padding: 0;
    margin: 0 0 20px 0;
}
.popupBox .inner .titSub{
    font-size: 15px;
    text-align: center;
    font-weight: 200;
    padding: 0 0 20px;
}
.popupBox .inner .tit .logo{
    width: 50%;
    margin: 0 auto 20px;
}
.popupBox .inner .tit + .text{
    padding: 10px 0 20px;
}
.popupBox .inner .lead p, .popupBox .inner .text > p {
    padding: 0 0 20px;
    margin: 0;
    font-weight: 200;
    line-height: 2;
}
.popupBox .inner a{
  color: #000;
  text-decoration: underline;
}

.popupBox .inner .lead {
    padding: 20px 0;
    border-bottom: 2px solid #ccc;
    margin: 0 0 40px;
}

.popupBox dd{
    margin: 0;
}
.popupBox .inner .notice {
    margin: 0;
    padding: 0;
}
.popupBox .inner .notice li {
    text-indent: -1em;
    padding: 0 0 8px 1em;
    font-weight: 400;
    font-size: 15px;
}
.popupBox .inner .notice li span{
    font-weight: bold;
    margin: 0 5px 0 0;
}
.popupBox .inner .notice li span.indent{
    display: inherit;
    padding: 0 0 0 1em;
}
.popupBox .inner .notice li span.add{
display: block;
    font-weight: bold;
    text-indent: 0;
}
.inline_contentTxt .notice li span.add {
display: block;
    font-weight: bold;
    text-indent: 0;
}
.popupBox .inner .notice + .text{
    padding: 10px 0 0;
}
.popupBox .inner #guideLines dl dt{
    padding: 0 0 35px;
    margin: 0 0 40px;
    border-bottom: 1px solid #ccc;
}
.popupBox .inner #guideLines dl dd:not(:last-child){
    padding: 0 0 25px;
    margin: 0 0 40px;
    border-bottom: 1px solid #ccc;
}

.popupBox .inner #guideLines .appBtn{
    text-align: center;
}
.popupBox .inner #guideLines .appBtn a {
    margin: 15px;
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    text-indent: 0;
}
.popupBox .inner #guideLines .appBtn a:hover{
  opacity:0.6;
}
.popupBox .inner #guideLines .appBtn a img{
    height: 60px;
    width: auto;
}
  .popupBox .close{
    position: absolute;
    width: 30px;
    height: 30px;
    top: -50px;
    right: 0;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    text-align: left;
  }
  .popupBox .close span{
  	top:20px;
  	width:30px;
  	height:2px;
  	position:absolute;
  	background:#fff;
  }
 /* .popupBox .close:hover{
  	-moz-transform: rotate(90deg);
  	-webkit-transform: rotate(90deg);
  	transform: rotate(90deg);
  }
  .popupBox .inner a:hover{
    color: #000;
    text-decoration: none;
  }*/
.bold {
    font-weight: bold!important;
}

.inline_contentTxt {
    padding: 50px!important;
}
.inline_contentTxt .tit {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    padding: 0 0 25px;
    line-height: 2;
}
.inline_contentTxt .subLogo{
width: 60%;
    display: block;
    max-width: 300px;
     opacity: 1;   
      -webkit-animation: none;
    animation: none;   
}
.inline_contentTxt .logo{
    display: block;
    max-width: 350px;
    opacity: 1;    
    -webkit-animation: none;
    animation: none;    
}


.inline_contentTxt .titSub{
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    padding: 0 0 20px;
}
.inline_contentTxt .tit + .text{
    padding: 10px 0 20px;
}
.inline_contentTxt .tit .logo{
    width: 35%;
    margin: 0 auto 20px;
    
}
.inline_contentTxt .tit .logo img{
display: block;
    margin: 0 auto;
}
.inline_contentTxt .tit .logo img:nth-child(1){
    width: 80%;
    margin: 0 auto 5px;
}
.inline_contentTxt .lead p, .inline_contentTxt .text > p {
    padding: 0 0 20px;
    margin: 0;
    font-weight: 500;
    line-height: 2;
}
.inline_contentTxt a{
  color: #000;
    text-decoration: underline;
    word-break: break-all;
}

.inline_contentTxt .lead {
    padding: 20px 0;
    border-bottom: 2px solid #ccc;
    margin: 0 0 40px;
}
.inline_contentTxt .notice {
    padding: 0;
    font-weight: 400;
}
.inline_contentTxt .notice li{
    text-indent: -1em;
    padding: 0 0 8px 1em;
}
.inline_contentTxt .notice li span{
    font-weight: bold;
    margin: 0 5px 0 0;
}
.inline_contentTxt .notice li span.indent{
    display: inherit;
    padding: 0 0 0 1em;
}
.inline_contentTxt .notice li span.red{
    display: block;
    font-size: 13px;
    font-weight: 100;
    text-indent: 0;
}
.inline_contentTxt .notice + .text{
    padding: 10px 0 0;
}
.inline_contentTxt #guideLines dl dt{
    padding: 0 0 35px;
    margin: 0 0 40px;
    border-bottom: 1px solid #ccc;
}
.inline_contentTxt #guideLines dl dd:not(:last-child){
    padding: 0 0 25px;
    margin: 0 0 40px;
    border-bottom: 1px solid #ccc;
}

.inline_contentTxt #guideLines .appBtn{
    text-align: center;
}
.inline_contentTxt #guideLines .appBtn a {
    margin: 15px;
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    text-indent: 0;
}
.inline_contentTxt #guideLines .appBtn a:hover{
  opacity:0.6;
}
.inline_contentTxt #guideLines .appBtn a img{
    height: 60px;
    width: auto;
}
.inline_02 {
display: block;
    text-align: center;
    padding: 25px;
    color: #fff;
    background: #9f8e78;
    font-size: 16px;
    transition: 0.3s;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 60px;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 8px;
}
.inline_contentTxt{

}
.inline_02 #cboxPrevious, .inline_02  #cboxNext {
    cursor: pointer;
    display: none!important;
}
.ticketBox .attentionList.red {
    margin: 0 0 20px 0;
}
    

#acd {
    margin: 30px 0 0 0;
}
#acd .acdTit {
width: 100%;
    letter-spacing: 0.6px;
    display: block;
    font-size: 16px;
    box-sizing: border-box;
    position: relative;
    transition: 0.4s;
    padding: 20px;
    background: #fff;
    color: #010101;
    font-weight: bold;  
}
#acd .acdTit::after {
    position: absolute;
    margin: -12px 0 0;
    content: "";
    vertical-align: middle;
    top: 65%;
    right: 25px;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);;
    z-index: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#acd .acdTit.open::after {
    margin: -5px 0 0;
    transform: rotate(135deg);
    transition: 0.4s;
    top: 50%;      
}
#acd .acdTit .ticketTit{
    margin: 0;
}
#acd .ticketBox {
    margin: 0 0 50px;
    padding: 0 40px 40px 40px;
    background: rgba(129,188,185,0.2);
}  

.inBox{
    width: 80%;
    margin: auto;
    box-sizing: border-box;
    background: var(--primary);
    color: #FFF;
    padding: 40px;
    max-width: 1000px;
    position: relative;
    border-radius: 16px;
}
.inBox.bgNone{
    padding: 0;
    background: none;
}
.goodsTxtArea{
    border: 2px solid #ddd;
    padding: 40px;
    box-sizing: border-box;
    margin: 0 0 50px 0;
}
.goodsTxtArea .tit{
    font-size: 20px;
    text-align: center;
    margin: 0 0 10px 0;
}
.goodsTxtArea .txt{
    line-height: 1.5;
    font-size: 15px;
    margin: 0 0 30px 0;
}
.goodsTxtArea dl{
    background: #ecf6ff;
    padding: 20px;
    margin: 0 0 15px 0;
	color: #000;    
}
.goodsTxtArea dl dt{
    margin: 0 0 10px 0;
    font-size: 14px;
}
.goodsTxtArea dl .ph{
    margin: 20px 0 0 0;
}
.goodsTxtArea dl dd.endTxt{
  color: red;
  text-decoration: line-through;
}
.goodsTxtArea dl dd.endTxt span{
color: #333333;
}
.goodsTxtArea dl dd.endTxt p{
    display: inline-block;
    font-size: 14px;
    margin: 0 0 0 5px;
}
.goodsTxtArea dl dd{
    font-size: 14px;
}
.goodsTxtArea dl dd .attentionlist li{
    text-indent: -1em;
    margin: 0 0 5px 1em;
    font-size: 12px;    
}
#goods .goodsTxtArea .btn{
    margin: 0;
}
#goods .btn a{
    width: 400px;
    margin: 0 auto;
}
#goods .btn a:hover{

}


#wrap #goods .attentionBox.credit{

}
#wrap #goods .attentionBox.credit .link {
    display: inline;
    width: auto;
    padding: 0;
    border: none;
    font-size: 13px;
    color: #231815;
    text-decoration: underline;
}
#wrap #goods .attentionBox.credit .tourTit{
    text-align: center;
    font-size: 20px;
    margin: 0 auto 20px;
    display: block;
}
#wrap #goods .attentionBox.credit .event{
    border: 2px solid;
    padding: 30px;
    margin: 0 auto 30px;
}
#wrap #goods .attentionBox.credit .mainTit{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 20px;
}
#wrap #goods .attentionBox.credit .box{
    padding: 30px;
    background: #e5dcda;
    margin: 0 0 20px 0;
}
#wrap #goods .attentionBox.credit .box dt{
text-align: center;
    font-size: 18px;
    border-bottom: 1px solid;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
    font-weight: bold;
}
#wrap #goods .attentionBox.credit .box dd .txt{
    font-size: 14px;
    margin: 0 0 10px 0;
    text-align: center;
font-weight: 500;
}

#wrap #goods .attentionBox.credit .box dd .eventList{

}
#wrap #goods .attentionBox.credit .box dd .eventList li{
    background: rgba(255,255,255,0.1);
    padding: 20px;
    margin: 0 0 15px 0;
}
#wrap #goods .attentionBox.credit .box dd .eventList li .tit{
text-align: center;
    font-size: 15px;
    margin: 0 0 15px 0;
    font-weight: bold;
    background: #231815;
    color: #fff;
    padding: 10px;
}
#wrap #goods .attentionBox.credit .box dd .eventList li .txt{
    text-align: left;
    margin: 0;
}
#wrap #goods .attentionBox.credit .box dd .eventList li .btn {
    margin: 30px auto 0;
}
#wrap #goods .attentionBox.credit .box dd .lead{
    font-size: 13px;
}
#wrap #goods .attentionBox.credit .box dd .subTit{

}
#wrap #goods .attentionBox .ph{
    margin: 0 0 20px 0;
}

.attentionBnr a{
    display: block;
    background: #231815;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 30px;
    font-size: 17px;
}

#wrap #goods #acd .attentionBox{

}
#wrap #goods #acd .attentionBox  .tit{
margin: 0;
    padding: 0;
}
#wrap #goods #acd .attentionBox .acdIn{
    margin: 20px 0 0 0;
}
#wrap #goods .goodsTxtList{
padding: 30px;
    background: #dad4d2;
    margin: 0 0 10px 0;
}
#wrap #goods .goodsTxtList li{
    font-size: 14px;
    margin: 0 0 10px 0;
}
#wrap #goods .goodsBnr a{
display: block;
    background: #fff;
    border: 2px solid #231815;
    padding: 15px;
    width: 500px;
    margin: auto;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}



.linkBnr a{
    border: 2px solid #231815;
    padding: 20px;
    text-align: center;
    margin: 0 auto 80px;
    display: block;
    width: 350px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 999px;
}

#goods .goodsList li.blue a{
    background: #645D54;
    color: #fff;
}
#goods .goodsList li.blue a p.goodsName,
#goods .goodsList li.blue a p.goodsDetail{
    color: #fff;
}
#goods .goodsList li.blue a .icon {
    background: #fff;
    color: #000;
}

/*=============================================================
	レスポンシブPC
===============================================================*/
@media screen and (min-width: 960px){
.sp{display:none;}

#news .btnMore a:hover {
    transition: 0.4s;
    opacity: 0.7;
}
#schedule .s-table .ticketGuid span a:hover{
    opacity: 0.7;
}

.btn.until a:hover {
    background: #888888;
    border: 2px solid #888888;
    color: #fff;
    opacity: 1;
    pointer-events: none;
}


.btn.sub a:hover {
    opacity: 0.7;
}
.btn a:hover {
    opacity: 0.7;
}
#ticket .box.normal .subTit:hover{
    opacity: 0.7;
}
#ticket .box.normal .ticketBox.ippan .ticketList dl dd .link:hover{
    opacity: 0.7;
}
.hamBtn:hover{
    opacity: 0.7;
}
.inline_02:hover{
background: #645d54;
}
.attentionBnr a:hover{
    opacity: 0.7;
}
#wrap #goods .goodsBnr a:hover{
    opacity: 0.7;
}
#fanclub .box .detail dd .link:hover{
    opacity: 0.7;
}
.linkBnr a:hover{
    opacity: 0.7;
}
#schedule .s-table .area span{
        background: var(--primary);
        color: #FFF;
        font-size: 13px;
        display: block;
        padding: 2px;
}
.bnr{
    width: 45%;
    line-height: 0;
    margin: 0 auto 100px;
}
.bnr_enq{
    width: 45%;
    line-height: 0;
    margin: 0 auto 100px;
}

.block_subContentsList{
    margin: 0 0 100px;
}

.block_subContentsList li{
	width: 45%;
	margin: 0 auto 20px;
}

.block_subContentsList li:last-child{
	margin: 0 auto;
}

.block_subContentsList li a{
	display: block;
    line-height: 0;
}
.bnrList li a:hover{
    transition: 0.4s;
    opacity: 0.7;
}
.linkArea a:hover{
    opacity: 0.7;
}

/*=============================================================
	カラーボックス
===============================================================*/
#cboxOverlay {
background: #000;
}
#colorbox {
overflow: visible!important;
}
#cboxWrapper {
overflow: visible;
}
#cboxLoadedContent {
margin-bottom: 0px;
}
#cboxContent {
overflow: visible;
}
#cboxClose {
position: absolute;
top: -50px;
right: 0;
/*background: transparent;*/
width: 25px;
height: 25px;
text-indent: -9999px;
background: url(/static/fcuru/feature/20190310_ttt/images/ph_btnclose.png);
background-size: 25px;
}
#cboxClose {
}
#cboxClose:after {
/*content:"";*/
box-sizing: border-box;
display: block;
position: absolute;
right: 0;
width: 100%;
height: 4px;
background: #FFF;
-webkit-transform: translateY(-5px) rotate(-45deg);
transform: translateY(-5px) rotate(-45deg);
}

#cboxClose:before {
/*content:"";*/
box-sizing: border-box;
display: block;
position: absolute;
right: 0;
width: 100%;
height: 4px;
background: #FFF;
-webkit-transform: translateY(10px) rotate(45deg);
transform: translateY(10px) rotate(45deg);
}
#cboxNext {
position: absolute;
top: 50%;
right: -15px;
color: #444;
background: #231815  url(/static/fcuru/feature/toYou/images/cbox_next.png) no-repeat center center;
background-size: auto auto;
background-size: 13px;
width: 40px;
height: 40px;
text-indent: -9999px;
margin-top: -20px;
z-index: 2000;
left:auto;
}
#cboxPrevious {
position: absolute;
top: 50%;
left: -15px;
color: #444;
display: block;
background: #231815  url(/static/fcuru/feature/toYou/images/cbox_prev.png) no-repeat center center;
background-size: auto auto;
background-size: 13px;
width: 40px;
height: 40px;
text-indent: -9999px;
margin-top: -20px;
z-index: 2000;
}
#cboxNext:hover {
    background-position: center center;
}
#cboxPrevious:hover {
    background-position: center center;
}
#cboxCurrent {
display: none!important;
}




#wrap{

}


#wrap h1{
    margin: 0 auto 140px;
    width: 100%;
}


.mainLeadBox{
/*
	padding:50px 50px 40px;*/
	padding:40px 40px 20px;
	margin:0 0 100px;
}

.mainLeadTit{
	font-size: 30px;
	/*font-weight: bold;*/
	margin: 0 0 20px;
	text-align: center;
}

.mainLead{
	font-size: 16px;
	/*font-weight: bold;*/
	text-align: center;
	    margin: 0 0 20px;
}

.name{
	font-size: 17px;
}

/* ==============================================================
	goods
=================================================================== */


.goodsAreaBox{
	margin:0 0 50px;
    padding: 20px;
    background: #ede1fb;
}


.goodsAreaTit {
    border-left: 7px solid #545257;
    padding: 3px 0 3px 10px;
    font-size: 21px;
    font-weight: bold;
    margin: 10px 0 25px;
}
.goodsAreaTxt{
	font-size:14px;
	margin:0 0 10px;
	font-weight: bold;
}

.goodsAreaTxt a{
    color: #81BCB9;
}

.goodsAreaTime{
	font-size:14px;
    font-weight: bold;
}

.goodsAreaTime span{
	font-size:14px;
    font-weight: bold;
}









.attentionList{

}


.attentionList li{
	padding-left:1em;
	text-indent:-1em;
	font-size:13px;
	/*margin:0 0 3px;*/
}

.attentionList li:last-child{
	margin:0;
}

.pastgoodsList{

}

.pastgoodsList li{
	font-size:14px;
	margin:0 0 3px;
}

.pastgoodsList li:last-child{
	margin:0;
}


.ph_card{
	width:500px;
}




/* #goods ============================ */

#goods{

}

#goods .lead{
    font-weight: bold;
    padding: 0 0 20px;
}
#goods .goodsList{
display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#goods .goodsList li{
/*    text-indent: -8px;*/
    padding: 0 0 20px  0;
    position: relative;
}

#goods .goodsList li .new{
    width: 60px;
    height: 60px;
    background: #000;
    display: block;
    position: absolute;
    left: -10px;
    top: -10px;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 12px;
    border-radius: 999px;
    z-index: 1;
}
#goods .goodsList li:last-child{
    padding: 0 0 0px;
}
#goods .goodsList li .icon{
    background: #000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    margin: 0 5px 0 0;
    font-size: 12px;
}
.goods_box h4 .icon{
background: #000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    margin: 0 5px 0 0;
    font-size: 14px;
    position: relative;
    top: -2px;
}

#goods .title {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #ff9800;
    background-image: none;
    background-origin: padding-box;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto auto;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}

#cboxClose:hover{background-position:0;}
#cboxOverlay{
	background: rgba(0,0,0,0.5);
}
.goods_box {
    width:auto;
    background:#fff; 
    padding:40px; 
    color: #010101;
}


.goods_box h4 {
color: #000;
    font-size: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px dotted #000;
    margin: 0 0 20px 0;  
}
.goods_box .ph {
    text-align: center;
    line-height: 0;
    width: 65%;
    margin: 0 auto 50px;
}

.goods_detail { font-size:13px; color:#151515; margin: 15px 0 0;line-height:1.6em; }
.goods_detail p {
    padding: 0 0 10px;
    font-size: 15px;
    line-height: 1.8;
}
.goods_detail ul {
    padding: 0 0 20px;
}
.goods_detail ul li{
	padding-left:1em;
	text-indent:-1em;
}

.goods_detail ul li:last-child{
	font-size:12px;
	padding:0 0 0 1em;
}

.attention    { font-size:11px; color:#e00; margin-bottom:5px; line-height:1.3em;}
.goodsCaption {display: none;}

  #cboxLoadingGraphic{background:url(/images/feature/fes2014/loading.gif) no-repeat center ;}

.price { width:100%; font-size:12px; border:1px dotted #aaa; border-top:none; margin-bottom:10px; }
.price tr { border-top:1px dotted #aaa;}
.price th { width:80px; padding:10px 5px; font-weight:bold; text-align:center; }
.price td { width:300px; padding: 10px 5px; }
.size {
    width: 100%;
    border: 1px dotted #aaa;
    margin-bottom: 10px;
    padding: 20px;
}
.size .tit{
    font-size: 14px;
    margin: 0 0 10px 0;
}
.size dl{
    margin: 0 0 20px 0;
}
.size dl:last-child{
    margin: 0;
}
.size dl dt{
font-weight: bold;
    font-size: 15px;
    text-align: center;
    background: #eaeaea;
    margin: 0 0 10px 0;
}
.size dl dd{
    text-align: center;
    font-size: 14px;
}

.size tr { border-top:1px dotted #aaa; }
.size th { padding:3px 5px; width:70px; font-weight:bold; text-align:center;}
.size td { width:77px; padding: 10px 0; text-align:center; }
.btn { text-align: center; }
.btn img { width: 200px; }

.goods_box .attentionList {
    color: #000;
    font-size: 13px;
    text-align: left;
    background: #fbfbfb;
    padding: 15px;
    margin: 10px 0 0 0;
    }
.goods_detail .attentionList li {
    padding-left: 0;
    margin: 0 0 5px 1em;    
}
.goods_detail .attentionList li:last-child {
    padding-left: 0;
    margin: 0 0 0 1em;    
}


#cboxClose {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -34px;
    right: -20px;
    text-indent: -9999px;
text-indent: -9999px;
background:url(/static/fcuru/feature/toYou/images/close.png) no-repeat 0 0;
    background-size: contain;
}

#goods .leadArea {
line-height: 1.6em;
}

#goods .article {
    margin: 0 0 40px;
}
#goods ul.goodsList {
    /*padding: 0 0 40px;*/
    position: relative;
}
#goods .goodsList li {

}

#goods .goodsList li a {
    background: #dfd7ca;
    box-sizing: border-box;
    display: block;
    height: 520px;
    padding: 15px;
    text-decoration: none;
    width: 430px;
}
#goods .goodsList li a:hover {
    /*border: 3px solid #151515;*/
    opacity:0.6;
}
#goods .goodsList li p.goodsImage {
    background-color: #ffffff;
    text-align: center;
    line-height: 0;
	margin: 0 0 15px;
}
#goods .goodsListli p.goodsImage img {
    border: medium none;
    margin-bottom: 5px;
    width: 210px;
}
#goods .goodsListli p.goodsImage img:hover {
    opacity: 1 !important;
}
#goods .goodsList li p.goodsName {
    border-bottom: 1px dotted #989898;
    color: #000;
    line-height: 1.3em;
    margin: 0 0 10px;
    padding: 0 0 5px;
    text-align: center;
        font-size: 15px;
}
#goods .goodsList li p.goodsType {
    background-color: #d22831;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1em;
    margin: 0 0 10px;
    padding: 5px 10px 4px;
}
#goods .goodsList li p.goodsDetail {
    color: #333333;
    line-height: 1.3em;
    padding: 0 0 5px;
        font-size: 13px;
    text-align: center;
}


#goods .goodsDetail{
	margin:0 0 3px;
}


#goods .goodsList li p.goodsDescription {
    color: #333333;
    font-size: 11px;
    line-height: 1.4em;
}
#goods p.goodsImage img {
    opacity: 1 !important;
}


#goods .btn{
	margin: 0 0 50px;
}

#goods .preSale{
border: 1px solid #8e9696;
    padding: 30px;
    box-sizing: border-box;
    margin: 0 0 50px 0;
}
#goods .preSale dt{
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-align: center;
    background: rgba(129,188,185,0.2);
    padding: 10px;
}
#goods .preSale dt.tit{
    background: none;
    padding:0; 
    font-size: 19px;       
}
#goods .preSale dd {
    text-align: center;
    font-size: 16px;
}
#goods .preSale .txt{
    font-size: 14px;
    line-height: 1.8;
text-align: left;    
}
#goods .preSale li{
    text-align: left;
}


#colorbox, #cboxOverlay, #cboxWrapper {
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 9999;
}
#cboxOverlay {
    height: 100%;
    position: fixed;
    width: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
    clear: left;
}
#cboxContent {
    position: relative;
}
#cboxLoadedContent {
    overflow: auto;
}
#cboxTitle {
    margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer;
}
.cboxPhoto {
    border: 0 none;
    display: block;
    float: left;
    margin: auto;
    max-width: none;
}
.cboxIframe {
    border: 0 none;
    display: block;
    height: 100%;
    width: 100%;
}
#colorbox, #cboxContent, #cboxLoadedContent {
    box-sizing: content-box;
}
#cboxOverlay {
    background: rgba(0,0,0,0.5);
}
#cboxContent {
    margin-top: 32px;
    overflow: visible;
}
#cboxError {
    border: 1px solid #cccccc;
    padding: 50px;
}
#cboxLoadedContent {
/*    background: #eeeeee none repeat scroll 0 0;
    padding: 1px;*/
}
#cboxLoadingGraphic {
    background: rgba(0, 0, 0, 0) url("/static/fcuru/feature/20190310_ttt/loading.gif") no-repeat scroll center center;
}
#cboxLoadingOverlay {
    background: #fff none repeat scroll 0 0;
}
#cboxCurrent {
    position: absolute;
    right: 205px;
    text-indent: -9999px;
    top: -22px;
}

.goods_detail_h {
    font-size: 14px;
    font-weight: bold;
}

.ectext{

}
.ectext a{
    padding: 0;
    margin: auto;
    color: #000;
    background: none;
    padding: 0;
    -webkit-box-shadow: none;
    text-align: left;
}
.ectext.comment{
    padding: 10px 0 0;
}


/* ==============================================================
	Special
=================================================================== */
.section--detail{
	width:100%;
	padding:0;
}



.SpecialBox {
    margin: 0 0 50px;
    background: rgba(129,188,185,0.2);
    padding: 40px;
}


.preTxt{
    font-size: 18px;
    margin: 0 0 40px;
    /*font-weight: bold;*/
}


.presentList{

}
.presentList li{
position: relative;
    padding: 0 0 30px;
    float: left;
    box-sizing: border-box;
    width: 345px;
    margin: 0 30px 0 0;
}
.presentList li:last-child{
padding: 0;
margin:0;
}




.imageThumb{
line-height:0;
box-sizing:border-box;
}
.medal{
width: 23%;
position: absolute;
left: -20px;
top: -15px;
}

.section--detail .ph_urunai{
	margin:0 auto 30px;
	width:450px;
}


.section--detail .txt {
    margin: 0 0 30px;
    line-height: 1.4em;
    text-align: center;
    font-size: 18px;
	font-weight:bold;
}


.section--detail .qrtxt{
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}



.methodBox{
    /*background: rgba(205,230,244,0.2);*/
    padding: 15px;
    margin: 0 0 35px;
        border: 1px solid #81BCB9;
}

.methodTit{
    font-size: 20px;
    padding: 0 0 5px;
    border-bottom: 1px dotted #000;
    margin: 0 0 10px;
}

.methodList{
    margin: 0 0 15px;
}

.methodList li{
font-size: 16px;
}

.methodList li:last-child{

}



.SpecialLead{
	font-size: 20px;
    font-size: 20px;
    /*text-align: center;*/
    line-height: 1.6em;
    margin: 0 0 40px;
    /* font-weight: bold; */
}

.SpecialAreaTit{
    margin: 0 0 40px;
    /* line-height: 0; */
    font-size: 33px;
    /* font-weight: bold; */
    text-align: center;
    color: #fff;
    background: #81BCB9;
    padding: 15px 0;
}

.SpecialAreaLastTit{
    margin: 0 0 40px;
    font-size: 27px;
    text-align: center;
    color: #fff;
    background: #81BCB9;
    padding: 15px 0;
}

.settxt{
    font-size: 21px;
    font-weight: bold;
    margin: 0 0 40px;
    text-align: center;
    line-height: 1.6em;
}

.fcbnr{
	width:250px;
	margin:0 auto;
}

.SetListTit{
    font-size: 21px;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 1.6em;
}

.ph_set{
    width: 80%;
    margin: 40px auto 30px;
    line-height: 0;
}

.photoTxt{
text-align: center;
    font-size: 17px;
    margin: 0 0 20px;
    font-weight: bold;
}

.ph_photo{
    width: 50%;
    margin: 0 auto;
    line-height: 0;
}

p.text_r {
color: #0000FF;
text-align: center;
    font-size: 18px;
    margin: 0 0 40px;
    /*font-weight: bold;*/
}

.btnFc a {
    background: #81BCB9;
    color: #fff!important;
    border-radius: 100px;
    padding: 5px 10px;
    margin: 10px auto 0 auto;
    font-size: 14px;
    display: block;
    width: 250px;
    text-align: center;
    transition: 0.4s;
}
.btnFc a:hover{
    opacity: 0.7;
}

#ticket #acd h3 {
    font-size: 18px;
    background: #fff;
    color: #b688b9;
    font-weight: bold;
}


#acd.pre{
    margin: 0 0 50px 0;
    border: 1px solid #000;
}

#acd.pre h3{
    padding: 40px;
    background: transparent;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}
#acd.pre .goodsTxtArea {
    border: none;
padding: 0 40px 40px 40px;    
    }

.questionnaire:hover{
opacity: 0.7;
}


/*=============================================================
	レスポンシブPCここまで
===============================================================*/
}


/*=============================================================
レスポンシブSP
===============================================================*/
@media screen and (max-width: 960px){
.pc{display: none!important;}

.visual {
    position: relative;
}
.visual .uruLogo {
width: 20%;
    position: absolute;
    left: 20px;
    top: 20px;
}
.visual .logoArtist a:hover {
    opacity: 0.7;
}
.visual .logoArtist {
    top: 20px;
    left: 20px;
}
.visual .snsList{
    left: 20px;
    bottom: 20px;
}
.visual .snsList li {
    margin: 0 10px 0 0;
}
.scrollDown {
    bottom: 20px;
    right: 20px;
}
h2 {
    width: 85%;
    max-width: 500px;
top: 45%;
}
h2 p:nth-child(1) {
    margin: 0 auto;
    width: 100%;
}
h2 p:nth-child(2) {
    margin: 0 auto 1vh;
}


h3 {
    font-size: 62px;
    font-weight: bold;
    margin: 0 0 40px 0;
}
.block_subContentsList{
	margin: 0 0 35px;
}

.block_subContentsList li{
	width: 65%;
	margin: 0 auto 20px;
}

.block_subContentsList li:last-child{
	margin: 0 auto;
}

.block_subContentsList li a{
	display: block;
    line-height: 0;
}

/*===================================================
カラーボックス
====================================================*/

#cboxOverlay {
    background: rgba(0,0,0,0.5);
}
#colorbox {
overflow: visible!important;
}
#cboxWrapper {
overflow: visible;
}
#cboxLoadedContent {
margin-bottom: 0px;
}
#cboxContent {
overflow: visible;
}
#cboxClose {
position: absolute;
top: -50px;
right: 0;
background: transparent;
width: 25px;
height: 25px;
text-indent: -9999px;
background: url(/static/dempagumi/fanclub-sp/feature/2018_cosmo/images/ph_btnclose.png);
background-size: 25px;
}
#cboxClose {
}
#cboxClose:after {
/*content:"";*/
box-sizing: border-box;
display: block;
position: absolute;
right: 0;
width: 100%;
height: 4px;
background: #FFF;
-webkit-transform: translateY(-5px) rotate(-45deg);
transform: translateY(-5px) rotate(-45deg);
}

#cboxClose:before {
/*content:"";*/
box-sizing: border-box;
display: block;
position: absolute;
right: 0;
width: 100%;
height: 4px;
background: #FFF;
-webkit-transform: translateY(10px) rotate(45deg);
transform: translateY(10px) rotate(45deg);
}
#cboxNext {
position: absolute;
top: 50%;
right: -15px;
color: #444;
background:#231815 url(/static/dempagumi/fanclub-sp/feature/2018_cosmo/images/cbox_next.png) no-repeat center center;
background-size: auto auto;
background-size: 13px;
width: 40px;
height: 40px;
text-indent: -9999px;
margin-top: -20px;
z-index: 2000;
left: auto;
}
#cboxPrevious {
position: absolute;
top: 50%;
left: -15px;
color: #444;
display: block;
background: #231815 url(/static/dempagumi/fanclub-sp/feature/2018_cosmo/images/cbox_prev.png) no-repeat center center;
background-size: auto auto;
background-size: 13px;
width: 40px;
height: 40px;
text-indent: -9999px;
margin-top: -20px;
z-index: 2000;
}

#cboxCurrent {
display: none!important;
}


.goods_box{
	padding:30px;
}

.ectext.comment {
    padding: 10px 0 0;
}
.ectext a {
    padding: 0;
    margin: auto;
    background: none;
    padding: 0;
    -webkit-box-shadow: none;
    text-align: left;
}

#wrap{
    width: 100%;
}


#wrap h1{
	margin:0 auto 50px;
	width:90%;
}

.inBox {
    width: 90%;
    padding: 20px;
}

.hamBtn {
    width: 30px;
    height: 25px;
    right: 20px;
    top: 30px;
}
.hamBtn::before {

}
.hamBtn :nth-of-type(2) {
	top: 10px;
}
.hamBtn :nth-of-type(3) {
    top: 20px;
}
.hamBtn.open span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}
.hamBox .menuList li a {
    color: #fff;
    text-align: center;
    font-size: 6vw;
}
.inline_02 {
    padding: 13px;
    margin: 0 auto 60px;
    width: 100%;
    font-size: 11px;
}
.inline_02:hover{
    opacity: 1;
}
.contentsBox {
    padding: 100px 0 60px;
}
.coming {
    font-size: 16px;
    font-weight: normal;
    padding: 0;
    margin: 0;
}

.btn a {
    width: 100%;
    padding: 15px;
    display: block;
    margin: 15px auto 0;
    border-radius: 100px;
    font-size: 13px;
    font-weight: bold;
    transition: 0.4s;
}
.btn a:hover{
    opacity: 1;
}
.scroll {
    bottom: 5%;
}


#news .list--news li a .date {
    margin: 0 0 10px 0;
    font-size: 11px;
}
#news .list--news li a .tit {
    font-size: 14px;
    line-height: 1.5;
}
#news .list--news li a:hover {
    display: block;
    opacity: 1;
}

#news .btnMore a {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    width: 75%;
    margin: 30px auto 0;
    font-weight: bold;
}

.informationBlock {
    padding: 20px;
    color: #000;
    font-size: 13px;
}
#news.newsRe .btnMore a {
    display: block;
    color: #fff;
    border: 3px solid;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    width: 75%;
    margin: 30px auto 0;
    font-weight: bold;
}
#news.newsRe .btnMore a:hover {
    opacity: 1;
    transition: 0.4s;
}

/*=============================================================
	スケジュール
===============================================================*/
#schedule .scheduleList {
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    border: 2px solid ;
    padding: 20px;
    box-sizing: border-box;
}
#schedule .scheduleList dt {
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 10px 0;
}
#schedule .scheduleList dt a:hover{
    opacity: 1;
    transition: 0.4s;
}
#schedule .scheduleList dd .date {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: bold;
}

#schedule .scheduleList.re dd .open {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
}
#schedule .scheduleList dd .contact {
    font-size: 11px;
}
#schedule .scheduleList dd .open {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
}

#schedule .s-table {
    display: block;
    border-top: none;
    padding: 0;
    margin: 0;
}
#schedule .s-table thead {
    display: none;
}
#schedule .s-table tr {
    border-bottom: 1px solid;
    padding: 0 0 25px;
    margin: 0 0 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
#schedule .s-table tr:last-child{
    border-bottom: none;
    padding: 0;
    margin: 0;
}
#schedule .scheduleBox .s-table tr:last-child td {
    border-bottom: none;
    padding: 0;
}

#schedule .scheduleBox .s-table tr:last-child td.ticketGuid {
    padding-left: 0;
    padding-right: 0;
}
#schedule .scheduleBox .s-table tr:last-child td.area{
    padding: 3px 5px;
}
#schedule .scheduleBox .s-table tr:last-child td.venue{
    padding: 0 0 10px;
}
#schedule .s-table .day{
    width: auto;
    box-sizing: border-box;
    padding: 0;
    display: block;
    align-items: baseline;
    margin: 0;
    border: none;
    line-height: 1.3;
    width: 100%;
    text-align: left;
}
#schedule .s-table .date {
    font-size: 14px;
    white-space: nowrap;
    margin: 0 0 10px 0;
    text-align: left;
}
#schedule .s-table .youbi {
    padding-left: 5px;
    display: block;
    font-size: 14px;
}
#schedule .s-table .time {
    display: none;
}
#schedule .s-table .time2 {
    margin-top: 0;
    display: block;
    font-size: 13px;
    width: 100%;
    padding: 0;
    text-align: left;
    border: none;
    margin: 0 0 15px 0;
}
#schedule .s-table .area {
width: auto;
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 11px;
    padding: 3px 5px;
    line-height: 1.3;
    display: flex;
    border: none;
    background: #010101;
    color: #fff;
    margin: 0 5px 0 0;
}
#schedule .s-table td + td::before {
	display:none;
}
#schedule .s-table .venue {
    width: auto;
    box-sizing: border-box;
    padding: 0 0 10px;
    line-height: 1.5;
    font-size: 14px;
    display: flex;
    border: none;
    text-align: left;    
}

#schedule .s-table .ticketGuid {
    width: 100%;
    padding: 0;
    font-size: 12px;
    display: block;
    border: none;

}
#schedule .s-table .ticketGuid .fas {
    padding: 0 5px 0 0;
    vertical-align: -0.05em;
}
#schedule .s-table .ticketGuid span a {
	font-size: 12px;
    font-weight: 500;
}
#schedule .s-table .ticketGuid span {
    margin: 5px 0 0 0;
}

/*=============================================================
	チケット
===============================================================*/

#ticket .ticketBox {
    margin:0 0 20px 0;
    padding: 20px;
}
#ticket .attentionTxt {
    text-align: center;
    font-size: 13px;
}
#ticket .ticketTit {
    border-left: 4px solid #b688b9;
    padding: 3px 0 3px 10px;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 40px;
}
#ticket .ticketList dt {
    font-size: 13px;
    margin: 0 0 15px 0;
}
#ticket .ticketList dd {
    font-size: 13px;
    border-bottom: 1px dotted;
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-weight: 400;
}
#ticket .ticketList dd .mini {
    display: block;
    font-size: 10px;
    text-indent: -1em;
    margin: 0 0 0 1em;
}

.ticketList{

}
#ticket .ticketBox dd .list li {
    margin: 0 0 10px 0;
    font-size: 13px;
}
.ticketList dt{
    font-size: 16px;
    font-weight: bold;
    margin:0 0 5px;
}

.ticketList dd{
    font-size: 13px;
    padding:0 0 10px;
    border-bottom:1px solid #888;
    margin:0 0 10px;
}

.ticketList dd span{
	font-size:11px;
}

.ticketList dd:last-child{
	margin:0;
	border: none;
    padding: 0;
}

.ticketList .endtxt{
    text-decoration: underline;
}

.ticketList .attentionList {
    margin:0;
}
.ticketList .attentionList li.tit{
	font-weight: bold;
}
.ticketList .attentionList li.red{
    color: #ff0000;
    text-decoration: underline;
}
.ticketList .txt{
    font-size: 12px;
    margin: 0 0 20px 0;
}
.ticketList .attentionTxt{
font-size: 11px;
    text-indent: -1em;
    margin: 0 0 0 1em;
}
.ticketList dd .attentionList {
    margin: 10px 0 20px 0;
}
#ticket .ticketBox dd .list {
    padding: 0;
}
#ticket .ticketBox dd .list span {
    font-size: 14px;
}
#ticket .ticketList dd .typeTit {
    font-size: 13px;
}
#ticket .ticketBox dd .tit {
    font-size: 13px;
}
#ticket .ticketBox dd .list li dl {
    padding: 10px;
    margin: 10px 0 0 0;
}
#ticket .ticketBox dd .list li dt {
    font-size: 12px;
}
#ticket .ticketBox dd .list li dd .link {
    font-size: 12px;
    color: #b688b9;
    display: inline-block;
    margin: 0 5px 0 0;
}
#ticket .ticketBox dd .list li dd p {
    font-size: 11px;
    display: block;
    text-align: center;
    width: auto;    
}
#ticket .ticketBox dd .list li dd {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    font-size: 12px;
}
#ticket .ticketBox dd .list li dl dd:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}
#ticket .ticketBox dd .list li dd .fcBtn a {
    display: block;
    background: #333;
    color: #fff;
    border-radius: 100px;
    padding: 5px 10px;
    font-size: 12px;
    position: relative;
   /* top: 8px;*/
}
#ticket .ticketBox dd .list li dd .fcBtn a:hover{
    opacity: 0.7;
    transition: 0.4s;
}
#ticket .ticketBox dd .list span.soldTxt {
    font-size: 12px;
    margin: 0;
    display: block;
}

#ticket #acd .acdTit {
    font-size: 12px;
    padding: 20px 50px 20px 20px;    
}


#ticket .box {
    padding: 15px;
    margin: 0 0 30px 0;
}

#ticket .box.main dt {
    font-size: 13px;
    margin: 0 0 5px 0;
    font-weight: bold;
}
#ticket .box.main dl dd {
    font-size: 13px;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid;
}    
#ticket .box .tit {

}

#ticket .box.ippan dl dt {
    width: 100%;
    text-align: center;
    background: #fff;
    color: #231815;
    padding: 5px 0;
    font-size: 13px;
    font-weight: bold;
}
#ticket .box.ippan dl dd {
    text-align: center;
    width: 100%;
    border-bottom: none;
    padding: 10px 0 0;
    font-size: 14px;
}
#ticket .box.normal .subTit {
    text-align: center;
    font-size: 18px;
    margin: 0 0 30px 0;
    line-height: 1.5;
    cursor: pointer;
    color: #fff;
    border-radius: 8px;
    text-align: left;
}

#ticket .box.normal .subTit span {
    display: block;
    font-size: 11px;
}
#ticket .box.normal dl {
    border: 1px solid;
    padding: 15px;
    margin: 0 0 20px 0;
    text-align: center;
}
#ticket .box.normal dl dt {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid;
    font-size: 13px;
}
#ticket .box.normal dl dd {
    font-size: 12px;
}
#ticket .box.normal dl dd .txt{
    font-size: 12px;
}
#ticket .box.normal dl dd .turmBox {
    flex-direction: column;
}
#ticket .box.normal dl dd .turmBox .tit {
    font-size: 12px;
    border-right: none;
    border-bottom: 1px solid;
    padding: 0 0 8px;
    margin: 0;
}
#ticket .box.normal dl dd .turmBox .txt {
        font-size: 12px;
}
#ticket .box.normal .txt {
    text-align: left;
    font-size: 12px;
}
#ticket .box.normal .inner {
    padding: 0 0 30px 0;
    margin: 0 auto 30px;
    border-bottom: 1px dotted;
}
#ticket .box.normal .inner.last {
    padding: 0;
    margin: 0 auto 30px;
    border-bottom: none;
}
#ticket .box.normal #acd {
    margin: 15px 0 0 0;
}
    
/* ==============================================================
	goods
=================================================================== */


.goodsAreaBox{
	margin:0 0 30px;
    padding: 20px;
    background: #ede1fb;
}


.goodsAreaTit{
    border-left: 7px solid #2d2d2d;
    padding: 3px 0 3px 10px;
    font-size: 15px;
    font-weight: bold;
    margin: 10px 0 25px;
}

.goodsAreaTxt{
	font-size:13px;
	margin:0 0 10px;
	font-weight: bold;
}

.goodsAreaTxt a{
    color: #81BCB9;
}

.goodsAreaTime{
	font-size:13px;
    font-weight: bold;
}

.goodsAreaTime span{
	font-size:13px;
    font-weight: bold;
}
.goodsList{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.goodsList li{
    width: 48%;
}
#goods .goodsList li a {
    background: #d4c2bd;
    box-sizing: border-box;
    display: block;
    height: 520px;
    padding: 15px;
    text-decoration: none;
    width: 430px;
}
#goods .goodsList li p.goodsName {
    border-bottom:1px dotted #989898;
    color: #000;
    line-height: 1.3em;
    margin: 10px 0 5px;
    padding: 0 0 5px;
    text-align: center;
    font-size: 10px;
}

.attentionList{

}


.attentionList li{
	padding-left:1em;
	text-indent:-1em;
	font-size:11px;
	margin:0 0 3px;
    line-height: 1.4em;
}

.attentionList li:last-child{
	margin:0;
}

.pastgoodsList{

}

.pastgoodsList li{
	font-size:11px;
	margin:0 0 3px;
}

.pastgoodsList li:last-child{
	margin:0;
}


.ph_card{
	width:100%;
	text-align: center;
}





/* colorbox ========================= */
.goods_detail ul{
	/*padding:0 0 10px;*/
}
.goods_detail ul li{
    background: rgba(255,255,255,0.3);
    padding: 15px;
    margin: 0 0 15px;
}

.goods_detail ul li:last-child{
	font-size:12px;
	padding:15px 0 15px 1em;
	text-indent:-1em;
}








.goods_box h4 {
    line-height: 1.5;
    color: #000;
    font-size: 13px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px dotted #000;
    margin: 0 0 20px 0;
}
.goods_box .ph { text-align: center;    line-height: 0;     margin: 0 0 10px 0;}

.goods_detail { font-size:13px; color:#151515; margin: 15px 0 0;line-height:1.6em; }
.goods_detail p{
	padding:0 0 10px;
}

.attention    { font-size:11px; color:#e00; margin-bottom:5px; line-height:1.3em;}
.goodsCaption {display: none;}

#cboxLoadingGraphic{background:url(/images/feature/fes2014/loading.gif) no-repeat center ;}

.price { width:100%; font-size:12px; border:1px dotted #aaa; border-top:none; margin-bottom:10px; }
.price tr { border-top:1px dotted #aaa;}
.price th { width:120px; padding:3px 5px; font-weight:bold; text-align:center; }
.price td { width:300px; padding: 3px 5px; }
.size { width:100%; font-size:12px;  border:1px dotted #aaa; margin-bottom: 10px; }
.size tr { border-top:1px dotted #aaa; }
.size th { padding:3px 5px; width:70px; font-weight:bold; text-align:center;}
.size td { width:77px; padding: 10px 0; text-align:center; }



#cboxClose {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -40px;
    right: -8px;
    text-indent: -9999px;
    background: url(/static/fcuru/feature/toYou/images/close.png) no-repeat 0 0;
    background-size: contain;
}

#goods .goodsList li {
	margin:0 0 20px;
}


#goods .goodsList li a {
box-sizing: border-box;
    display: block;
    height: 60vh;
    padding: 10px;
    text-decoration: none;
    width: 100%;
    max-height:65vw;
}
#goods .goodsList li p.goodsImage {
    background-color: #ffffff;
    text-align: center;
    line-height: 0;
	margin: 0 0 10px;
}
#goods .goodsListli p.goodsImage img {
    border: medium none;
    margin-bottom: 5px;

}
#goods .goodsListli p.goodsImage img:hover {
    opacity: 1 !important;
}

#goods .goodsList li p.goodsType {
    background-color: #d22831;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1em;
    margin: 0 0 10px;
    padding: 5px 10px 4px;
}
#goods .goodsList li p.goodsDetail {
    color: #333333;
    line-height: 1.3em;
    font-size: 10px;
    text-align: center;
}


#goods .goodsDetail{
	/*margin:0 0 3px;*/
}



#goods .btn{
	margin: 0 0 30px;
}











/* グッズ ========================= */









#goodsArea{
/*margin: 0 0 40px 0;*/
}
#goodsArea .venue{
font-weight: bold;
font-size: 16px;
padding: 0 0 0 5px;
border-left: 5px solid;
margin: 0 0 10px;
}
#goodsArea .venue span{
font-size: 12px;
vertical-align: 2px;
padding: 0 0 0 3px;
}

#goodsArea .goodsAreaCell{
width: 100%;
margin: 0 0 25px;
}

#goodsArea .goodsAreaCell tr{
font-size: 12px;
line-height: 1.3em;
}

#goodsArea .goodsAreaCell tr th{
background: #FF9800;
color: white;
padding: 7px;
text-align: center;
font-weight: bold;
border-bottom: 2px solid #FFF;
width: 35%;
}

#goodsArea .goodsAreaCell tr td{
background: #FFC35A;
border-bottom: 2px solid white;
border-left: 2px solid white;
text-align: center;
padding: 7px;
}

#goodsArea .goodsAreaCell tr td span{
font-size:11px;
}

#goodsArea .goodsAreaCell tr:last-child th{
border-bottom: none;
}

#goodsArea .goodsAreaCell tr:last-child td{
border-bottom: none;
}











#goodsArea .itemDetail {
/*background: #ffffff none repeat scroll 0 0;*/
background: rgba(255,255,255,0.4);
/*border: 2px solid #ff9800;*/
margin: 0 0 20px;
padding: 10px;
}
#goodsArea .indent {
margin-left: 10px !important;
text-indent: -1em !important;
}
#goodsArea .sml {
font-size: 12px;
line-height: 1.4em;
margin: 0 0 5px 10px;
text-indent: -1em;
}
#goodsArea .textArea {
margin: 0 0 10px;
}
#goodsArea .textArea p, #goodsArea .textArea ul {
margin: 0 0 5px;
}
#goodsArea h4.goodsCategory {
border-bottom: 2px dotted #ff9800;
color: #ff9800;
font-size: 17px;
font-weight: bold;
margin: 0 0 15px;
padding: 0 0 5px;
}
#goodsArea .item .tit {
border-bottom: 2px dotted #ff9800;
color: #81BCB9;
font-size: 15px;
font-weight: bold;
line-height: 1.3em;
padding: 0 0 10px;
text-align:center;
}
#goodsArea .item .tit span {
background: #ff9800 none repeat scroll 0 0;
border-radius: 5px;
color: #ffffff;
font-size: 11px;
margin: 0 0 5px;
padding: 2px 5px;
}
#goodsArea .item table {
background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
border: 1px solid #dddddd;
border-collapse: collapse;
border-spacing: 0;
font-size: 11px;
margin: 0 auto 10px;
width: 100%;
}
#goodsArea .item table td {
border: 1px solid #dddddd;
color: #666666;
font-size: 10px;
letter-spacing: 0.02em;
line-height: 1.6em;
padding: 5px;
text-align: left;
}
#goodsArea .item table td.titSub {
text-align: center;
vertical-align: middle;
width: 20%;
}
#goodsArea .comment {
font-size: 13px;
line-height: 1.5em;
margin:0 0 5px;
}
p.goodsLead {
font-weight: bold;
line-height: 1.6em;
margin-bottom: 0;
padding: 0 0 30px;
}
#goodsArea .lower {
border-top: 1px solid #cccccc;
padding-top: 25px;
}
#goodsArea h5 {
font-size: 13px;
font-weight: bold;
line-height: 1.3em;
margin: 0 0 5px;
}
#goodsArea h5 + p {
border-top: 1px dashed #666666;
margin: 0 0 10px;
padding-top: 5px;
}
#goodsArea .note {
line-height: 1.3em;
font-size:11px;
}
#goodsArea .detailList dd {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
padding: 5px 0;
}
#goodsArea .detailList dd:last-child {
padding: 5px 0;
}
#goodsArea .detailList dd .lead {
font-weight: normal;
margin: 0 0 3px;
}
#goodsArea .detailSection {
margin: 0;
}
#goodsArea .shop {
display: none;
}
#goodsArea .notes {
font-size: 11px;
margin: 5px 0 0;
padding-left: 10px;
text-indent: -1em;
}
#goodsArea span.limited {
color: #0577b6;
font-size: 13px;
}
#goodsArea .small {
color: #666666;
font-size: 12px;
}
#goodsArea .centerTxt {
color: #0577b6;
font-size: 14px;
font-weight: bold;
margin: 0;
text-align: center;
}

#goods .preSale {
    border: 1px solid #8e9696;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 30px 0;
}
#goods .preSale dt{
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-align: center;
    background: rgba(129,188,185,0.2);
    padding: 5px;
}
#goods .preSale dt.tit{
    background: none;
    padding: 0;
    font-size: 15px;
    margin: 0 0 10px 0;      
}
#goods .preSale dd {
    text-align: left;
    font-size: 13px;
}
#goods .preSale .txt{
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
}
#goods .preSale li{
    text-align: left;
}


.size {
    padding: 15px;
}
.size dl{
margin: 10px 0;
}
.size dl dt {
    font-size: 12px;
    text-align: center;
    background: #eaeaea;
    margin: 0 0 10px 0;
}
.size dl dd {
    text-align: left;
    font-size: 12px;
}
.goods_box .attentionList {
    color: #000;
    font-size: 11px;
    text-align: left;
    background: #fbfbfb;
    padding: 15px;
    margin: 10px 0 0 0;
}
.goods_detail .attentionList li {
padding: 0;
    margin: 0 0 5px 1em;
    line-height: 1.8;
    font-size: 12px;
}
.goods_detail .attentionList li:last-child{
    padding: 0;
    margin: 0 0 0 1em;
}
.goods_box .txt{
    font-size: 12px;
}
#cboxNext:hover {
    background-position: center center;
}
#cboxPrevious:hover {
    background-position: center center;
}

/* ==============================================================
	Special
=================================================================== */

.section--detail{
	padding:0;
}


.SpecialBox {
    margin: 0 0 30px;
    background: rgba(129,188,185,0.2);
    padding: 20px;
}


.preTxt{
    font-size: 13px;
    /*font-weight: bold;*/
    line-height: 1.4em;
    margin: 0 0 20px;
}


.presentList{
    margin: 0 0 20px;
    padding: 0 15px;
}

.presentList li{
position: relative;
padding: 0 0 30px;
}
.presentList li:last-child{
padding: 0;

}

.imageThumb{
line-height:0;
box-sizing:border-box;
}
.medal{
width: 23%;
position: absolute;
left: -20px;
top: -15px;
}




.section--detail .ph_urunai{
	margin:0 auto 20px;
}


.section--detail .txt {
    margin: 0 0 15px;
    line-height: 1.6em;
    font-size: 13px;
}


.section--detail .qrtxt{
    font-size: 12px;
    /*font-weight: bold;*/
	text-align: center;
}






.btn{
	margin:0;
}


.section--detail .btn--main{
    width: 100%;
    line-height: 1.4em;
    padding: 10px 0;
    font-size: 12px;
}


.methodBox{
    /*background: rgba(205,230,244,0.2);*/
    padding: 15px;
    margin: 0 0 15px;
        border: 1px solid #81BCB9;
}

.methodTit{
    font-size: 16px;
    padding: 0 0 5px;
    border-bottom: 1px dotted #000;
    margin: 0 0 10px;
}

.methodList{
    margin: 0 0 15px;
}

.methodList li{
font-size: 13px;
padding-left:1em;
text-indent:-1.3em;
}

.methodList li:last-child{

}



.SpecialLead{
    font-size: 14px;
    line-height: 1.4em;
    margin: 0 0 20px;
    /*font-weight: bold;*/
}

.SpecialAreaTit{
/*
    padding: 5px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
	line-height:1.4em;
	*/
    margin: 0 0 20px;
	/*line-height: 0;*/
    font-size: 20px;
    background: #81BCB9;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.SpecialAreaLastTit{
    margin: 0 0 20px;
	line-height: 1.4em;
    font-size: 18px;
    background: #81BCB9;
    color: #fff;
    text-align: center;
    padding: 10px;
}


.settxt{
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 20px;
   text-align: center;
}

.fcbnr{
width: 30%;
    margin: 0 auto;
}

.SetListTit{
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 10px;
}

.ph_set{
    margin: 0 auto 10px;
    line-height: 0;
}


.photoTxt{
    font-size: 11px;
    font-weight: bold;
    line-height: 1.4em;
    margin: 0 0 20px;
}

.ph_photo{
    /*margin: 0 auto 10px;*/
    line-height: 0;
}

p.text_r {
color: #0000FF;
    font-size: 13px;
    /*font-weight: bold;*/
    line-height: 1.4em;
    margin: 0 0 20px;
}




.attentionBox {
    margin: 0 0 50px;
    padding: 20px;
	background: rgba(255,255,255,0.3);
}
.attentionBox .tit {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    border-bottom: 1px solid;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
}
.attentionBox .txt {
    font-size: 13px;
    line-height: 1.8;
}
.attentionBox .attentionTxt {
    font-size: 12px;
    text-indent: -1em;
    margin: 20px 0 0 1em;
    color: #ff0000;
}
#ticket .subTit {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.ticketTit {
    border-left: 5px solid #81BCB9;
    padding: 0 0 0 10px;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 15px;
}
.ticketTxt {
    font-size: 12px;
    margin: 0 0 20px 0;
}
.ticketList dt {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px;
}
.btn--main {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    min-width: 100%;
}

.attentionLink a {
    display: block;
    text-align: center;
    background: #e43b43;
    padding: 15px;
    margin: 0 0 50px 0;
    color: #fff;
    font-size: 12px;
    transition: 0.3s;
}
.attentionLink a:hover{
    opacity: 1;
}
.goodsLead {
    font-size: 14px;
    line-height: 1.6em;
    margin: 0 0 40px;
    font-weight: normal!important;
}


.popupBox .inner {
    background: #fff;
    padding: 30px;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: 1px;
    color: #222;
}
.popupBox .inner .lead p, .popupBox .inner .text > p {
    font-size: 12px;
}
.popupBox .inner .tit {
    font-weight: bold;
    font-size: 14px;
    text-align: left;
}
.popupBox .inner .notice li {
    text-indent: -1em;
    padding: 0 0 8px 1em;
    font-size: 12px;
}
.popupBox .inner #guideLines .appBtn a img {
    height: 40px;
    width: auto;
}
.popupBox .inner .tit + .text {
    padding: 0;
}
.popupBox .inner .tit .logo {
    width: 80%;
    margin: 0 auto 20px;
}
.popupBox .inner #guideLines .appBtn a {
    margin: 5px;
}

.inline_contentTxt{
    padding: 20px!important;
}
.inline_contentTxt .lead p, .inline_contentTxt .text > p {
    padding: 0 0 20px;
    font-size: 13px;
    text-align: left;
}
.goods_box.inline_02 {
    padding: 20px!important;
    text-align: left;
    line-height: 1.5;
}
.inline_contentTxt .lead p, .inline_contentTxt .text > p {
    padding: 0 0 20px;
    font-size: 12px;
}
.inline_contentTxt .tit {
    font-weight: bold;
    font-size: 13px;
    padding: 0 0 25px;
}
.inline_contentTxt .tit .logo {
    width: 50%;
    margin: 0 auto 20px;
}
.inline_contentTxt .notice li {
    text-indent: -1em;
    padding: 0 0 8px 1em;
    font-size: 12px;
}
.inline_contentTxt #guideLines .appBtn a img {
    height: 40px;
    width: auto;
}
.inline_contentTxt #guideLines .appBtn a {
    margin: 10px;
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    text-indent: 0;
}

.contentsBox .attentionList.red {
    margin: 0 0 20px 0;
}
.contentsBox .attentionList.red li{
font-size: 12px;
}

.btnFc a {
    background: #81BCB9;
    color: #fff!important;
    border-radius: 100px;
    padding: 5px 10px;
    margin: 10px 0 0 0;
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: center;
    transition: 0.4s;
}

#acd h3 {
    padding: 20px;
}
#acd .contentsBox {
    margin: 0 0 60px;
    background: rgba(129,188,185,0.2);
    padding: 0 20px 20px 20px;
}

.resaleBox {
    padding: 20px;
}
.resaleBox .tit {
    text-align: center;
    font-size: 20px;
    margin: 0 0 10px 0;
}
.resaleBox .txt {
    margin: 0 0 10px 0;
    font-size: 12px;
    line-height: 1.8;
}
.resaleBox dl {
    padding: 15px;
    background: rgba(255,255,255,0.2);
    margin: 20px 0;
}
.resaleBox dl dd {
    font-size: 12px;
}
.resaleBox .attentionTxt {
    text-indent: -1em;
    font-size: 11px;
    margin: 0 0 0 1em;
}
.resaleBox dl dt {
    font-weight: bold;
    font-size: 13px;
    margin: 0 0 5px 0;
}



.goodsTxtArea {
    border: 1px solid #ddd;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 30px 0;
}
.goodsTxtArea .tit {
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px 0;
}
.goodsTxtArea .txt {
    line-height: 1.5;
    font-size: 13px;
    margin: 0 0 20px 0;
}
.goodsTxtArea dl {

    padding: 15px;
    margin: 0 0 15px 0;
}
.goodsTxtArea dl dt {
    margin: 0 0 10px 0;
    font-size: 13px;
}
.goodsTxtArea dl dd {
    font-size: 13px;
}
.goodsTxtArea dl dd.endTxt p {
    display: inline-block;
    font-size: 12px;
    margin: 0 0 0 5px;
}
#goods .btn a {
    width: 100%;

    margin: 0 auto;
}
#wrap #goods .attentionBox {
    padding: 15px;
    border: 1px solid #ddd;
    margin: 0 0 30px 0;
}
#wrap #goods .attentionBox .tit {
    font-size: 15px;
    text-align: center;
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
    font-weight: 300;
}
#wrap #goods .attentionBox .lead {
    font-weight: 100;
    font-size: 13px;
margin: 0 0 15px 0;    
}
#wrap #goods .attentionBox .date {
    padding: 15px;
    margin: 0 0 15px 0;
}
#wrap #goods .attentionBox .date dt {
    font-size: 13px;
}
#wrap #goods .attentionBox .date dd {
    font-size: 12px;
}
#wrap #goods .attentionBox .date dd .attentionList li {
    font-size: 13px;
}
#wrap #goods #acd .acdTit::after {
    position: absolute;
    margin: -9px 0 0;
    top: 53%;
    right: 0;
}

.goods_box {
    padding: 15px;
}
#goods ul.goodsList {
    margin: 0 auto 40px;
}
#goods .tit {
    text-align: center;
    font-size: 14px;
    margin: 0 auto 20px;
}
#goods .goodsList li .icon {
    background: #000;
    color: #fff;
    padding: 3px 8px;
    border-radius: 999px;
    margin: 0 0 5px 0;
    font-size: 10px;
    display: block;
}
.goods_box h4 .icon {
    background: #000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    margin: 0 5px 0 0;
    font-size: 12px;
    position: relative;
    top: -2px;
}

#special .contents {
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    color: #000;
}
#special .contents .tit {
    color: #b688b9;
    font-weight: bold;
    margin: 0 0 10px 0;
    font-size: 19px;
}
#special .contents .txt {
    font-size: 15px;
    margin: 0 0 20px 0;
}
#special .contents .btn a {
    background: #b688b9;
    color: #fff;
    width: 100%;
    padding: 15px;
    display: block;
    margin: auto;
    border-radius: 100px;
    font-size: 13px;
    font-weight: bold;
    transition: 0.4s;
    line-height: 1;
}


#ticket .ticketBox.ippan dd .txt {
    text-align: center;
    margin: 0;
}
#ticket .ticketBox.ippan dd .list {
    margin: 0 0 15px 0;
}
#ticket .ticketBox .ticketList dd {
    font-size: 13px;
    border-bottom: none;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

/* ==============================================================
	footer
=================================================================== */

footer {
    background: transparent;
    line-height: 1.5;
    padding: 0;
}
footer .inner{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
padding: 20px 2%;        
}

footer .nav--support {
    margin: 0 0 20px;
    width: 100%;
}
footer .nav--sns{
width: 36vw;
}
footer .copyright {
        width: 35vw;
        margin: 5px auto 0;
        text-align: center;
}
footer .nav--sns li {
    display: inline-block;
    margin: 0 0 0 10px;
}
.linkArea a {
    width: 43%;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 auto;
}

#acd h3{
    font-size: 12px;
    background: #fff;
    color: #b688b9;
    font-weight: bold;
}


#acd.pre{
    margin: 0 0 50px 0;
    border: 1px solid #000;
}
#acd.pre h3 {
    padding: 20px;
    background: transparent;
    font-weight: bold;
    text-align: center;
    margin: 0;
    color: #000;
    font-size: 15px;
}
#acd.pre .goodsTxtArea {
    border: none;
    padding: 0 20px 20px 20px;
}

/*=============================================================
	0524
===============================================================*/
#ticket .ticketBox dd .list span {
    font-size: 12px;
}
.sold{
    margin: 0;
}
.soldTxt{
    margin: 0 0 10px 0;
display: block;
}
#ticket .ticketBox.re .ticketList dd .lead {
    font-size: 12px;
}
#ticket .ticketBox.re .attentionList li {
    font-size: 11px;
}
#ticket .ticketBox.re .ticketList dd p {
    font-size: 13px;
    margin: 0 0 5px 0;
}


/*=============================================================
	0531 ファンクラブ
===============================================================*/

#fanclub {
    background-size: 100%;
}
#fanclub .inBox {

}
#fanclub .contents {
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
height: 103vw;
    position: relative;
}

#fanclub .contents:nth-child(2){
    min-height: 320px;
    max-height: 200px;
    height: 90vw; 
}
#fanclub .contents:nth-child(1){
    height: 327vw;
    min-height: 1200px;
    max-height: 1000px;  
}
#fanclub .contents:nth-child(3){
height: 52vw;
    max-height: 255px;  
    min-height: 205px;      
}
#fanclub .contents:nth-child(3) .tit {
    font-size: 18px;
}
#fanclub .contents .tit {
font-weight: 300;
    margin: 0 0 10px 0;
    font-size: 22px;
}
#fanclub .contents .txt {
    font-size: 11px;
    margin: 0 0 20px 0;
}
#fanclub .contents .btn a {
    color: #fff;
    width: 100%;
    padding: 15px;
    display: block;
    margin: auto;
    border-radius: 100px;
    font-size: 13px;
    font-weight: bold;
    transition: 0.4s;
    line-height: 1;
}
#fanclub .contents .btn {
    margin: 0 auto;
    width: 80%;
}
#fanclub .contents .box {
    padding: 15px;
}
#ticket .ticketBox.ippan dd .txt {
    text-align: center;
    margin: 0;
}
#ticket .ticketBox.ippan dd .list {
    margin: 0 0 15px 0;
}
#fanclub .lead {
    margin: 0 auto 25px auto;
    font-size: 13px;
}
#fanclub .lead span {
    font-size: 10px;
    line-height: 1.3;
    display: block;
}
#fanclub .box {
    margin: 0 auto 30px;
    padding: 0 0 30px 0;
}
#fanclub .box .txt {
    font-size: 12px;
    text-align: left;
    margin: 0 0 20px 0;
}
#fanclub .box .tit {
    text-align: center;
    font-size: 23px;
    margin: 0 0 10px 0;
    line-height: 1.5;
}
#fanclub .box .subTit {
    width: 75%;
    margin: 0 auto 10px;
}
#fanclub .box .tit img {
    width: 80%;
}
#fanclub .box .ph {
    margin: 0 auto 20px;
width: 100%;
}
#fanclub .box .ph.sticker {
    width: 60%;
}
#fanclub .box .detail {
    border: 2px solid;
    padding: 15px;
    margin: 0 0 15px 0;
    text-align: center;
}
#fanclub .box .detail dt {
    border-bottom: 1px solid;
    padding: 0 0 5px 0;
    font-size: 13px;
    margin: 0 0 10px 0;
}
#fanclub .box .detail dd {
    font-size: 13px;
}


#fanclub .contents .detail {
    padding: 15px;
    width: 70vw;    
}
#fanclub .contents .detail .mainTit {
    font-size: 13px;
    margin: 0 0 10px 0;
}
#fanclub .contents .detail .date {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    margin: 0 0 10px 0;
    font-size: 13px;
}
#fanclub .contents .detail .attentionList li {
    text-align: left;
    font-size: 0.7em;
}
#fanclub .contents:nth-child(1) .ph {
    width: 70vw;
    margin: 0 auto 10px;
    max-width: 600px;    
}
#fanclub .contents .txt {
    font-size: 12px;
    margin: 0 auto 10px auto;
    line-height: 1.5;
    width: 90%;
}
#fanclub .contents .prizeList {
    margin: 0 auto 10px;
    width: 70vw;   
    max-width: 600px;     
}
#fanclub .contents .prizeList li:nth-child(1) {
    width: 100%;
    margin: 0 0 10px 0;
}
#fanclub .contents .detail .attentionList {
    margin: 0 0 10px 0;
}
#fanclub .contents .detail .btn{
    width: 100%;
}
.link{
    word-break: break-all;
}
#fanclub .inBox .linkArea a {
    width: 45%;
    margin: 50px auto 0;
}

/*=============================================================
	アンケートバナー
===============================================================*/
.linkBnr a {
    font-size: 12px;
    padding: 15px;
    margin: 0 auto 50px;
    width: 100%;
}
.linkBnr a:hover {
    opacity: 1;
}

.attentionBnr a {
    padding: 15px;
    font-size: 11px;
    width: 100%;
    margin: 0 auto;
}
.attentionBnr a:hover{

}
.commentBox .inBox .commentInBox {
    margin: 30px 0 50px 0;
}
#ticket .ticketBox.topBox {
    margin: 30px 0 30px 0;
}


.linkArea {
    padding: 30px 0 0 0;
}

#wrap #goods .attentionBox.credit .link {
    font-size: 12px;
}
#wrap #goods .attentionBox.credit .tourTit {
    text-align: center;
    font-size: 17px;
    margin: 0 auto 10px;
    display: block;
}
#wrap #goods .attentionBox.credit .event {
    border: 1px solid;
    padding: 15px;
    margin: 0 auto 15px;
}
#wrap #goods .attentionBox.credit .box {
    padding: 15px;
    margin: 0 0 15px 0;
}
#wrap #goods .attentionBox.credit .box dt {
text-align: center;
    font-size: 13px;
    border-bottom: 1px solid;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    font-weight: bold;
    }

#wrap #goods .attentionBox.credit .box dd .txt {
    font-size: 12px;
    margin: 0 0 5px 0;
    text-align: center;
    font-weight: 500;
}    
#wrap #goods .attentionBox.credit .box dd .eventList li {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    margin: 0 0 10px 0;
}
#wrap #goods .attentionBox.credit .box dd .eventList li .tit {
    text-align: center;
    font-size: 11px;
    margin: 0 0 10px 0;
    font-weight: bold;
    background: #231815;
    color: #fff;
    padding: 7px;
}
#wrap #goods .attentionBox.credit .box dd .eventList li .txt {
    text-align: left;
    margin: 0;
    font-size: 11px;
}
#wrap #goods .btn {
    margin: 20px auto 0;
}
#wrap #goods .btn a {
    font-size: 11px;
}
#wrap #goods .attentionBox.credit .mainTit {
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    margin: 0 auto 10px;
}
#ticket .box.normal .ticketBox.ippan {
    padding: 0;
}
#ticket .box.normal .ticketBox.ippan .ticketList {
    border: none;
    padding: 15px;
    }
#ticket .box.normal .ticketBox.ippan .ticketList dd .tit {
    text-align: left;
    font-size: 14px;
    margin: 0 0 5px;
}
#ticket .box.normal .ticketBox.ippan .ticketList dd .txt {
    text-align: left;
    color: #231815;
    margin: 0 0 10px 0;
    font-size: 11px;
}
#ticket .box.normal .ticketBox.ippan .ticketList dd dl {
    padding: 15px;
    margin: 0 0 10px 0;
    text-align: center;
    background: #e5dcda;
    border: none;
}
#ticket .box.normal .ticketBox.ippan .ticketList dd dt {
    margin: 0 0 5px 0;
    padding: 0;
    border-bottom: none;
    font-size: 12px;
    text-align: left;
    font-weight: bold;
}
#ticket .box.normal .ticketBox.ippan .ticketList dd dl dd p{
    font-size: 11px;
}
#wrap #goods .attentionBox .ph {
    margin: 0 auto;
}

#wrap #goods .attentionBox .txt {
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}
#goods .goodsList li .new {
    width: 40px;
    height: 40px;
    background: #000;
    display: block;
    position: absolute;
    left: -10px;
    top: -10px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 10px;
    border-radius: 999px;
    z-index: 1;
}
#goods .goodsList li {
    margin: 0 0 20px;
    position: relative;
}

#wrap #goods .goodsBnr a {
    display: block;
    background: #fff;
    border: 2px solid #231815;
    padding: 15px;
    width: 100%;
    margin: auto;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    margin: 20px auto 0;
}
#wrap #goods .goodsTxtList {
    padding: 20px;
    background: #dad4d2;
    margin: 0 0 10px 0;
}
#wrap #goods .goodsTxtList li {
    font-size: 12px;
    margin: 0 0 10px 0;
}



.inline_contentTxt .titSub {
    font-size: 12px;
    padding: 0 0 10px 0;
}

/*=============================================================
	レスポンシブSPここまで
===============================================================*/
}


@media screen and (min-width: 500px) and (max-width: 960px){

#fanclub .contents:nth-child(1) {
    height: 207vw;
    max-height: none;
    min-height: 1500px;
}

#fanclub .contents:nth-child(2) .ph {
    width: 75%;
}

}

@media screen and (min-width: 0) and (max-width: 320px){

#fanclub .contents .txt {
    font-size: 11px;
}
#fanclub .contents .btn a {
    color: #fff;
    width: 100%;
    padding: 10px;
    font-size: 10px;
}
#fanclub .contents .prizeList {
    width: 65%;
    }
    
 


}


