@charset "utf-8";





/* section */

section {
    width: 100%;
    padding: 0 0 80px;
    position: relative;
}
section img {max-width:100%;}

@media only screen and (max-width:640px){
    
    section {
        padding:30px 0 0;
    }
}





/* products */

section ul {
	width:90%;
	max-width:1000px;
	margin:50px auto 0;
	display:flex; flex-flow:row wrap; justify-content:space-between; align-content:stretch; align-items:stretch;
}
section ul li {width:48%; margin:20px 0;}
section ul li a ,
section ul li span {display:flex; flex-flow:row wrap; justify-content:center; align-content:center; align-items:center;}
section ul li img {z-index:1;}
section ul li small {
	margin:-16px 0 0;
	padding:0 25px;
	color:#748cad;
	font-size:1.1rem;
	text-align:center;
	border-radius:50px;
	border:solid 2px #748cad;
	background:#fff;
	z-index:100;
}
section ul li h3 {
	width:100%;
	margin:10px auto;
	color: #748cad;
	font-size:1.8rem;
	font-weight:900;
	text-align:center;
	line-height:1.5;
	letter-spacing:0;
}
section ul li h3 span {
	display:block;
	font-size:1.2rem;
}
section ul li p {
	margin:0 auto;
	letter-spacing:0;
}

@media only screen and (max-width:640px){

	section ul li {width:100%; margin:0 0 100px;}
	section ul li small {
		margin:-28px 0 0;
		padding:0 35px;
		font-size:1.5rem;
	}
	section ul li h3 {
		margin:15px auto;
		font-size:2.2rem;
		line-height:1.3;
	}
	section ul li h3 span {font-size:1.5rem;}
	section ul li p {width:86%;}
}




