@charset "utf-8";
/* CSS Document */

#mainvisual{
	width:100%;
    position: relative;
}
.sliderArea{
	width: 100%;
    height: 100vh;
	
}

.main_bottom{
	display: flex;
    justify-content: flex-start;
    position: absolute;
	bottom: 30px;
	left: 50px;
	z-index:99;
}
.ao_mian{
	width:100%;
}
.ao_mian img{
	width:95%;
	max-width:400px;
}
/*.ao_mian{
	position: absolute;
	bottom: 30px;
	left: 50px;
	z-index:9999;
}*/
.ao_mian a:hover{
	opacity:0.8;
}

/*////////緊急告知/////////*/
.kinyu{
	position:absolute;
	bottom: -15px;
	width:100%;
	z-index:999;
	/*margin-bottom:20px;*/
	margin-bottom:40px;
}
.main_list{
	width: 600px;
	background-color: rgba(0,0,0,0.65);
	overflow:hidden;
	/*padding-top:20px;*/
}
.main_list li{
	/*margin:10px 0;*/ 
	padding:0 10px 0;
	overflow:hidden;
}
.main_list li a{
	color: #fff;
	padding:10px 5px;
	display: block;
    text-decoration: underline;
}
.main_list li a:hover{
	color: #fff100;
	opacity: 0.6;
}


/*////////スクロールダウン/////////*/
/*=== 9-1-3 マウスが動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown3{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:50px;
  right:50%;
    /*マウスの動き1.6秒かけて動く永遠にループ*/
  animation:mousemove 1.6s ease-in-out infinite;
  z-index:10;
}

/*下からの距離が変化して上から下に動く*/
@keyframes mousemove{
      0%{bottom:35px;}
      50%{bottom:30px;}
     100%{bottom:35px;}
 }

/*Scrollテキストの描写*/
.scrolldown3 span{
    /*描画位置*/
  position: absolute;
  left:-15px;
  bottom:45px;
    /*テキストの形状*/
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/*マウスの中の線描写 */
.scrolldown3 span::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top:10px;
  left:17px;
    /*線の形状*/
  width: 1px;
  height: 15px;
  background: #fff;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: mousepathmove 1.4s linear infinite;
  opacity:0;
}

/*上からの距離・不透明度・高さが変化して上から下に流れる*/
@keyframes mousepathmove{
  0%{
    height:0;
    top:10px;
    opacity: 0;
  }
  50%{
    height:15px;
    opacity: 1;
  }
  100%{
    height:0;
    top:30px;
    opacity: 0;
  }
}

/*マウスの描写 */
.scrolldown3:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-10px;
    /*マウスの形状*/
  width:25px;
  height:37px;
  border-radius: 10px;
  border:1px solid #fff;
}


/*マウスの中の丸の描写*/
.scrolldown3:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:26px;
  left:0;
    /*丸の形状*/
  width:5px;
  height: 5px;
  border-radius: 50%;
  border:1px solid #fff;
}



/*////////重要なお知らせ/////////*/
.topic_news{
	height: 120px;
	background-color: #fff;
	display: grid;
	align-content: center;
}
.topic_news_inner{
	width: 1100px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	letter-spacing: 1px;
}
.jyuyou{
	width: 30%;
	background-color: #C10000;
	border: 1px solid #C10000;
	color: #fff;
	text-align: center;
	padding:10px 10px;
}
.jyuyou_title{
	display:block;
	width: 70%;
	border: 1px solid #C10000;
	color: #C10000;
	text-align: left;
	padding: 10px 20px;
}

.jyuyou_title a{
	color: #C10000;
}
.topic_news_inner a:hover{
	text-decoration: underline;
}

/*////////PICK UP////////*/
.you_box{
	height: auto;
	background-color: #ecebeb;
	padding: 50px 0;
}
.you_box_slider{
	width: 80%;
	margin: 0 auto;
}
ul.slider img{
	width: 100%;
	height: auto;
}
ul.slider img:hover{
	opacity: 0.7;
}
.slider .slick-slide {
    margin:0 5px;
}
h2.you_box_title{
	font-size: 36px;
	margin-bottom: 25px;
	font-family: U-OTF-GothicMB101Upr-Heavy;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 28%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    height: 50px;
    width: 40px;
	z-index: 99;
}
.slick-prev {/*戻る矢印の位置と形状*/
    left: -2%;
	background-image: url(../img/arrow-prev.gif);
}
.slick-next {/*次へ矢印の位置と形状*/
    right: -2%;
	background-image: url(../img/arrow-next.gif);
}

