@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～ */
/* ベンダープレフィックス指定無しも明記 */

/*--------------------------------------------------------------*/
/* ボタン・リンクボタン共通 */
/*--------------------------------------------------------------*/
.btn__design, input.btn__design, button.btn__design{
	font-size: 1.4rem;
	line-height: 1;
	padding: 1em;
	color: #fff;
	border: 0;
	text-align: center;
	transition: .3s;
	background: #0062b1;
	border: 2px #0062b1 solid;
	border-radius: 0;
	position: relative;
}
.btn__design--arrow::after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	position: absolute;
	right: 10%;
}
.btn__design:hover{
	color: #0062b1;
	background: #fff;
}
.linkbtn__nav{
	margin: 1.5em auto 0 auto;
}
.linkbtn__nav a{
	text-decoration: none;
	display: block;
	opacity: 1;
}

/*--------------------------------------------------------------*/
/* メッセージナビ共通 */
/*--------------------------------------------------------------*/
.mag__navi{
	margin-bottom: 4em;
}
.mag__navi h3{
	line-height: 2;
	font-weight: bold;
	text-align: center;
}
.mag__navi p{
	line-height: 2;
}
@media screen and (max-width: 767px){
	.mag__navi p{
	    	line-height: 1.5;
	}
}
.mag__navi--txt01{
	padding: 1.5em;
	background: #f9f9f9;
	border: 1px #ccc solid;
}
.mag__navi--txt02{
	padding: 1.5em;
	background: #f9f9f9;
	border: 1px #ff0000 solid;
}
.mag__navi--txt02 p{
	color: #ff0000;
}

/*--------------------------------------------------------------*/
/* コンテンツ共通 */
/*--------------------------------------------------------------*/
.content__head{
	display: block;
}
/* H2タイトル */
.h2__title--txt{
	line-height: 1.2;
	text-align: center;
	margin-bottom: 3em;
}
.h2__title--txt h2{
	font-size: 4.0rem;
  font-weight: normal;
	display: inline-block;
	letter-spacing: 0.2em;
	white-space: nowrap;
}
.h2__title--txt h2 span{
	font-size: 2.0rem;
	color: #ccc;
	font-weight: bold;
	display: block;
	letter-spacing: 0;
}
.h2__title--txt p{
	font-size: 2.6em;
	color: #eb5312;
	font-weight: bold;
	margin-top: 1.5em;
}

/* H2タイトル(背景) */
.h2__title--bg{
	background: url(../img/h2_head.jpg) center center / cover no-repeat fixed;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
	line-height: 1.2;
}
.h2__title--bg h2{
	color: #fff;
	text-align: center;
	letter-spacing: 0.2em;
  display: inline-block;
	font-weight: normal;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
}
.h2__title--bg h2 span{
	font-size: 4.0rem;
}
.h2__title--bg h2 em{
	font-size: 2.0rem;
	display: block;
}

/* パンくず */
.pankuzu{
	font-size: 1.4rem;
	padding: 0.5em 0;
	border-bottom: 1px #ccc solid;
	line-height: 1;
}
.pankuzu__item{
	display: flex;
	list-style: none;
}
.pankuzu__item li{
	display: block;
}
.pankuzu__item li:not(:first-child)::before{
	content: '＞';
	font-size: 1.0rem;
	vertical-align: middle;
	padding: 0 1em;
}
/* タイムライン */
.timeline{
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100px;
  max-width: 265px;
  margin: 0 auto;
}
.timeline__body{
  position: relative;
  background: #0062b1;
  height: 1px;
  width: 100%;
  border-radius: 4px;
  margin: 10px 0 50px;
}
.timeline__item{
	list-style: none;
  display: flex;
  justify-content: space-between;
}
.timeline__item li{
  position: relative;
  display: block;
  padding-top: 16px;
}
.timeline__item li span{
  top: 12px;
  position: absolute;
  width: 40px;
  text-align: center;
  left: -20px;
}
.timeline__item li span.selected:after{
  background: #0062b1;
  border: 1px #0062b1 solid;
}
.timeline__item li span::after{
  content: '';
  position: absolute;
  top: -22px;
  left: 10px;
  right: auto;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px #0062b1 solid;
  background: #fff;
  -webkit-transition: all .25s;
  -moz-transition: all .25s;
  -ms-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}
/* 同意 */
.agree{
	margin: 0 auto 3em auto;
	text-align: center;
}

