@charset "UTF-8";
/*----------------
大学一覧ページ シャドウ
----------------*/
.university-item:hover {
	-webkit-box-shadow: -2px 10px 15px -5px rgba(0,0,0,0.75);
	-moz-box-shadow: -2px 10px 15px -5px rgba(0,0,0,0.75);
	box-shadow: -2px 10px 15px -5px rgba(0,0,0,0.75);
}

/*---------------
ユーザーページ 幅サイズ
---------------*/
@media (min-width: 65em){
	#user-page {
	    max-width: 62rem;
	}
}

html {
  -webkit-overflow-scrolling: touch;
}

/*-------------------------------
トップページ 3コンテンツイメージのアニメーション
-------------------------------*/
figure {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: rgba(26, 26, 37, 1);
}
figure h5 {
	position: absolute;
	top:40%;
	z-index: 2;
	background-color: rgba(26, 26, 37,0.7);
	-webkit-transition: .3s;
	transition: .3s;
}
figure img {
	position: relative;
	z-index: 1;
	-webkit-transition: .3s;
	transition: .3s;
}
figcaption {
	position: absolute;
	bottom: -70px;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 70px;
	background-color: rgba(26, 26, 37, 1);
	-webkit-transition: .3s;
	transition: .3s;
}
figure:hover h5 {
	-webkit-transform: translateX(-200px);
	transform: translateX(-200px);
}
figure:hover img {
	-webkit-transform: translateY(-40px);
	transform: translateY(-40px);
}
figure:hover figcaption {
	bottom: 0;
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
}
figure:hover img {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
figure:hover figcaption {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

/*-----------------------
授業ページ 先輩コメントのスタイル
-----------------------*/
.balloon-left {
 	position: relative;
	display: inline-block;
 	margin: 0 0 1.2em 10px;
	padding: 12px 10px;
	min-width: 120px;
 	max-width: 100%;
 	color: #555;
	/*font-size: 16px;*/
	background: #FFF;
 	border: solid 1px #555;
 	box-sizing: border-box;
}

.balloon-left:before{
	content: "";
	position: absolute;
	top: 50%;
	left: -16px;
 	margin-top: -8px;
	border: 8px solid transparent;
	border-right: 8px solid #FFF;
 	z-index: 2;
}

.balloon-left:after{
	content: "";
	position: absolute;
	top: 50%;
	left: -17px;
 	margin-top: -8px;
	border: 8px solid transparent;
	border-right: 8px solid #555;
 	z-index: 1;
}

.balloon-left p {
	margin: 0;
	padding: 0;
}

/*-------------------
パンくずリスト セパレータ変更
-------------------*/
.breadcrumb-item+.breadcrumb-item::before {
	content: ">";
	padding-right: 0.2rem;
}

/*---------------
ナビバー　透過
---------------*/
header.drawer-navbar {
	background-color: rgba(255,255,255,0.95);
}
nav.drawer-nav {
	background-color: rgba(255,255,255,1);
}
.drawer-navbar .drawer-navbar-header {
	background-color: rgba(255,255,255,0);
}
@media (min-width: 1024px) {
	nav.drawer-nav {
		background-color: rgba(255,255,255,0);
	}
}