@charset "utf-8";

/************************************************

	top

*************************************************/
#video iframe {
    position: fixed;
    z-index: -1;
    top:50%;
    left: 50%;
    margin-top: -1px;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
#video:before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../images/contents/bg_contents.png) repeat 0 0;
    content: "";
    z-index: 1;
}

body.sp #video {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: url(../../images/bg_sp.jpg) no-repeat top center;
    background-size: cover;
    z-index: 1;
}
body.sp #video iframe {
    display: none;
}

.sp_mv {
    position: fixed !important;
    width: 100% !important;
    height: 100vh !important;
    background-size: cover !important;
    z-index: 1 !important;
    overflow: inherit !important;
    top: auto !important;
    left: auto !important;
}

#mv {
    position: relative;
    height: calc(100vh - 69px);
    text-align: center;
}
    #mv h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -145px -385px;
    }

    #mv div {
        position: absolute;
        bottom: 15px;
        left: 48%;
        padding-top: 54px;
        color: #FFF;
    }
        #mv div span {
            position: absolute;
            top: 0;
            left: 50%;
            width: 32px;
            height: 50px;
            margin-left: -16px;
            border: 1px solid #fff;
            border-radius: 50px;
            box-sizing: border-box;
        }
        #mv div span::before {
            position: absolute;
            top: 10px;
            left: 50%;
            content: '';
            width: 6px;
            height: 6px;
            margin-left: -3px;
            background-color: #fff;
            border-radius: 100%;
            -webkit-animation: sdb 2s infinite;
            animation: sdb 2s infinite;
            box-sizing: border-box;
        }
        @-webkit-keyframes sdb {
            0% {
                -webkit-transform: translate(0, 0);
                opacity: 0;
            }
            40% {
                opacity: 1;
            }
            80% {
                -webkit-transform: translate(0, 20px);
                opacity: 0;
            }
            100% {
                opacity: 0;
            }
        }
        @keyframes sdb {
            0% {
                transform: translate(0, 0);
                opacity: 0;
            }
            40% {
                opacity: 1;
            }
            80% {
                transform: translate(0, 20px);
                opacity: 0;
            }
            100% {
                opacity: 0;
            }
        }

@media screen and (max-width:770px){
    #mv h1 {
        position: inherit;
        top: 32%;
        left: inherit;
        margin: 0 10px;
    }
    #mv h1 img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width:768px){
    #mv {
        height: calc(100vh - 42px);
    }
    #mv div {
        bottom: 70px;
        padding-top: 34px;
        font-size: 0.7rem;
    }
        #mv div span {
            width: 1px;
            height: 28px;
            margin-left: -1px;
            border: none;
            border-left: 1px solid rgba(255,255,255,0.3);
        }
        @-webkit-keyframes sdb {
            0% {
                -webkit-transform: translate(0, 0);
                opacity: 0;
            }
            40% {
                opacity: 1;
            }
            80% {
                -webkit-transform: translate(0, 16px);
                opacity: 0;
            }
            100% {
                opacity: 0;
            }
        }
        @keyframes sdb {
            0% {
                transform: translate(0, 0);
                opacity: 0;
            }
            40% {
                opacity: 1;
            }
            80% {
                transform: translate(0, 16px);
                opacity: 0;
            }
            100% {
                opacity: 0;
            }
        }
}

@media screen and (max-height: 500px){
    #mv div {
        display: none;
    }
}

.home section {
    padding: 80px 0;
}

@media screen and (max-width:768px){
    .home section {
        padding: 40px 0;
    }
}

.home section#topics {
	background: rgba(255,255,255,0.9);
	text-align: center;
	padding: 80px 0 0;
}

.home section#topics .btn01 a {
    font-size:90%;
    padding: 5px 20px;
    width: auto;
}

	.home section#topics .inner {
		/*padding: 15px;*/
		background: #fff;
		box-sizing: border-box;
		max-width: 1000px;
		width:40%;
		margin: auto;
        font-size:105%;
        padding:10px 0;
	}

@media screen and (max-width:768px){
	.home section#topics {
		padding: 40px 0 0;
		text-align: left;
	}

		.home section#topics .inner {
			/*padding: 10px;*/
			max-width: inherit;
			width: calc(100% - 20px);
			/*font-size: 100%;*/
            
            font-size: 150%;
            padding: 5vw;
		}
}

