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

#mainVisual a:hover {
	opacity: 0.7;
}
.newsbox dl a:hover,
.musicbox dl a:hover {
	opacity: 0.7;
	text-decoration: underline;
}
.btn a {
	color: #cf0e11;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	border: solid 2px #cf0e11;
	text-align: center;
	overflow: hidden;
	font-weight: bold;
	font-size: 0.825rem;
	transition: .6s;
	margin: 10% auto 10%;
}
.btn a:hover {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
/* 矢印
.btn a::before {
	content: '';
	position: absolute;
	display: inline-block;
	left: 50.5%;
	bottom: -53.8%;/*線の上下位置
	width: 8px;
	height: 8px;
	margin: 0 10px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
} 
*/

/* news */
.newsbox dt {
	font-weight: bold;
	margin-bottom: 2%;
}
.newsbox dd {
	margin-bottom: 5%;
	border-bottom: solid 1px #ccc;
}
.newsbox dd:last-child {
	margin-bottom: 0;
}
span {
	color: #cf0e11;
	margin-left: 1%;
}

/* live */
.live1 {
	border: solid 1px #e6e6e6;
	padding: 1% 0% 3% 1%;
	width: 95%;
	margin-bottom: 5%;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}
.live1:hover {
	box-shadow: none;
	background: #fa8072;
	color: white;
	transition: all 0.8s;
}

.live2 {
	border: solid 1px #e6e6e6;
	padding: 1% 0% 3% 1%;
	width: 95%;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}
.live2:hover {
	box-shadow: none;
	background: #fa8072;
	color: white;
	transition: all 0.8s;
}

.livebox dt {
	margin-bottom: 3%;
}

/* music */
.flexarea {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.flexarea dl dd {
	text-align: center;
	margin-top: 3%;
}
.mhover1 {
	overflow: hidden;
	position: relative;
}
.mhover1 .caption {
	color: #fff;
	padding-top: 90px;
	padding-left: 65px;
}
.mhover1 .mask {
	width : 200px;
	height: 200px;
	position: absolute;
	top: -100%;	/* 枠の上に置いて表示させない */
	left: 0;
	background-color: rgba(0,0,0,0.4);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.mhover1:hover .mask {
	top: 0; /* 下に降りてくるように見せる */
}

.mhover2 {
	overflow: hidden;
	position: relative;
}
.mhover2 .caption2 {
	color: #fff;
	padding-top: 90px;
	padding-left: 65px;
}
.mhover2 .mask2 {
	width : 200px;
	height: 200px;
	position: absolute;
	top: -100%;	/* 枠の上に置いて表示させない */
	left: 0;
	background-color: rgba(0,0,0,0.4);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.mhover2:hover .mask2 {
	top: 0; /* 下に降りてくるように見せる */
}
.mhover3 {
	overflow: hidden;
	position: relative;
}
.mhover3 .caption3 {
	color: #fff;
	padding-top: 90px;
	padding-left: 65px;
}
.mhover3 .mask3 {
	width : 200px;
	height: 200px;
	position: absolute;
	top: -100%;	/* 枠の上に置いて表示させない */
	left: 0;
	background-color: rgba(0,0,0,0.4);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.mhover3:hover .mask3 {
	top: 0; /* 下に降りてくるように見せる */
}

/* movie */
.moviebox p {
	text-align: center;
}

@media screen and (max-width: 767px){
	.centerText {
		margin: 0 18%;
	}
	.flexarea {
		display: grid;
		text-align: center;
	}
	.moviebox p {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
	}
	/* music */
	.mhover1 {
		margin-bottom: 20%;
	}
	.mhover1 .caption {
		padding-top: 96px;
		padding-left: 5px;
	}
	.mhover1 .mask {
		width :200px;
		height: 200px;
		left: 0%;
	}
	.mask,
	.mask2 {
		overflow: hidden;
	}
	.mhover2 .caption2 {
		padding-top: 96px;
		padding-left: 5px;
	}
	.mhover2 .mask2 {
		width :200px;
		height: 200px;
		left: 0%;
	}
	.musicbox dt {
		font-size: 0.75rem;
	}
	.musicbox dd {
		font-size: 0.75rem;
	}

	iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}
}