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


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

	Common

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


body {
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .06em;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
    background-color: #000;
    color: #fff;
position: relative;
    overflow-x: hidden;
}
a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
}
img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .3s ease-out;
}
.anim.on {
	opacity: 1;
}
.anc{
display:block;
position: absolute;
top: -20px;
}

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

.star p{
position: fixed;
    width: 60px;
    z-index: -1;
}
.star p:nth-child(1){
left: 19%;
    top: 13%;
}
.star p:nth-child(2){
    left: 10%;
    bottom: 13%;
}
.star p:nth-child(3){
left: 25%;
    bottom: 11%;
transform: rotate(45deg);
}
.star p:nth-child(4){
right: 25%;
    top: 11%;
}
.star p:nth-child(5){
right: 7%;
    top: 10%;
transform: rotate(45deg);
}
.star p:nth-child(6){
    right: 8%;
    bottom: 36%;
}
.star p:nth-child(7){
    right: 18%;
    bottom: 19%;
transform: rotate(45deg);
}

.bglogo{
    position: fixed;
    width: 150%;
}


.scroll {
    display: block;
    width: 5px;
    height: 60px;
    position: absolute;
    bottom: 1%;
    left: 1%;
    z-index: 10;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation: logoFade 0.3s ease 1.4s 1 forwards;
    animation: logoFade 0.3s ease 1.4s 1 forwards;
}
.scroll:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    background: #000;
    -webkit-animation: scroll 2s linear 0s infinite;
    animation: scroll 2s linear 0s infinite;
}
  @-webkit-keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto; opacity: 0; }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto; }
    54% { height: 100%; bottom: 0; top: auto; }
    100% { height: 0; bottom: 0; top: auto;}
  }
  @keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto; opacity: 0; }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto;}
    54% { height: 100%; bottom: 0; top: auto;}
    100% { height: 0; bottom: 0; top: auto; }
  }

.delighter {
    transition: all .5s ease-out;
    transform: translatey(5%);
    opacity: 0;
   }

.delighter.started {
      transform: none;
      opacity: 1;
   }


.bgBox {
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.6s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    opacity: 1;
}
.bg01 {
    opacity: 1;
    background: url(../images/bg_main_pc_p5JGMHd4.jpg) no-repeat center center;
    background-position: top;
    background-size: cover;
}


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

	Mainvisual

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


#mainVisual {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

#mainVisual .mainImg{
    z-index: 99;
    width: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 1200px;
}

#mainVisual h1 {
    position: absolute;
    width: 38%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 100;
}
#mainVisual h1 p{
    position: absolute;
    width: 100%;
opacity: 0;
}
#mainVisual h1 img{
    width: 100%;
}
.loaded #mainVisual h1 p:nth-child(1){
  -webkit-animation: fadeSplash 0.3s ease 0.2s 1 forwards;
  animation: fadeSplash 0.3s ease 0.2s 1 forwards;
}
.loaded #mainVisual h1 p:nth-child(2){
  -webkit-animation: fadeSplash 0.3s ease 0.5s 1 forwards;
  animation: fadeSplash 0.3s ease 0.5s 1 forwards;
}
.loaded #mainVisual h1 p:nth-child(3){
  -webkit-animation: slideIn 0.8s ease 0.8s 1 forwards;
  animation: slideIn 0.8s ease 0.8s 1 forwards;
}


@keyframes fadeSplash {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes slideIn {
  0% { left: 30%;opacity: 0;}
  100% { left: 0;opacity: 1;}
}

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

	navi

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

nav {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	color: #fff;
	z-index: 100;
	height: 100vh;
	background-color: #000;
}
nav .navWrap {
	display: flex;
	align-items: center;
    height: 100%;
}

nav .navClose {
	width: 100px;
}
nav .navClose a {
	display: block;
    padding-top: 70px;
    padding-bottom: 15px;
	position: relative;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
nav .navClose a::before,
nav .navClose a::after {
	content: "";
	display: block;
    width: 45%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}
nav .navClose a::before {
    transform: translateX(-50%) rotate(45deg);
}
nav .navClose a::after {
    transform: translateX(-50%) rotate(-45deg);
}

nav .navLogo {
	line-height: 0;
	text-align: center;
	padding: 0 15px 20px;
	border-bottom: #252525 solid 1px;
}
nav .navLogo a{
display: block;
}
nav .navLogo img {
	width: 200px;
}

nav .navMain {
	display: flex;
	justify-content: center;
	flex-direction: column;
	border-left: #252525 solid 1px;
    height: 100%;
}

nav .mainNav {
	/*background: linear-gradient(60deg, #d46514 0%, #8d0006 50%, #000 100%);*/
	padding: 30px 40px;
	border-bottom: #252525 solid 1px;
}
nav .mainNav p {
	font-family: 'Roboto', sans-serif;
	text-align: center;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 10px;
}
nav .mainNav p a {
	color: #fff;
	text-decoration: none;
}
nav .mainNav ul {
	font-size: 16px;
}
nav .mainNav ul li {
	margin-bottom: 5px;
}
nav .mainNav ul li a {
	color: #fff;
	text-decoration: none;
}
nav .mainNav ul li span {
	opacity: .5;
}

nav .mainNav a {
font-weight: bold;
}

nav .otherLink {
    
	padding: 15px 25px;
	text-align: center;
}
nav .otherLink p {
	opacity: .5;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.4;
}
nav .otherLink p span {
	display: block;
	font-size: 12px;
	font-weight: 700;
}

#menuButton {
	position: fixed;
    background:#000;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
    width: 100px;
    height: 200px;
    line-height: 0;
    padding: 10px;
    text-decoration: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    z-index: 10;
}
#menuButton::after {
content: "MENU";
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    margin-top: 15px;
    display: block;
}
#menuButton img {
    width: 100%;
margin: 0 0 5px 0;
}




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

	contents

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

main {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

section {
	padding: 50px 0;
	margin: 0 auto;
background: rgba(0,0,0,0.5);
}

.inBox{
    width: 900px;
    margin: auto;
}
h3{
text-align: center;
    font-weight: bold;
    margin: 0 0 40px 0;
    font-size: 45px;
    color: #cd263a;
}

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

	NEWS

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

#news {

}
.newsList li {
	display: flex;
	padding: 20px 0;
	border-bottom: #666 solid 1px;
}
.newsList li .date {
	font-size: 14px;
	width: 120px;
}
.newsList li .ttl {
	font-size: 14px;
	width: calc(100% - 120px);
}
.archiveList{
	display:none;
}
.btnViewmore{
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 10px;
    width: 260px;
    margin: 40px auto;
	cursor: pointer;
    transition: all 0.3s ease-out;
}

.btnViewmore .pass{
	display:block;
}
.btnViewmore .act{
	display:none;
}
.btnViewmore.open .pass{
	display:none;
}
.btnViewmore.open .act{
	display:block;
}
.btnViewmore::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: #000 solid 2px;
    border-right: #000 solid 2px;
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-70%) rotate(135deg);
    transition: 0.3s ease;
}
.btnViewmore.open::after {
    transform: translateY(-30%) rotate(-45deg);
}

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

	SCHEDULE

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

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

}
#schedule .s-table thead th {
    padding: 1em 0;
    text-align: center;
    font-size: 12px;
    border-bottom: solid 1px ;
    vertical-align: middle;
}
#schedule .s-table td {
    padding: 25px 0;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    border-bottom: solid 1px;
    position: relative;
}
#schedule .s-table td + td::before {
    width: 1px;
    height: 84%;
    content: "";
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#schedule .s-table .day {
    width: 23%;
font-weight: bold;
}
#schedule .s-table .addition .day:before{
    display: block;
    width: 100px;
    margin: 0 auto 0;
    content: "振替公演";
    font-size: 12px;
    font-weight: 600;
    background: #000;
    color: #FFF;
    padding: 3px 5px;
    vertical-align: 3px;
    position: relative;
}