.home section#news {
    background: rgba(255,255,255,0.9);
}
    .home section#news ul {
        width: 49.85%;
        float: left;
    }
    .home section#news ul:last-child {
        float: right;
    }
        .home section#news ul:last-child li {
            width: 49.7%;
            float: left;
            margin-bottom: 4px;
        }
        .home section#news ul:last-child li:nth-child(even) {
            float: right;
        }
            .home section#news li a {
                display: block;
                position: relative;
                color: #FFF;
                overflow: hidden;
                height: 540px;
            }
            .home section#news ul:last-child li a {
                height: 268px;
            }
                .home section#news li a .img {
                    display: inline-block;
                    background-color: #ccc;
                    background-position: center center;
                    background-repeat: no-repeat;
                    width: 100%;
                    height: 540px;
                    background-size: cover;
                    transition: all 0.25s ease-in-out 0s;
                }
                .home section#news ul:last-child li a .img {
                    height: 268px;
                }
                .home section#news li a:hover .img {
                    transform: scale(1.05);
                }
            .home section#news li dl {
                position: absolute;
                bottom: 0;
                left: 0;
                background: linear-gradient( rgba(0,0,0,0) 0%, #000 100%);
                width: 100%;
                padding: 20px 10px 10px;
                box-sizing: border-box;
                transition: all 0.25s ease-in-out 0s;
            }
            .home section#news li a:hover dl {
                opacity: 0.7;
            }
                .home section#news li dl dt {
                    font-size: 1.3rem;
                    font-weight: bold;
                    line-height: 1.2;
                }
                .home section#news ul:last-child li dl dt {
                    font-size: 1.0rem;
                }
                .home section#news li dl dd.tag {
                    background: url(../images/ico/ico_tag01.png) no-repeat left 0.3em;
                    background-size: 10px;
                    padding-left: 15px;
                    font-size: 0.75rem;
                }


@media screen and (max-width:768px){
    .home section#news ul {
        width: 100%;
        float: none;
    }
    .home section#news ul:last-child {
        float: none;
        margin-top: 3px;
    }
        .home section#news ul:last-child li {
            width: 49.6%;
            margin-bottom: 3px;
        }
            .home section#news li dl {
                padding: 20px 5px 5px;
            }
            .home section#news li a:hover dl {
                opacity: inherit;
            }
                .home section#news li dl dt {
                    font-size: 1.0rem;
                }
                .home section#news ul:last-child li dl dt {
                    font-size: 0.75rem;
                }
                .home section#news li dl dd,
                .home section#news li dl dd.tag {
                    font-size: 0.65rem;
                }
}

@media screen and (max-width:400px){
    .home section#news li a,
    .home section#news li a .img {
        height: 300px;
    }
    .home section#news ul:last-child li a,
    .home section#news ul:last-child li a .img {
        height: 150px;
    }
}


.home section#about .txt {
    margin-bottom: 70px;
    color: #FFF;
    font-size: 1.2rem;
    text-align: center;
}

@media screen and (max-width:768px){
    .home section#about .txt {
        margin-bottom: 40px;
        font-size: 0.95rem;
    }
}


.home #education {
    background: #FFF url(../../images/bg_education.jpg) no-repeat top center;
    background-size: cover;
    padding: 0;
}
.home #education .head_box {
    background: rgba(66,75,166,0.9);
    background: linear-gradient(to right, rgba(66,75,166,0.9) 0%,rgba(66,75,166,0.9) 50%,rgba(92,144,183,0.9) 50%,rgba(92,144,183,0.9) 100%);
    padding: 80px 0 40px;
}
.home section#education .txt {
    color: #FFF;
    font-size: 1.2rem;
    text-align: center;
}


.education_box {
    width: 50%;
    float: left;
    padding: 50px 55px;
    box-sizing: border-box;
    color: #FFF;
}
.education_box.expertise {
    background: rgba(66,75,166,0.9);
}
.education_box.human {
    background: rgba(92,144,183,0.9);
}
    .education_box h3 {
        width: 180px;
        padding: 25px 15px;
        margin: 0 auto 40px;
        border: 3px solid #FFF;
        box-sizing: border-box;
        font-family: "Sawarabi Mincho";
        text-align: center;
        font-size: 2.8rem;
        font-weight: normal;
        line-height: 1.4;
    }
    .education_box.expertise h3 {
        background: rgba(97,108,195,0.8);
    }
    .education_box.human h3 {
        background: rgba(84,163,186,0.8);
    }

    .education_list li {
        width: 45%;
        float: left;
        margin-top: 40px;
    }
    .education_list li:nth-child(even) {
        float: right;
    }
    .education_list.single li {
        float: none;
        margin: 40px auto 0;
    }
        .education_list li a {
            display: block;
            transition: all 0.25s ease-in-out 0s;
        }
        .education_list li a:hover {
            opacity: 0.7;
        }
            .education_list li a img {
                border-radius: 50%;
                box-shadow: 2px 2px 3px #111;
                transition: all 0.25s ease-in-out 0s;
            }
            .education_list li a:hover img {
                transform: scale(1.05);
            }
            .education_list li a .txt {
                margin-top: 15px;
                font-weight: bold;
                font-size: 1.3rem !important;
                line-height: 1.2;
            }
                .education_list li a .txt span {
                    display: inline-block;
                    background: url(../images/ico/ico_arrow02.png) no-repeat right 0.1em;
                    background-size: 10px 16px;
                    padding-right: 20px;
                    line-height: 1.2;
                }


