@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');

.appearVertical{
	opacity : 0;
}
@media screen and (max-width : 768px) {
}


/*------------------------------
	kv
------------------------------*/
#index #kv,
#detail #kv,
#entry #kv {
	background-size: cover;
	height: 160px;

	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
#index #kv h2,
#detail #kv h2,
#entry #kv h2 {
	color: #ffffff;
	font-size: 28px;
	font-weight: 500;
}
@media screen and (max-width : 768px) {
	#index #kv,
	#detail #kv,
	#entry #kv {
		background-size: cover;
		height: 140px;

		display: -webkit-flex;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#index #kv h2,
	#detail #kv h2,
	#entry #kv h2 {
		color: #ffffff;
		font-size: 24px;
	}
}

/*------------------------------
	index
------------------------------*/
#index #contents {
	padding-bottom: 50px;
}
@media screen and (max-width : 768px) {
	#index #contents {
		padding-bottom: 40px;
	}
}
/*------------------------------*/
#index #selectBox {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 10px 70px 10px;
	margin-bottom: 80px;
	border-bottom: solid 1px #e8e8e8;
	position: relative;
}
#index #selectBox .inner {
	padding-right: 0px;

	display: flex;
	justify-content: space-between;
	align-items: center;
}
#index #selectBox .selectBtn {
	width: 230px;
}
#index #selectBox .searchBtn {
	width: 150px;
	position: absolute;
	left: 50%;
	bottom: 20px;
	margin-left: -75px;
	background-color: #434343;
	border: solid 1px #434343;
}
#index #selectBox .searchBtn .inner {
	width: 100%;
	display: block;
	padding: 8px 0;
	text-align: center;
	color: #ffffff;
}
#index #selectBox .searchBtn .inner:hover {
	cursor: pointer;
}
@media screen and (max-width : 768px) {
	#index #selectBox {
		max-width: 900px;
		margin: 0 auto;
		padding: 30px 10px 70px 10px;
		margin-bottom: 40px;
		border-bottom: solid 1px #e8e8e8;
		position: relative;
	}
	#index #selectBox .inner {
		padding-right: 0px;

		display: block;
	}
	#index #selectBox .selectBtn {
		width: 230px;
		margin: 5px 0;
	}
	#index #selectBox .searchBtn {
		width: 150px;
		position: absolute;
		left: 50%;
		bottom: 20px;
		margin-left: -75px;
		background-color: #434343;
		border: solid 1px #434343;
	}
	#index #selectBox .searchBtn .inner {
		width: 100%;
		display: block;
		padding: 8px 0;
		text-align: center;
		color: #ffffff;
	}
	#index #selectBox .searchBtn .inner:hover {
		cursor: pointer;
	}
}
/*------------------------------
	form
------------------------------*/
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url("../images/select.png") no-repeat right center;
	width: 140px;
	border-radius: 0px;
	background-color: #ffffff;
	padding: 6px 27px;
	margin: 0px 10px 0px 10px;
	font-size: 14px;
	text-align: center;
}

/*------------------------------*/
#index .jobBox {
	max-width: 900px;
	margin: 0 auto;
	padding-bottom: 70px;
}
#index .jobBox h3 {
	background-color: #e8e8e8;
	padding: 16px 20px 14px;
	font-weight: 500;
}
#index .jobBox .tableArea {
	padding: 10px 0 45px;
}
#index .jobBox .tableArea table {
	width: 100%;
}
#index .jobBox .tableArea th {
	padding: 10px 20px;
	border-bottom: solid 1px #e8e8e8;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	line-height: 1.8;

	width: 80px;
}
#index .jobBox .tableArea td {
	padding: 10px 20px 10px 0px;
	border-bottom: solid 1px #e8e8e8;
	text-align: left;
	vertical-align: top;
	line-height: 1.8;
}
#index .jobBox .detailBtn {
	width: 200px;
	margin: 0 auto;
	text-align: center;
	background-color: #434343;
	height: 45px;

	transition-duration: 0.3s;
}
#index .jobBox .detailBtn:last-child {
	margin-top: 10px;
}
#index .jobBox .detailBtn a {
	border: solid 1px #434343;
	display: inline-block;
	width: 198px;
	color: #ffffff;
	padding: 14px 0 12px;
	text-decoration: none;
	font-size: 14px;
	background-color: #434343;
	outline: none;

	position: relative;
	z-index: 2;
	overflow: hidden;
}
#index .jobBox .detailBtn a::before,
#index .jobBox .detailBtn a::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
#index .jobBox .detailBtn a,
#index .jobBox .detailBtn a::before,
#index .jobBox .detailBtn a::after {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
#index .jobBox .detailBtn a:hover {
	color: #434343;
}
#index .jobBox .detailBtn a::after {
	top: 0;
	width: 100%;
	height: 100%;
	left: -100%;
}
#index .jobBox .detailBtn a:hover::after {
	top: 0;
	left: 0;
	background-color: #ffffff;
}
@media screen and (max-width : 768px) {
	#index .jobBox {
		max-width: 900px;
		margin: 0 auto;
		padding-bottom: 40px;
	}
	#index .jobBox h3 {
		background-color: #e8e8e8;
		padding: 12px 10px 10px;
	}
	#index .jobBox .tableArea {
		padding: 10px 0 45px;
	}
	#index .jobBox .tableArea table {
		width: 100%;
	}
	#index .jobBox .tableArea th {
		padding: 10px 10px;
		border-bottom: solid 1px #e8e8e8;
		text-align: left;
		vertical-align: top;
		font-weight: normal;
		line-height: 1.8;

		width: 80px;
	}
	#index .jobBox .tableArea td {
		padding: 10px 10px 10px 0px;
		border-bottom: solid 1px #e8e8e8;
		text-align: left;
		vertical-align: top;
		line-height: 1.8;
	}
	#index .jobBox .detailBtn {
		width: 150px;
		margin: 0 auto;
		text-align: center;
		background-color: #434343;
		height: 36px;

		transition-duration: 0.3s;
	}
	#index .jobBox .detailBtn a {
		border: solid 1px #434343;
		display: inline-block;
		width: 148px;
		color: #ffffff;
		padding: 12px 0 10px;
		text-decoration: none;
		font-size: 14px;
		background-color: #434343;
		outline: none;

		position: relative;
		z-index: 2;
		overflow: hidden;
	}
	#index .jobBox .detailBtn a::before,
	#index .jobBox .detailBtn a::after {
		position: absolute;
		z-index: -1;
		display: block;
		content: '';
	}
	#index .jobBox .detailBtn a,
	#index .jobBox .detailBtn a::before,
	#index .jobBox .detailBtn a::after {
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	#index .jobBox .detailBtn a:hover {
		color: #434343;
	}
	#index .jobBox .detailBtn a::after {
		top: 0;
		width: 100%;
		height: 100%;
		left: -100%;
	}
	#index .jobBox .detailBtn a:hover::after {
		top: 0;
		left: 0;
		background-color: #ffffff;
	}
}

