﻿@charset "utf-8";

/* mainWrapper
================================================== */
#mainWrapper {
	position: relative;
	overflow: hidden;
}
/* movieArea
================================================== */
#movieArea {
	position: relative;
	z-index: 0;
}
/* movieBg
================================================== */
#movieBg {
	position: absolute;
	z-index: 0;
}
#movieBg img{
	width: 100%;
}

/* movieBox
================================================== */
#movieBox {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0 auto;
	height: auto;
}
@media screen and (max-width: 600px) {
	#movieBox {
		position: absolute;
		top: 0;
		left: -40px;
	}
}
#movieBox video{
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
@media screen and (max-width: 600px) {
	#movieBox video{
		width: 180%;
		height: auto;
		padding: 0;
		margin: 0;
	}
}

/* mainArea
================================================== */
/* mainArea */
#mainArea .head-border{
	position: absolute;
	top: 50%;
	left: 15%;
	z-index: 1;
	width: 70%;
	margin: 0 auto;
	padding: 0;
}
#mainArea h1{
	width: 30%;
	margin: 0 auto;
	padding: 0;
}
@media screen and (max-width: 600px) {
	#mainArea h1{
		top: 52%;
	}
}
/* ------ 左右ライン ------ */
.head-border {
    display: flex;
    align-items: center;
}
.head-border:before,
.head-border:after {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #fff;
}
@media screen and (max-width: 600px) {
	.head-border:before,
	.head-border:after {
		height: 1px;
	}
}
.head-border:before {
    margin-right: 1rem;
}
.head-border:after {
    margin-left: 1rem;
}
/* vw */
#mainArea .vw {
	position: relative;
	padding: 18% 0 30%;
	z-index: 1;
	width: 100%;
	text-align: center;
    font-size: 7vw;
    font-weight: bold;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #fff;
}
@media screen and (max-width: 600px) {
	#mainArea .vw {
		padding: 40% 0 53% 0;
	}
}

/* topArea
================================================== */
#topArea  {
	padding: 5% 0 0;
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
}
@media screen and (max-width: 600px) {
	#topArea  {
		padding: 0;
		width: 100%;
	}
}

/* newsArea
================================================== */
#newsArea {
	padding: 5% 0;
}
@media screen and (max-width: 600px) {
	#newsArea {
		padding: 10% 0;
	}
}
#newsArea .webfontL{
	color: #2e4e97;
}
#newsArea p{
	color: #2e4e97;
}
#newsBlock dl{
	border-bottom: dotted 1px #ccc;
	padding: 1% 0;
}
@media screen and (max-width: 600px) {
	#newsBlock dl{
		padding: 3% 0;
	}
}
#newsBlock dt{
	float: left;
	font-size: 70%;
	text-align: center;
	padding: 0 10px;
	width: 50px;
	color: #fff;
	border-radius: 2px; 
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
	line-height: 30px;
}
#newsBlock dt.info{
	background-color: #00b2fc;
}
#newsBlock dt.recruit{
	background-color: #309c0f;
}
#newsBlock dt.ir{
	background-color: #5f5e5e;
}
#newsBlock dd.day{
	float: left;
	font-weight: bold;
	font-size: 70%;
	padding-left: 10px;
	width: 50px;
	line-height: 30px;
}
#newsBlock dd.newsTxt{
	clear: both;
	width: 100%;
	padding-top: 0.5%;
}
#newsBlock dt.info{
	background-color: #00b2fc;
}
#newsBlock .newsBtn{
	padding-top: 2%;
}
#newsBlock .newsBtn a{
	text-align: center;
	display: block;
	line-height: 40px;
	padding: 0 10px;
	color: #fff;
	border-radius: 2px; 
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
	background-color: #2e4e97;
}
#newsBlock .newsBtn a:hover{
	background-color: #4167be;
	transition: .3s;
}

/* bannerArea
================================================== */
#bannerArea {
	padding: 5% 0;
}
@media screen and (max-width: 600px) {
	#bannerArea {
		padding: 10% 0;
	}
}
#bannerArea .fLeft{
	width: 32%;
}
#bannerArea .fRight{
	width: 32%;
}
#bannerArea .fMid{
	width: 32%;
}

/* businessArea
================================================== */
#businessArea {
	background: url("/images/businessBg.jpg") no-repeat #204e9c top center;
	background-size: cover;
	padding: 5% 0;
}
@media screen and (max-width: 600px) {
	#businessArea {
		background-size: contain;
	}
}
#businessArea .webfontL{
	color: #fff;
}
#businessArea p{
	color: #fff;
}
.businessBox h2{
	float: left;
	width: 23%;
	padding: 1%;
	margin: 0;
}
@media screen and (max-width: 600px) {
	.businessBox h2{
		width: 44%;
		padding: 3%
	}
}

/* recruitArea
================================================== */
#recruitArea {
	background: url("/images/recruitBg.jpg") no-repeat #fff top center;
	background-size: cover;
	padding: 5% 0 10%;
}

#recruitArea .webfontL{
	color: #2e4e97;
}
#recruitArea p{
	color: #2e4e97;
}
#recruitCopy {
	max-width: 960px;
	margin: 0 auto;
	padding: 7% 0 0;
}
#recruitCopy p{
	width: 42%;
	padding: 1% 0 1% 5%;
	color: #fff;
	background-color: #0082e6;
	font-size: 140%;
	line-height: 140%;
}
@media screen and (max-width: 1100px) {
	#recruitCopy p{
		font-size: 2vw;
	}
}
@media screen and (max-width: 600px) {
	#recruitCopy p{
		font-size: 100%;
		width: 80%;
		padding: 2% 0 2% 5%;
		line-height: 130%;
	}
}
#recruitCopy p br{
	display: none;
}
@media screen and (max-width: 600px) {
	#recruitCopy p br{
		display: block;
	}
}
.recruitBtnLong {
	width: 38%;
	margin: 0 auto;
	padding: 5% 0 0 0;
}
@media screen and (max-width: 600px) {
	.recruitBtnLong {
		width: 45%;
	}
}
.recruitBtnLong .recruitBtn h2{
	background-color: #2e4e97;
}
.recruitBtnL {
	float: left;
	width: 38%;
	padding: 5% 0 0 10%;
}
.recruitBtnR {
	float: right;
	width: 38%;
	padding: 5% 10% 0 0;
}
@media screen and (max-width: 600px) {
	.recruitBtnL {
		float: left;
		width: 45%;
		padding: 5% 0 0 0;
	}
	.recruitBtnR {
		float: right;
		width: 45%;
		padding: 5% 0 0 0;
	}
}
.recruitBtnL .recruitBtn h2{
	background-color: #0083ed;
}
.recruitBtnR .recruitBtn h2{
	background-color: #00ab00;
}
#recruitArea .recruitBtn h2{
	padding: 10% 0;
	margin: 0;
	font-size: 140%;
	font-weight: normal;
	text-align: center;
	color: #fff;
	box-shadow: -15px 15px 0 0 rgba(200,200,200,1);
}
@media screen and (max-width: 1100px) {
	#recruitArea .recruitBtn h2{
		font-size: 2vw;
	}
}
@media screen and (max-width: 600px) {
	#recruitArea .recruitBtn h2{
		font-size: 100%;
	}
}



