@charset "utf-8"

/* ---------------------------------------------------------------- loding-bar ---- */

body {
	height: auto !important;
}

.loading__bar {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1000001;
	overflow: hidden;
}

.loading__bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0%;
	width: 100%;
	height: 50%;
	background-color: #fff;
	z-index: 2;
}

.loading__bar::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0%;
	width: 100%;
	height: 51%;
	background: #fff;
	z-index: 1;
}

.loading__bar_in{
	width: 100%;
	height: 100%;
	position: relative;
}

.loading__bar.fadeout {
	animation: loading .3s cubic-bezier(0, 0, 0.1, 1.0) .0s forwards;
}

.loading__bar.fadeout::before {
	animation: loadingbar .3s cubic-bezier(0, 0, 0.1, 1.0) 0s forwards;
}

.loading__bar.fadeout::after {
	animation: loadingbar .3s cubic-bezier(0, 0, 0.1, 1.0) 0s forwards;
}

.loading__bar .image {
	position: absolute;
	z-index: 3;
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
}

.loading__bar.fadeout .image {
	animation: loadingitem .2s cubic-bezier(0, 0, 0.1, 1.0) 0s forwards;
}

@keyframes loading {
	0% {
		visibility: visible;
		display: block;
	}
	99% {
		visibility: hidden;
		display: block;
	}
	100% {
		visibility: hidden;
		display: none;
	}
}

@keyframes loadingbar {
	0% {
		opacity: 1;
		visibility: visible;
		display: block;
		height: 100%;
	}
	99% {
		opacity: 1;
		visibility: hidden;
		display: block;
		height: 0%;
	}
	100% {
		opacity: 0;
		visibility: hidden;
		display: none;
		height: 0%;
	}
}

@keyframes loadingitem {
	0% {
		opacity: 1;
		visibility: visible;
		display: block;
	}
	99% {
		opacity: 0;
		visibility: hidden;
		display: block;
	}
	100% {
		opacity: 0;
		visibility: hidden;
		display: none;
	}
}

/* ---------------------------------------------------------------- MV ---- */

#mainVisual{
	position: relative;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	background: #000;
	-webkit-background-size: 100%;
	     -o-background-size: 100%;
	        background-size: 100%;
}

#mainVisual .build{
	width: 100%;
	height: 120%;
	display: block;
	background: url("../img/top/mv.jpg") no-repeat 50% 0;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	position: absolute;
	display: block;
	z-index: 1;
}

/*	PC */
@media screen and (min-width: 1025px){

	#mainVisual.loadin .build{
		animation:mainfade 4.0s ease .1s 1 normal both;
		-webkit-animation:mainfade 4.0s ease .1s 1 normal both;
		
	}

	@keyframes mainfade {
		0% {
			opacity: 0;
			transform: translateY(-5%);
		}
		100%{
			opacity: 1;
			transform: translateY(-10%);
		}
	}

	@-webkit-keyframes mainfade {
		0% {
			opacity: 0;
			transform: translateY(-5%);
		}
		100%{
			opacity: 1;
			transform: translateY(-10%);
		}
	}
}

/*	Tablet */
@media screen and (max-width: 1024px){

	#mainVisual{
		height: 60vh;
	}
	
	#mainVisual .build{
		background: url("../img/top/mv_sp.jpg") no-repeat 50% 100%;
		-webkit-background-size: cover;
		     -o-background-size: cover;
		        background-size: cover;
		height: 100%;
	}
}

/*	SP */
@media screen and (max-width: 896px){
	#mainVisual{
		height: 100%;
	}
}

/* ---------------------------------------------------------------- COMMON ---- */

main#content{
	position: relative;
	width: 100%;
}

section{
	margin-bottom: 100px;
}

main h2{
	float: left;
	font-weight: 500;
}

main h2 span{
	display: inline-block;
}

main h2 span:before{
	content: "";
	width: 40px;
	height: 2px;
	background: #000;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

/*	SP */
@media screen and (max-width: 896px){

	section{
		margin-bottom: 60px;
	}

}

@media screen and (max-width: 480px){
	.col-sm-12{
		padding-left: 0!important;
		padding-right: 0!important;
	}
}
/* ---------------------------------------------------------------- news ---- */

section#news{
	margin-bottom: 0;
	padding-top: 60px;
	padding-bottom: 60px;
}