#schedule .s-table .date {
    font-size: 21px;
    display: inline-block;
    vertical-align: middle;
}
#schedule .s-table .youbi {
    padding-left: 1em;
    display: inline-block;
    vertical-align: middle;
}
#schedule .s-table .time {
    width: 17%;
    font-weight: bold;
}
#schedule .s-table .area {
    width: 12%;
    font-weight: bold;
}
#schedule .s-table .venue {
    width: 30%;
padding-left: 4%;
    padding-right: 4%;
    font-weight: bold;
    line-height: 1.5;
}
#schedule .s-table .ticketGuid {
    width: 23%;
    padding-left: 4%;
    padding-right: 1%;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    font-size: 12px;
}
#schedule .s-table .transfer .date,
#schedule .s-table .transfer .youbi,
#schedule .s-table .transfer .time,
#schedule .s-table .transfer .area,
#schedule .s-table .transfer .venue .line,
#schedule .s-table .transfer .ticketGuid,
#schedule .s-table .transfer .ticketGuid a{
    text-decoration: line-through;
    text-decoration-color: #FF0000;
}
#schedule .s-table .transfer .infoBtn{

}
#schedule .s-table .transfer .infoBtn a{
    background: #000;
    font-size: 12px;
    color: #FFF;
    font-weight: 600;
    padding: 5px 10px;
    text-align: center;
    display: block;
    width: 140px;
    border-radius: 100px;
    margin: 5px 0 0;
}


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

	ticket

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

#ticket .box{
    margin: 0 0 80px 0;
   } 
#ticket .subTit{
    text-align: center;
    font-weight: bold;
    font-size: 21px;
    margin: 0 0 20px 0;
}
#ticket .txt{
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 14px;
}
#ticket .cap{
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}
#ticket .ph{
    width: 60%;
    margin: 0 auto 20px;
}
#ticket .ph img{
    width: 100%;
}

#ticket .s-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
#ticket .s-table tbody{
    border: 1px solid;
}
#ticket .s-table tr{
    border-bottom: 1px solid;
}
#ticket .s-table tr:last-child{
    border-bottom:none;
}
#ticket .s-table td {
    padding: 15px;
    font-size: 12px;
    text-align: left;
    vertical-align: middle;
    position: relative;
    border-right: 1px solid #fff;
}
#ticket .s-table td .mini{
    font-size: 10px;
}
#ticket .s-table td:nth-child(1),
#ticket .s-table td:nth-child(2),
#ticket .s-table td:nth-child(3){
border-right: 1px solid #fff!important;
}
#ticket .s-table td:last-child{
border-right: none;
}
#ticket .s-table td + td::before {
    width: 1px;
    height: 84%;
    content: "";
    background: #000;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#ticket .s-table .day {
    width: 23%;
font-weight: bold;
}
#ticket .s-table .date {
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

#ticket .s-table .tit{
    width: 30%;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
}
#ticket .s-table .detail {
width: 25%;
    font-weight: bold;
    line-height: 1.5;
    font-size: 12px;
    text-align: left;
}

#ticket .p-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
#ticket .p-table tbody{
    border: 1px solid;
}
#ticket .p-table tr{
    border-bottom: 1px solid;
}
#ticket .p-table tr:last-child{
    border-bottom:none;
}
#ticket .p-table td {
    padding:15px;
    font-size: 11px;
    text-align: center;
    vertical-align: middle;
    position: relative;
}
#ticket .p-table td .mini{
    font-size: 10px;
}
#ticket .p-table td:nth-child(1),
#ticket .p-table td:nth-child(2),
#ticket .p-table td:nth-child(3),
#ticket .p-table td:nth-child(4){
border-right: 1px solid #fff!important;
}
#ticket .p-table td:last-child{
border-right: none;
}
#ticket .p-table th{
padding: 10px 0;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    background: rgba(255,255,255,0.1);
    width: 20%;
border-right: 1px solid;
}
#ticket .p-table  tr td.tit{
    background: rgba(255,255,255,0.1);
}
#ticket .p-table td + td::before,
#ticket .p-table th + th::before  {
    width: 1px;
    height: 84%;
    content: "";
    background: #000;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#ticket .mini{
font-size: 12px;
    text-align: center;
}
#ticket .type{
    margin: 0 0 30px 0;
}
#ticket .type .tit{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin: 0 0 20px 0;
    font-size: 15px;
}
#ticket .type .seat{
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 10px 0;
}
#ticket .type .txt{
    text-align: center;
    font-size: 17px;
    margin: 0 0 30px 0;
}
#ticket .type .p-table tr td:nth-child(1) {
    background: rgba(255,255,255,0.1);
    width: 30%;
}



#ticketSchedule ul li {
    position: relative;
}
#ticketSchedule ul li.end::before{
    display: none;
}
#ticketSchedule ul li .stamp{
    width: 55px;
    position: absolute;
    left: -28px;
    top: -5px;
    -webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    -moz-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    -ms-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}
#ticketSchedule ul li .stamp.new_stamp{
    width: 70px;
    top: -20px;
}
#ticketPage .fanclub #acd{
    border: 2px solid #fff;
    padding: 15px;
    margin: 0 auto 30px;
}
#ticketPage .fanclub #acd .acdTit {
    width: 100%;
    color: #fff;
    letter-spacing: 0.6px;
    display: block;
    box-sizing: border-box;
    position: relative;
    transition: 0.4s;
    cursor: pointer;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
#ticketPage .fanclub #acd .acdTit .seatKind p {
    margin: 15px 0 0 0;
}
#acd .acdTit::after {
    position: absolute;
    margin: -12px 0 0;
    content: "";
    vertical-align: middle;
    top: 53%;
    right: 25px;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#ticketPage .fanclub #acd .acdTit.open::after {
    margin: -5px 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 0.4s;        
}
#ticketPage .fanclub #acd .acdTit .mini{
    font-size: 16px;
    font-weight: 300;
    display: block;
    margin: 10px auto 0;
}
#ticketPage .fanclub #acd .acdIn{
margin: 20px 0 0 0;
    padding: 0 40px;
}
#ticketPage .fanclub #acd .acdBox .subTit{
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    margin: 0 0 20px 0;
}
.bnrMember {
    margin: 50px auto 80px;
}



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

	bnr

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

#bnr{

}
.bnr {
width: 80%;
    margin: 0 auto 40px;
}
.bnr a{
    transition: 0.4s;
    line-height: 0;
    display: block;
border: 1px solid #fff;
}
.bnr a span{
    display: block;
    font-size: 15px;
}
  
.bnr.bnrTicket a{

}
.bnr.bnrGuideLine a{
    background: #C30D23;
}
.bnr.bnrGoods a{
    background: #F4B10B;
}

.btn a {
    display: block;
    width: 300px;
    padding: 20px;
    background: #000;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    margin: 0 auto 35px;
}
#bnr .btn a{
    background: #C30D23;
    margin: 0 auto 45px;
}


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

	TICKET GUIDE

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

#ticketGuide .ticketLead {
	text-align: center;
	border-top: #ccc solid 1px;
	border-bottom: #ccc solid 1px;
	padding: 40px 0;
	margin-bottom: 60px;
}
#ticketGuide .ticketLead p {
	font-size: 20px;
}

#ticketGuide  hr {
	border: none;
	height: 1px;
	margin: 80px 0;
	background-color: #666;
}



#ticketGuide .btnArea {
	margin-bottom: 80px;
}
#ticketGuide .btnArea p {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 40px;
}
#ticketGuide .btnArea .guideLine {
	max-width: 640px;
	margin: 0 auto 30px;
}
#ticketGuide .btnArea .guideLine a {
	display: block;
	text-align: center;
	color: #fff;
	padding: 40px 10px;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	background-color: #9c0f0f;
	max-width: inherit;
}
#ticketGuide .btnArea .guideLine a::after {
	content: "";
	width: 15px;
	height: 15px;
	border-top: #fff solid 3px;
	border-right: #fff solid 3px;
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY(-50%) rotate(45deg);
}

