@charset "UTF-8";
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* override
----------------------------------------*/
.content-area .content-area-inner {
	width: 1200px;
}

@media (max-width: 750px) {
	.content-area .content-area-inner {
		width: 100%;
	}
}

/*
----------------------------------------*/
.caption {
	text-align: center;
	font-size: 20px;
	line-height: 1.7;
	font-weight: 500;
	margin-bottom: 60px;
}

@media (max-width: 750px) {
	.caption {
		font-size: 28px;
		font-size: 3.73333vw;
		margin-bottom: 8vw;
		font-weight: 700;
	}
}

.note {
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 400;
}

@media (max-width: 750px) {
	.note {
		margin-top: 2.66667vw;
		font-size: 22px;
		font-size: 2.93333vw;
		font-weight: 300;
	}
}

.work-list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: -80px;
}

@media (max-width: 750px) {
	.work-list {
		margin-bottom: -13.33333vw;
	}
}

.work-item {
	width: 380px;
	margin-bottom: 80px;
}

@media (max-width: 750px) {
	.work-item {
		width: 100%;
		margin-bottom: 13.33333vw;
	}
}

.work-item a.movie-modal-btn {
	position: relative;
	display: block;
	width: 100%;
	height: 298px;
	overflow: hidden;
	border-radius: 10px;
}

@media (min-width: 751px) {
	.work-item a.movie-modal-btn:hover img {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
}

@media (max-width: 750px) {
	.work-item a.movie-modal-btn {
		height: 70.4vw;
		border-radius: 6.66667vw;
	}
}

.work-item a.movie-modal-btn:after {
	content: '';
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 74px;
	height: 74px;
	background-image: url("../img/movie-btn.png");
	background-repeat: no-repeat;
	background-size: cover;
}

@media (max-width: 750px) {
	.work-item a.movie-modal-btn:after {
		width: 17.33333vw;
		height: 17.33333vw;
	}
}

.work-item a.movie-modal-btn img {
	transition: transform 0.3s ease-out;
}

.work-item .title {
	position: relative;
	font-size: 22px;
	padding: 20px 0 20px;
	margin-bottom: 25px;
}

@media (max-width: 750px) {
	.work-item .title {
		font-size: 38px;
		font-size: 5.06667vw;
		padding: 6.66667vw 0 5.33333vw;
		margin-bottom: 5.33333vw;
	}
}

.work-item .title:after {
	content: '';
	position: absolute;
	display: block;
	width: 30px;
	height: 2px;
	background-color: #9198a1;
	left: 0;
	bottom: 0;
}

@media (max-width: 750px) {
	.work-item .title:after {
		width: 6.93333vw;
		height: 0.53333vw;
	}
}

.work-item .author {
	background-color: #FFF;
	border-radius: 10px;
	font-size: 14px;
	padding: 18px;
	line-height: 1.8em;
	letter-spacing: -0.05em;
}

@media (max-width: 750px) {
	.work-item .author {
		border-radius: 1.06667vw;
		font-size: 25px;
		font-size: 3.33333vw;
		padding: 4vw;
	}
}

.work-item.dammy {
	height: 0;
}

@media (max-width: 750px) {
	.work-item.dammy {
		display: none;
	}
}

/* モーダルを閉じるボタン
----------------------------------------*/
.close-movie-modal-btn {
	position: absolute;
	right: -30px;
	top: -30px;
	font-size: 0;
}

@media (max-width: 750px) {
	.close-movie-modal-btn {
		right: 4vw;
		top: -6.66667vw;
	}
}

.close-movie-modal-btn a {
	display: block;
	width: 20px;
	height: 20px;
	cursor: pointer;
	transition: opacity 0.3s ease-out;
}

@media (max-width: 750px) {
	.close-movie-modal-btn a {
		width: 2.66667vw;
		height: 2.66667vw;
	}
}

.close-movie-modal-btn a:hover {
	opacity: 0.7;
}

.close-movie-modal-btn a span {
	display: block;
	transition: transform 0.3s ease-out;
	pointer-events: none;
}

.close-movie-modal-btn a span:before, .close-movie-modal-btn a span:after {
	content: '';
	position: absolute;
	left: -21%;
	top: 50%;
	width: 29px;
	height: 2px;
	border-radius: 1px;
	background-color: #FFF;
}

.close-movie-modal-btn a span:before {
	-webkit-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}

.close-movie-modal-btn a span:after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

@media (max-width: 750px) {
	.close-movie-modal-btn a span:before, .close-movie-modal-btn a span:after {
		content: '';
		position: absolute;
		left: -21%;
		top: 50%;
		width: 8vw;
		height: 3px;
		border-radius: 1.5px;
		background-color: #FFF;
	}
	.close-movie-modal-btn a span:before {
		-webkit-transform: rotateZ(-45deg);
		transform: rotateZ(-45deg);
	}
	.close-movie-modal-btn a span:after {
		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
}

/*# sourceMappingURL=../../../_map/award/06/css/style.css.map */