section#news .title-area{
	margin-bottom: 30px;
}

section#news .title-area h2{
	font-size: 2.8rem;
}

section#news .morelink{
	float: right;
	margin-top: 10px;
	font-weight: 500;
}

section#news ul li a{
	display: block;
	color: #000;
	position: relative;
}

section#news ul li #sticky_tag{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	padding: 5px 0;
	background: #E02D24;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	line-height: 1;
	font-size: 80%;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	z-index: 1;
}

section#news ul li .title{
	line-height: 1.4;
}

section#news ul li .image{
	width: 100%;
	height: 150px;
	overflow: hidden;
	position: relative;
	background: #000;
	margin-bottom: 10px;
}

section#news ul li .image img{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;	
	object-fit: cover;
}

/*	Tablet */
@media screen and (max-width: 1024px){

	section#news ul li{
		margin-bottom: 20px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
}

/*	SP */
@media screen and (max-width: 896px){

	section#news ul li:nth-child(odd){
		padding-right: 7px;
		padding-left: 0;
	}

	section#news ul li:nth-child(even){
		padding-left: 7px;
		padding-right: 0;
	}

	section#news .btn a{
		width: 240px;
		margin-left: auto;
		margin-right: auto;
		display: block;
		font-weight: 500;
	}
}

/* ---------------------------------------------------------------- schedule ---- */

section#schedule{
	margin-bottom: 0;
}

section#schedule .tonight-area{
	width: 40%;
	float: left;
}

section#schedule .pickup-area{
	width: 60%;
	float: right;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	position: relative;
}

section#schedule .tonightF{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: #000;
	color: #fff;
	font-weight: 500;
	padding: 10px 15px;
	font-weight: bold;
}

section#schedule .pick_tag{
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	background: #000;
	color: #fff;
	font-weight: 500;
	padding: 10px 15px;
	font-weight: bold;
}

/* tonight-area */

section#schedule .tonight-area ul.second{
	width: 100%;
	position: relative;
	background: #F9F9F9;
}

section#schedule .tonight-area ul.first{
	width: 100%;
	position: relative;
	background: #EFF0F2;
}

section#schedule .tonight-area ul li{
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
}

section#schedule .tonight-area ul li .wrap{
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 30px 20px 20px 20px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

section#schedule .tonight-area ul li p.image{
	width: 140px;
	height: 140px;
	background: #000;
	overflow: hidden;
	position: relative;
}

section#schedule .tonight-area ul li p.image img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;	
	object-fit: cover;
}

section#schedule .tonight-area ul li a{
	color: #000;
	display: block;
	width: 100%;
	height: 100%;
}

section#schedule .tonight-area ul li .text{
	width: calc(100% - 140px);
	text-align: left;
	padding-left: 20px;
	color: #000;
}

section#schedule .tonight-area .off h3{
	font-weight: 500;
}

/* pickup-area */

section#schedule .pickup-area ul li.post-event{
	position: relative;
	width: 100%;
	height: 480px;
	overflow: hidden;
	background: #000;
}


section#schedule .pickup-area ul li .wrap{
	display: block;
	width: 100%;
	height: 100%;
	color: #FFF;
}

section#schedule .pickup-area ul li p.image{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
}

section#schedule .pickup-area ul li img{
	opacity: 0.4;
	width: 100%;
	height: 100%;	
	object-fit: cover;
}

section#schedule .pickup-area .text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 30px 60px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	text-align: center;
}

section#schedule .time{
	font-weight: 500;
}

section#schedule .tonight-area .time:after{
	background: #000;
}

section#schedule .pickup-area .time:after{
	background: #fff;
}

section#schedule .tonight-area .time:after{
	margin-left: 0;
	left: 0;
}

section#schedule .tag{
	margin-top: 10px;
}

section#schedule .tonight-area .tag p{
	display: inline-block;
	padding: 2px 8px;
	color: #000;
	border: 1px solid #000;
	margin-right: 8px;
	background: #FFF;
	font-weight: 500;
	font-size: 75%;
}