#ticketGuide .tikebo .tikeboLogo {
	width: 280px;
	margin: 0 auto 30px;
}
#ticketGuide .tikebo ul {
	display: flex;
	justify-content: space-between;
}
#ticketGuide .tikebo ul li {
	width: 47%;
}
#ticketGuide .tikebo ul li a {
	display: block;
	text-align: center;
	color: #fff;
	text-decoration: none;
	padding: 25px;
	position: relative;
	font-size: 16px;
	font-weight: bold;
}
#ticketGuide .tikebo ul li:nth-child(1) a {
	background-color: #00d468;
}
#ticketGuide .tikebo ul li:nth-child(2) a {
	background-color: #00be89;
}
#ticketGuide .tikebo ul li a::after {
	content: "";
	width: 12px;
	height: 12px;
	border-top: #fff solid 3px;
	border-right: #fff solid 3px;
	position: absolute;
	top: 50%;
	right: 7%;
	transform: translateY(-50%) rotate(45deg);
}



#ticketGuide .tikebo {
    margin: 0 0 30px 0;
}
#ticketGuide .tikebo .subTit{
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin: 0 auto 30px 0;
}
#ticketGuide .tikebo ul {
    width: 70%;
    margin: auto;
}
#ticketGuide .tikebo .step{
    border: 1px solid #ddd;
    padding: 30px;
}
#ticketGuide .tikebo .step dt{
    font-weight: bold;
    margin: 0 0 15px 0;
}

#ticketGuide .tikebo .step dd{
    border-bottom: 1px solid #ddd;
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
}
#ticketGuide .tikebo .step dd:last-child{
    border-bottom:none;
    padding: 0;
    margin: 0;
}
#ticketGuide .tikebo ul li a {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 0;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    background-color: transparent!important;
}
#ticketGuide .tikebo ul li a::after {
display: none;
}
#ticketGuide .tikebo ul li p{
    text-align: center;
    font-size: 13px;
}
#ticketGuide .faqBox .note{
    margin: 0 auto 30px 0;
    font-size: 13px;
}
#ticketGuide .faqBox .lead{
    text-align: left;
} 
#ticketGuide .link{
    font-size: 14px;
    line-height: 1.5;
    display: block;
    word-break: break-all;
}
.appDL {
	display: flex;
    justify-content: space-around;
    background-color:#d8d8d8;
    margin-top: 60px;
    padding: 35px 50px;
}
.appDL .icoApp {
    width: 35%;
	line-height: 0;
}
.appDL .appLink {
	width: 60%;
	display: flex;
    justify-content: center;
    align-items: center;
	color: #000;
}
.appDL .appLink li {
	margin: 0 15px;
}
.appDL .appLink li p {
	text-align: center;
	margin-bottom: 10px;
	font-weight: bold;
}
#ticketGuide .btn a {
    display: block;
    width: auto;
    padding: 0;
    background: none;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    margin: 0;
}

#ticketGuide .box01 {
	background-color: #000;
	border: #666 solid 1px;
	padding: 50px;
	text-align: center;
color: #fff;
}
#ticketGuide .box01 p {
	margin-bottom: 30px;
}
#ticketGuide .box01 p span {
    font-size: 18px;
    text-decoration: none;
    color: #ff0000;
    padding-bottom: 4px;
    border-bottom: #ff0000 solid 2px;
}
#ticketGuide .box01 ul {
	display: flex;
	justify-content: space-between;
	padding-bottom: 30px;
	border-bottom: #666 solid 1px;
	margin-bottom: 30px;
}
#ticketGuide .box01 ul li:nth-child(1) {
	width: 40%;
	padding-right: 5%;
	border-right: #666 solid 1px;
}
#ticketGuide .box01 ul li:nth-child(2) {
	width: 55%;
}
#ticketGuide .box01 ul li h4 {
	background-color: #222;
	padding: 5px;
	font-size: 16px;
}
#ticketGuide .box01 ul li .flBox {
	height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#ticketGuide .box01 ul li .flBox p {
	margin-bottom: 0;
}

#ticketGuide .box01 a {
	font-size: 18px;
	text-decoration: none;
	color: #ff0000;
	padding-bottom: 4px;
	border-bottom: #ff0000 solid 2px;
}

#ticketGuide .faqBox {
	text-align: center;
	padding: 60px 0;
}

#ticketGuide .faqBox a {
	max-width: 480px;
	display: block;
	text-align: center;
	color: #000;
	margin: 25px auto;
	padding: 30px 10px;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	background-color: #fff;
}
#ticketGuide .faqBox a::after {
	content: "";
	width: 15px;
	height: 15px;
	border-top: #000 solid 3px;
	border-right: #000 solid 3px;
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY(-50%) rotate(45deg);
}

#ticketGuide .btnArea a {
	max-width: 480px;
	display: block;
	text-align: center;
	color: #000;
	margin: 25px auto;
	padding: 30px 10px;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	background-color: #fff;
}
#ticketGuide .btnArea a::after {
	content: "";
	width: 15px;
	height: 15px;
	border-top: #000 solid 3px;
	border-right: #000 solid 3px;
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY(-50%) rotate(45deg);
}

#ticketGuide .ticketContact {
	border: #666 solid 1px;
	margin-bottom: 80px;
	background-color: #000;
}
#ticketGuide .ticketContact dt {
	border-bottom: #666 solid 1px;
	text-align: center;
	padding: 10px;
	font-size: 16px;
}
#ticketGuide .ticketContact dd {
	font-size: 14px;
	padding: 30px 20px;
}


#ticketGuide .ticketScheduleWrap {
	margin-bottom: 80px;
}
#ticketGuide .inBox h3 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
color: #fff;
}

#ticketGuide .idCard {
	border: #666 solid 1px;
    padding: 50px;
    margin-top: 60px;
	background-color: #000;
    color: #fff;
}
#ticketGuide .idCard .idCardList {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
#ticketGuide .idCard .idCardList li {
    width: 48%;
font-size: 13px;
}
#ticketGuide .idCard .idCardList li h5 {
	font-size: 13px;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: #666 solid 1px;
}

#guideline{

}
#guideline .box{

}
#guideline .box .tit{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 20px 0;
}
#guideline .box .txt{
    font-size: 15px;
    margin: 0 0 10px 0;
}
#guideline .box .attentionList {
    margin: 0 0 20px 0;
}
#guideline .box .attentionList li{
font-size: 13px;
    text-indent: -1em;
    margin: 0 0 5px 1em;
}
#guideline .box .attentionList li:last-child{
    margin: 0 0 0 1em;
}
.red{
    color: #C30D23;
}
.block{
    margin: 0 0 20px 0;
}
.block dt{
    font-weight: bold;
    font-size: 15px;
    margin: 0 0 10px 0;
}
.block dd{
font-size: 15px;
}



#goods .red{
    color: #e1152e;
}
#goods .yellow{
color: #ffab42;
}
#goods .end{
    display: block;
    font-size: 17px;
    color: #ff0000;
}
#goods .lead{
    font-size: 15px;
    font-weight: 300;
    margin: 0 auto 30px;
}
#goods .mainTit{
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
#goods .list-std {
    border-left: solid 1px #fff;
    border-top: solid 1px #fff;
    position: relative;
}
#goods .list-std li {
    padding: 14px 0;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.04em;
    display: flex;
    align-items: flex-start;
}
#goods .list-std li .label {
    padding-left: 2%;
    box-sizing: border-box;
    display: inline-block;
