@charset "utf-8";

/* =============================================
	style
============================================= */

/*** Flex ***/

.flex_box{
	display: flex;
	justify-content: space-between;
}

/*** <a>hover img用 ***/

a:hover img{
	opacity: 0.7;
}


/*** あいさつ部分 ***/
	
	.greeting_area{}

/*** <main>内 リンクボタン設定 ***/

/* 標準ナビボタン */

.btn_normal{
	text-align: center;
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
}

.btn_normal a{
	display: block;
	color: #215087;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 2rem 0;
	border: solid 1px #b2b2b2;
	box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
	background-image: url(../../kaisoku/img/icon_link_arrow.png);
	background-repeat: no-repeat;
	background-position: 96% center;
	background-size: auto 1.3rem;
}

.btn_normal a:hover{
	text-decoration: none;
	opacity: 0.7;
}


/*** 講師インタビュー ***/

img.banner_maxwidth{
	width: 100%;
	height: auto;
}

.merit {
	overflow: hidden;
}
.merit li{
	margin-left: 20px;
	width: 340px;
	float: left;
}
.merit li:first-child{
	margin-left: 0;
}
.merit li h4{
	margin: 0 0 10px;
	padding: 10px;
	text-align: center;
	background-color: #8ca5b7;
	color: #fff;
	font-size: 1.4rem;
}

/* ===========================================
	MediaQueries
=========================================== */
/* PC----------------------------- */
@media screen and (min-width: 768px){
	
	/*** あいさつ部分 ***/
	
	.greeting_area .greeting_img img{
		width: 100%;
		height: auto;
	}
	
	.greeting_area .greeting_text{
		display: none;
		visibility: hidden;
		overflow: hidden;
	}
	
}

/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	
	/*** Flex ***/
	
	.flex_box{
		flex-direction: column;
	}
	
	/*** あいさつ部分 ***/
	
	.greeting_area .greeting_img{
		display: none;
		visibility: hidden;
		overflow: hidden;
	}
	
	.greeting_area .greeting_text{
		font-family: "Sawarabi Mincho";
	}
	
	.greeting_area .greeting_text h4{
		margin-bottom: 0.8em;
	}
	
}

@media screen and (max-width: 767px){
.merit li{
	margin-left: 0;
	width: 100%;
	float: none;
}
	
/* print----------------------------- */
@media print{
	#footer,.page_top{ display: none; }
	body{ min-height: 0; }
}
