@charset "UTF-8";


/*   Contents   */
.wrapper{
	width: 1000px;
	margin: 0 auto;
	
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	
	justify-content:space-between;
}

.back_color{
	background-color: var(--back-color);
}

.main_heading_h2{
	font-family: var(--heading-font);
	
	font-size:3.0rem;
	line-height:1.0;
	font-weight: 600;
	text-align:center;
	text-decoration: none;
	letter-spacing: 0.2em;
	
	padding: 0 0 50px 0;
}



/*   smart phone   */
@media screen and (max-width:640px) {
/*   Contents   */
.wrapper{
	width: 100%;
	margin: 0 auto;
	
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	
	justify-content:space-between;
}

.back_color{
	background-color: var(--back-color);
}

.main_heading_h2{
	font-family: var(--heading-font);
	
	font-size:2.0rem;
	line-height:1.0;
	font-weight: 600;
	text-align:center;
	text-decoration: none;
	letter-spacing: 0.2em;
	
	padding: 0 0 25px 0;
}
}