width: 220px;    
}
#goods .list-std li .end{
    display: inline-block;
    font-size: 15px;
}
#goods .btn-std {
    width: 480px;
    height: 90px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 75px auto 0;
    color: #000;
    font-size: 18px;
    position: relative;  
 text-decoration: none;  
    font-weight: bold;    
}
#goods .btn-std > span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-top: #000 solid 3px;
    border-right: #000 solid 3px;
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%) rotate(45deg);
}
#goods .about{
    margin: 0 0 80px 0;
    background: rgba(255,255,255,0.1);
    padding: 40px;
}
#goods .section-box-normal{
    margin: 0 0 40px 0;
}
#goods #reception-start ul {
    border-left: solid 1px #fff;
    border-top: solid 1px #fff;
}
#goods #reception-start ul li {
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    padding: 16px;
}
#goods #reception-start ul li .place {
    margin-bottom: 0.7em;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.04em;
}
#goods #reception-start ul li .desc .type {
    display: inline-block;
    width: 16em;
    font-size: 16px;
}
#goods #reception-start ul li .desc .date {
    font-size: 16px;
}
#goods #date-place-time ul {
    margin-top: 35px;
    border-left: solid 1px #fff;
    border-top: solid 1px #fff;
}
#goods #date-place-time ul li {
    display: flex;
    justify-content: space-between;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    padding: 16px;
}
#goods #date-place-time ul li .place {
    width: calc(100% - 20em);
    font-size: 18px;
    line-height: 1.7;
}
#goods #date-place-time ul li .date, #date-place-time ul li .time {
    width: 9em;
    font-size: 16px;
    line-height: 1.8;
}
#goods .section-box-normal p {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.04em;
}
#goods .section-box-normal p strong {
    padding: 1.6em 0 0.4em;
    font-size: 17px;
    letter-spacing: 0.05em;
    display: block;
}

#goods .lineUpHead dl {
    border: 1px solid;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#goods .lineUpHead dl dt {
    font-size: 14px;
    width: 300px;
    padding: 15px;
    box-sizing: border-box;
    border-bottom: solid 1px;
    font-weight: bold;
    text-align: center;
    border-right: 1px solid;
    background: rgba(255,255,255,0.1);
}
#goods .lineUpHead dl dt a{
    text-decoration: underline;
}
#goods .lineUpHead dl dd {
    width: calc(100% - 300px);
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 15px;
    box-sizing: border-box;
    border-bottom:  solid 1px;
    text-align: center;
}
#goods .lineUpHead dl dt:last-child,
#goods .lineUpHead dl dd:last-child{
    border-bottom: none;
}

#goods .goods {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#goods .goods li {
    width: 31%;
    margin: 0 0 40px 0;
    background: #000;
    padding: 15px;
    color: #fff;
}
#goods .goods .title {
padding: 10px 0 5px;
    font-size: 12px;
    line-height: 1.8;
}
#goods .goods .title span{
    background: #c30d23;
    padding: 2px 5px 3px;
    font-size: 11px;
    font-weight: bold;
argin: 0 0 5px 0;
    display: block;
}
#goods .goods .title span.blank{
    background: transparent;
    display: block;
    height: 28px;
}
#goods .goods li .txt{
    color: #eb253d;
    line-height: 1.5;
    font-size: 12px;
    font-weight: bold;
    word-break: break-all;
}
#goods .goods .price {
    padding: 0;
    font-size: 11px;
}
#goods .goods .label {
    width: 180px;
    margin: 0 auto 0;
    border-radius: 999px;
    font-size: 13px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    padding: 8px;
}
#goods .goods .label.red {
    background: #cf111b;
}
#goods .goods .note {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color:#cf111b;
    font-weight: bold;
    padding: 0 15px;
}


#goods .section-box-normal {
    margin: 0 0 80px 0;
    background: rgba(255,255,255,0.1);
    padding: 40px;
}
#goods .section-box-normal p .in-box2 {
    padding: 1.5em 1em;
    display: block;
}

#goods .lineUpHead p {
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #e1152e;
}
#goods .campaign{
    padding: 30px;
    border: 2px solid #fff;
    margin: 40px 0 0 0;
}
#goods .campaign .tit{
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    margin: 0 0 20px 0;
}
#goods .campaign .txt{
    font-size: 13px;
    margin: 0 0 20px 0;
}
#goods .campaign .ph{
    width: 75%;
    margin: auto;
}
#goods .campaign .ph img{
    width: 100%;
}
#goods .attentionList{
    margin: 30px 0 0 0;
}
#goods .attentionList li{
    font-size: 13px;
    text-indent: -1em;
    margin: 0 0 0 1em;
}
#goods .attentionList li.line{
text-decoration: underline;
}
#goods .attentionBox{
    background: #292929;
    padding: 30px;
    margin: 0 auto 30px;
}

#goods .attentionBox .tit{
    font-size: 18px;
    text-align: center;
    margin: 0 0 15px 0;
}
#goods .attentionBox p.txt{
    font-size: 14px;
    text-align: left;
    font-weight: normal;
}
#goods .attentionBox .attentionList {
    margin: 0;
}

#goods .accBox .txt{
    font-size: 15px;
    margin: 0 0 20px 0;
}
#goods .accBox .attentionBox {
    margin: 30px 0;
}

#goods .accBox .dateBox{
    border: 2px solid #fff;
    padding: 40px;
    margin: 40px 0;
}
#goods .accBox .dateBox .tit{
    font-weight: bold;
    text-align: center;
    font-size: 17px;
    margin: 0 0 20px 0;
}
#goods .accBox .dateBox .tit span{
    font-size: 12px;
    font-weight: 400;
}

#goods .accBox .dateBox .date{
    background: #292929;
    padding: 20px;
    margin: 0 0 30px 0;
}
#goods .accBox .dateBox .date dt{
text-align: center;
    font-size: 16px;
    margin: 0 0 15px 0;
}
#goods .accBox .dateBox .date dd .txt{
    font-size: 13px;
}

#goods .accBox .dateBox .date dd .attentionList{
    margin: 20px 0 0;
}
#goods .accBox .venue{
    font-size: 13px;
    margin: 0 0 30px 0;
}



#goods .goods::after {
display: block;
content:"";
width: 31%;
}


#goods .box.keyArea .list-std {
    margin: 0 0 30px 0;
}
#goods .box.keyArea .goods {
    justify-content: center;
}
#goods .box.keyArea .goods::after {
    display: none;
}
#goods .box.keyArea .goods li {
    width: 40%;
}
#goods .lineUpHead{
    margin: 0 auto 80px;
}

#goods .box{ 
background: rgba(255,255,255,0.1);
    padding: 40px;
    margin: 0 auto 30px;

}
#goods .box .txt{
    font-size: 16px;
    font-weight: normal;
}
#ticketPage h4{
    text-align: center;
    font-size: 17px;
    margin: 0 auto 30px;
}

#goods .box .goods_attention{
    padding: 20px;
    background: #fff;
    margin: 20px 0 0 0;
    color: #000;
}
#goods .box .goods_attention .mainTit{
font-size: 17px;
}
#goods .box .goods_attention .lead{
text-align: left;
    margin: 0 0 20px 0;
    font-size: 15px;
}
#goods .box .goods_attention .attentionBox{
    background: #EFEFEF;
    padding: 30px 0 0 0;
}
#goods .box .goods_attention .attentionBox dt{
    font-size: 16px;
    text-align: left;
    background: #C9BC9C;
    padding: 5px 10px;
    margin: 0 0 20px 0;
}

#goods .box .goods_attention .attentionBox dd {
    padding: 0 20px 20px 20px;
}
#goods .box .goods_attention .attentionBox dd .txt{
    font-size: 14px;
    margin: 0 0 10px 0;
    font-weight: bold;
}
#goods .box .goods_attention .attentionBox dd .tit{
    text-align: left;
    margin: 0 0 10px 0;
    color: #b73434;
}
#goods .box .goods_attention .attentionBox dd .red{

}
#goods .box .goods_attention .attentionBox dd .blue{
color: #005dab;
}
#goods .box .goods_attention .attentionBox dd .line{
    text-decoration: underline;
}
#goods .box .goods_attention .attentionBox dd .attentionList{
    margin: 0 0 20px 0;
}
#goods .box .goods_attention .attentionBox dd .attentionList li{
    text-align: left;
    font-weight: 100;
}
#goods .box .goods_attention .attentionBox dd .list{

}
#goods .box .goods_attention .attentionBox dd .list li{
    text-align: left;
    font-size: 14px;
    margin: 0 0 5px 1em;
    text-indent: -1em;
}
#goods .box .goods_attention .attentionBox dd .list li:last-child{
    margin: 0 0 0 1em;
}
#goods .box .goods_attention .attentionBox dd.detailArea{
padding: 0;
}
#goods .box .goods_attention .attentionBox dd.detailArea .txt{
padding: 0 20px;
}
#goods .box .goods_attention .attentionBox dd .detail{
    margin: 0 0 20px 0;
}
#goods .box .goods_attention .attentionBox dd .detail .subTit{
    text-align: left;
    background: #FA807B;
    padding: 5px 10px;
    font-size: 14px;
    margin: 0 0 10px 0;
}

