@charset "utf-8";
/*------------------------------------------------------------
	書式設定
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft { text-align: left !important; }
.taCenter { text-align: center !important; }
.taRight { text-align: right !important; }

/* フォントの大きさ（プラス） */
.fsP1 { font-size: 1.08em !important; }
.fsP2 { font-size: 1.16em !important; }
.fsP3 { font-size: 1.24em !important; }
.fsP4 { font-size: 1.32em !important; }
.fsP5 { font-size: 1.4em !important; }

/* フォントの大きさ（マイナス） */
.fsM1 { font-size: 0.92em !important; }
.fsM2 { font-size: 0.84em !important; }
.fsM3 { font-size: 0.76em !important; }
.fsM4 { font-size: 0.68em !important; }
.fsM5 { font-size: 0.6em !important; }

/* フォントの太さ */
.fwNormal { font-weight: normal !important; }
.fwBold { font-weight: bold !important; }

/* フォントの色 */
.fcRed{
	color: #D14E4B;
}
.fcBlu{
	color: #3085C9;
}



/*------------------------------------------------------------
	微調整用クラス（※多用しないこと）
------------------------------------------------------------*/
.mt0 { margin-top: 0 !important; }
.mb0 { margin-bottom: 0 !important; }

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
	* html .clearfix {
		zoom: 1;
	}

	*+html .clearfix {
		zoom: 1;
	}

.clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
#main .headLine01 {
	padding: 51px 0 41px;
	color: #ffffff;
	font-size: 40px;
	text-align: center;
	line-height: 1.5;
	letter-spacing: 1px;
	background-color: #00A0EE;
	margin-bottom: 30px;
	/*----------------------------------------------------------------------------------------------------------------------------------------*/
	font-weight:normal;
	/*----------------------------------------------------------------------------------------------------------------------------------------*/
}

#main .headLine01 span {
	display: block;
	font-size: 14px;
}

/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
#main .headLine02 {
	margin-bottom: 40px;
	font-size: 24px;
	border-bottom: 3px solid #DBDBDB;
}

#main .headLine02 span {
	margin-bottom: -3px;
	padding-bottom: 12px;
	display: inline-block;
    letter-spacing: 0.05em;
	border-bottom: 3px solid #172C3C;
    min-width: 289px;
	/*----------------------------------------------------------------------------------------------------------------------------------------*/
	font-weight:normal;
	/*----------------------------------------------------------------------------------------------------------------------------------------*/
}

/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
#main .headLine03 {
	margin-bottom: 21px;
	padding-left: 15px;
	color: #231815;
	font-size: 18px;
	line-height: 1.3;
	border-left: 8px solid #00A0EE;
}

/*------------------------------------------------------------
	comUl
------------------------------------------------------------*/
#main .comUl {
	background-color: #E6EAEB;
}

#main .comUl li {
	float: left;
	width: 20%;
	position: relative;
}

#main .comUl li img {
	width: 100%;
}

#main .comUl li span {
	display: block;
}

#main .comUl li .photo {
	position: relative;
}
#main .comUl li .photo .new {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	color: #221714;
	width: 90px;
	height: 30px;
	text-align: center;
	background: #f9c158;
}
#main .comUl li .bgTxt {
	padding: 17px 25px;
	position: absolute;
	color: #fff;
	font-size: 15px;
	line-height: 1.7;
	bottom: 0;
	left: 0;
	min-width: 50%;
	background-color: #182D3D;
	box-sizing: border-box;
}

#main .comUl li .bgTxt .txt {
	font-size: 14px;
}

#main .comUl li .bgTxt .name {
	font-size: 20px;
}

#main .comUl li .bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	overflow: hidden;
}

#main .comUl li .bg:before {
	width: 100%;
	height: 100%;
	background: url(../img/com_bg.png) repeat left top;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: -100%;

	content: "";
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#main .comUl li .bg > span {
	display: table;
	height: 100%;
}

#main .comUl li .bg span span {
	padding: 0 20px;
	display: table-cell;
	font-size: 1.8vw;
	font-weight: bold;
	line-height: 1.8;
	text-align: left;
	vertical-align: middle;
	position: relative;
	z-index: 30;
	top: 20px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    -moz-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    -ms-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

