@charset "utf-8";

#fv::after {
	background: url(../../img/mv/mv_flow.jpg) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.jci {
	margin-bottom: 80px;
	padding: 0;
}

#docList {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 27.5px;
}

.dlLink {
	width: 31.5%;
}

.dlLink a {
	display: block;
	padding: 20px;
	background: url(../../img/common/arrow_right_b.svg) 95% center no-repeat #fff;
	color: #000;
	font-weight: 600;
	border: 2px solid #000;
	transition: all 0.3s ease-in-out 0s;
}

.dlLink a:hover {
	transform: 
}

.dlLink a:hover {
	transform: scale(1.05);
}

.btn3,
.btn3 a {
	width: 300px;
	margin: 0 auto;
}

/* RESPONSIVE */
/* -------------------------------------------------- */
@media screen and (min-width: 1024px) {

	/* 980px以上用（PC用）の記述 */
	/* メインビジュアル */
	.sp {
		display: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

	/* 768px - 979px用（タブレット用）の記述 */
	.sp {
		display: none;
	}

	.jci {
		margin-bottom: 50px;
	}

	#docList {
		gap: 19.5px;
	}

}

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

	/* 479px以下用（スマートフォン用）の記述 */
	.pc {
		display: none;
	}

	.tablet {
		display: none;
	}

	.jci {
		margin-bottom: 50px;
	}
	
	#docList {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
		gap: 0;
	}
	
	.dlLink {
		width: 48%;
		margin-bottom: 10px;
	}

	.dlLink a {
		height: 60px;
		padding: 10px 15px;
		display: flex;
		align-items: center;
		font-size: 1.3rem;
		line-height: 1.2;
	}
}