/*--------------------------------------------------------------*/
/* テーブル共通 */
/*--------------------------------------------------------------*/
.table--col02{
	width: 100%;
	margin-bottom: 3em;
}
.table--col02:last-child{
	margin-bottom: 0;
}
.table--col02 caption{
	margin-bottom: 1em;
	font-weight: bold;
}
.table--col02 th{
	width: 30%;
	padding: 2em;
	text-align: left;
	border-top: 1px #0062b1 solid;
	border-bottom: 1px #0062b1 solid;
	font-weight: bold;
	background: #f8f8f9;
}
@media screen and (max-width: 767px){
	.table--col02 th{
		width: 100%;
		display: block;
	}
}
.table--col02 th span{
	font-size: 1.2rem;
	margin-left: 1em;
	padding: 0.1em 0.3em;
	color: #fff;
	background: #f8f8f9;
	font-weight: normal;
}
@media screen and (max-width: 767px){
	.table--col02 th{
		width: 100%;
		display: block;
	}
}
.table--col02 td{
	width: 70%;
	padding: 2em;
	text-align: left;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
}
@media screen and (max-width: 767px){
	.table--col02 td{
		width: 100%;
		display: block;
	}
}
.table--col02 td p{
	margin-top: 0.5em;
}
.table--col02 td em{
	padding-left: 0.25em;
	padding-right: 0.5em;
}