#main .comUl li a:hover {
	text-decoration: none;
}

#main .comUl li a:hover .bg:before {
	left: 0;
}

#main .comUl li a:hover .bg span span {
	top: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
}


/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
#main .comLink {
	margin-bottom: 53px;
	background-color: #00A0EE;
}

#main .comLink ul {
	margin: 0 auto;
	max-width: 1000px;
}

#main .comLink li {
	float: left;
	width: 20%;
	display: table;
}

#main .comLink li a {
	padding: 26px 0;
	width: 100%;
	display: table-cell;
	color: #231815;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	vertical-align: middle;
	text-align: center;
	/*----------------------------------------------------------------------------------------------------------------------------------------*/
	font-weight:normal;
	/*----------------------------------------------------------------------------------------------------------------------------------------*/
}

#main .comLink .on a {
	background-color: #fff;
}

#main .comLink li a:hover {
	text-decoration: none;
	background-color: #fff;
}
@media all and (min-width: 767px) and (max-width: 1100px) {
    #main .comLink li {
        width: 19%;
    }
}
/*------------------------------------------------------------
	mainBox
------------------------------------------------------------*/
#main .mainBox {
	margin: 0 auto;
	max-width: 1000px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
	/*#main .mainBox {
		padding: 0 20px;
	}*/
}

/*------------------------------------------------------------
	comTable
------------------------------------------------------------*/
#main .comTable {
	margin-bottom: 63px;
	width: 100%;
	border-collapse: collapse;
}

#main .comTable th,
#main .comTable td {
	padding: 15px 25px;
	color: #231815;
	font-size: 14px;
	text-align: left;
	vertical-align: middle;
	line-height: 2;
	border-bottom: 2px solid #d7d7d7;
}

#main .infotxt{margin-bottom: 30px;}

#main .comTable tr:first-child {
	border-top: 2px solid #d7d7d7;
}

#main .comTable th {
	width: 25%;
	text-align: center;
	background-color: #CAE9FF;
}
#main .comTable td .comFont {
	font-size: 12px;
	display: block;
}

#main .table01 {
	margin-bottom: 176px;
}

.js-appear {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transform: translateY(40px);
	-ms-transform: translateY(40px);
	transform: translateY(40px);
	-webkit-transition: 1s cubic-bezier(.11, .2, .48, 1);
	transition: 1s cubic-bezier(.11, .2, .48, 1);
}

.js-appear.appear {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
    margin-top: 80px;
}
.comBtn a {
    margin: 0 auto;
    padding: 7px 30px 10px;
    display: block;
    width: 348px;
    text-align: center;
    letter-spacing: 0.07em;
    border-radius: 50px;
    border: 1px solid #172C3C;
    background: url("../img/icon05.png") no-repeat right 16px center/14px;
}
.comBtn a:hover {
    text-decoration: none;
    opacity: 0.7;
}
@media all and (-ms-high-contrast:none) {
    .comBtn a {
        padding: 10px 30px 7px;
    }
}
@media all and (min-width: 0) and (max-width: 767px) {
    .comBtn a {
        padding: 6px 30px 5px;
        width: 190px;
        font-size: 14px;
        line-height: 1.4;
    }
}
@media all and (min-width: 0) and (max-width: 1159px) {
	/*------------------------------------------------------------
		comUl
	------------------------------------------------------------*/
	#main .comUl li a:hover .bg {
		/*display: none;*/
	}
	
	#main .comUl li .photo .new {
		font-size: 12px;
		width: 60px;
		height: 20px;
	}

	/*------------------------------------------------------------
		comLink
	------------------------------------------------------------*/
	#main .comLink li a:hover {
		background-color: #F9C158;
	}

}


