
/* -------
	Link Style
------- */
.contents-box1 a:hover {
	-webkit-transition: 0.1s ease;
	-moz-transition: 0.1s ease;
	-o-transition: 0.1s ease;
	transition: 0.1s ease;
}


/* -------
	Section
------- */

.section {
	margin: 0 0 7rem;
	padding: 5rem 0;
	border-bottom: 1px dashed #dcdcdc;
}

.section-area {
	margin: 0 auto;
	width: 1064px;
}

@media screen and (max-width: 1064px){
	.section-area {
		width: 100%;
	}
}

.section-title {
	margin: 0 0 5rem;
	font-size: 2.0rem;
	text-align: center;
}




/*////////////////////////*/

.contents-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


.contents-box1 {
	margin-bottom: 2rem;
	padding: 1.5rem;
	width: 32%;
	background-color: #ffffff;
	border: solid 1px #dbdbdb;
	position:relative
}


.contents-box1 img {
	display: block;
	margin-bottom: 2rem;
	width: 100%;
	height: auto;
opacity:1;
}

.contents-box1:hover img {
opacity:0.1;
}

.contents-box1 h2 {
	margin-bottom: 1.3rem;
	font-size: 1.3rem;
	text-align: center;
	line-height:1.5;
}


.contents-box1 .overView{
  opacity: 0;
    padding: 1.5rem;
    position:absolute;
    bottom: 45%;
    right:0;
    left: 0;
    text-align: center;
}


.contents-box1 .overView:hover{
opacity:1;
}




.btnArea{
	text-align: center;
margin:20px;
}


.btnArea p{
	display:inline-block;
	vertical-align: middle;
	text-align: center;
}



.btnArea p.btnMore{ padding-right: 5px;
}

.btnArea p.btnGoCart{ padding-left: 5px;
}



.btnMore a{
	width: 100%; height: 100%;
padding:5px 10px;
	border:1px solid #00a273;
	background: #FFFFFF;
	color: #00a273;
	font-size: 14px;
	text-decoration: none;
	line-height: 38px;
	letter-spacing: -0.05em;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.btnGoCart a{
	width: 100%; height: 100%;
padding:5px 10px;
	background: #00a273;
	color: #FFFFFF;
	font-size: 14px;
	text-decoration: none;
	line-height: 30px;
	letter-spacing: 0.05em;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.btnArea a:hover{opacity: .6;}


@media screen and (max-width: 980px){
	.contents-box1 {
		width: 49%;
	}
}

@media screen and (max-width: 700px){
	.contents-wrap {
		flex-direction: column;
	}

	.contents-box1 {
		width: 100%;
	}
}


/*////////////////////////*/

.contents-wrap-section {
	display: flex;
	justify-content: space-between;
	margin-bottom: 7rem;
}
.contents-wrap-section:nth-child(odd) {
	flex-direction: row-reverse;
}

.contents-text {
	width: 60%; /*flex: 2;*/
}
.contents-img {
	width: 35%; /*flex: 1;*/
}

.contents-text h2 {
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

.contents-img img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 700px){
	.contents-wrap-section,
	.contents-wrap-section:nth-child(odd)  {
		flex-direction: column;
	}

	.contents-text,
	.contents-img {
		width: 100%; /*flex: 1;*/
	}

	.contents-text {
		padding: 3rem;
	}

	.contents-text h2 {
		text-align: center;
	}
}




