@charset "UTF-8";


/*******************************
 *  override
 ******************************/
:root {
	--bw: 15px;
}
header[role="banner"] {
	border-bottom: 3px solid #0CA26C;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #FFFFFF;
}
header[role="banner"] .headerTop {
	position: relative;
	padding-top: 31px;
	margin-bottom: 28px;
}

@media screen and (max-width: 767px) {
	header[role="banner"] .headerTop {
		padding-top: 20px;
		margin-bottom: 22px;
	}
	header[role="banner"] .headerInner .logoWrap > p > a > img {
		width: 222px;
	}
	#wrap #mainArea {
		padding-top: 0px;
	}
	#wrap #mainArea main {
		padding: 0 0;
	}
	#pageTop {
		bottom: 90px;
	}
	main img {
		width: 100%;
		max-width: none;
	}
}


/*******************************
 *  parts
 ******************************/
.isPc {
	display: block;
}
.isSp {
	display: none;
}

.sectionBlock {
	position: relative;
	width: 100%;
}
.sectionBlockInner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}

.btn {
	display: flex;
	justify-items: center;
	position: relative;
    width: 200px;
	margin: 0 auto;
	min-height: 56px;
	text-align: center;
	justify-content: center;
	align-items: center;
	background-color: #2ECCAB;
	border-radius: 5px 5px;
	padding:0 10px;
	box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    box-shadow:0px 3px 0px rgba(0,0,0,.16);
}

a.btn:visited {
	color: #FFF;
}

.btn::before {
    content: "\e909";
	position: absolute;
    color: #fff;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'icon_type2018';
}

.btn:hover {
	opacity: .7;
	color: #fff;
	transition: .35s;
}


.sectionBlock{
    background: url(/fund/movie/images/bg01.png) 0 0 no-repeat;
    background-size: contain;
}

.sectionBlock::before{
	content: "";
	display: block;
	position: fixed;
	left: 0;
	width: 100vw;
	height: 100%;
    background: url(/fund/movie/images/bg02.png) bottom center no-repeat;
    background-size: contain;
	background-color: rgba(255,255,255,.75);
	background-blend-mode: color;
	padding-bottom: 60px;
}


.sectionBlockInner h1{
    text-align: center;
    width: 100%;
	padding: 50px 0 20px;
	font-size: 54px;
	font-weight: bold;
}

ul.videoLinks {
	background: rgba(244,244,244,.8);
	display: flex;
	justify-content: flex-start;
	padding: 30px 20px 25px;
	border-radius: 10px;
	margin: 0 auto;
	flex-wrap: wrap;
}

ul.videoLinks h2{
	font-weight: bold;
	text-align: center;
	font-size: 24px;
	width: 100%;
	margin: 0 0 20px;
}

ul.videoLinks li{
	background: #fff;
	padding: 5px 5px 0 5px;
	border-radius: 3px;
	box-shadow: 0px 2px 5px #ccc;
	text-align: center;
	font-size: 12px;
}


li.videoBox {
	width: 100%;
	border: 4px solid #C9EDE3;
	background-color: #fff;
	border-radius: 10px;
	margin: 30px 0 0 0;
}


.fundName{
	display: flex;
	justify-items: flex-start;
	align-items: center;
	padding: 10px;
	border-bottom:2px dashed #C9EDE3;
	position: relative;
}

.fundName img{
	width: 100px;
}

.fundName h3{
	width: calc(100% - 300px);
	padding: 0 10px;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
}

.movie {
	display: flex;
	padding:20px 40px;
	flex-wrap: wrap;
	justify-content:space-evenly;
}

.movie li{
	background:#F3F3F3;
	border-radius: 5px;
	padding: 10px 10px 0 10px;
	margin:0 0 30px 0;
}

.movie li.ac{
	color: #0CA26C;
}

.movie li.ac:hover{
	color: #F3762A;
	cursor: pointer;
}

.movie li.ac figcaption{
    position: relative;
    padding-left: 1.5em;
	font-weight: bold;
}

.movie li.ac figcaption::before{
	content: "\e903";
    color: #0ca26c;
    font-family: 'icon_type2018';
	position: absolute;
	top: 7px;
	left: 0;
	font-size: 18px;
}


#videoModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, background-color 0.3s ease, visibility 0.3s;
}

#videoModal.show {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
    visibility: visible;
}

.modal-content {
    background: none;
    padding: 0px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    width: 920px;
	height:517.5px;
    box-sizing: border-box;
}

#videoModal.show .modal-content {
    transform: scale(1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
	border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
	border-radius: 8px;
}

.close-button {
    position: absolute;
    top: -90px;
    right: -70px;
    font-size: 72px;
    cursor: pointer;
    color: #FFF;
}

.movie li.dummy{
	background: #fff;
	width: 300px;
}

.movie li img{
	max-width: 300px;
}

.movie li figcaption{
	max-width: 280px;
	text-align: left;
	padding: 10px;
	overflow-wrap: break-word;
	font-size: 14px;
}

.pc .eqp-big-play-button {
	display: none !important;
}



@media screen and (max-width: 767px) {
	.isPc {
	display: none;
}
.isSp {
	display: block;
}


	.sectionBlockInner h1{
		padding: 50px 0 20px;
		font-size: 36px;
	}

	.sectionBlock{
	    margin: 0 0 60px 0;
	}

	.sectionBlockInner {
		padding: 0 20px;
	}

	.sectionBlock::before{
		padding-bottom: 0px;
	}

	li.videoBox {
		margin-top: 80px;
	}

	.fundName h3{
		width: auto;
	}

	.fundName a{
		position: absolute;
		right: 20px;
		top: -60px;
		border-radius: 5px 5px 0 0;
	}
	.movie li.dummy{
		display: none;
	}

	.movie li img{
		max-width:none;
	}

	.movie li figcaption{
		max-width:none;
	}
 }