#goods .box .goods_attention .attentionBox dd.detailArea .detail .txt,
#goods .box .goods_attention .attentionBox dd.detailArea .detail .attentionList{
padding: 0 20px;
}
#goods .box .goods_attention .attentionBox dd .cal2{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#goods .box .goods_attention .attentionBox dd .cal2 .detail{
    width: 49%;
}
#goods .box .goods_attention .attentionBox dd .step{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
width: 95%;
    margin: auto;
}
#goods .box .goods_attention .attentionBox dd .step li{
    width: 49%;
    border: 2px solid #000;
    border-radius: 20px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    padding: 20px;
}
#goods .box .goods_attention .attentionBox dd .step li .tit{
font-size: 13px;
    text-align: left;
    color: #000;
    padding: 0;
}
#goods .box .goods_attention .attentionBox dd .step li .attentionList{

}
#goods .box .goods_attention .attentionBox dd .step li .attentionList li{
    border: none;
    width: 100%;
    margin: 0 0 5px -1em;
    padding: 0;
}

#goods .box .goods_attention .attentionBox dd .ph{

}
#goods .box .goods_attention .attentionBox dd .map{

}
#goods .box .goods_attention .attentionBox dd .map span{
    margin: 0 0 10px 0;
    display: block;
    font-size: 15px;
    color: #b73434;
}
#goods .box .goods_attention .attentionBox dd .qr{

}
#goods .box .goods_attention .attentionBox dd .link{

}
#goods .box .goods_attention .attentionBox dd .tit{
    text-align: left;
    margin: 0 0 10px 0;
    font-size: 15px;
    color: #b73434;
}

#goods .box .subTit{
text-align: center;
    font-size: 15px;
    margin: 0 0 15px 0;
}
#goods .box .attentionList {
    margin: 30px 0 10px 0;
    text-align: left;
}
#goods .box .txt{
    text-align: left;
    font-size: 14px;
    margin: 0 0 10px 0;
}
#goods .box .mainTxt{
    text-align: left;
    font-size: 15px;
    margin: 0;
}
#goods .box .mainTxt .mini{
    display: block;
    font-size: 13px;
    margin: 0 0 10px 0;
}
#goods .box .detail{
    margin: 0 0 40px 0;
    border-bottom: 1px solid;
    padding: 0 0 40px 0;
}
#goods .box .detail:last-child{
    margin:0;
    border-bottom: none;
    padding: 0;
}
#goods .box .detail dt{
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 10px 0;
    text-align: center;
}
#goods .box .detail dd{
    width: 100%;
    box-sizing: border-box;
    margin: auto;
    font-size: 13px;
    text-align: center;
}
#goods .box .detail dd .mini{
    display: block;
    font-size: 12px;
}
#goods .box .detail dd .list{
    margin: 0 0 20px 0;
}
#goods .box .detail dd table{
border-collapse:collapse;
    width: 100%;
    margin: 0 0 20px 0;
}
#goods .box .detail dd table tr{

}
#goods .box .detail dd table th{
    font-size: 13px;
    background: rgba(255,255,255,0.1);
    padding: 10px 5px;
    border: 1px solid;
    width: 50%;
}
#goods .box .detail dd table td{
    border: 1px solid #fff;
    font-size: 12px;
    padding: 15px;
}

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

	footer

//////////////////////////////////////////////////////////////////////////////// */
footer {
	padding: 100px 60px;
	position: relative;
	z-index: 1;
}
footer .ftrLogo {
	width: 180px;
	line-height: 0;
	margin: 0 auto 60px;
}
footer .ftrLogo img {
	width: 100%;
	height: auto;
}

footer .ftrSns {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
footer .ftrSns li {
	margin: 0 20px;
}
footer .ftrSns li a {
	text-decoration: none;
	font-size: 30px;
    color: #fff;
}
footer .ftrSns li svg{
    width: 90%;
    position: relative;
    top: 5px;
fill: #fff;
}
footer .ftrLink {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
footer .ftrLink li {
    margin: 0 20px;
}
footer .ftrLink li:nth-child(1) img { width: 100px;}
footer .ftrLink li:nth-child(2) img { width: 80px;}
footer .ftrLink li:nth-child(3) img { width: 120px;}


footer .address {
	font-size: 12px;
	text-align: center;
	margin-bottom: 60px;
}
footer .copyright {
	font-size: 10px;
	text-align: center;
}



@media screen and (min-width: 960px) {
	
.sp { display: none;}
.pc { display: block;}
	
a { transition: all 0.3s ease-out;}
a:hover { opacity: 0.7;}
	
.btnViewmore:hover{
	opacity:0.7;
}	
	
}

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

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

.bglogo {
    position: fixed;
    width: 115%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.star p {
    position: fixed;
    width: 35px;
    z-index: -1;
}
.star p:nth-child(1) {
    left: 9%;
    top: 21%;
}
.star p:nth-child(3) {
    left: 37%;
}
.star p:nth-child(4) {
    right: 45%;
}
.star p:nth-child(5) {
    top: 22%;
}
.star p:nth-child(6) {
    right: 2%;
    bottom: 8%;
}
.star p:nth-child(7) {
    right: 30%;
}

.bg01 {
    opacity: 1;
    background: url(../images/bg_main_sp_p5JGMHd4.jpg) no-repeat center center;
    background-position: top;
    background-size: cover;
}


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

	Mainvisual

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

	#mainVisual {
		height: 100vh;
	}
#mainVisual h1 {
    position: absolute;
    width: 50vh;
    top: 20vh;
}
#mainVisual .mainImg {
    z-index: 99;
    width: 50vh;
    position: absolute;
    top: 60vh;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 1200px;
}

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

	navi

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


	
	#menuButton {
		width: 68px;
		height: 80px;
		padding: 6px;
		top: 0;
		transform: translateY(0);
	}
	#menuButton::after {
		font-size: 10px;
		margin-top: 10px;
	}
	nav {
		bottom: inherit;
		top: 0;
		width: 100vw;
	}
	nav .navLogo img {
		width: 150px;
	}
	
	nav .navClose {
		width: 68px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 9999;
	}
	nav .navClose a {
		padding-top: 50px;
		padding-bottom: 10px;
		font-size: 10px;
	}
	nav .navClose a::before,
	nav .navClose a::after {
		width: 50%;
		top: 40%;
	}
	nav .navMain {
		width: 100%;
	}
	nav .mainNav {
		padding: min(6vw, 30px) min(6vw, 40px);
	}
	nav .mainNav p {
		font-size: min(4.2vw, 20px);
		margin-bottom: min(3vw, 10px);
	    text-align: left;
	}
	nav .mainNav ul {
		font-size: min(3.4vw, 16px);
	}
	

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

	contents

//////////////////////////////////////////////////////////////////////////////// */
	
	section {
		padding: min(12vw, 80px) min(6vw, 60px);
	}

	section h3 {
		font-size: min(6.4vw, 36px);
		margin-bottom: min(8vw, 60px);
	}