section#schedule .pickup-area .tag p{
	display: inline-block;
	padding: 2px 8px;
	color: #fff;
	border: 1px solid #fff;
	margin-right: 8px;
	font-weight: 500;
	font-size: 75%;
}

section#schedule .pickup-area .btn{
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

section#schedule .pickup-area .btn a{
	border: 1px solid #fff;
	background: #FFF;
}

section#schedule .pickup-area .btn a:hover{
	background: #000;
	border: 1px solid #fff;
}

section#schedule .pickup-area{
	
}


/*	SP */
@media screen and (max-width: 1024px){
	section#schedule .tonight-area,
	section#schedule .pickup-area{
		float: none;
		width: 100%;
		padding: 0;
		margin-left: auto;
		margin-right: auto;
	}

	section#schedule .tonightF{
		position: absolute;
		padding: 5px 10px;
		font-weight: bold;
	}

	section#schedule .pick_tag{
		padding: 5px 10px;
	}

	section#schedule .tonight-area ul li{
		height: auto;
	}

	section#schedule .tonight-area ul li .wrap{
		padding: 40px 20px 20px 20px;
		display: block;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}

	section#schedule .tag p{
		margin-bottom: 5px;
	}

	section#schedule .pickup-area ul li.post-event{
		height: 350px;
	}
}


/* ---------------------------------------------------------------- about ---- */

section#about{
	width: 100%;
	padding: 100px 0;
	margin-bottom: 0;
	background: #F2F2F2;
}

section#about .text{
	margin-left: auto;
	margin-right: auto;
	line-height: 2.0;
}

section#about .fontsize090{
	color: #666;
}

/*	SP */
@media screen and (max-width: 896px){
	section#about{
		padding: 60px 0;
	}

	section#about .logo{
		width: 120px;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}

	section#about .logo img{
		width: 100%;
		height: auto;
	}

	section#about .text{
		line-height: 1.6;
	}
}

/* ---------------------------------------------------------------- notice ---- */

section#attention{
	margin-bottom: 0;
	padding: 40px 0;
}

section#attention h2{
	font-size: 2.4rem;
	margin-bottom: 30px;
	display: block;
	width: 100%;
}

section#attention .floatleft,
section#attention .floatright{
	width: 49%;
}

/*	SP */
@media screen and (max-width: 896px){
	section#attention .floatleft,
	section#attention .floatright{
		width: 100%;
		float: none;
	}

	section#attention .floatleft{
		margin-bottom: 15px;
	}
}


/* ---------------------------------------------------------------- access ---- */

section#access{
	margin-bottom: 0;
	padding-bottom: 0;
}

section#access #ggmap{
	width: 50%;
	float: left;
	height: 0;
	overflow: hidden;
	padding-bottom: 33%;
	position: relative;
}

section#access #ggmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

section#access .information{
	width: 50%;
	float: right;
	position: relative;
	background: #F9F9F9;
}

section#access .information .information-in{
	padding: 30px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

section#access .information .information-in a{
	color: #000;
	text-decoration: underline;
}

section#access .information .information-in li{
	margin-bottom: 20px;
}

section#access .information .information-in li p{
	display: inline-block;
	vertical-align: top;
}

section#access .information .information-in li p.en{
	width: 100px;
	padding-right: 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

section#access .information .information-in li p.text{
	width: calc(100% - 110px);
}

section#access .information .information-in .contact-btn a{
	display: block;
	color: #fff;
	background: #000;
	text-align: center;
	padding: 8px 15px;
  	position: relative;
  	text-decoration: none;
  	width: 200px;
  	-webkit-border-radius: 3px;
  	        border-radius: 3px;
}

section#access .information .information-in .contact-btn a:hover{
	color: #FFF;
	background: #333;
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	-ms-transition: all .1s linear;
	transition: all .1s linear;
}

/*	SP */
@media screen and (max-width: 1024px){
	section#access #ggmap{
		padding-bottom: 50%;
	}
}

/*	SP */
@media screen and (max-width: 896px){
	section#access #ggmap{
		width: 100%;
		float: none;
		padding-bottom: 80%;
	}

	section#access .information{
		width: 100%;
		float: none;
		position: static;
	}

	section#access .information .information-in{
		padding: 30px;
		position: static;
		transform: translateY(0);
	}
}

/* ---------------------------------------------------------------- content ---- */
