@charset "utf-8";

/* -------------------------------------------------------------*/
/* SiteName : AI-UNIVERSITY */
/* FileName : contents.css */
/* Add Day : 2019/12/04(Wed) */
/* Udt Day : 2019/12/04(Wed) */
/* Copyright : ZENEI-PRO */
/* == TOC ======================================================*/
/* 1 : */
/*--------------------------------------------------------------*/

/* ------------ 主要ブラウザのベンダープレフィックス */
/* -moz-     …… Firefox */
/* -webkit-  …… Chrome、Safari */
/* -o-       …… Opera */
/* -ms-      …… IE8～ */
/* ベンダープレフィックス指定無しも明記 */

/*--------------------------------------------------------------*/
/*	basic style */
/*  font-sizeのパーセント表記一覧 */
/*  表示したいサイズ / 基本サイズ * 100(小数点以下切り上げ) */
/*  基本サイズ16pxの場合 */
/*--------------------------------------------------------------*/
html{
	font-size: 62.5%;
}
body{
	width: 100%;
	color: #333;
	background: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	/*
	font-family: "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-family: "Noto Sans Japanese", "游ゴシック", YuGothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	*/
	min-width: 1000px;
}
@media screen and (max-width: 767px){
	body{
		min-width: unset;
	}
}
.pc{
	display: block;
}
@media screen and (max-width: 767px){
	.pc{
		display: none;
	}
}
.sp{
	display: none;
}
@media screen and (max-width: 767px){
	.sp{
		display: block;
	}
}

/*--------------------------------------------------------------*/
/* container */
/*--------------------------------------------------------------*/
.inner{
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
  padding: 0 1.608em;
}
@media screen and (max-width: 767px){
	.inner{
		max-width: unset;
		padding: 0 1em;
	}
}
main{
	display: block;
}

/*--------------------------------------------------------------*/
/* header */
/*--------------------------------------------------------------*/
header{
	width: 100%;
	background: #0062b1;
	border-bottom: 1px #ccc solid;
}
h1{
	margin-right: 2em;
	padding: 1em;
}
h1 a{
	display: block;
}
h1 a span{
	width: 160px;
	height: 0;
	padding-top: 50px;
	overflow: hidden;
	background: url(../img/logo.png) center center no-repeat;
	background-size: 100% auto;
	display: block;
}
@media screen and (max-width: 767px){
	h1 a span{
		width: 100px;
		padding-top: 80px;
	}
}
.head{
	padding: 0;
/*	padding: 0.5em 1em; */
	display: flex;
}
.pc_head{
	/*padding-top: 0;*/
	display: flex;
/*	margin-left: auto; */
}
@media screen and (max-width: 767px){
	.pc_head{
		display: none;
	}
}
.sp_head{
	display: none;
}
@media screen and (max-width: 767px){
	.sp_head{
		display: block;
	}
}

/*--------------------------------------------------------------*/
/* nav */
/*--------------------------------------------------------------*/
.globalNavi{
	/*padding-top: 0;*/
}
.globalNavi ul{
	text-align: center;
	display: flex;
  align-items: center;
}
.globalNavi ul li{
	font-weight: normal;
}
.globalNavi ul li a{
	color: #fff;
	padding: 2em 1em;
	display: block;
	text-decoration: none;
	opacity: 1;
}
.globalNavi ul li a:hover{
	background: #157acb;
	color: #fff;
}

/* drawer-tel */
.drawer-tel{
	display: block;
	width: 100%;
	padding: 1em;
}
.drawer-tel span{
	color: #fff;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.5em;
	display: block;
}
.drawer-tel a{
	display: block;
	text-decoration: none;
	opacity: 1;
}
.drawer_tel_btn{
	font-size: 1.4rem !important;
	padding: 1em !important;
	background: #eb5312 !important;
}
.drawer_tel_btn:hover{
	background: #ec7e53;
}
.drawer-tel em{
	font-size: 1.2rem;
	color: #fff;
	margin-top: 0.5em;
	display: block;
}

/*--------------------------------------------------------------*/
/* footor */
/*--------------------------------------------------------------*/
footer{
	background: #0062b1;
}
.footnav{
  padding: 3em;
	background: #f3f3f3;
}
.footnav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 767px){
	.footnav ul{
		display: none;
	}
}
.footnav ul li{
	border-left: 1px solid #bbb;
	padding: 0 1em;
	line-height: 1;
}
.footnav ul li:first-child{
	border-left: none;
}
.copy{
	color: #fff;
	padding: 2em 0;
}
.copy p{
	font-size: 1.1rem;
	line-height: 1;
	text-align: center;
}
@media screen and (max-width: 767px){
	.copy p{
	    	line-height: 1.5;
	}
}
.copy p a{
	color: #fff;
}

/*--------------------------------------------------------------*/
/* img */
/*--------------------------------------------------------------*/
img.w100{
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 767px){
	img.w100{
		width: 100%;
	}
}

/*--------------------------------------------------------------*/
/* Font Awesome */
/*--------------------------------------------------------------*/
i{
	padding-right: 0.5em;
}

/*--------------------------------------------------------------*/
/* fixed */
/*--------------------------------------------------------------*/
.fixed{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

/*--------------------------------------------------------------*/
/* a style */
/*--------------------------------------------------------------*/
a:link{
	color: #333;
}
a:visited{
	color: #333;
}
a:hover{
	color: #666;
}
a:active{
	color: #333;
}
a{
	text-decoration: underline;
	outline: 0; /* Firefox */
	transition: all 0.8s ease-in-out;
}
a:hover{
	text-decoration: none;
	opacity: 0.75;
}

/*--------------------------------------------------------------*/
/* border-box */
/*--------------------------------------------------------------*/
*, *:before, *:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*--------------------------------------------------------------*/
/* 画像関連 */
/* レスポンシブ対応のbackgroundにする場合、以下を利用 */
/* 表示画像の高さ ÷ 表示画像の幅 × 100 */
/*--------------------------------------------------------------*/
/*
	height: 0;
	padding-top: ●●%;
	background: url(●●) 0 0 no-repeat;
	background-size: contain;
	text-indent: -9000px;
*/

/*--------------------------------------------------------------*/
/* アニメーション関連 */
/*--------------------------------------------------------------*/
/*
animation-name: アニメーションの名前
animation-duration: アニメーションが始まって終わるまでの時間
animation-iteration-count: アニメーションの繰り返し回数
animation-timing-function: アニメーションの進行の度合
animation-delay: アニメーションが始まる時間
animation-direction: アニメーションの再生方向
animation-fill-mode: アニメーションの開始前、終了後のスタイル
animation-play-state: アニメーションの再生・停止を指定
*/
/*
animation-name: ●●;
animation-duration: 2s;
animation-iteration-count: 1;
animation-timing-function: ease;
animation-delay: 3s;
animation-direction: normal;
animation-fill-mode: none;
animation-play-state: running;
*/