.inBox {
    width: 100%;
    margin: auto;
}	

	.newsList li {
		padding: min(4vw, 20px) 0;
	}
	.newsList li .date {
		font-size: min(3.2vw, 14px);
		width: 26vw;
	}
	.newsList li .ttl {
		font-size: min(3.2vw, 14px);
		width: calc(100% - 26vw);
	}
	
.bnr {
    width: 100%;
    margin: 0 auto 20px;
}
.btn a {
    display: block;
    width: 80%;
    font-size: 14px;
    margin: 0 auto 35px;
}	
#bnr .btn a {
    margin: 0 auto 25px;
}

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

	SCHEDULE

//////////////////////////////////////////////////////////////////////////////// */	
	
#schedule .s-table {
    display: block;
    border-top: 1px solid;
    padding: 15px 0 0;
    margin: 0;
}
#schedule .s-table thead {
    display: none;
}
#schedule .s-table tr {
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
#schedule .s-table .additionLive{
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
}
#schedule .s-table .additionLive span{
	display: inline-block;
    padding: 5px 15px;
    background: #000;
    color: #FFF;
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 600;
}
#schedule .s-table .day{
	width: auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    align-items: baseline;
    margin: 0;
    border: none;
    line-height: 1.3;
}
#schedule .s-table .date {
    font-size: 18px;
    white-space: nowrap;
}
#schedule .s-table .addition .day:before{
	display:none;
}
#schedule .s-table .youbi {
    padding-left: 5px;
    display: block;
    font-size: 14px;
}
#schedule .s-table .time {
    display: none;
}
#schedule .s-table .time2 {
margin-top: 5px;
    display: block;
    font-size: 14px;
    font-weight: 400;
}
#schedule .s-table .area {
	width: auto;
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 18px;
    padding: 0 0 0 10px;
    line-height: 1.3;
    display: block;
    border: none;
font-size: 14px;
}
#schedule .s-table td + td::before {
	display:none;
}
#schedule .s-table .venue {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    line-height: 1.5;
    font-size: 14px;
    display: block;
    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;
}	

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

	ticket

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


#ticket .s-table {
    display: block;
    border-top: none;
    padding: 0;
    margin: 0;
}
#ticket .s-table thead {
    display: none;
}
#ticket .s-table tr {
    border-bottom: 1px solid;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
#ticket .s-table td + td::before {
	display:none;
}
#ticket .s-table .day {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 1.3;
    width: 100%;
    text-align: left;
    margin: 0 0 10px 0;
}
#ticket .s-table td:nth-child(1), #ticket .s-table td:nth-child(2), #ticket .s-table td:nth-child(3) {
    border-right: none!important;
}
#ticket .s-table .date {

}
#ticket .s-table .tit {
box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 1.3;
    width: 100%;
    text-align: left;
    margin: 0 0 15px 0;
    font-size: 14px;
}
#ticket .s-table .detail{
box-sizing: border-box;
    padding: 0;
    margin: 0 0 10px 0;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 11px;
    line-height: 1.8;
}
#ticket .s-table td {
    padding: 0;
}



#ticket .p-list{
    padding: 20px;
    border: 1px solid;
    margin: 0 0 20px 0;
}
#ticket .p-list dt{
font-size: 11px;
    margin: 0 0 10px 0;
    font-weight: bold;
}
#ticket .p-list dd{
    font-size: 11px;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid;
    line-height: 1.5;
}
#ticket .p-list dd:last-child{
    margin:0;
    padding: 0;
    border-bottom: none;
}
#ticket .ph {
    width: 80%;
    margin: 0 auto 20px;
}
#ticket .p-table {
    display: block;
    border-top: none;
    padding: 0;
    margin: 0;
}
#ticket .p-table thead {
    display: none;
}
#ticket .p-table tr {
    border-bottom: 1px solid;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
#ticket .p-table td + td::before {
	display:none;
}
#ticket .p-table .day {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 1.3;
    width: 100%;
    text-align: left;
    margin: 0 0 10px 0;
}
#ticket .p-table .date {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;

}
#ticket .p-table .tit {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 1.3;
    width: 100%;
    text-align: left;
    margin: 0 0 10px 0;
}

#ticket .mini {
    font-size: 11px;
    text-align: left;
}
#ticket .subTit {
    font-size: 16px;
    margin: 0 0 10px 0;
}
#ticket .type .tit {
    padding: 10px;
    margin: 0 0 20px 0;
    font-size: 12px;
}

#ticket .type .txt {
    text-align: center;
    font-size: 15px;
    margin: 0 0 20px 0;
}


#ticket .p-table tbody {
    border: 1px solid;
    width: 100%;
    display: block;
}
#ticket .type .p-table tr td:nth-child(1) {
    background: rgba(255,255,255,0.1);
    width: 100%;
    padding: 5px;
    font-size: 14px;
margin: 0 0 10px 0;
}
#ticket .p-table td {
    padding: 0;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    width: 100%;
}
#ticket .box:last-of-type{
    margin: 0;
}


#ticketSchedule ul li .stamp {
    width: 40px;
    position: absolute;
    left: -17px;
    }
 #ticketSchedule ul li .stamp.new_stamp {
    width: 70px;
    left: auto;
    right: -5px;
    bottom: -20px;
    top: auto;
}   
#ticketPage .fanclub #acd .acdTit {
    font-size: 15px;
    line-height: 1.5;
    text-align: left;    
    }
#acd .acdTit::after {
    top: 60%;
    right: 0;
    }

#ticketPage .fanclub #acd .acdTit .mini {
    font-size: 11px;
    text-align: left;
    }

#ticketPage .fanclub #acd .seatKind {
    margin-bottom: 0;
}
#ticketPage .fanclub #acd .acdTit .seatKind p {
    margin: 5px 0 0 0;
}
#ticketPage .fanclub #acd .acdIn {
    margin: 20px 0 0 0;
    padding: 0;
}





.tikebo .tikeboLogo {
    width: 70%;
    margin: 0 auto 10px;
}
.tikebo .subTit {
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    margin: 0 auto 10px 0;
}
.tikebo .step {
    border: 1px solid #ddd;
    padding: 10px;
}
.tikebo .step dt {
    font-weight: bold;
    margin: 0 0 15px 0;
    font-size: 14px;
}
.tikebo ul {
    width: 100%;
    margin: auto;
display: flex;
    justify-content: space-between;    
}
.tikebo ul li {
    width: 45%;
    margin-bottom: 0;
}
.tikebo ul li:nth-child(2){
    width: 54%;
}
.tikebo ul li p {
    text-align: center;
    font-size: 10px;
}
.link{
    font-size: 12px;
}
.tikebo .step dd {
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    font-size: 13px;
}
.box01 p span {
    font-size: 14px;
    }
.faqBox .lead{
    font-size: 13px;
} 