/*ドットナビゲーションの設定*/
.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}
.slick-dots li {
    display:inline-block;
	margin:0 5px;
}
.slick-dots button {
    color: transparent;
    outline: none;
	border: none;
    width: 25px;/*ドットボタンのサイズ*/
	height: 3px;
    display:block;
    background:#ccc;/*ドットボタンの色*/
}
.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}



.gakuhi_banner{
	max-width: 850px;
	width:96%;
	/*height:150px;*/
	margin:40px auto;
}

.gakuhi_banner_02{
	width:80%;
	margin:40px auto;
}

.gakuhi_banner_02_list{
	width:100%;
	display: flex;
    justify-content: space-between;
}
.gakuhi_banner_02_list li{
	width:100%;
	margin-bottom:10px;
}

.gakuhi_banner_02_list li img{
	width:96%;
}





/*contents
================================== */
#contents{
	width: 100%;
	height: auto;
	background-color: #f7f7f7;
}

/* News */
.news{
	width: 1100px;
	padding: 110px 0 80px;
	margin: 0 auto;
	display: flex;
}
.news-title{
	flex: 0.6;
	position: relative;
	display: grid;
	justify-content: center;
}
.news-title h2{
	font-size: 300%;
	font-family: U-OTF-GothicMB101Upr-Heavy;
	position: relative;
}
.news-title h2::before{
	content: '';
	width: 25px;
	height: 25px;
	background-color: #00467e;
	position: absolute;
	top: -8px;
	left: -23px;
}
.news-title a{
	display: block;
	width: 90px;
	letter-spacing: 1px;
	color: #00467e;
	position: relative;
	transition: .2s;
}
.news-title a:hover{
	opacity: 0.7;
}
.news-title a::before{
	content: '';
	width: 200%;
	height: 1px;
	background-color: rgba(0,70,126,0.5);
	position: absolute;
	bottom: 5px;
	left: 0;
	/*アニメーションの指定*/
    transition: all .3s;
    transform: scale(1, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}
.news-title a:hover::before{
	transform: scale(1.2, 1);
}
.news-title a img{
	vertical-align: middle;
	margin-left: 5px;
}
.news-title a::after{
	content: '';/* 矢印 */
	position: absolute;
	top: 0;
	right: -25px;
	background:url(../img/top/arrow-round.png);
	background-size: cover;
	background-position: center;
	width: 23px;
	height: 23px;
	transition: .2s;
}
.news-title a:hover::after{
	right: -33px;/* 矢印 右へ移動　*/
	/*transform: translateX(5px);*/
}
.news ul{
	margin: 0 auto;
	flex: 1.1;
}
.news ul li{
	padding: 6px 0;
	letter-spacing: 1px;
	position: relative;
}
.news ul li a{
	color: #000;
	display: flex;
	align-items: flex-start;
}

.news ul li a:hover{
	color: #00467e;
	opacity: 0.8;
	/*border-bottom: 1px solid  rgba(0,70,126,0.5);*/
}

span.gray{
	color: #999;
	padding-right:10px;
}

.fa-play{
	padding: 3px 10px 0 0;
}

/* department */
.department{
	padding: 0 0 100px;
}
h2.department-title{
	font-size: 220%;
	text-align: center;
	letter-spacing: 1px;
	padding-bottom: 20px;
	font-family: U-OTF-GothicMB101Upr-Heavy;
}
span.big{
	font-size: 131%;
}
.department-inner{
	width: 100%;
	display: flex;
}
.field{
	width: 50%;
	position: relative;
}
.field-button{
	display: flex;
}
.field-button img{
	width: 100%;
	height: 100%;
	transition: .3s ease-in-out;
	transform: scale(1);
}
.field-button a{
	overflow: hidden;
}

.field-button img:hover{
	opacity: 0.8;
	transform: scale(1.05, 1.05);
}
.field-text{
	position: absolute;
	top: 24%;
	right: 0;
	left: 0;
	text-align: center;
	padding: 0 10%;
	z-index: 99;
}
.field-text p{
	color: #fff;
	font-weight: bold;
	text-shadow: 1px 2px 3px rgba(0,0,0,0.7);
	/*opacity: 0.8;*/
}
span.big-title{
	font-size: 280%;
	line-height: 1;
}
.field-text p:nth-child(2){
	margin-bottom: 15px;
}

.surface{
	display:block;
	padding-top:15px;
	font-size:123.1%;
	color:#fff;
	/*text-shadow: 4px 4px 4px #000 !important;*/
	text-shadow:1px 1px 0 #000, -1px -1px 0 #000,
              -1px 1px 0 #000, 1px -1px 0 #000,
              0px 1px 0 #000,  0-1px 0 #000,
              -1px 0 0 #000, 1px 0 0 #000;
	letter-spacing:2px;
	font-weight:bold;
}
.under_line{
	background: linear-gradient(transparent 70%, #FF0 70%);
}



/* pointo */
.pointo{
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 150px;
}
.pointo-inner{
	width: 85%;
	height: 520px;
	background-image: url(../img/top/point7_1.jpg);
	background-size: cover;
	position: relative;
}
/*.pointo-inner::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #ccc;
	opacity: 0.4;
}*/
.pointo-text{
	width: 65%;
	min-width: 718px;
	height: 450px;
	background-color: #fff;
	position: absolute;
	top: 25%;
	left: 45%;
	z-index: 9;
}
h2.pointo-title{
	padding: 90px 0 0 10%;
	font-weight: bold;
	letter-spacing: 2px;
	font-family: U-OTF-GothicMB101Upr-Heavy;
	font-size: 189%;
}
.pointo-text p{
	padding: 50px 0 0 15%;
	letter-spacing: 1px;
	line-height: 1.7;
	font-size: 116%;
}
span.big-pointo{
	font-size: 197%;
	vertical-align: top;
}
span.round{
	display: inline-block;
	font-size: 189%;
	width: 90px;
	height: 90px;
	line-height: 90px;
	border-radius: 50%;
	background-color: #00467e;
	color: #fff;
	text-align: center;
	font-weight: bold;
	margin: 10px 0 0 10px;
}
.pointo-text a{
	display: block;
	width: 100px;
	position: absolute;
	top: 65%;
	right: 14%;
	color: #00467e;
	padding-bottom: 20px;
	font-size: 108%;
}
.pointo-text a::after{
	content: '';/* 矢印 */
	position: absolute;
	top: 0;
	right: -30px;
	background:url(../img/top/arrow-round.png);
	background-size: cover;
	background-position: center;
	width: 23px;
	height: 23px;
	transition: .2s;
}
.pointo-text a:hover::after{
	right: -35px;/* 矢印　右へ移動 */
	/*transform: translateX(5px);*/
}
.pointo-text a::before{
	content: '';/* ボーダーライン */
	position: absolute;
	bottom: -1px;
	left: 0;
	/*線の形状*/
	width: 95%;
	height: 0.5px;
	background: rgba(0,70,126,0.5);
	/*アニメーションの指定*/
    transition: all .3s;
    transform: scale(1, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}
.pointo-text a:hover::before{
	transform: scale(1.4, 1);
}

/*　OGOB　先輩　*/
.ob-box{
	max-width: 1100px;
	width:96%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	/*gap: 6vw;*/
	padding: 50px 0 100px;
}
.ob-box a:nth-child(1){
	margin-right: 110px;
}

.box{
	display: grid;
	justify-items: center;
	align-items: flex-end;
	width: 500px;
	height: 620px;
	background-image: url(../img/top/ogob.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	transition: all .2s;
	position: relative;
}
.box:nth-child(2){
	background-image: url(../img/top/senpai.jpg);
}
.box:hover{
	box-shadow: 5.0px 10.0px 10.0px hsl(0deg 0% 0% / 0.2);
	transform: translate(-2px, -2px);
	opacity: 0.8;
}
.box-title{
	color: #fff;
	font-size: 131%;
	font-family: U-OTF-GothicMB101Upr-DeBold;
	width: 40%;
	height: 45%;
	background-color: rgba(0,0,0,0.75);
	text-align: center;
	letter-spacing: 1px;
	padding: 20px 0;
}
.box-title > span{
	font-size: 180%;
}
.box-text{
	color: #000;
	letter-spacing: 1px;
	line-height: 2;
	text-align: center;
	padding-bottom: 40px;
	padding-right: 30px;
}
.box::before{
	content: "";/* ボーダーライン */
	display: block;
	width: 180px;
	height: 1px;
	background-color: rgba(0,70,126,0.5);
	position: absolute;
	bottom: 25px;
	/*left: 65px;*/
	/*アニメーションの指定*/
    transition: all .3s;
    transform: scale(1, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*左上基点*/
}
.box:hover::before{
	transform: scale(1.4, 1);
}
.box::after{
	content: '';/* 矢印 */
	position: absolute;
	right: 60px;
	bottom: 55px;
	background:url(../img/top/arrow-round.png);
	background-size: cover;
	background-position: center;
	width: 30px;
	height: 30px;
	transition: .2s;
}
.box:hover::after{
	right: 40px;/* 矢印　右へ移動 */
	/*transform: translateX(5px);*/
}


/*contents_02
================================== */
#contents_02{
	width: 100%;
	height: auto;
	background-color: #fff;
	padding: 80px 0 100px;
}
p.support_title{
	font-size: 250%;
	font-weight:bold;
	font-family: U-OTF-GothicMB101Upr-Heavy;
	text-align: center;
	letter-spacing: 1px;
	padding-bottom: 50px;
}
p.support_title span{
	font-size: 153.9%;
	padding: 0 10px;
	color: #00467e;
	text-shadow: 1px 2px 0px rgba(255,241,0,0.5);
}

/* support　*/
.support_01{
	width: 100%;
	padding: 50px 0 50px 5%;
	display: flex;
	/*gap: 3vw;*/
}
.support_01 a{
	overflow: hidden;
	margin-left: 57px;
}
.support_01 a:hover{
	overflow: hidden;
	transform: scale(1.01, 1.01);
}
.support-text{
	flex: 1;
	letter-spacing: 1px;
}
.support-text h2{
	font-family: U-OTF-GothicMB101Upr-Heavy;
	font-size: 2.8vw;
	font-style: italic;
	font-weight: bold;
	position: relative;
	padding-top: 30px;
}
.support-text h2::after{
	content: '';/* ボーダーライン */
	display: block;
	width: 200px;
	height: 1px;
	background-color: rgba(0,70,126,0.5);
	position: absolute;
	left: 5%;
	bottom: -50px;
}
.support-text p{
	padding: 100px 0 0 30px;
	line-height: 2;
}
span.blue{
	display: inline-block;
	padding: 0 25px;
	background-color: #00467e;
	color: #fff;
	clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
	-webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
	-moz-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}
.support-img{
	height: 450px;
	flex: 2;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.support-img p{
	color: #fff;
  	font-family: U-OTF-GothicMB101Upr-Medium;
	font-style: italic;
	letter-spacing: 1px;
}
.support-img:hover{
	opacity: 0.8;
	transform: scale(1,1);
}


/* 学費・奨学金　*/
.syogakukin{
	background-image: url(../img/top/support01.jpg);
}
span.blue-gap{
	margin-bottom: 5px;
}
.text01-01{
	top: 34%;
	left: 6%;
	font-size: 2vw;
	padding: 0 5px 80px 0;
}
.text01-02{
	width: 14vw;
	height: 14vw;
	border: 1px solid #fff;
	border-radius: 50%;
	top: 24%;
	left: 45%;
	text-align:center;
	padding-top: 6.5%;
	line-height: 0;
	font-size: 2vw;
}
.text01-02 > span{
	font-size: 4vw;
}
.text01-03{
	font-size: 3vw;
	top: 46%;
	left: 70%;
	padding-left: 10px;
}

/* 資格　*/
.shikaku{
	background-image: url(../img/top/support02.jpg);
}
.text02{
	top: 28%;
	left: 18%;
	line-height: 2.1;
	font-size:max(23px, min(2vw,33px) );
}
	
/* 就職　*/
.syusyoku{
	background-image: url(../img/top/support03.jpg);
}
.text03-01{
	width: 15vw;
	height: 15vw;
	border: 1px solid #fff;
	border-radius: 50%;
	top: 20%;
	left: 12%;
	text-align:center;
	padding-top: 8%;
	line-height: 0;
	font-size: 2vw;
}

.text03-01 > span{
	font-size: 5vw;
}
.text03-02{
	top: 42%;
	left: 38%;
	font-size: 2vw;
	line-height: 1;
	padding-left: 10px;
	text-align: right;
}
.text03-02 > span{
	bottom: 1%;
	right: 1%;
	font-size: 40%;
}

/*contents_03
================================== */
#contents_03{
	width: 100%;
	height: auto;
	background-color: #f7f7f7;
	/*background-image: url(../img/top/kincom-background.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;*/
	padding-top: 80px;
}
.blog-title{
	width: 100%;
	position: relative;
}
.blog-title h2{
	text-align: center;
	font-size: 300%;
	font-family: U-OTF-GothicMB101Upr-Heavy;
	position: absolute;
	right: 74%;
	top: 70px;
}
.blog-title h2::before{
	content: '';
	width: 25px;
	height: 25px;
	background-color: #00467e;
	position: absolute;
	top: -9px;
	left: -20px;
}
.blog-bagtitle{
	width: 66%;
	position: absolute;
	right: 0;
}
.blog-bagtitle img{
	width: 100%;
	height: 100%;
	opacity: 0.4;
}
.blog{
	width: 100%;
	margin:0 auto;
	padding: 0 10%;
}
.blog-small{
	font-size: 60%;
	vertical-align: middle;
}
ul.blog-contents{
	padding: 180px 0 30px;
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	/*gap: 20px;*/
}
ul.blog-contents li{
	width: 30%;
	height: 430px;
	position: relative;
	transition: .2s;
}
ul.blog-contents li:nth-child(2){
	margin: 50px 20px 0;
	
}
ul.blog-contents li:nth-child(3){
	margin-top: 100px;
}
ul.blog-contents li:nth-child(5){
	margin: 50px 20px 0;
	
}
ul.blog-contents li:nth-child(6){
	margin-top: 100px;
}
ul.blog-contents li img{
	width: 100%;
	height: 250px;
	object-fit: cover;
	padding: 0;
}
p.blog-time{
	padding: 10px 15px 0;
	color: #999;
	font-weight: bold;
}
p.blog-title{
	padding: 10px 15px 15px;
	color: #000;
}
p.blog-more{
	color: #00467e;
	text-align: center;
	font-size: 93%;
	opacity: 0.7;
}
ul.blog-contents li::after{
	content: "";/* ボーダーライン */
	display: block;
	width: 50%;
	height: 1px;
	background-color: rgba(0,70,126,0.5);
	position: absolute;
	bottom: 20px;
	left: 25%;
	/*アニメーションの指定*/
    transition: all .2s;
    transform: scale(1, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*左上基点*/
}
ul.blog-contents li:hover::after{
    transform: scale(1.5, 1);/*X方向0、Y方向1*/
}
ul.blog-contents li:hover{
    transition: all .2s !important;
	box-shadow: 5.0px 10.0px 10.0px hsl(0deg 0% 0% / 0.2);
	transform: translate(-2px, -2px) !important;
	opacity: 0.8;
}
.blog-button{
	display: block;
	margin: 0 auto;
	width: 200px;
	color: #00467e;
	text-align: center;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 100px;
}
.blog-button:hover{
	opacity: 0.7;
}
.blog-button::after{
	content: '';/* 矢印 */
	position: absolute;
	background: url(../img/top/arrow-round.png);
	background-size: cover;
	background-position: center;
	width: 23px;
	height: 23px;
	right: 25px;
	transition: .3s;

}
.blog-button:hover::after{
	right: 10px;/* 矢印 右へ移動　*/
	/*transform: translateX(5px);*/
}



/*ipad 縦*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
	#mainvisual{
		
	}
	.vegas-slide{
		height: 80%;
	}
	.footer-nav{
		padding: 40px 25px;
	}
	.fotter-nav-sub ul li{
		width: 280px;
	}
	.sliderArea{
	width: 100%;
	height:fit-content;
    overflow:hidden;
	background-color: #ecebeb;
	height:
}
}

/*ipadpro 縦*/
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation:portrait) {
	#mainvisual{
		
	}
	.vegas-slide{
		height: 80%;
	}
	.footer-nav{
		padding: 40px 25px;
	}
	.fotter-nav-sub ul li{
		width: 280px;
	}
	.sliderArea{
	width: 100%;
	height:fit-content;
    overflow:hidden;
	background-color: #ecebeb;
	height:
}
	
}
