@charset "UTF-8";

/* *******************************************************************************************
*
*	トップ
*
******************************************************************************************* */

/* ----------------------------- ビジュアル ----------------------------- */

.visual{
	position: relative;
	width: 100%;
	min-height: 474px;
}
.visual_list{
	width: 100%;
	height: 100%;
}
.visual_list_item{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 5;
    opacity: 0;
}
.visual_list_item.fadeIn{
	-webkit-animation: visualFadeIn 4s ease 0s 1 normal both;
	animation: visualFadeIn 4s ease 0s 1 normal both;
	z-index: 10;
}
.visual_list_item.fadeOut{
	-webkit-animation: visualFadeOut 4s ease 0s 1 normal both;
	animation: visualFadeOut 4s ease 0s 1 normal both;
	z-index: 5;
}
@-webkit-keyframes visualFadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
@keyframes visualFadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
@-webkit-keyframes visualFadeOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
	}
}
@keyframes visualFadeOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
	}
}
.visual-1{
	background: url(../img/index/visual_img_01_pc_sgc.jpg?v=190718) center center no-repeat;
	background-size: cover;
}
.visual-2{
	background: url(../img/index/visual_img_02_pc_sgc.jpg?v=190718) center center no-repeat;
	background-size: cover;
}
.visual_copy{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -490px;
	width: 460px;
	z-index: 20;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

@media screen and (max-width : 768px){
	.visual{
		width: 100%;
		min-height: 385px;
	}
	.visual-1{
		background: url(../img/index/visual_img_01_sp_sgc.jpg?v=190718) center center no-repeat;
		background-size: cover;
	}
	.visual-2{
		background: url(../img/index/visual_img_02_sp_sgc.jpg?v=190718) center center no-repeat;
		background-size: cover;
	}
	.visual_copy{
		top: 30px;
		left: 25px;
		margin-left: 0;
		width: 261px;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

/* ----------------------------- 入試情報 ----------------------------- */

.entryInfo{
	background: #fff2f2;
	border-top: 5px solid #f31669;
	border-bottom: 1px solid #f31669;
}
.entryInfo_inner{
	margin: 0 auto;
	padding: 33px 0;
	max-width: 980px;
	text-align: center;
}
.entryInfo_ttl{
	display: inline-block;
	margin-bottom: 18px;
	padding-left: 25px;
	font-size: 16px;
	line-height: 17px;
	font-weight: bold;
	background: url(../img/index/icon_sakura.png) 0 center no-repeat;
	background-size: 17px auto;
}
.entryInfo_link{
	color: #f31669;
	font-size: 18px;
	line-height: 24px;
}

@media screen and (max-width : 768px){
	.entryInfo_inner{
		padding: 18px 15px;
	}
	.entryInfo_ttl{
		margin-bottom: 12px;
	}
	.entryInfo_link{
		font-size: 15px;
		line-height: 28px;
	}
}

/* ----------------------------- 重要なお知らせ ----------------------------- */

.infoBar_inner{
	margin: 0 auto;
	max-width: 980px;
	font-size: 14px;
	line-height: 34px;
}
.infoBar_ttl{
	float: left;
	padding-left: 6px;
	width: 13%;
	color: #ee3166;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.infoBar_feed{
	float: left;
	width: 87%;
	color: #000;
}
.infoBar_feed_list{
	position: relative;
	height: 34px;
	overflow: hidden;
}
.infoBar_feed_list_item{
	position: absolute;
	display: block;
	top: 34px;
	left: 0;
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
    opacity: 0;
    overflow: hidden;
}
.infoBar_feed_list_item.fadeIn{
	-webkit-animation: feedFadeIn 2s ease 0s 1 normal both;
	animation: feedFadeIn 2s ease 0s 1 normal both;
}
.infoBar_feed_list_item.fadeOut{
	-webkit-animation: feedFadeOut 2s ease 0s 1 normal both;
	animation: feedFadeOut 2s ease 0s 1 normal both;
}
@-webkit-keyframes feedFadeIn{
	from{
		top: 34px;
		opacity: 0;
	}
	to{
		top: 0;
		opacity: 1;
	}
}
@keyframes feedFadeIn{
	from{
		top: 34px;
		opacity: 0;
	}
	to{
		top: 0;
		opacity: 1;
	}
}
@-webkit-keyframes feedFadeOut{
	from{
		top: 0;
		opacity: 1;
	}
	to{
		top: -34px;
		opacity: 0;
	}
}
@keyframes feedFadeOut{
	from{
		top: 0;
		opacity: 1;
	}
	to{
		top: -34px;
		opacity: 0;
	}
}

@media screen and (max-width : 768px){
	.infoBar_inner{
		padding: 15px;
		width: 100%;
		font-size: 12px;
		line-height: 20px;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.infoBar_ttl{
		float: none;
		padding-left: 0;
		width: 100%;
	}
	.infoBar_feed{
		float: none;
		width: 100%;
	}
	.infoBar_feed_list{
		height: 40px;
	}
	.infoBar_feed_list_item{
		top: 40px;
		white-space: normal;
	}
	@-webkit-keyframes feedFadeIn{
		from{
			top: 40px;
			opacity: 0;
		}
		to{
			top: 0;
			opacity: 1;
		}
	}
	@keyframes feedFadeIn{
		from{
			top: 40px;
			opacity: 0;
		}
		to{
			top: 0;
			opacity: 1;
		}
	}
	@-webkit-keyframes feedFadeOut{
		from{
			top: 0;
			opacity: 1;
		}
		to{
			top: -40px;
			opacity: 0;
		}
	}
	@keyframes feedFadeOut{
		from{
			top: 0;
			opacity: 1;
		}
		to{
			top: -40px;
			opacity: 0;
		}
	}
}

/* ----------------------------- SP カテゴリーナビ ----------------------------- */

@media screen and (max-width : 768px){
	.catNav_list_item{
		float: left;
		width: 50%;
	}
	.catNav_list_item a{
		display: block;
		height: 53px;
		color: #fff;
		font-size: 18px;
		line-height: 53px;
		font-weight: bold;
		text-align: center;
	}
	.catNav_list_item.item-student1 a{
		background: #f15a85;
	}
	.catNav_list_item.item-student2 a{
		background: #4eb2df;
	}
}

/* ----------------------------- ピックアップ ----------------------------- */

.pickup{
	padding: 80px 0;
	background: url(../img/index/pickup_bg_pc.png) center 282px repeat-x;
}
.pickup_inner{
	margin: 0 auto;
	max-width: 1020px;
}
.pickup_ttl{
	margin-bottom: 20px;
	color: #999;
	font-size: 16px;
	line-height: 1em;
	text-align: center;
}
.pickup_ttl .en{
	display: block;
	margin: 0 auto;
	margin-bottom: 14px;
	width: 146px;
}
.pickup_list{
	display: none;
}
.pickup_list.slick-initialized{
	display: block;
}
.pickup_list_item{
	padding: 20px;
	width: calc(33.33% - 40px);
}
/* override ---> */
.pickup .slick-track{
	display: flex;
}
.pickup .slick-slide{
    float: none;
    height: auto;
    min-height: 0;
}
.pickup .slick-prev{
	top: 139px;
	left: -47px;
}
.pickup .slick-next{
	top: 139px;
	right: -47px;
}
@media screen and (max-width : 1114px){
	.pickup .slick-prev{
		left: 0;
	}
	.pickup .slick-next{
		right: 0;
	}
}
/* <--- override */
.pickup_list_item_link{
	position: relative;
	display: block;
	height: 100%;
	background: #fff;
}
.pickup_list_item_link:hover{
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, .25);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, .25);
}
.pickup_list_item_img{
	position: relative;
}
.pickup_list_item_img_label{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	padding: 5px 7px;
	color: #fff;
	font-size: 12px;
	line-height: 16px;
	background: rgba(3,146,210,.85);
}
.pickup_list_item_img_label span{
	float: left;
	display: inline-block;
}
.pickup_list_item_img_label_separate{
	margin-right: 5px;
	padding-right: 11px;
	background: url(../img/common/icon_separate.png) right center no-repeat;
	background-size: 5px auto;
}
.pickup_list_item_img_label small{
	font-size: 10px;
	line-height: 12px;
}
.pickup_list_item_info{
	position: relative;
	padding: 13px 20px 38px 20px;
}
.pickup_list_item_info_txt{
	font-size: 16px;
	line-height: 26px;
}
.pickup_list_item_info_cat{
	position: absolute;
	bottom: 13px;
	left: 20px;
	color: #009ce2;
	font-size: 14px;
	line-height: 22px;
}

@media screen and (max-width : 768px){
	.pickup{
		padding: 25px 0 52px 0;
		background: none;
	}
	.pickup_inner{
		width: 100%;
	}
	.pickup_ttl{
		margin-bottom: 12px;
		font-size: 14px;
		line-height: 1em;
	}
	.pickup_ttl .en{
		margin-bottom: 6px;
		width: 97px;
	}
	.pickup_list{
		padding: 0 8px;
		background: url(../img/index/pickup_bg_sp.png) center center repeat-x;
		background-size: 7px 50px;
	}
	.pickup_list_item{
		padding: 8px;
		width: 50%;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	/* override ---> */
	.pickup .slick-prev{
		top: auto;
		left: 23px;
	}
	.pickup .slick-next{
		top: auto;
		right: 23px;
	}
	/* <--- override */
	.pickup_list_item_link{
		-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, .25);
		box-shadow: 0px 0px 4px rgba(0, 0, 0, .25);
	}
	.pickup_list_item_link:hover{
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	.pickup_list_item_img_label{
		padding: 4px 5px;
	}
	.pickup_list_item_img_label small{
		display: inline;
		font-size: 12px;
		line-height: 1em;
	}
	.pickup_list_item_info{
		padding: 10px 12px 30px 12px;
	}
	.pickup_list_item_info_txt{
		font-size: 15px;
		line-height: 20px;
	}
	.pickup_list_item_info_cat{
		bottom: 10px;
		left: 12px;
		font-size: 12px;
		line-height: 1em;
	}
}

/* ----------------------------- ニュース ----------------------------- */

.news{
	padding: 70px 0 90px 0;
	background: #f4f9fb;
}
.news_inner{
	margin: 0 auto;
	max-width: 1020px;
}
.news_ttl{
	margin-bottom: 40px;
	color: #999;
	font-size: 16px;
	line-height: 1em;
	text-align: center;
}
.news_ttl .en{
	display: block;
	margin: 0 auto;
	margin-bottom: 14px;
	width: 106px;
}
.news_tab{
	margin: 0 auto 50px auto;
	width: 640px;
	background: #fff;
}
.news_tab_item{
	position: relative;
	float: left;
	width: 213px;
}
.news_tab_item:after{
	position: absolute;
	content: '';
	top: 50%;
	right: 0;
	width: 1px;
	height: 28px;
	background: #dbe0e4;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.news_tab_item:last-child:after{
	background: none;
}
.news_tab_item a{
	position: relative;
	display: block;
	height: 40px;
	color: #009ce2;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
}
.news_tab_item a:hover{
	color: #a3d1f1;
}
.news_tab_item.tab-active a:hover{
	color: #009ce2;
}
.news_tab_item a:before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0px;
	background: #009ce2;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.news_tab_item.tab-active a:before{
	height: 3px;
}
.news_tab_item.tab-active a:after{
	position: absolute;
	content: '';
	bottom: -7px;
	left: 0;
	width: 100%;
	height: 7px;
	background: url(../img/common/icon_news_active_down.png) center -7px no-repeat;
	background-size: 7px 7px;
	z-index: 10;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: arrowActiveIn;
	animation-name: arrowActiveIn;
}
@-webkit-keyframes arrowActiveIn{
	from{
		background-position: center -7px;
	}
	to{
		background-position: center 0;
	}
}
@keyframes arrowActiveIn{
	from{
		background-position: center -7px;
	}
	to{
		background-position: center 0;
	}
}
.news_main_content{
	opacity: 0;
}
.news_main_content_list{
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0;
}
.news_main_content_list:first-child{
	padding-top: 0;
}
.news_main_content_list:nth-child(2){
	padding-bottom: 0;
}
.news_main_content_list_item{
	position: relative;
	display: flex;
	padding: 0 20px;
	width: 25%;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.news_main_content_list_item:after{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #d5dde2;
}
.news_main_content_list_item:last-child:after{
	width: 0;
	background: none;
}
.news_main_content_list_item_link{
	position: relative;
	display: block;
}
.news_main_content_list_item_link:after{
	position: absolute;
	content: '';
	bottom: -20px;
	width: 100%;
	height: 1px;
	background: #d5dde2;
}
.news_main_content .news_main_content_list:nth-child(2) .news_main_content_list_item_link:after{
	height: 0;
	background: none;
}
.news_main_content_list_item_img{
	position: relative;
	margin-bottom: 10px;
}
.news_main_content_list_item_img_label{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	padding: 0 4px;
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.06em;
	background: rgba(3,146,210,.85);
}
.news_main_content_list_item_img_label span{
	display: inline-block;
	padding: 0 6px;
	vertical-align: top;
}
.news_main_content_list_item_img_label span.news_main_content_list_item_img_label_separate{
	padding-right: 11px;
	background: url(../img/common/icon_separate.png) right center no-repeat;
	background-size: 5px auto;
}
.news_main_content_list_item_info{
	margin-bottom: 8px;
	overflow: hidden;
}
.news_main_content_list_item_info_cat{
	float: left;
	display: inline-block;
	padding: 0 4px;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: -0.06em;
	background: #009ce2;
}
.news_main_content_list_item_info_date{
	float: right;
	display: inline-block;
	font-size: 12px;
	line-height: 18px;
}
.news_main_content_list_item_txt{
	font-size: 14px;
	line-height: 24px;
}
.news_main_content_list_item_spot{
	margin-top: 8px;
	padding-left: 20px;
	font-size: 12px;
	line-height: 18px;
	background: url(../img/common/icon_spot.png) 0 center no-repeat;
	background-size: 10px 16px;
}
.news_main_content_btm{
	margin: 40px auto 0 auto;
	width: 300px;
}
.news_main_content_info{
	margin: 0 auto;
	width: calc(100% - 40px);
	background: #fff;
}
.news_main_content_info_item{
	display: block;
	padding: 20px;
	border-top: 1px solid #dbe0e4;
}
.news_main_content_info_item:first-child{
	border-top: 0;
}
.news_main_content_info_item a{
	display: block;
}
.news_main_content_info_item_date{
	display: inline-block;
	padding-right: 15px;
	font-size: 12px;
	line-height: 18px;
}
.news_main_content_info_item_cat{
	display: inline-block;
	padding: 0 4px;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: -0.06em;
	background: #009ce2;
}
.news_main_content_info_item_txt{
	margin-top: 8px;
	font-size: 14px;
	line-height: 24px;
}

@media screen and (max-width : 768px){
	.news{
		padding: 25px 0;
	}
	.news_inner{
		width: 100%;
	}
	.news_ttl{
		margin-bottom: 20px;
		font-size: 14px;
		line-height: 1em;
	}
	.news_ttl .en{
		margin-bottom: 6px;
		width: 70px;
	}
	.news_tab{
		margin: 0 auto 25px auto;
		width: -webkit-calc(100% - 30px);
		width: calc(100% - 30px);
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.news_tab_item{
		width: 33.33%;
	}
	.news_tab_item:after{
		height: 38px;
	}
	.news_tab_item:last-child:after{
		background: none;
	}
	.news_tab_item a{
		height: 49px;
		line-height: 49px;
	}
	.news_tab_item a:hover{
		color: #009ce2;
	}
	.news_main_content_list{
		display: block;
		padding: 0;
	}
	.news_main_content_list.pc{
		display: none;
	}
	.news_main_content_list_item{
		padding: 20px 15px;
		width: 100%;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.news_main_content_list_item.pc{
		display: none;
	}
	.news_main_content_list_item:first-child{
		padding-top: 0;
	}
	.news_main_content_list_item:after{
		left: 0;
		width: 100%;
		height: 1px;
	}
	.news_main_content_list_item:first-child:after{
		height: 0;
		background: none;
	}
	.news_main_content_list_item_link{
		overflow: hidden;
	}
	.news_main_content_list_item_link:after{
		height: 0;
		background: none;
	}
	.news_main_content .news_main_content_list:nth-child(2) .news_main_content_list_item_link:after{
		height: 0;
		background: none;
	}
	.news_main_content_list_item_img{
		float: left;
		width: 118px;
		margin-bottom: 0;
		margin-right: 10px;
	}
	#event .news_main_content_list_item_img{
		padding-top: 29px;
	}
	.news_main_content_list_item_img_label{
		padding: 0 4px;
		width: 100%;
		font-size: 14px;
		line-height: 29px;
		text-align: center;
		background: #009ce2;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.news_main_content_list_item_img_label span{
		padding: 0 4px;
	}
	.news_main_content_list_item_info{
		margin-bottom: 5px;
	}
	.news_main_content_list_item_info_cat{
		font-size: 11px;
		line-height: 19px;
	}
	.news_main_content_list_item_info_date{
		font-size: 11px;
		line-height: 19px;
	}
	.news_main_content_list_item_txt{
		padding-left: 128px;
		font-size: 14px;
		line-height: 24px;
	}
	.news_main_content_list_item_spot{
		margin-top: 5px;
		padding-left: 151px;
		font-size: 12px;
		line-height: 22px;
		background: url(../img/common/icon_spot.png) 128px center no-repeat;
		background-size: 14px 22px;
	}
	.news_main_content_btm{
		margin: 20px auto 0 auto;
		padding: 0 15px;
		width: 100%;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.news_main_content_info{
		width: 100%;
		background: none;
	}
	.news_main_content_info_item{
		padding: 15px;
	}
	.news_main_content_info_item:first-child{
		padding-top: 0;
		border-top: 0;
	}
	.news_main_content_info_item_date{
		padding-right: 12px;
		font-size: 12px;
		line-height: 19px;
	}
	.news_main_content_info_item_cat{
		font-size: 12px;
		line-height: 19px;
	}
	.news_main_content_info_item_txt{
		margin-top: 5px;
		font-size: 14px;
		line-height: 24px;
	}
}

/* ----------------------------- 特色 ----------------------------- */

.features{
	height: 533px;
	background: url(../img/index/features_bg_pc.png) center 0 no-repeat;
	background-size: cover;
}
.features_inner{
	margin: 0 auto;
	max-width: 980px;
	text-align: center;
}
.features_copy{
	margin: 0 auto 35px auto;
	padding-top: 118px;
	width: 461px;
}
.features_txt{
	margin-bottom: 60px;
	color: #fff;
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
}
.features_btm{
	margin: 0 auto;
	width: 340px;
}
.features_more_btn{
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	color: #fff;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	background: #333;
	-webkit-border-radius: 20px;
	border-radius: 20px;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.features_more_btn:after{
	position: absolute;
	content: '';
	top: 0;
	right: 15px;
	width: 7px;
	height: 38px;
	background: url(../img/common/icon_arrow_r_blue.png) right center no-repeat;
	background-size: 7px 11px;
}
.features_more_btn:hover{
	color: #333;
	background: #fff;
}

@media screen and (max-width : 1920px){
	.features{
		background-size: auto auto;
	}
}

@media screen and (max-width : 768px){
	.features{
		height: auto;
		background: url(../img/index/features_bg_sp.png) center 0 no-repeat;
		background-size: cover;
	}
	.features_inner{
		padding: 0 15px 35px 15px;
	}
	.features_copy{
		margin: 0 auto 22px auto;
		padding-top: 58px;
		width: 300px;
	}
	.features_txt{
		margin-bottom: 27px;
		padding: 0 15px;
		font-size: 14px;
		line-height: 24px;
	}
	.features_btm{
		width: 100%;
	}
	.features_more_btn{
		height: 50px;
		line-height: 50px;
		-webkit-border-radius: 25px;
		border-radius: 25px;
	}
	.features_more_btn:after{
		right: 19px;
		height: 50px;
	}
	.features_more_btn:hover{
		color: #fff;
		background: #333;
	}
}

/* ----------------------------- 学部 ----------------------------- */

.faculty{
	padding: 80px 0;
}
.faculty_inner{
	margin: 0 auto;
	padding: 40px 30px 45px 45px;
	max-width: 980px;
	background: #f8f8f8;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.faculty_l{
	float: left;
	width: 32%;
}
.faculty_l_inner{
	padding-right: 33px;
}
.faculty_l_ttl{
	margin-bottom: 34px;
	font-size: 40px;
	line-height: 50px;
}
.faculty_l_txt{
	margin-bottom: 64px;
	font-size: 14px;
	line-height: 24px;
}
.faculty_r{
	float: left;
	width: 68%;
	overflow: hidden;
}
.faculty_r_img{
	float: left;
	padding-top: 5px;
	padding-right: 34px;
	width: 63%;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.faculty_r_content{
	float: left;
	width: 37%;
}
.faculty_r_content_clm{
	margin-bottom: 17px;
}
.faculty_r_content_clm_ttl{
	margin-bottom: 3px;
	padding-left: 7px;
	font-size: 16px;
	line-height: 18px;
}
.faculty_r_content_clm_ttl.clm_ttl-1{
	border-left: 2px solid #0078ea;
}
.faculty_r_content_clm_ttl.clm_ttl-2{
	border-left: 2px solid #f0588a;
}
.faculty_r_content_clm_ttl.clm_ttl-3{
	border-left: 2px solid #00be78;
}
.faculty_r_content_clm_ttl.clm_ttl-4{
	border-left: 2px solid #edd224;
}
.faculty_r_content_clm_ttl.clm_ttl-5{
	border-left: 2px solid #ff785b;
}
.faculty_r_content_clm_txt{
	padding-left: 9px;
	color: #666;
	font-size: 12px;
	line-height: 18px;
}

@media screen and (max-width : 768px){
	.faculty{
		padding: 25px 15px 40px 15px;
	}
	.faculty_inner{
		padding: 20px 20px 25px 20px;
	}
	.faculty_l{
		float: none;
		width: 100%;
	}
	.faculty_l_inner{
		padding-right: 0;
	}
	.faculty_l_ttl{
		margin-bottom: 8px;
		max-width: 305px;
		font-size: 25px;
		line-height: 32px;
	}
	.faculty_l_img{
		margin: 0 auto 18px auto;
		padding: 0 18px;
		max-width: 286px;
	}
	.faculty_l_txt{
		margin-bottom: 20px;
	}
}

/* ----------------------------- 各コンテンツ ----------------------------- */

.contentsBnr{
	padding: 70px 0 80px 0;
}
.contentsBnr_inner{
	margin: 0 auto;
	max-width: 980px;
}
.contentsBnr_clm_item{
	float: left;
	padding: 0 20px 0 0;
	width: 50%;
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.contentsBnr_clm_item:last-child{
	padding: 0 0 0 20px;
}

@media screen and (max-width : 768px){
	.contentsBnr{
		padding: 25px 0 15px 0;
	}
	.contentsBnr_inner{
		padding: 0 15px;
		width: 100%;
		-webkit-box-sizing:border-box;
	    box-sizing:border-box;
	}
	.contentsBnr_clm_item{
		padding: 0;
		margin-bottom: 25px;
		width: 100%;
	}
	.contentsBnr_clm_item:last-child{
		padding: 0;
	}
}
