@charset "utf-8";

/* カスタマイズ用CSS */

#modal_bg{
	width: 100%;
	height: 100vh;
	position: fixed;
	top:0;
	left: 0;
	background-color:rgba(0,0,0,0.5);
	opacity:0;
	z-index:-1;
	transition:opacity 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
#modal_bg.active{
	opacity:1;
	z-index:10;	
}
.modal_area{
	background-color: #fff;
	border-radius: 3px;
	position: relative;
}
.btn-wrap{
	display: block;
	margin: 2rem 0;
}
.btn-blue.dlbtn{
	display: block;
	background-color: #247ccf;
	background-image: url(/common/images/ico_dl.png);
	background-position: top 22px left 25px;
	background-repeat: no-repeat;
	margin:0 auto;
}
.btn-blue.dlbtn:hover{
	/* text-decoration: none; */
    background-color: #348fe4;
}
.btn-blue.dlbtn .text{
	display: inline-block;
	position: absolute;
	left:50%;
	top:50%;
	transform: translateY(-50%) translateX(calc(-50% + 20px));
}
.addDldoc{
	padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
}
.addDldoc h3{
	text-align: center;
}
.addDldoc .flexitem{
	text-align: center;
	margin:30px 50px;
}
.flexitem dt{
	font-weight: bold;
	margin-bottom: 10px;
}
.flexitem dd{margin-left: 0;}
.flexitem .img-dd{
	display: inline-block;
	min-height:170px;
	vertical-align: middle;
	box-sizing: border-box;
	margin-bottom: 10px;
	img{
		border: 1px solid #ccc;
	}
}
.flexitem .img-dd.horizonal{padding-top: 30px}
.flexitem .btn-dd .btn-blue.dlbtn{
	    height: 40px;
        width: 210px;
	    background-position: top 12px left 25px;
		padding: 1px 18px 1px 0;
}
.flexitem .btn-dd .btn-blue.dlbtn .text{transform: translateY(-48%) translateX(calc(-50% + 20px));}
@media screen and (min-width:769px){
	.completion{ margin: 0 auto;}
	.completion:not(:first-of-type) {
	    margin: 0 auto 200px;
	}
	.addDldoc .flex{
		display: flex;
		justify-content:center;
		align-items: center;
	}

}
@media screen and (max-width:768px){
	a[href$=".pdf"].btn-blue.dlbtn { padding:0;}
	.flexitem{margin-bottom: 30px;}
}