/*------------------------------
	detail
------------------------------*/
#detail #contents {
	padding-bottom: 70px;
}
@media screen and (max-width : 768px) {
	#detail #contents {
		padding-bottom: 40px;
	}
}
/*------------------------------*/
#detail h3 {
	padding: 50px 0 60px;
	text-align: center;
	font-size: 28px;
	font-weight: normal;
}
@media screen and (max-width : 768px) {
	#detail h3 {
		padding: 30px 0 40px;
		text-align: center;
		font-size: 24px;
	}
}
/*------------------------------*/
#detail .entryStop {
	padding-bottom: 20px;
	text-align: center;
}
/*------------------------------*/
#detail .tableArea {
	padding-bottom: 70px;
	max-width: 1100px;
	margin: 0 auto;
}
#detail .tableArea table {
	width: 100%;
}
#detail .tableArea table tr:nth-child(odd) {
	background: #f3f3f3;
}
#detail .tableArea th {
	padding: 15px 40px 15px 15px;
	border-top: dotted 1px #7d7d7d;
	border-bottom: dotted 1px #7d7d7d;
	text-align: left;
	vertical-align: top;
	font-weight: 500;
	line-height: 1.8;
	white-space: nowrap;
}
#detail .tableArea td {
	padding: 15px 15px 15px 0px;
	border-top: dotted 1px #7d7d7d;
	border-bottom: dotted 1px #7d7d7d;
	text-align: left;
	vertical-align: top;
	line-height: 1.8;
}
#detail .tableArea td a {
	text-decoration: underline;
	color: #121212;
}
#detail .tableArea td a:hover {
	text-decoration: none;
}
@media screen and (max-width : 768px) {
	#detail .tableArea {
		padding-bottom: 40px;
		max-width: 1100px;
		margin: 0 auto;
	}
	#detail .tableArea table {
		width: 100%;
	}
	#detail .tableArea table tr:nth-child(odd) {
		background: #f3f3f3;
	}
	#detail .tableArea th {
		padding: 10px 20px 10px 10px;
		border-top: dotted 1px #7d7d7d;
		border-bottom: dotted 1px #7d7d7d;
		text-align: left;
		vertical-align: top;
		font-weight: 500;
		line-height: 1.5;
	}
	#detail .tableArea td {
		padding: 10px 10px 10px 0px;
		border-top: dotted 1px #7d7d7d;
		border-bottom: dotted 1px #7d7d7d;
		text-align: left;
		vertical-align: top;
		line-height: 1.5;
	}
	#detail .tableArea td a {
		text-decoration: underline;
		color: #121212;
	}
	#detail .tableArea td a:hover {
		text-decoration: none;
	}
}


/*------------------------------
	buttonArea
------------------------------*/
#detail #contents .buttonArea {
	padding-bottom: 30px;
}
#detail #contents .buttonArea .txt {
	text-align: center;
	line-height: 1.6;
	padding-bottom: 20px;
}
#detail #contents .buttonArea .cbBtn {
	width: 400px;
	margin: 0 auto;
}
#detail #contents .buttonArea .backBtn {
	margin-bottom: 15px;
	background: #434343;
}
#detail #contents .buttonArea .backBtn a {
	border: solid 1px #434343;
	background: #434343;
}
#detail #contents .buttonArea .backBtn a:hover {
	color: #434343;
}
#detail #contents .buttonArea .cbBtn a {
	width: 398px;
}
@media screen and (max-width : 768px) {
	#detail #contents .buttonArea {
		padding: 40px 0;
	}
	#detail #contents .buttonArea .txt {
		text-align: center;
		line-height: 1.6;
		padding-bottom: 30px;
	}
	#detail #contents .buttonArea .cbBtn {
		width: 300px;
		margin: 0 auto;
	}
	#detail #contents .buttonArea .cbBtn a {
		width: 298px;
	}
	#detail #contents .buttonArea .backBtn {
		margin-bottom: 10px;
	}
}