@media screen and (max-width:1100px){
    .education_box {
        padding: 50px 30px;
    }
}

@media screen and (max-width:960px){
    .education_box br.sp_br {
        display: none;
    }
}

@media screen and (max-width:768px){
    .home #education {
        background-size: contain;
    }
    .home section#education .txt {
        font-size: 0.95rem;
    }
    .home #education .head_box {
        background: rgba(21,55,119,0.9);
        padding: 40px 0;
    }
    
    .education_box {
        width: 100%;
        float: none;
        padding: 40px 20px;
    }
    
    .education_box h3 {
        width: 130px;
        padding: 25px 15px;
        margin: 0 auto 20px;
        font-size: 1.6rem;

    }
    .education_list li {
        width: 47%;
        margin-top: 20px;
    }
    .education_list.single li {
        margin: 20px auto 0;
    }
        .education_list li a .txt {
            margin-top: 15px;
            font-size: 0.9rem !important;
        }
            .education_list li a .txt span {
                background-size: 8px 12px;
                padding-right: 15px;
            }

}


.bnr01 {
    background: #F3F5F8;
    padding: 50px 0;
}
    .bnr01 ul {
        width: 1000px;
        margin: 0 auto;
    }
        .bnr01 ul li {
            width: 30%;
            float: left;
            margin-right: 5%;
            text-align: center;
        }
        .bnr01 ul li:last-child {
            margin-right: 0;
        }
            .bnr01 ul li a {
                display: block;
                background-color: #FFF;
                background-repeat: no-repeat;
                background-position: center 40px;
                padding: 120px 0 30px;
                box-shadow: 2px 2px 0 #DDD;
                box-sizing: border-box;
                color: #00479C;
                font-weight: bold;
                font-size: 1.2rem;
                transition: all 0.25s ease-in-out 0s;
            }
            .bnr01 ul li.support a {
                background-image: url(../images/ico/ico_support01.png);
            }
            .bnr01 ul li.life a {
                background-image: url(../images/ico/ico_life01.png);
            }
            .bnr01 ul li.educational a {
                background-image: url(../images/ico/ico_educational01.png);
            }
            .bnr01 ul li a:hover {
                background-color: #F4FDFF;
            }
                .bnr01 ul li a span {
                    display: block;
                    font-size: 0.6rem;
                    font-weight: normal;
                    color: #777;
                }

@media screen and (max-width:1000px){
    .bnr01 {
        padding: 50px 20px;
    }
        .bnr01 ul {
            width: 100%;
        }
}

@media screen and (max-width:768px){
    .bnr01 {
        padding: 20px 10px;
    }
        .bnr01 ul li {
            width: 31%;
            margin-right: 3.5%;
        }
            .bnr01 ul li a {
                background-size: 37px 30px;
                background-position: center 20px;
                padding: 60px 5px 15px;
                font-size: 0.8rem;
            }
                .bnr01 ul li a span {
                    display: none;
                }
}