#ticketGuide p{
    font-size: 13px;
}

	#ticketGuide .ticketLead {
		padding: 4vw 0;
		margin-bottom: 8vw;
	}
	#ticketGuide .ticketLead p {
		font-size: 3.8vw;
	}
	
	#ticketGuide hr {
		margin: 12vw 0;
	}
	#ticketGuide .btnArea p {
		font-size: 3.8vw;
		margin-bottom: 6vw;
	}
	#ticketGuide .btnArea .guideLine a {
		padding: 8vw 2vw;
		font-size: 3.2vw;
	}
	#ticketGuide .btnArea .guideLine a::after {
		width: 12px;
		height: 12px;
		top: 50%;
		right: 6%;
	}
	#ticketGuide .btnArea {
		margin-bottom: 12vw;
	}
	#ticketGuide .tikebo {
		padding: 0;
	}
	#ticketGuide .tikebo ul {
		display: block;
	}
	#ticketGuide .tikebo ul li {
		width: 100%;
		margin-bottom: 4vw;
	}
	#ticketGuide .tikebo ul li a {
		padding: 4vw;
		font-size: 3.4vw;
	}

	#ticketGuide .box01 {
		padding: 6vw;
	}
	#ticketGuide .box01 ul {
		padding-bottom: 6vw;
		margin-bottom: 6vw;
	}
	#ticketGuide .box01 ul li:nth-child(1) {
		width: 100%;
		padding-right: 0;
		border-right: none;
	}
	#ticketGuide .box01 ul li h4 {
		padding: 2vw;
		font-size: 3.4vw;
	}
	#ticketGuide .box01 ul li .flBox {
		height: auto;
		padding: 6vw 0;
	}
	#ticketGuide .box01 ul li:nth-child(2) {
		width: 100%;
	}
	#ticketGuide .box01 a {
		font-size: 3.6vw;
		padding-bottom: 1vw;
		margin-bottom: 5vw;
	}
	#ticketGuide .faqBox a {
		margin: 4vw auto;
		padding: 6vw 2vw;
		font-size: 3.6vw;
	}
	#ticketGuide .ticketContact dt {
		padding: 2vw;
		font-size: 3.4vw;
	}
	#ticketGuide .ticketContact dd {
		font-size: 3vw;
		padding: 4vw 4vw;
	}
	#ticketGuide .ticketSchedule dt {
    	display: block;
		padding: 4vw 0;
    	position: relative;
	}
	#ticketGuide .ticketSchedule dt .date {
		width: 100%;
		font-size: 4.6vw;
	}
	#ticketGuide .ticketSchedule dt .ttl {
		width: 100%;
		font-size: 3.2vw;
    	padding-right: 10vw;
	}
	#ticketGuide .ticketSchedule dt .more {
		width: auto;
		position: absolute;
		top: 40%;
		right: 0;
		margin: 0 auto;
		text-indent: -9999px;
	}
	
	#ticketGuide .fanclub .seatKind p {
		font-size: min(4vw, 24px);
		padding: min(2vw, 8px) min(4vw, 20px);
	}
	#ticketGuide .fanclub .seatKind p span {
		font-size: min(3.4vw, 18px);
	}

	#ticketGuide .seatMap {
		padding: 5vw;
		margin-bottom: 10vw;
	}
	#ticketGuide .seatMap img {
		max-width: 100%;
	}
	#ticketGuide .seatMap h5 {
		font-size: 3.6vw;
		margin-bottom: 4vw;
	}
	#ticketGuide .seatMap .note {
		font-size: 3vw;
	}
	#ticketGuide .btnArea a {
		margin: 25px auto;
		padding: 6vw 12vw;
		font-size: 4vw;
	}
	#ticketGuide .priceList li p {
		padding: 0 1%;
	}
	#ticketGuide .priceList li p .c1, .priceList li p .c2, .priceList li p .c3 {
		margin: 0 auto 4px;
		font-size: 2.8vw;
		padding: 3px 2vw;
		line-height: 1.2;
	}

	#ticketGuide .fanclub h4 {
		font-size: 5.6vw;
		margin-bottom: 6vw;
	}
	#ticketGuide .fanclubInfo {
		padding: 4vw 6vw;
		margin-bottom: 10vw;
	}
	#ticketGuide .fanclubInfo li {
		padding: 4vw 0;
		display: block;
	}
	#ticketGuide .fanclubInfo li .ttl {
		width: 100%;
		font-weight: bold;
		font-size: 3.2vw;
		margin-bottom: 2vw;
	}
	#ticketGuide .fanclubInfo li p {
		width: 100%;
		font-size: 3.2vw;
	}
	
	
	#ticketGuide .idCard {
		padding: 6vw;
		margin-top: 6vw;
	}
	#ticketGuide .idCard .idCardList {
		display: block;
		margin-top: min(8vw, 40px);
	}
	#ticketGuide .idCard .idCardList li {
		width: 100%;
		margin-bottom: 10vw
	}
	#ticketGuide .idCard .idCardList li h5 {
		font-size: 3.2vw;
		margin-bottom: 6vw;
		padding-bottom: 3vw;
	}
	#ticketGuide .idCard .idCardList li p {
		font-size: 3.4vw;
		margin-bottom: 4vw;
	}
	
	#ticketGuide .appDL {
		display: block;
		margin-top: min(8vw, 60px);
    	padding: min(5vw, 35px) min(4vw, 50px);
	}
	#ticketGuide .appDL .icoApp {
		width: 80%;
		margin: 0 auto min(6vw, 35px);
	}
	#ticketGuide .appDL .appLink {
		width:  100%;
		justify-content: space-between;
	}
	#ticketGuide .appDL .appLink li {
		margin: 0 5px;
	}
	#ticketGuide .appDL .appLink li p {
		margin-bottom: min(1vw, 10px);
		font-size: 3vw;
    	letter-spacing: .04em;
	}
#ticketGuide .tikebo .tikeboLogo {
    width: 70%;
    margin: 0 auto 10px;
}
#ticketGuide .tikebo .subTit {
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    margin: 0 auto 10px 0;
}
#ticketGuide .tikebo .step {
    border: 1px solid #ddd;
    padding: 10px;
}
#ticketGuide .tikebo .step dt {
    font-weight: bold;
    margin: 0 0 15px 0;
    font-size: 14px;
}
#ticketGuide .tikebo ul {
    width: 100%;
    margin: auto;
display: flex;
    justify-content: space-between;    
}
#ticketGuide .tikebo ul li {
    width: 45%;
    margin-bottom: 0;
}
#ticketGuide .tikebo ul li:nth-child(2){
    width: 54%;
}
#ticketGuide .tikebo ul li p {
    text-align: center;
    font-size: 10px;
}
#ticketGuide .link{
    font-size: 12px;
}
#ticketGuide .tikebo .step dd {
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    font-size: 13px;
}
#ticketGuide .box01 p span {
    font-size: 14px;
    }
#ticketGuide .faqBox .lead{
    font-size: 13px;
}
#ticketGuide .tikebo ul li .btn a{
    padding: 0;
}
#ticketGuide .inBox h3 {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

#guideline .box .tit {
    font-size: 16px;
    margin: 0 0 10px 0;
}
#guideline .box .txt {
    font-size: 13px;
    margin: 0 0 10px 0;
}
.block dt {
    font-weight: bold;
    font-size: 13px;
    margin: 0 0 10px 0;
}
.block dd {
    font-size: 13px;
}






#goods .end {
    font-size: 11px;
}
#goods .wrap {
    max-width: 100%;
}
#goods .lead {
    font-size: 13px;
    font-weight: 300;
}
#goods #guide hr {
    margin: 10vw 0;
}
#goods .list-std li {
    padding: 12px 0;
    font-size: 13px;
    line-height: 1.5;
    display: block;
}
#goods .list-std li .label {
    font-weight: bold;
    display: block;
    margin: auto;
    padding: 0;
}
#goods .list-std li .desc {
    padding: 5px 0 0 2%;
    line-height: 1.8;
    display: block;
}
#goods .list-std li .end{
    display: inline-block;
    font-size: 11px;
}
#goods .btn-std {
    max-width: 100%;
    height: 70px;
    margin-top: 25px;
    font-size: 15px;
    font-weight: bold;
}
#goods .btn-std {
    max-width: 100%;
    height: 70px;
    margin-top: 25px;
    font-size: 15px;
    font-weight: bold;
}
#goods .btn-std > span::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: #000 solid 2px;
    border-right: #000 solid 2px;
    }

#goods #about {
    margin: 0 0 40px 0;
    padding: 20px;
}
#goods #guide h4 {
    font-size: 15px;
    margin-bottom: 10px;
    }
#goods .section-box-normal {
    margin: 0 0 40px 0;
    background: rgba(255,255,255,0.1);
    padding: 20px;
}
#goods #reception-start ul li .place {
    font-size: 13px;
    }
#goods #reception-start ul li .desc .type {
    width: auto;
    font-size: 12px;
    display: block;
}    
#goods #reception-start ul li .desc .date {
    font-size: 12px;
    display: block;
    padding: 0 0 0 1em;
}
#goods #date-place-time ul {
    margin-top: 20px;
}
#goods #date-place-time ul li {
    padding: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
