/* フォトマガジン */

/******************
	モーダル
*******************/
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background: grey;
	opacity: .6;
	display: none;
	z-index: 998;
	top: 0;
	left: 0;
	right: 0;
}
.Vmodal {
	width: 660px;
	height: 90%;
	border: 10px solid #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	display: none;
	z-index: 999;
	overflow-y: scroll;
	padding: 5px;
	text-align: center;
}
.Vmodal iframe {
	/*width: 640px;
	height: 360px;*/
	height: 715px;
}
.Vmodal .closebtn {
	position: absolute;
	top:0;
	right: 0;
	background: transparent;
	border-color: transparent;
	z-index: 99;
}
.Vmodal .closebtn img {
	width: 28px;	
}

/* モーダル内縦スクロールバー */
.Vmodal::-webkit-scrollbar {
  border-radius: 7px;
  width: 7px;
}
.Vmodal::-webkit-scrollbar-thumb {
  /*background-color: #7C7C7C;*/
  background-image: linear-gradient(135deg, rgba(250, 249, 249, 1), rgba(104, 104, 104, 1));
  border-radius: 10px;
}


/* モーダルウインドウを開いたとき */
#Vmodal.__open {
	display: block;
}
body.__fixed {
	overflow: hidden !important;
}


/* モーダル内アンケートエリア */
/*
.Vmodal .js-enqueteArea {
	position: absolute;
	top: 600px;
	left: 50%;
	transform: translate(-50%, -10%);
	width: 100%;
	max-width: 540px;
}
.Vmodal .js-enqueteArea .cs_ttl {
	font-size: 13px;
	line-height: 1.2em;
}
#cs_enquete_wrapper {
	min-width: 280px;
}
#cs_enquete_wrapper .cs_btn li {
    max-width: unset !important;
}
#cs_enquete_wrapper .cs_btn li button,
#cs_enquete_wrapper .cs_btn li img {
	width: 75px !important;	
}
#cs_enquete_wrapper .cs_btn {
	padding: 0 !important;
}
*/

/*  モーダル内テキスト */
#strTtl {
	font-size: 1.2em;
	font-weight: bold;
	margin: 30px 0 10px;
	border-bottom: 1px solid #333;
}

#strDiv {
	font-size: 0.9em;
	margin: 10px 0 0 10px;
}
#strDiv p {
	font-weight: bold;
}
#strDiv ul {
	list-style: none;
	padding: 0;
	margin: 0;
}


/*ショート動画を縦型に*/
.youtubeS iframe {
	position: relative;
	aspect-ratio:9 /16;
}

@media screen and (max-width: 689px) {
	.Vmodal {
		width: 88vw;
		height: 80vh;
		padding: 1vw;
	}
	.Vmodal iframe {
		/*width: 100%;*/
		height: calc(100vw* 1);
	}
	.Vmodal .js-enqueteArea {
		/*top: 69vh;*/
		top: calc(100vw* 1.2);
		width: unset !important;
		max-width: unset !important;
	}
	#strTtl {
		font-size: 1em;
	}
}
@media screen and (max-width: 450px) {
	.Vmodal iframe {
		height: calc(100vw* 1.2);
	}
	.Vmodal .js-enqueteArea {
		top: calc(47vw* 3.3);
	}
	
}

/******************
	サムネイル
*******************/
.videoThumb {
	cursor: pointer;
	overflow: hidden;
	display: inline-block;
}
.videoThumb img {
	overflow: hidden;
	width: 180px;
}
.videoThumb:hover {
	opacity: 0.6;
	transition: .3s;
}
.videoThumb a:hover {
	text-decoration: none !important;
}


@media screen and (max-width: 639px) {
	.videoThumb img {
		width: 140px;
	}
}


