@charset "UTF-8";


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

当CSSには、webサイト内の全ページに共通する要素（ヘッダー・グローバルナビ・ローカルナビ・コンテナ・レイアウト用ボックス設定・
パンくず・ページ上部メインイメージ・フッター など）の基本レイアウトに関する設定を記述してください

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/


/* -- Media query	761px以下の場合 スマートフォン設定------------------------------------------------------------- */
@media screen and (max-width: 761px ) {

html{
	min-width: inherit;
}
body {
	min-width: inherit;
}

a:hover {
	-webkit-transition: all 0.0s ease-in-out;
	-moz-transition: all 0.0s ease-in-out;
	-o-transition: all 0.0s ease-in-out;
	-ms-transition: all 0.0s ease-in-out;
	transition: all 0.0s ease-in-out;
	opacity: 1.0;
}
#header {
	background: #fff;
	width:100%;
	height: 20vw;
	min-width: inherit;
	min-height: inherit;
	margin:0;
	padding:0 5%;
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    position: fixed;
    z-index: 1000;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.2);
}
#header h1.content_title {
	width: 55%;
	margin-right: 4%;
}
#header h1.content_title a img{
	width: 100%;
}
#header h1.content_title span{
	font-size: 2.6vw;
}
.header_link {
	width: 100%;
	box-sizing: border-box;
    /*display: block;*/
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	position: fixed;
	bottom: 0;
	left: 0;
	box-shadow: 0px -6px 6px -6px rgba(0,0,0,.4);
}
.header_link li.header_normal{
	display: none;
}
.header_link li.header_request {
	/*display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 50%;*/
	flex-basis: 33.33%;
}
.header_link li.header_oclink  {
	/*display: block;
	position: fixed;
	bottom: 0;
	left: 50%;
	width: 50%;*/
	flex-basis: 33.34%;
}
.header_link li.header_linelink  {
	/*display: block;
	position: fixed;
	bottom: 0;
	left: 50%;
	width: 50%;*/
	flex-basis: 33.33%;
}
.header_link li.header_request a {
	box-sizing: border-box;
	display: block;
	border: none;
	width: 100%;
	height: 60px;
	color: #FFF;
	margin: 0 ;
	background: #3264cd;
	background: -moz-linear-gradient(-45deg, #3264cd 0%, #285abe 100%);
	background: -webkit-linear-gradient(-45deg, #3264cd 0%,#285abe 100%);
	background: linear-gradient(135deg, #3264cd 0%,#285abe 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3264cd', endColorstr='#285abe',GradientType=1 );
	font-weight: 600;
	font-size: 3.88vw;
	letter-spacing:.1em;
	padding: 12px 0 0;
	/*box-shadow: 0 0 10px rgba(0,0,0,.4);
	border-top: 1px solid #444;*/
}
.header_link li.header_oclink a {
	box-sizing: border-box;
	display: block;
	border: none;
	width: 100%;
	height: 60px;
	color: #FFF;
	margin: 0 ;
	background: rgba(50,150,200,1);
	font-weight: 600;
	font-size: 3.33vw;
	line-height:1.2em;
	padding: 12px 0 0;
	/*box-shadow: 0 0 10px rgba(0,0,0,.4);
	border-top: 1px solid #444;*/
}
.header_link li.header_linelink a {
	box-sizing: border-box;
	display: block;
	border: none;
	width: 100%;
	height: 60px;
	color: #FFF;
	margin: 0;
	font-weight: 600;
	font-size: 3.88vw;
	line-height:1.2em;
	padding: 12px 0 0;
	/*box-shadow: 0 0 10px rgba(0,0,0,.4);
	border-top: 1px solid #444;*/
}

.navi-btn {
	display: inline-block;
	width: 10%;
	height: 20vw;
}

.navi-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #2B5DC3;
  border-radius: 0;
}
.navi-btn span:nth-of-type(1) {
  top: 35%;
}
.navi-btn span:nth-of-type(2) {
  top: 50%;
}
.navi-btn span:nth-of-type(3) {
  top: 65%;
}

.navi-btn.active {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#navi-menu {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow-y: auto;
	top: 20vw;
	left: 0;
	z-index: 500;
	padding: 0 0 40px 0;
    background: rgba(20,20,20,.8);
    display: none;

}
#navi-menu>ul{
	width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 100px;
    margin: 30px 5% 50px;

}
#navi-menu>ul>li {
	width: 100%;
	margin-bottom: 30px;
}
#navi-menu>ul>li>a{
	display: block;
	width: 100%;
	margin-right: 0;
	margin-bottom: 5px;
	padding: 6px 10px ;
	font-size: 15px;
	font-weight: 600;
	color: #FFF;
	border: 1px solid #FFF;
}