.home section#pickup {
    background: rgba(255,255,255,0.9);
}
    .home section#pickup .inner {
        margin: 0 20px;
    }
        .home section#pickup .inner ul li {
            width: 31%;
            float: left;
            margin: 0 3.5% 40px 0;
        }
        .home section#pickup .inner ul li:nth-child(3n) {
            margin: 0 0 40px 0;
        }
            .home section#pickup .inner li a {
                display: block;
                position: relative;
                color: #FFF;
                overflow: hidden;
            }
                .home section#pickup .inner li a img {
                    transition: all 0.25s ease-in-out 0s;
                }
                .home section#pickup li a:hover img {
                    transform: scale(1.05);
                }

                .home section#pickup .inner li a::after,
                .home section#pickup .inner li a::before,
                .home section#pickup .inner li a .btn_inner::after,
                .home section#pickup .inner li a .btn_inner::before {
                    background-color: rgba(255,255,255,0);
                    content: '';
                    display: block;
                    position: absolute;
                    z-index: 10;
                    transition: all .4s ease;
                    -webkit-transition: all .4s ease;
                }
                .home section#pickup .inner li a::after {
                    height: 2px;
                    left: 10px;
                    top: 10px;
                    width: 0px;
                }
                .home section#pickup .inner li a::before {
                    bottom: 10px;
                    height: 2px;
                    right: 10px;
                    width: 0px;
                }
                .home section#pickup .inner li a .btn_inner::after {
                    bottom: 10px;
                    height: 0px;
                    left: 10px;
                    width: 2px;
                }
                .home section#pickup .inner li a .btn_inner::before {
                    height: 0px;
                    right: 10px;
                    top: 10px;
                    width: 2px;
                }
                .home section#pickup .inner li a:hover::after,
                .home section#pickup .inner li a:hover::before {
                    background-color: rgba(255,255,255,1.0);
                    width: 100%;
                    width: calc(100% - 20px);
                }
                .home section#pickup .inner li a:hover .btn_inner::after,
                .home section#pickup .inner li a:hover .btn_inner::before {
                    background-color: rgba(255,255,255,1.0);
                    height: 100%;
                    height: calc(100% - 20px);
                }

            .home section#pickup .inner li p {
                display: flex;
                position: absolute;
                top: 0;
                left: 0;
                background: rgba(0,0,0,0.4);
                width: 100%;
                height: 100%;
                padding: 10px;
                box-sizing: border-box;
                text-align: center;
                align-items: center;
                justify-content: center;
                transition: all 0.25s ease-in-out 0s;
            }
            .home section#pickup .inner li a:hover p {
                opacity: 0.7;
            }
            .home section#pickup .inner li a p span {
                background: url(../images/ico/ico_arrow02.png) no-repeat right center;
                background-size: 10px 16px;
                padding-right: 20px;
                line-height: 1.2;
                font-size: 1.2rem;
                font-weight: bold;
                transition: all 0.25s ease-in-out 0s;
            }
            .home section#pickup .inner li a p span.blank {
                background: url(../images/ico/ico_blank01.png) no-repeat right center;
                background-size: 14px;
            }

@media screen and (max-width:1000px){
    .home section#pickup .inner ul li {
        margin: 0 3.5% 30px 0;
    }
    .home section#pickup .inner ul li:nth-child(3n) {
        margin: 0 0 30px 0;
    }
    .home section#pickup .inner li p span {
        font-size: 1.1rem;
    }
}

@media screen and (max-width:768px){
    .home section#pickup .inner {
        margin: 0 10px;
    }
    .home section#pickup .inner ul li {
        width: 48.5%;
        margin: 0 0 10px 0;
    }
    .home section#pickup .inner ul li:nth-child(even) {
        float: right;
    }
    .home section#pickup .inner ul li:nth-child(3n) {
        margin: 0 0 10px 0;
    }
        .home section#pickup .inner li a p span {
            background-size: 8px 12px;
            padding-right: 12px;
            font-size: 0.95rem;
        }
        .home section#pickup .inner li a p span.blank {
            background-size: 10px;
        }
}


.bnr02 {
    margin-top: 30px;
}
    .bnr02 ul li {
        width: 33.333%;
        float: left;
        border-right: 1px solid #FFF;
        box-sizing: border-box;
        text-align: center;
    }
    .bnr02 ul li:last-child {
        border-right: none;
    }
        .bnr02 ul li a {
            display: block;
            position: relative;
            background-color: #00479C;
            background-repeat: no-repeat;
            background-position: center 40px;
            padding: 120px 0 30px;
            box-sizing: border-box;
            color: #FFF;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.25s ease-in-out 0s;
        }
        .bnr02 ul li a:after {
            position: absolute;
            top: 50%;
            right: 10px;
            content: "";
            width: 10px;
            height: 16px;
            background: url(../images/ico/ico_arrow02.png) no-repeat 0 0;
            background-size: 10px 16px;
        }
        .bnr02 ul li.recruit a {
            background-image: url(../images/ico/ico_recruit01.png);
        }
        .bnr02 ul li.teacher a {
            background-image: url(../images/ico/ico_teacher01.png);
        }
        .bnr02 ul li.student a {
            background-image: url(../images/ico/ico_student01.png);
        }
        .bnr02 ul li a:hover {
            background-color: #003E88;
        }



@media screen and (max-width:768px){
    .bnr02 ul li {
        width: 100%;
        float: none;
        border-right: none;
        border-bottom: 1px solid #FFF;
        text-align: left;
    }
    .bnr02 ul li:last-child {
        border-bottom: none;
    }
        .bnr02 ul li a {
            background-size: 33px 30px;
            background-position: 10px center;
            padding: 10px 10px 10px 55px;
            font-size: 1.0rem;
        }
        .bnr02 ul li a:after {
            top: 43%;
            width: 8px;
            height: 12px;
            background-size: 8px 12px;
        }
}

