@charset "UTF-8";

/*--------------------------------------------------*/

.movie-wrap {
	display: flex;
	justify-content: center;
}

.movie-content {
	background: url("../img/index_movie.png");
	background-size: cover;
	background-position: center;
	padding: 1em;
	width: calc(1280px - 2em); /*-padding*/
}

.movie-text {
	margin: 1em 0 1em 2em;
	width: 12em;
}

.movie-text h3 {
	background: linear-gradient(145deg, rgba(255,255,255,0.7), white, rgba(255,255,255,0.7));
	transform: skew(-12deg);
	box-shadow: 5px 5px 2px rgba(10,10,10,0.3);
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	font-family: serif;
	font-size: 1.6em;
	color: rgb(60,60,60);
}

.movie-group {
	display: flex;
	flex-wrap: wrap;
	margin: 1em;
	width: calc(100% - 2em);
}

.movie-item {
	position: relative;
	display: flex;
	align-items: center;
	margin: 1em;
	width: calc(50% - 2em);
	height: 2.6em;
	color: rgb(10,10,10);
	clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
	z-index: 1;
}

.movie-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.9);
	backdrop-filter: blur(6px);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.movie-item span {
	background: linear-gradient(165deg, rgba(180,100,0,0.8), rgba(180,180,0,0.8), rgba(180,100,0,0.8));
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6em;
	height: 100%;
	text-shadow: 0px 0px 3px rgb(200,120,0);
	color: white;
	/*clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%); /**/
}

.movie-item p {
	padding-left: 1em;
	text-shadow: 0px 0px 3px white;
}

.movie-item:hover {
	background-color: white;
}

.movie-item:hover span {
	background: linear-gradient(165deg, rgba(180,100,0,0.7), rgba(180,180,0,0.7), rgba(180,100,0,0.7));
}

/*--------------------------------------------------*/

/*modal*/
.my-modalmv {
	background-color: rgba(10,10,10,0.7);
	display: none; /*初期値*/
	flex-flow: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	color: white;
	z-index: 10;
}

.movie-modal {
	background-color: rgb(10,10,10);
	border-radius: 0.5em;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	padding: 1em;
	width: 720px;
	height: 480px;
}

.movie-modal h4 {
	background: linear-gradient(to bottom, transparent 60%, rgb(30,120,160) 40%);
	transform: skew(-16deg);
	margin-bottom: 1em;
	padding-left: 1em;
	width: calc(100% - 1em);
	text-shadow: 3px 3px 0px rgba(10,10,10,0.5);
}

.movie-modal iframe {
	width: calc(100% - 2em);
	object-fit: contain;
}
/*modal*/

/*--------------------------------------------------*/

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


}

/*--------------------------------------------------*/

@media screen and (max-width: 900px) {
.movie-wrap {
	font-size: 0.7rem;
}
.movie-item {
	width: calc(100% - 2em);
}

/*modal*/
.movie-modal {
	width: 80vw;
	height: 60vw;
}
/*modal*/

}

/*--------------------------------------------------*/

@media screen and (max-height: 500px) {

/*modal*/
.movie-modal {
	width: 60vw;
	height: 45vw;
}
/*modal*/


}

/*--------------------------------------------------*/

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

/*--------------------------------------------------*/