@media all and (min-width: 0) and (max-width: 767px) {

	/*------------------------------------------------------------
		headLine01
	------------------------------------------------------------*/
	#main .headLine01 {
		padding: 12px 0 17px;
		font-size: 18px;
		border-width: 1px;
	}

	#main .headLine01 span {
		display: block;
		font-size: 10px;
		font-weight: normal;
        letter-spacing: 0;
	}

	/*------------------------------------------------------------
		headLine02
	------------------------------------------------------------*/
	#main .headLine02 {
		margin-bottom: 20px;
		font-size: 14px;
	}

	#main .headLine02 span {
		padding-bottom: 4px;
        min-width: 172px;
        font-weight: bold;
	}
    /*------------------------------------------------------------
		headLine03
	------------------------------------------------------------*/
    #main .headLine03 {
        margin-bottom: 6px;
        font-size: 12px;
        line-height: 1.2;
        border-width: 5px;
    }
	/*------------------------------------------------------------
		comUl
	------------------------------------------------------------*/
	#main .comUl {
		margin: 0 15px;
		background: none;
	}

	#main .comUl li {
		margin-top: 20px;
		position: relative;
	}

	#main .comUl li:first-child {
		margin: 0;
	}

	#main .comUl li .photo {
		float: left;
		width: 50%;
	}
	

	#main .comUl li .bg {
		float: right;
		width: 50%;
		display: block;
		position: inherit;
		background: #F9C158;
	}

	#main .comUl li .bg:before {
		display: none;
	}

	#main .comUl li .bgTxt {
		position: inherit;
		width: 100%;
	}

	#main .comUl li .sub {
		overflow: hidden;
	}

	#main .comUl li .bg span span {
		padding: 0 10px;
		font-size: 14px;
		line-height: 1.5;
		top: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		opacity: 1;
	}

	#main .comUl li .bgTxt {
		padding: 7px 0 0;
		color: #000;
		font-size: 9px;
		line-height: 1.3;
		position: relative;
		background: none;
	}

	#main .comUl li .bgTxt .name {
		margin-right: 10px;
		display: inline;
		font-size: 14px;
	}

	#main .comUl li .bgTxt .txt {
		font-size: 10px;
	}

	#main .comUl li .link {
		padding: 5px 35px 5px 10px;
		position: absolute;
		color: #fff;
		top: 12px;
		right: 0;
		font-size: 11px;
		background: #182D3E url("../../../image/recruit/") no-repeat 92% center;
		background-size: 5px 7px;
		border-radius: 30px;
	}

	/*------------------------------------------------------------
		mainBox
	------------------------------------------------------------*/
	#main .mainBox {
		margin: 0 15px;
		width: auto;
	}

	/*------------------------------------------------------------
		comLink
	------------------------------------------------------------*/
	#main .comLink {
		display: none;
	}

	/*------------------------------------------------------------
		comTable
	------------------------------------------------------------*/
	#main .comTable {
		margin-bottom: 0;
	}

	#main .comTable th,
	#main .comTable td {
		padding: 10px 0;
		width: 100%;
		display: block;
		float: left;
		text-align: left;
		border: none;
	}

	#main .comTable th {
		background-color: #fff;
		border: 2px solid #dbdbdb;
		box-sizing: border-box;
	}

	#main .comTable tr:first-child {
		border: none;
	}

	#main .comTable th {
		margin-bottom: 2px;
		padding: 10px 12px 8px;
		position: relative;
	}

	#main .comTable th:after {
		margin-top: -25px;
		width: 50px;
		height: 50px;
		position: absolute;
		right: 13px;
		top: 50%;
		background: url("../../../image/recruit/icon13.gif") no-repeat right center;
		background-size: 25px 25px;

		content: "";
	}

	#main .comTable th.on:after {
		background-image: url("../../../image/recruit/icon08.gif");
	}

	#main .comTable td {
		margin-bottom: 1px;
		display: none;
		font-size: 12px;
		line-height: 1.5;
	}

	#main .comTable .specialTh {
		padding: 2px 12px;
		line-height: 1.5;
	}

	#main .table01 {
		margin-bottom: 32px;
	}
}

@media all and (min-width: 1160px) {
	#main .headLine01 {
		font-size: 45px;
		letter-spacing: 3px;
		font-weight: normal;
	}

	#main .headLine01 span {
		letter-spacing: 0;
	}

	#main .comLink li a {
		font-weight: normal;
	}

	#main .headLine02 {
		font-weight: normal;
	}
}

