@charset "utf-8";
/* CSS Document */

.wrapper{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.catalog-no{
	width: 98%;
	display: flex;
	align-items: center;
	margin:0 auto 3%
}

.catalog-no:after{
	content: "";
    border-top: 2px #3a8193 solid;
	flex-grow: 1;
	margin-left: 25px;
	transform: translateY(15px);
}

.catalog-no img{
	width: 15%;
}

.all{
	display: block;
	width: 90%;
	margin: 2% auto 15%;
	text-align: center;
	background-color: #000;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	position: relative;
	line-height: 3;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}

.all:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}


@media(min-width:750px){
.catalog-no{
	width: 100%;
}
	
.catalog-no img{
	width: 8%;
}
.all{
	width: 50%;
}
}