#navi-menu>ul ul.navi-menu_sub>li>a{
	display: block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	color: #FFF;
	padding: 5px 10px 0;
}





.main_img {
	width: 100%;
	height: 65vw;
	background: #AAA;
	position: relative;
}
.about .main_img {
	background: url(../images/main_visual/main_visual_about.png) no-repeat center 10vw;
	background-size: cover;
}
.about.special .main_img {
	background: url(../images/main_visual/main_visual_special.png) no-repeat center 10vw;
	background-size: cover;
}
.about.principal .main_img,
.news .main_img {
	background: url(../images/main_visual/main_visual_about_principal.jpg) no-repeat center 10vw;
	background-size: cover;
}
.about.access .main_img {
	background: url(../images/main_visual/main_visual_about_access.png) no-repeat center 10vw;
	background-size: cover;
}
.about.qa .main_img {
	background: url(../images/main_visual/main_visual_about_qa.png) no-repeat center 10vw;
	background-size: cover;
}
.opencampus .main_img {
	background: url(../images/main_visual/main_visual_oc.png) no-repeat center 10vw;
	background-size: cover;
}
.requirement .main_img {
	background: url(../images/main_visual/main_visual_requirement.png) no-repeat center 10vw;
	background-size: cover;
}
.campuslife .main_img {
	background: url(../images/main_visual/main_visual_campuslife_index.png) no-repeat center 10vw;
	background-size: cover;
}
.campuslife.activity .main_img {
	background: url(../images/main_visual/main_visual_campuslife_activity.jpg) no-repeat center 10vw;
	background-size: cover;
}
.employment .main_img {
	background: url(../images/main_visual/main_visual_employment.png) no-repeat center 16vw;
	background-size: cover;
}
.overseas .main_img {
	background: url(../images/main_visual/main_visual_overseas.png) no-repeat center 10vw;
	background-size: cover;
}
.overseas.qa .main_img {
	background: url(../images/main_visual/main_visual_overseas_qa.png) no-repeat center 10vw;
	background-size: cover;
}
.overseas.course .main_img {
	background: url(../images/main_visual/main_visual_overseas_course.png) no-repeat center 10vw;
	background-size: cover;
}
.highschool .main_img {
	background: url("../images/main_visual/main_visual_highschool.jpg") no-repeat center 10vw;
	background-size: cover;
}
.graduated .main_img {
	background: url("../images/main_visual/main_visual_graduated.jpg") no-repeat center 10vw;
	background-size: cover;
}

.alumni .main_img ,
.companies .main_img ,
.graduates .main_img {
	background: url(../images/main_visual/main_visual_info.png) no-repeat center 10vw;
	background-size: cover;
}





.employment.introduction01 .main_img {
	background: url(../images/employment/employment_introduction_img01.png) no-repeat center 10vw;
	background-size: cover;
}
.employment.introduction02 .main_img {
	background: url(../images/employment/employment_introduction_img03.png) no-repeat center 10vw;
	background-size: cover;
}
.employment.introduction03 .main_img {
	background: url(../images/employment/employment_introduction_img05.png) no-repeat center 10vw;
	background-size: cover;
}

.main_img .content-head{
	background: #FFF;
	position: absolute;
	top:inherit;
	bottom: 40px;
	left: 0;
	padding: 0 5% 0 3%;
	min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	align-items: center;
	color: rgba(50,100,185,1);
	font-size: 16px;
	font-weight: 600;

}
.main_img .content-head::before{
	content: '';
	width: 10px;
	height: 10px;
	display: inline-block;
	border: 3px solid rgba(50,100,185,1);
	border-radius: 5px;
	margin-right: 10px;
}
.main_img .content-head::after{
	content: '';
	width: 20px;
	height: 3px;
	display: inline-block;
	background:rgba(50,100,185,1);
	border-radius: 3px;
	position: absolute;
	right: -10px;
	top: 50%;
}
.about.special .main_img .content-head{
	width: 60%;
	height: 38vw;
	background: url(../images/about/special_logo.svg) no-repeat center 10vw;
	background-size: contain;
	position: absolute;
	left: 3%;
	top: inherit;
	bottom: 30px;

}
.about.special .main_img .content-head::before ,
.about.special .main_img .content-head::after{
	display: none;
}
.opencampus .main_img {
	height: 80vw;
	position: relative;
	padding: 0;
}
.opencampus .main_img .content-head{
	width: 60%;
	height: calc(100% - 20vw);
	position: absolute;
	left: 20%;
	top: 20vw;
	background: none;
	text-align: center;
	padding: 0;
}
.opencampus .main_img .content-head img{
	height: 100%;
	display: block;
	margin: 0 auto;
}
.opencampus .main_img .content-head::before,
.opencampus .main_img .content-head::after {
	display: none;
}









