/* CSS Document */
.contents-header{
	background: #333 url("../img/bg_help.jpg") center top no-repeat;
}
@media screen and (max-width:600px){
	.contents-header{
		background: #333 url("../img/bg_help_sp.jpg") center center no-repeat;
	}
}

/*マニュアル・ヘルプ*/

.help-list {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}

.help-list li {
	width: calc(100% / 2);
	display: block;
	overflow: hidden;
	padding: 30px 20px;
}

.help-list h3 {
	display: inline-block;
	font-size: 20px;
    font-weight: 800;
    color: #003366;
	margin-left: 10px;
}

.product-logo {
	display: inline-block;
	width: 180px;
}

.help-list div {
	display: inline-block;
	padding: 10px 0;
	vertical-align: top;
	margin: 0 auto;
}

.sp {display: none;}


/*共通ボタン*/

.dl-btn {
	display: block;
	margin: 0 auto;
	padding: 10px;
	width: 170px;
	text-align: center;
	border: 1px solid #333;
	transition: all 300ms 0s ease;
}

.dl-btn:hover {
	background-color: #333;
	color: #fff;
}

.dl-bottom {
	display: block;
	text-align: center;
	margin: 5px;
	font-size: 12px;
	line-height: 1.3;
}

@media screen and (max-width:1024px){
	
	.sp {display: inline-block;}

	.help-list div p {
		height: 70px;
	}	
}

@media screen and (max-width:500px){
	.help-list{
		margin-top: 15px;
	}

	.help-list div p {
		height: auto;
		margin-bottom: 20px;
	}
	
	.product-logo {
		display: block;
		width: 100px;
		margin: 0 auto 20px;
	}
	.help-list h3{
		margin-left: 0;

}