@charset "utf-8";

.catalog_dl{
	display: flex;
	justify-content: space-between;
	background: #fff;
	padding: 50px 40px;
}
.catalog_dl + .catalog_dl{
	margin-top: 30px;
}
.catalog_dl .img{
	width: 220px;
}
.catalog_dl .img img{
	width: 100%;
	height: auto;
}
.catalog_dl .img + .txt{
	position: relative;
	width: calc(100% - 250px);
	padding-bottom: 70px;
}
.catalog_dl .txt .detail{
	font-size: 160%;
	font-weight: 700;
	color: #2a8fc9;
}
.catalog_dl .img + .txt .link{
	position: absolute;
	bottom: 0;
	left: 0;
}
.catalog_dl .no_img {
	margin: 0 auto;
}
.catalog_dl .no_img .link {
    text-align: center;
}
.catalog_dl .no_img .detail + .link {
    margin-top: 10px;
}
.catalog_dl .txt .link a{
	display: block;
	transition: 0.3s;
}
.catalog_dl .txt .link a:hover{
	opacity: 0.7;
}
.wrap {
	width:1000px;
	margin: 0 auto;
}
	
@media screen and (max-width: 1000px) {
	.wrap {
		width:90%;
		margin: 0 auto;
	}	
}
@media screen and (max-width: 768px) {
	.catalog_dl{
		display: block;
		padding: 7% 5%;
	}
	.catalog_dl .img{
		width: 50%;
		margin: 0 auto 5%;
	}
	.catalog_dl .img + .txt{
		width: auto;
		padding: 0;
	}
	.catalog_dl .txt .detail{
		font-size: 120%;
	}
	.catalog_dl .img + .txt .link{
		position: relative;
		bottom: auto;
		left: auto;
	}
	.catalog_dl .txt .detail + .link{
		margin-top: 5%;
	}
	.catalog_dl + .catalog_dl{
		margin-top: 10%;
	}