#main_content {
	width: 94%;
	margin: -5vw 3% 40px;
	background: #FFF;
	padding-bottom: 80px;
	position: relative;
	z-index: 2;
}

.top #main_content{
	width: 100%;
	margin:  0;
	padding-top: 5vw;
	padding-bottom: 0;
}
.course #main_content {
	padding-bottom: 5vw;
}
.opencampus #main_content {
	width: 100%;
	margin:  0;
	background: none;
	padding-bottom: 0;
}
.opencampus #main_content .oc_main_content{
	width: 94%;
	margin: -5vw 3% 40px;
	background: #FFF;
	margin-bottom: 40px;
	padding-bottom: 30px;
	position: relative;
	z-index: 4;
}

.local_navi {
	display: none;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;

}
.local_navi.current {
    display: block;
	width: 100%;
}
.local_navi li {
	flex-grow: auto;
	width: 100%;
}
.local_navi li a{
    display: block;
	text-align: center;
	width: 100%;
	font-size: 14px;
	letter-spacing: .05em;
	font-weight: 600;
	line-height: 1.4em;
	height: auto;
	border: none;
	border-bottom: 1px dotted #DDD;
	background: #FFF;
	padding:8px 0;
}
.local_navi li.local_navi-long_text a{
	font-size: 14px;
	letter-spacing: 0;
	font-weight: 600;
	line-height: 1.4em;
}
.local_navi li a.stay_page{
	background: rgba(50,100,185,1);
	color: #FFF;
}



#footer{
}

#footer .footer-sns_list{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
#footer .footer-sns_list li{
	width: 50.0%;
}
#footer .footer-sns_list li a{
	display: block;
	padding: 54px 0 8px ;
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}
#footer .footer-sns_list li:first-child a{
	background: #000 url(/wp-content/uploads/2024/06/x227131173227130179227130153.png) no-repeat center 10px;
	background-size: 40px;
}
#footer .footer-sns_list li:nth-child(2) a{
	background: #E1306C url(../images/common/sns_icon03.png) no-repeat center 10px;
	background-size: 40px;
}

#footer .footer-info{
	background: #4D708F;
	color: #FFF;
    display: block;
    padding: 35px  5% 25px;
    font-size: 13px;
    border-bottom: 1px solid #FFF;
}
#footer .footer-info dt{
	width: 100%;
	max-width: inherit;
	margin-right: 0;
    margin-bottom: 20px;

}
#footer .footer-info dt .address{
	margin-top: 5px;
	font-size: 14px;
}
#footer .footer-info dd {
	width: 100%;

}
#footer .footer-info dd p{
    font-size: 14px;
    line-height: 1.6em;
    margin-top: 10px;
}
#footer .footer-info dd .tel_num{
	font-size: 22px;
	font-weight: 600;
	line-height: 1em;
}
#footer .footer-info dd .tel_num span{
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	padding: 3px 7px;
	border: 1px solid #FFF;
	font-size: 13px;
	margin: 0 15px 5px 0;
}

#footer .footer-info dd.footer-info_navi{
	width: 100%;
	margin: 10px 0 0;

}
#footer .footer-info dd.footer-info_navi ul{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
#footer .footer-info dd.footer-info_navi ul li {
	width: 50%;
	margin: 10px 0 5px;
}
#footer .footer-info dd.footer-info_navi ul li a{
	display: block;
	text-decoration: underline;
	color: #FFF;
	font-size: 14px;
}

#footer .footer-navi {
    display: none;
}



#footer .footer-copyright {
	width: 100%;
	padding: 25px 10px 85px;
	text-align: center;
	font-size: 12px;
	color: #FFF;
	border-top: 1px solid #FFF;
    background: #5A5D5F;
}


img.w-full-sp{
	width: 100%;
	height: auto;
}



}


/* -- Media query	印刷用設定------------------------------------------------------------- */


@media print{

}