/*--------------------------------------------------------------*/
/* エフェクト */
/*--------------------------------------------------------------*/
@keyframes fadein01{
	from{
		opacity: 0;
		transform: translateX(-40px);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}
.css-fade01{
	animation: fadein01 2s 3s forwards;
}
@media screen and (max-width: 767px){
	.css-fade01{
		animation: none;
	}
}
@keyframes fadein02{
	from{
		opacity: 0;
		transform: translateX(-40px);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}
.css-fade02{
	animation: fadein02 2s;
}
@media screen and (max-width: 767px){
	.css-fade02{
		animation: none;
	}
}
.css-fade03{
 opacity: 0;
 transform : translate(0, 50px);
 transition : all 1500ms;
}
@media screen and (max-width: 767px){
	.css-fade03{
		opacity: 1;
	  transform: none;
	  transition : all 1500ms;
	}
}
.css-fade03.scrollin03{
 opacity: 1;
 transform: none;
}

/*--------------------------------------------------------------*/
/* font-family */
/*--------------------------------------------------------------*/
.font_Roboto{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: normal;
}
.font_Patua{
	font-family: 'Patua One', cursive;
	font-weight: normal;
}

/*--------------------------------------------------------------*/
/* index */
/*--------------------------------------------------------------*/
.main__visual{
	display: block;
}
.main__visual--bg{
	width: 100%;
	height: calc(100vh - 78px);
	background: url("../img/main__visual.jpg") 50% 50% / cover no-repeat;
}
@media screen and (max-width: 767px){
	.main_bg{
		background: url("../img/sp/sp_main_bg.jpg") 50% 50% / cover no-repeat;
	}
}
.about__section{
	display: block;
}
.about__body{
	padding: 5em 0;
}
.about__head{
	margin-bottom: 4em;
}
.about__head--bg{
	background: url(../img/about__head--bg.jpg) center center / cover no-repeat fixed;
	height: 70vh;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.2;
}
.about__head--txt{
	font-size: 1.8rem;
	padding: 5em;
	color: #fff;
	text-align: center;
	background: rgba(0,98,177,0.5);
}
.about__head--txt h3{
	font-size: 3.0rem;
	margin-bottom: 1.5em;
}
.about__head--txt h4{
	font-size: 2.4rem;
	margin: 2em 0 1em 0;
}
.about__kind{
	margin-bottom: 4em;
}
.about__kind--contents{
	display: flex;
	margin-top: 2em;
}
.about__kind--contents:first-child{
	margin-top: 0;
}
.about__kind--img{
	width: 25%;
	margin-right: 5%;
}
.about__kind--txt{
	width: 70%;
}
.about__kind--txt h3{
	font-size: 2.0rem;
	color: #0062b1;
	margin-bottom: 0.5em;
}
.about__bot--data{
	display: block;
}
.about__bot--data h3{
	font-size: 2.2rem;
	margin-bottom: 1em;
	border-bottom: 2px #0062b1 solid;
}
.about__bot--data-mgn p{
	margin-top: 1em;
}
.skill{
	display: block;
}
.skill__body{
	padding: 5em 0;
}
.skill__detail{
	display: block;
}
.skill__list{
	list-style: none;
	display: flex;
	margin-bottom: 3em;
}
.skill__list--item{
	width: 23.5%;
	margin-left: 2%;
}
.skill__list--item:first-child{
	margin-left: 0;
}
.skill__data{
	display: block;
}
.skill__data--head{
	position: relative;
}
.skill__data--head h3{
	width: 100%;
	font-size: 1.8rem;
	padding: 1em;
	color: #fff;
	text-align: center;
	background: rgba(0,98,177,0.5);
	position: absolute;
	left: 0;
	bottom: 0;
}
.skill__data--det{
	padding: 1em;
}
.skill__data--det dl{
	display: flex;
	margin-bottom: 1em;
}
.skill__data--det dt{
	width: 48%;
	margin-right: 4%;
	text-align: center;
	border-bottom: 1px #0062b1 solid;
}
.skill__data--det dd{
	width: 48%;
	text-align: center;
	border-bottom: 1px #ccc solid;
}
.skilllist{
	display: block;
}
.skilllist__bg{
	background: url(../img/skill_img02.jpg) center center / cover no-repeat fixed;
/*	height: 70vh;*/
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.skilllist__txt{
	width: 50%;
	padding: 3em;
	color: #fff;
	margin-left: auto;
	background: rgba(0,98,177,0.5);
}
.skilllist__data{
	margin-top: 2em;
}
.skilllist__data:first-child{
	margin-top: 0;
}
.skilllist__data h3{
	font-size: 1.6rem;
	margin-bottom: 1em;
	padding: 0.5em;
	text-align: center;
	background: #0062b1;
}
.skilllist__data--table{
	display: block;
}
.skilllist__data--table table{
	width: 100%;
}
.skilllist__data--table table th{
	padding: 0.5em;
	text-align: center;
	border: 1px #fff solid;
	font-weight: bold;
}
.skilllist__data--table table td{
	padding: 0.5em;
	text-align: left;
	border: 1px #fff solid;
}
.item1{
	width: 40%;
}
.item2{
	width: 25%;
}
.item3{
	width: 10%;
}
.item4{
	width: 25%;
}






.seminar{
	background: #fff;
}
.seminar__body{
	padding: 5em 0;
}
.seminar__detail{
	display: block;
}
.seminarlist{
	display: block;
}
.seminarlist__item{
	list-style: none;
}
.seminarlist__item li{
	padding: 2em 0;
	background: #f8f8f9;
	border-bottom: 1px solid #ccc;
}
.seminarlist__item li:first-child{
	border-top: 1px solid #ccc;
}
.seminarlist__item--dl{
	display: flex;
}
.seminarlist__item--dl dt{
	width: 15%;
 	padding: 0 3em;
}
.seminarlist__item--dl dd{
	width: 85%;
	padding: 0 3em;
	display: flex;
}
.seminarlist__item--dl dd span{
	color: #fff;
	margin-right: 1em;
	padding: 0 0.5em;
	text-align: center;
}
.seminarlist__item--dl dd span.uke{
	background: #0062b1;
}
.seminarlist__item--dl dd span.uke_e{
	background: #666;
}
.seminar__nav{
	width: 40%;
	margin-top: 2em;
}
.seminar__details{
	display: block;
}
.seminar__details--head{
	margin-bottom: 3em;
}
.seminar__details--head h3{
	font-size: 2.4rem;
	margin-bottom: 1.5em;
}
.seminar__details--head-txt{
	display: block;
}
.seminar__details--data{
	display: block;
}
.seminar__details--data iframe{
	width: 100%;
	height: 500px;
}



/*--------------------------------------------------------------*/
/* seminar */
/*--------------------------------------------------------------*/
.seminar__h3--title{
	position: relative;
  display: flex;
  flex-direction: column;
  padding: 4em 0;
}
.seminar__h3--title:before{
	width: 2px;
  height: 56px;
  background: #333;
	content: '';
  display: block;
	position: absolute;
	top: 0;
	left: 50%;
}
.seminar__h3--title h3{
	font-size: 3.0rem;
	text-align: center;
	margin: 0.5em 0 0.25em;
  letter-spacing: 0.1em;
}
.seminar__h3--title span{
  font-size: 1.6rem;
	color: #0062b1;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
.nextpage{
	width: 20%;
	margin: 2em 0 0 auto;
}

/*--------------------------------------------------------------*/
/* company */
/*--------------------------------------------------------------*/
.h2__bg--company{
	background: url(../img/h2__bg--company.jpg) center center / cover no-repeat fixed !important;
}
.company{
	display: block;
}
.company_body{
	padding: 5em 0;
}
.company__detail{
	display: block;
}
.company__nav{
	display: block;
}
.company__nav h3{
	text-align: center;
	margin-bottom: 2em;
}
.company__nav--menu{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.company__nav--menu li{
	width: 48%;
	margin-left: 4%;
	margin-bottom: 3em;
	overflow: hidden;
	position: relative;
}
.company__nav--menu li:nth-child(odd){
	margin-left: 0;
}
.company__nav--menu li a img{
  transition: all 0.5s linear;
}
.company__nav--menu li a img:hover{
  transform: scale(1.2);
}
.company__nav--menu li span{
	width: calc(100% - 40%);
	font-size: 2.4rem;
	padding: 3em;
	text-align: center;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.3em;
	background: rgba(0,98,177,.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.company__h3--title{
	position: relative;
  display: flex;
  flex-direction: column;
  padding: 4em 0;
}
.company__h3--title:before{
	width: 2px;
  height: 56px;
  background: #333;
	content: '';
  display: block;
	position: absolute;
	top: 0;
	left: 50%;
}
.company__h3--title h3{
	font-size: 3.0rem;
	text-align: center;
	margin: 0.5em 0 0.25em;
  letter-spacing: 0.1em;
}
.company__h3--title span{
  font-size: 1.6rem;
	color: #0062b1;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
.company__detail--main{
	display: flex;
}
.profile{
	width: 75%;
	margin-right: 5%;
}
.company__sidenav{
	width: 20%;
}
.company__sidenav h4 a{
	font-size: 1.8rem;
	padding: 1em;
	display: block;
	text-decoration: none;
	color: #fff;
	background: #0062b1;
	border-bottom: 1px #ccc solid;
}
.company__sidenav h4 a:hover{
	color: #fff;
}
.company__sidenav--menu{
	list-style: none;
}
.company__sidenav--menu li{
	border-bottom: 1px #ccc solid;
	position: relative;
}
.company__sidenav--menu li:after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translate(-10%,-50%);
}
.company__sidenav--menu li a{
	padding: 1em;
	display: block;
	text-decoration: none;
	background: #fbfbfb;
	font-weight: bold;
}
/*--------------------------------------------------------------*/
/* company > message */
/*--------------------------------------------------------------*/
.profile-message{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)) ,url(../img/company_nav_img04.jpg);
    background-size: cover;
    background-position: center center;
    padding: 40px;
}
.profile-message p{
    line-height: 1.8;
}


/*--------------------------------------------------------------*/
/* contact */
/*--------------------------------------------------------------*/
.contact{
	display: block;
}
.contact__body{
	padding: 5em 0;
}
.contact__detail{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	display: block;
}
.contact__nav--col01{
	width: 50%;
	margin: 0 auto;
}
.contact__nav--col02{
	width: 80%;
	margin: 0 auto;
	display: flex;
	list-style: none;
}
.contact__nav--col02 li{
	width: 45%;
	margin-left: 10%;
}
.contact__nav--col02 li:first-child{
	margin-left: 0;
}
.contact__nav--col02 > li > .g_btn_desi::after{
	display: none;
}
input[name="con_category"]{
	width: 50%;
}
textarea[name="con_detail"]{
	height: 300px;
}

/*--------------------------------------------------------------*/
/* privacy */
/*--------------------------------------------------------------*/
.privacy{
	display: block;
}
.privacy__body{
	padding: 5em 0;
}
.privacy__detail{
	display: block;
}
.privacy__data--head{
	margin-bottom: 2em;
}
.privacy__data--head h3{
	text-align: center;
	margin-bottom: 1em;
}
.privacy__data--detl{
	display: block;
}
.privacy__data--detl dl{
	margin-bottom: 2em;
}
.privacy__data--detl dl dt{
	margin-bottom: 0.5em;
	font-weight: bold;
}
.privacy__data--detl dl dd ol{
	margin-top: 1em;
	padding-left: 1.5em;
}
