@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;
}


/* 24リニューアル調整 */
.note_box{
  margin: 20px 0;
  padding: 15px;
  border: 1px solid var(--line-light);
}


/* ===========================================
	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;
	}
	
  /* 24リニューアル調整 */
  .note_box{
    margin: 20px 0;
    padding: 40px;
    border: 1px solid var(--line-light);
  }
  .greeting_area .greeting_img {
    text-align: center;
  }
  .greeting_area .greeting_img img{
    max-width: 100%;
    width: auto;
  }
}

/* スマホ----------------------------- */
@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;
	}
	
}


/* print----------------------------- */
@media print{
	#footer,.page_top{ display: none; }
	body{ min-height: 0; }
}
