@charset "UTF-8";

/* wrapper
----------------------------------------*/
.wrapper::before {
	content: '';
	display: block;
	width: 100%;
	position: absolute;
	top: 1130px;
	left: 0;
	height: 2194px;
	background: url(../img/message/bg_contents.svg) no-repeat 60% bottom;
}

@media only screen and (max-width: 768px) {
	.wrapper::before {
		top: auto;
		bottom: 300px;
		height: 597px;
		background-size: auto 100%;
	}
}

/* entry
----------------------------------------*/
.entry_block {
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 40px;
	z-index: 30;
}
.entry_block > p {
	font-size: 2rem;
	line-height: 1.8;
}
.entry_block .inview {
	opacity: 0;
}
.entry_block .show {
	animation-fill-mode: forwards;
	animation-duration: 1000ms;
	animation-name: fadeUp;
}
.recruit_item {
	width: 1000px;
	margin: 0 auto;
	display: none;
}
.recruit_item#tab01 {
	display: block;
}
.recruit_item h3 {
	margin: 0 auto 16px;
	font-size: 2.2rem;
	font-weight: bold;
	color: #222;
}
.recruit_item h3::before {
	content: "▼";
	color: #6CC6CE;
}
.entry_form {
	margin: 40px auto 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-top: 1px solid #ccc;
	line-height: 1.35;
}
.entry_form > dt {
	width: 237px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 1.8rem;
	border-bottom: 1px solid #ccc;
	padding: 26px 10px 26px 0;
	letter-spacing: .1em;
}
.entry_form > dd {
	width: calc(100% - 237px);
	border-bottom: 1px solid #ccc;
	font-size: 1.8rem;
	color: #252525;
	padding: 26px 50px;
	letter-spacing: .05em;
}
.entry_form > dd::before {
	content: '';
	width: 1px;
	background: #ccc;
	display: block;
	position: absolute;
	left: 0;
	top: 12px;
	bottom: 12px;
}
.entry_required,
.e-form-error-text {
	color: #FF3366;
}
.entry_form input[type="text"],
.entry_form input[type="email"],
.entry_form textarea {
	width: 100%;
	font-family: inherit;
	background: #fff;
	font-size: 2rem;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 0;
	resize: vertical;
}
.entry_form select {
	font-family: inherit;
	background: #fff;
	font-size: 2rem;
	border: 1px solid #ccc;
	padding: 10px;
	margin-right: 5px;
}
.entry_form input[type="radio"] {
	margin-right: 5px;
}
.entry_form .last {
	display: inline-block;
	margin: 0 0 0 1em;
}
.entry_form dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -10px;
}
.entry_form dl dt {
	width: 170px;
	padding-top: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.entry_form dl dd {
	width: calc(100% - 170px);
}
.entry_form dl dd p {
	padding-top: 10px;
}
.entry_form dl dt,
.entry_form dl dd {
	margin-top: 10px;
}
input::placeholder,
textarea::placeholder {
	color: #b1b1b1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #b1b1b1;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #b1b1b1;
}
.entry_btn {
	text-align: center;
	margin-top: 50px;
}
.entry_btn > p {
	display: inline-block;
	width: 290px;
	margin: 0 10px;
}
.entry_btn button,
.entry_btn a {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 290px;
	text-align: center;
	margin: 0 auto;
	background: #6CC6CE;
	color: #fff;
	padding: 20px 0;
	border-radius: 0;
	position: relative;
	transition: 0.3s;
	border: none;
	font-size: 2rem;
	letter-spacing: .05em;
	font-family: inherit;
	cursor: pointer;
}
.entry_btn button::after,
.entry_btn a::after {
	content: "";
	position: absolute;
	background: url(../img/common/ico-arrow.svg) no-repeat;
	width: 16px;
	height: 4px;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: right 300ms, left 300ms;
}
.entry_btn button:hover::after,
.entry_btn a:hover::after {
	right: 5px;
}
.entry_btn .btn_back button,
.entry_btn .btn_back a {
	background: #666;
}
.entry_btn .btn_back button::after,
.entry_btn .btn_back a::after {
	transform: scale(-1, 1);
	right: auto;
	left: 15px;
}
.entry_btn .btn_back button:hover::after,
.entry_btn .btn_back a:hover::after {
	right: auto;
	left: 5px;
}
.entry_privacy {
	text-align: center;
	font-size: 2rem;
	line-height: 1.8;
	margin-top: 40px;
}
.entry_privacy a {
	text-decoration: underline;
	transition: opacity .3s;
}
.entry_privacy a:hover {
	opacity: .6;
}

@media only screen and (max-width: 768px) {
	.entry_block {
		width: auto;
		margin: 0 6.666%;
		margin-bottom: 40px;
	}
	.entry_block > p {
		font-size: 1.4rem;
	}
	.entry_form {
		width: auto;
		display: block;
	}
	.entry_form > dt {
		width: auto;
		display: block;
		font-size: 1.4rem;
		padding: 3% 5%;
		background: #F7F7F7;
	}
	.entry_form > dd {
		width: auto;
		font-size: 1.4rem;
		padding: 10px 10px 30px;
	}
	.entry_form > dd::before {
		display: none;
	}
	.entry_form dl {
		display: block;
		margin-top: -10px;
	}
	.entry_form dl dt {
		width: auto;
		color: #a5a5a5;
	}
	.entry_form dl dd {
		width: auto;
	}
	.entry_form select,
	.entry_form input[type="text"],
	.entry_form input[type="email"],
	.entry_form textarea {
		font-size: 1.6rem;
	}
	.entry_btn {
		margin-top: 30px;
	}
	.entry_btn > p {
		display: inline-block;
		width: 100%;
		margin: 0;
	}
	.entry_btn > p + p {
		margin-top: 20px;
	}
	.entry_btn button,
	.entry_btn a {
		width: 80%;
		font-size: 1.6rem;
	}
	.entry_btn button:hover::after,
	.entry_btn a:hover::after {
		right: 15px;
	}
	.entry_privacy {
		font-size: 1.5rem;
	}
}
