@charset "utf-8";
/* CSS Document */

.content_title{
}
.content_title h2{
}
.content_title h2:after{
	content:"";
	background-image:url(../img/title-icon.jpg);
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center bottom;
	display:block;
	margin-top:40px;
	height:40px;
}

.onlineshop_wrap{
}
.onlineshop_wrap .content_inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	ms-flex-align: start;
	align-items: start;
}
.onlineshop_wrap .content_inner > div{
	width:45%;
}
@media screen and (max-width: 1200px){
}

@media screen and (max-width: 767px) {
	
	.content_title{
	}
	.content_title h2:after{
		margin-top:7vw;
		height:10vw;
	}
	
	.onlineshop_wrap{
		margin:20vw 0;
	}
	.onlineshop_wrap .content_inner > div{
		width:100%;
	}
	.onlineshop_wrap .content_inner > div:first-of-type{
		margin-bottom:20vw;
	}

}