@charset "UTF-8";

/*******************************
 
#hero Css
 
*******************************/
.page #hero{
    background-image: url("../img/img_main.jpg");
}

/*******************************
 
サイドナビゲーション Css
 
*******************************/
.page-col-2 .side .navi dd:nth-of-type(1) a {
    background: #ebe1cc;
}
/*******************************
 
.contents Css
 
*******************************/
section{
    margin-bottom: 70px;
	padding-top: 120px;
}
section h4{
    font-size: 18px;
    font-weight: bold;
    margin: 36px 0 15px;
}
section .list{
    margin-bottom: 20px;
    padding-bottom: 25px;
}
section .list ul li{
    margin-bottom: 10px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    section{
        margin-bottom: 40px;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	section{padding-top: 0px;}
}


/*並べる*/
.contents-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contents-box {
	width: 48%;
    margin: 10px 0 -40px 0;
}

.contents-box img {
	display: block;
	margin-bottom: 3rem;
	width: 100%;
	height: auto;
}

.contents-box h2 {
	margin-bottom: 2rem;
	font-size: 2.2rem;
	text-align: center;
}

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

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