#goods #date-place-time ul li .place {
    width: 100%;
    font-size: 13px;
}
#goods #date-place-time ul li .date, #date-place-time ul li .time {
    width: 10em;
    font-size: 12px;
}
#goods .section-box-normal p {
    font-size: 12px;
}
#goods .section-box-normal p strong {
    font-size: 13px;
}
#goods .lineUpHead p {
    margin-bottom: 15px;
    font-size: 14px;
}
#goods .lineUpHead dl {

}
#goods .lineUpHead dl dt {
    font-size: 11px;
    width: 100%;
    padding: 10px;
    border-right: none;
    border-bottom: solid 1px!important;
}
#goods .lineUpHead dl dd {
    width: 100%;
    font-size: 12px;
    padding: 10px;
    text-align: left;
}
#goods .goods {
    justify-content: space-between;
}
#goods .goods li {
    width: 49%;
    padding: 10px;
}
#goods .goods .title {
    padding: 0;
    font-size: 11px;
    line-height: 1.7;
    word-break: break-all;
}
#goods .goods .title span {
    padding: 2px 5px 3px;
    font-size: 10px;
    font-weight: bold;
    margin: 0 0 10px 0;
    display: block;
    width: 100%;
    text-align: center;
}
#goods .goods .title span.blank {
    background: transparent;
    display: block;
    height: 22px;
}
#goods .goods li .txt {
    font-size: 11px;
    }
#goods .goods .price {
    font-size: 10px;
    text-align: left;
    padding: 0;
}
#goods .goods .label {
    width: auto;
    margin: 0 10px;
    font-size: 11px;
    padding: 8px;
    line-height: 1;
}
#goods .goods .note {
    font-size: 10px;
    line-height: 1.8;
    padding: 0 10px;
}
#goods .box .goods_attention .attentionBox dd .tit {
    margin: 0 0 5px 0;
    font-size: 12px;
}
#goods .box .goods_attention .attentionBox dd .map span {
    font-size: 12px;
}

#goods .campaign {
    padding: 20px;
    margin: 30px 0 0 0;
}
#goods .campaign .tit {
    text-align: center;
    font-size: 16px;
    margin: 0 0 10px 0;
}
#goods .campaign .txt {
    font-size: 12px;
    margin: 0 0 20px 0;
}
#goods .campaign .ph {
    width: 100%;
}
#goods .attentionBox {
    background: #292929;
    padding: 20px;
    margin: 30px 0 0 0;
}
#goods .attentionBox .tit {
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px 0;
}


#goods .accBox .txt {
    font-size: 13px;
}
#goods .attentionBox .tit {
    font-size: 13px;
    }
#goods .accBox .dateBox {
    padding: 20px;
    margin: 20px 0;
}
#goods .accBox .dateBox .tit {
    font-size: 14px;
    margin: 0 0 15px 0;
}
#goods .accBox .dateBox .tit span {
    font-size: 11px;
    font-weight: 400;
    display: block;
}
#goods .accBox .venue {
    font-size: 12px;
    margin: 0 0 20px 0;
}
#goods .accBox .dateBox .date {
    padding: 15px;
    margin: 0 0 20px 0;
}
#goods .accBox .dateBox .date dt {
    text-align: center;
    font-size: 13px;
    margin: 0 0 5px 0;
}
#goods .accBox .dateBox .date dd .txt {
    font-size: 11px;
}
#goods .accBox .dateBox .date .attentionList li {
    font-size: 11px;
}

#goods .box.keyArea .goods li {
    width: 90%;
}
#goods .attentionBox p.txt {
    font-size: 12px;
    text-align: left;
    font-weight: normal;
}
#goods .attentionList li {
    font-size: 11px;
    text-indent: -1em;
    margin: 0 0 0 1em;
}
#goods .lineUpHead {
    margin: 0 auto 20px;
}
#goods .box {
padding: 15px 10px;
}
#goods .box .txt {
    font-size: 12px;
    font-weight: normal;
}
#goods #ticketPage h4 {
    text-align: center;
    font-size: 14px;
    margin: 0 auto 15px;
}
#goods .box .subTit {
    text-align: center;
    font-size: 12px;
    margin: 0 0 10px 0;
}
#goods .box .attentionList {
    margin: 10px 0 10px 0;
    text-align: left;
}
#goods .box .detail dt {
    font-weight: bold;
    font-size: 12px;
}
#goods .box .detail dd .mini {
    display: block;
    font-size: 10px;
}
#goods .box .detail dd table th {
    font-size: 11px;
    text-align: center;
    width: 33%;
}
#goods .box .detail dd .mini {
    display: block;
    font-size: 10px;
}
#goods .box .mainTxt {
    text-align: left;
    font-size: 12px;
    margin: 0;
}
#goods .box .detail dd table td {
    font-size: 11px;
    padding: 10px;
    text-align: left;
}
#goods .box .detail {
    margin: 0 0 20px 0;
    border-bottom: 1px solid;
    padding: 0 0 20px 0;
}
#goods .box .detail dd {
    width: 100%;
    box-sizing: border-box;
    margin: auto;
    font-size: 12px;
    text-align: left;
}
#goods .box .goods_attention {
    padding: 15px;
}
#goods .box .goods_attention .mainTit {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    margin: 0 0 10px 0;
}
#goods .box .goods_attention .lead {
    text-align: left;
    margin: 0 0 10px 0;
    font-size: 12px;
}
#goods .box .goods_attention .attentionBox {
    padding: 15px 0 0 0;
    margin: 0 0 15px 0;
}
#goods .box .goods_attention .attentionBox dt {
    font-size: 13px;
    margin: 0 0 10px 0;
    line-height: 1.5;
}
#goods .box .goods_attention .attentionBox dd .txt {
    font-size: 12px;
}
#goods .box .goods_attention .attentionBox dd {
    padding: 0 15px 15px 15px;
}
#goods .box .goods_attention .attentionBox dd .list {
    margin: 0 0 10px 0;
}
#goods .box .goods_attention .attentionBox dd .list li {
    text-align: left;
    font-size: 12px;
}
#goods .box .goods_attention .attentionBox dd .detail .subTit {
    font-size: 12px;
}
#goods .box .goods_attention .attentionBox dd .step li {
    width: 95%;
    border: 2px solid #000;
    border-radius: 20px;
    box-sizing: border-box;
    margin: 0 auto 10px;
    padding: 15px;
}
#goods .box .goods_attention .attentionBox dd .step li .tit {
    font-size: 12px;
    text-align: left;
}
#goods .box .goods_attention .attentionBox dd .step li .attentionList {
    padding: 0 0 0 20px!important;
}

#goods .box .goods_attention .attentionBox dd .cal2 .detail {
    width: 100%;
}


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

	footer

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

	footer {
		padding: min(14vw, 100px) min(5vw, 60px);
	}
	footer .ftrLogo {
		width: min(30vw, 180px);
		margin: 0 auto min(8vw, 60px);
	}

	footer .ftrSns {
		margin-bottom: 40px;
	}
	footer .ftrSns li {
		margin: 0 min(4vw, 20px);
	}
	footer .ftrSns li a {
		font-size: min(6.8vw, 30px);
	}
footer .ftrSns li:nth-child(3){
width: 26px;
}	
footer .ftrSns li svg {
    width: 100%;
    position: relative;
    top: 0;
}
	footer .ftrLink {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 20px;
	}
	footer .ftrLink li {
		margin: 0 min(4vw, 20px);
	}

	footer .ftrLogo li:nth-child(1) img { width: min(36vw, 100px);}
	footer .ftrLogo li:nth-child(2) img { width: min(32vw, 80px);}
	footer .ftrLogo li:nth-child(3) img { width: min(42vw, 120px);}

	footer .address {
		font-size: min(2.8vw, 12px);
		margin-bottom: min(8vw, 60px);
	}
	footer .copyright {
		font-size: min(2.6vw, 10px);
	}
	


/*//////////////////////////////////////////////////////////////////////////////// */	
}
