@charset "utf-8";
body {
	min-width: 1000px;
	margin: 0 auto;
}
.inner {
	width: 960px;
	margin: 0 auto;
}
.float-box {
	overflow: hidden;
}
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #fff;
	z-index: 99;
	transition: all .5s linear .1s;
}
.page__open #splash {
	opacity: 0;
	visibility: hidden;
}
/* == parts ============================================== */
.title_center {
	text-align: center;
	font-size: 400%;
	margin: 0 0 10px 0;
}
.title_center .small {
	display: block;
	font-size: 40%;
	line-height: 1;
}
.title_lead {
	text-align: center;
	font-size: 130%;
	margin: 0 0 30px 0;
}
.tategaki {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.tategaki .en {
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: lr-tb;
	-moz-writing-mode: horizontal-tb;
	writing-mode: horizontal-tb;
	margin: 0;
	line-height: 1;
}
.btn_base {
	text-align: center;
	font-size: 115%;
}
.btn_base a {
	display: block;
	border: solid 1px #000;
	padding: 10px 0;
	position: relative;
	transition: all .3s;
}
.btn_base a:hover {
	color: #fff;
	border: solid 1px #1e489d;
	box-shadow: 0 2px 2px 1px #ccc;
}
.btn_base a::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 0;
	left: 0;
	bottom: 0;
	background-color: #1e489d;
	-webkit-transition: all 600ms cubic-bezier(.19, 1, .22, 1);
	transition: all 600ms cubic-bezier(.19, 1, .22, 1);
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	z-index: -1;
}
.btn_base a:hover::after {
	height: 100%;
	bottom: inherit;
	top: 0;
}
.scroll_obi {
	position: relative;
	overflow: hidden;
}
.scroll_obi::before {
	content: '';
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 700ms cubic-bezier(.77, 0, .175, 1) .2s;
	transition: all 700ms cubic-bezier(.77, 0, .175, 1) .2s;
	-webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1) .2s;
	transition-timing-function: cubic-bezier(.77, 0, .175) .2s;
	z-index: 2;
}
.scroll_obi.scroll__start::before, .scroll__start .scroll_obi::before {
	width: 0;
}
/* == header ============================================== */
header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	transition: all .5s;
	padding: 15px 0;
}
header.bg {
	background: rgba(30,72,157,1);
	padding: 10px 0;
}
header.hide {
	top: -100px;
}
header .inner {
	width: auto;
	min-width: 1000px;
	max-width: 1200px;
	padding: 0 20px;
	box-sizing: border-box;
}
header .inner::after {
	content: '';
	display: block;
	clear: both;
}
header .main-logo {
	float: left;
	margin: 8px 0 0;
}
header .main-logo a {
	display: block;
	width: 253px;
	height: 39px;
	background: url(../img/main-logo.png);
}
.list_main-nav {
	float: right;
}
.list_main-nav li {
	float: left;
	text-align: center;
	width: 120px;
	box-sizing: border-box;
}
.list_main-nav a {
	display: block;
	position: relative;
	line-height: 1.5;
	padding: 5px 0;
	color: #fff;
}
.list_main-nav a .jp {
	display: block;
	font-size: 75%;
}
.list_main-nav li:not(.link-contact) a::after {
	content: '';
	width: 60px;
	height: 5px;
	background: #fff;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	opacity: 0;
	transition: all .3s ease 0s;
}
.list_main-nav li:not(.link-contact) a:hover::after, #page_company .list_main-nav li:nth-child(1) a::after, #page_business .list_main-nav li:nth-child(2) a::after, #page_message .list_main-nav li:nth-child(3) a::after, #page_recruit .list_main-nav li:nth-child(4) a::after {
	height: 10px;
	top: -15px;
	opacity: 1;
}
.list_main-nav li.link-contact {
	border: solid 1px #fff;
	width: 160px;
	margin: 0 0 0 20px;
	transition: all .6s;
}
.list_main-nav li.link-contact:hover {
	border: solid 1px #191970;
}
.list_main-nav li.link-contact a {
	position: relative;
}
.list_main-nav li.link-contact a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	right: 0;
	top: 0;
	background-color: #191970;
	-webkit-transition: all 600ms cubic-bezier(.19, 1, .22, 1);
	transition: all 600ms cubic-bezier(.19, 1, .22, 1);
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	z-index: -1;
}
.list_main-nav li.link-contact a:hover::after, #page_contact .list_main-nav li.link-contact a::after {
	right: inherit;
	left: 0;
	width: 100%;
}
#page_contact .list_main-nav li.link-contact a {
	color: #fff;
	transition: all .5s;
}
#page_contact .list_main-nav li.link-contact a:hover {
	color: #000;
}
header.type-black:not(.bg) .main-logo a {
	background: url(../img/main-logo2.png);
}
header.type-black:not(.bg) .list_main-nav a {
	color: #000;
}
header.type-black:not(.bg) .list_main-nav li:not(.link-contact) a::after {
	background: #000;
}
header.type-black:not(.bg) .list_main-nav li.link-contact {
	border: solid 1px #000;
}
header.type-black:not(.bg) .list_main-nav li.link-contact:hover {
	border: solid 1px #191970;
	background: #fff;
}
/* == footer ============================================== */
footer {
	background: #F2F2F2;
	padding: 30px 0 20px;
	margin: 150px 0 0 0;
}
footer .inner {
	position: relative;
	overflow: hidden;
}
#pagetop {
	position: absolute;
	right: 0;
	top: 20px;
	cursor: pointer;
	transition: opacity .2s;
}
#pagetop:hover{
	opacity:.6;
}
#pagetop a {
	display: block;
	border: solid 1px #000;
	width: 55px;
	height: 55px;
	border-radius: 50%;

}

#pagetop span {
	width: 19px;
	height: 16px;
	background: url(../img/page-top.png) no-repeat;
	display: block;
	vertical-align: top;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-animation: scroll2 2s ease-in-out alternate infinite;
	animation: scroll2 2s ease-in-out alternate infinite;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
 @-webkit-keyframes scroll2 {
0% {
transform: translateY(5px) rotateY(0);
}
100% {
transform: translateY(-5px) rotateY(360deg);
}
}
@keyframes scroll {
0% {
transform: translateY(5px) rotateY(0);
}
100% {
transform: translateY(-5px) rotateY(360deg);
}
}
.list_f-nav {
	width: 520px;
	float: left;
	margin: 0 80px 0 0;
}
.list_f-nav > li {
	float: left;
	width: 160px;
	margin: 0 0 0 20px;
}
.list_f-nav > li:first-child {
	margin: 0;
}
.area_address {
	float: left;
}
.area_address .tel {
	font-size: 140%;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 10px 0;
}
.area_address .hours {
	font-size: 88%;
}
.list_f-nav a.big-link {
	display: block;
	background: #000;
	color: #fff;
	text-align: center;
	margin: 0 0 10px 0;
	padding: 2px 0;
	border: solid 1px #000;
	transition: all .2s;
	font-size: 88%;
}
.list_f-nav a.big-link:hover {
	background: #fff;
	color: #000;
}
.list_f-subnav a {
	display: inline-block;
	padding: 5px 0;
	font-size: 88%;
}
.list_f-nav > li:nth-child(2) .list_f-subnav a::before {
	content: '・';
}
.list_f-subnav a:hover {
	text-decoration: underline;
}
.copyright {
	clear: both;
	text-align: right;
	font-size: 75%;
	letter-spacing: 2px;
	padding: 50px 0 0 0;
}
/* == frontpage ==============================================*/
.sec_front-top {
	position: relative;
	color: #fff;
	height: 100vh;
	min-height: 700px;
	overflow: hidden;
}
.sec_front-top .inner {
	position: relative;
	height: 100%;
}
.sec_front-top .main-title {
	font-size: 420%;
	line-height: 1.2;
	position: absolute;
	top: 20%;overflow: hidden;
	max-width: 500px;
}
.sec_front-top .main-title span {
	display: inline-block;
	position: relative;
	transform: translateX(-100px);
	overflow: hidden;
	opacity:0;
	-webkit-transition: transform 1s cubic-bezier(0,1,.91,.91) .5s , opacity .5s ease .5s ;
	transition: transform 1s cubic-bezier(0,1,.91,.91) .5s , opacity .5s ease .5s ;
	line-height: 1.2;
	vertical-align: top;
	margin: 5px 0;
}
.sec_front-top .main-title span.no2 {
	-webkit-transition-delay:.6s;
	transition-delay:.6s;
}
.sec_front-top .main-title span.no3 {
	-webkit-transition-delay:.7s;
	transition-delay:.7s;
}
.page__open .sec_front-top .main-title span {
	transform: translateX(0);
	opacity:1;
}
.sec_front-top .main-title span::after{
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	left:0;
	top:0;
	background: #fff;
	-webkit-transition: all .5s cubic-bezier(.36,.14,.67,.01) 1.2s;
	transition: all .5s cubic-bezier(.36,.14,.67,.01) 1.2s;
	line-height: .7;
}
.page__open .sec_front-top .main-title span::after{
	left:100%;
}
.sec_front-top .main-title span.no2::after{
	-webkit-transition-delay:1.4s;
	transition-delay:1.4s;
}
.sec_front-top .main-title span.no3::after{
	-webkit-transition-delay:1.6s;
	transition-delay:1.6s;
}
.sec_front-top .main-text {
	position: absolute;
	top: 65%;
	opacity: 0;
	transform: translateY(30px);
	transition: all .4s ease 2.1s;
}
.page__open .sec_front-top .main-text {
	opacity: 1;
	transform: translateY(0);
}
.sec_front-top .main-lead {
	position: absolute;
	right: 0;
	top: 30%;
	font-size: 180%;
	font-weight: bold;
	letter-spacing: 5px;
	transition: all .4s ease 2.1s;
	opacity: 0;
	transform: translateY(20px);
}
.page__open .sec_front-top .main-lead {
	transform: translateY(0);
	opacity: 1;
}
.sec_front-top .page-bottom {
	position: absolute;
	right: 10px;
	bottom: 50px;
}
.sec_front-top .page-bottom a {
	display: block;
	border: solid 1px #fff;
	width: 55px;
	height: 55px;
	border-radius: 50%;
}
.sec_front-top .page-bottom img {
	vertical-align: top;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-animation: scroll 2s ease-in-out alternate infinite;
	animation: scroll 2s ease-in-out alternate infinite;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
 @-webkit-keyframes scroll {
0% {
transform: translateY(-5px) rotateY(0);
}
100% {
transform: translateY(5px) rotateY(360deg);
}
}
@keyframes scroll {
0% {
transform: translateY(-5px) rotateY(0);
}
100% {
transform: translateY(5px) rotateY(360deg);
}
}
.sec_front-top .slide {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
}
.sec_front-top .slide .slide-content {
	position: relative;
	height: 100vh;
	min-height: 700px;
	overflow: hidden;
}
.sec_front-top .slide .slide-content img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	max-width: inherit;
}
/*----------*/
.list_sub-nav {
	overflow: hidden;
	margin: 0 0 100px 0;
}
.list_sub-nav li {
	width: 33%;
	height: 400px;
	float: left;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: all .5s;
}
.list_sub-nav li:hover {
	filter: brightness(135%);
}
.list_sub-nav li:nth-child(1) {
	background-image: url(../img/square-nav01.jpg);
}
.list_sub-nav li::before {
	z-index: 3;
}
.list_sub-nav li:nth-child(2) {
	background-image: url(../img/square-nav02.jpg);
	width: 34%;
}
.list_sub-nav li:nth-child(2)::before {
	-webkit-transition: all 800ms cubic-bezier(.77, 0, .175, 1) .4s;
	transition: all 800ms cubic-bezier(.77, 0, .175, 1) .4s;
	-webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1) .4s;
	transition-timing-function: cubic-bezier(.77, 0, .175) .4s;
}
.list_sub-nav li:nth-child(3) {
	background-image: url(../img/square-nav03.jpg);
}
.list_sub-nav li:nth-child(3)::before {
	-webkit-transition: all 800ms cubic-bezier(.77, 0, .175, 1) .7s;
	transition: all 800ms cubic-bezier(.77, 0, .175, 1) .7s;
	-webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1) .7s;
	transition-timing-function: cubic-bezier(.77, 0, .175) .7s;
}
.list_sub-nav a {
	display: block;
	height: 100%;
	box-sizing: border-box;
	color: #fff;
	font-size: 170%;
	font-weight: bold;
	padding: 160px 0 0 0;
	position: relative;
	z-index: 2;
}
.list_sub-nav a .en {
	display: block;
	font-size: 50%;
	font-weight: normal;
	line-height: 1.5;
	margin: 15px 0 0 0;
}
.list_sub-nav li::after {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	opacity: 1;
	transition: all .3s;
}
.list_sub-nav li:hover::after {
	opacity: 0;
}
/*----------*/
.sec_business-summary {
	margin: 0 0 60px 0;
}
.sec_business-summary .text {
	margin: 0 5%;
	font-size: 88%;
	line-height: 2;
}
.list_business-summary {
	overflow: hidden;
	margin: 60px 0;
	position: relative;
}
.list_business-summary li {
	float: left;
	width: 200px;
	margin: 0 0 0 53px;
	text-align: center;
}
.list_business-summary li:nth-child(4n +1) {
	margin: 0;
}
.list_business-summary .title {
	font-size: 140%;
	font-weight: bold;
	margin: 15px 0 0 0;
}
/*----------*/
.sec_movie-summary {
	text-align: center;
	margin-bottom: 60px;
}
.sec_movie-summary .text{
	font-size: 130%;
	margin: 0 5% 20px;
	line-height: 2;
}
.sec_movie-summary .movie_wrapper{
	max-width: 960px;
	width: 100%;
	height: 480px;
	margin: 0 auto;
}
/*----------*/
.sec_recruit-summary .text {
	margin: 0 5% 50px;
	font-size: 88%;
	line-height: 2;
}
.sec_recruit-summary .area_bnr {
	background: #D9E021;
	padding: 70px 0;
}
.sec_recruit-summary .area_bnr img {
	vertical-align: top;
}
.list_recruit-bnr {
	text-align: center;
}
.list_recruit-bnr li {
	display: inline-block;
	margin: 0 20px;
	opacity: 0;
	transition: all .5s ease 1.2s;
}
.scroll__start .list_recruit-bnr li {
	opacity: 1;
}
/* == underpage ============================================== */
.center-text {
	text-align: center;
	font-size: 88%;
}
/* ======
page-name #message
======*/
#page_message footer {
	margin: 0;
}
.block_message {
	background: url(../img/message/main-bg.jpg) no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	height: 900px;
}
.block_message .inner {
	padding: 200px 0 0 0;
	color: #fff;
	overflow: hidden;
}
.block_message .inner p, .block_message .inner h1 {
	float: right;
}
.block_message .inner h1 {
	font-size: 300%;
	margin: 0 20px 0 40px;
}
.block_message .inner .text {
	line-height: 2.5;
	font-size: 88%;
}
.block_message .inner .president {
	margin: 200px 20px 0 0;
	font-size: 150%;
	line-height: 1;
}
.block_message .inner .president strong {
	display: block;
	font-size: 150%;
	letter-spacing: 4px;
	margin: 0 20px 0 0;
}
/* ======
page-name #company
======*/
.block_company-main {
	background: url(../img/company/main-bg.jpg) no-repeat center;
	background-size: cover;
	height: 650px;
}
.block_company-main .title_page {
	text-align: center;
	padding: 200px 0 0 0;
	font-size: 400%;
	color: #fff;
	line-height: 1.4;
}
.block_company-main .title_page .jp {
	display: block;
	font-size: 30%;
}
.list_nav-base {
	overflow: hidden;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	padding: 0 calc((100% - 960px) / 2);
	margin: 0 0 80px 0;
	display: table;
	table-layout: fixed;
	width: 100%;
	box-sizing: border-box;
}
.list_nav-base li {
	display: table-cell;
	text-align: center;
	box-sizing: border-box;
}
.list_nav-base li + li {
	border-left: solid 1px #000;
}
.list_nav-base a {
	display: block;
	padding: 10px 0;
	font-size: 88%;
	font-weight: bold;
	transition: all .3s;
}
.list_nav-base a:hover {
	background: #1e489d;
	color: #fff;
}
.block_company-rinen .title_center {
	font-size: 300%;
	margin: 0 0 20px 0;
	letter-spacing: 10px;
}
.block_company-rinen .center-text {
	margin: 0 0 80px 0;
}
/**/
.block_company-set {
	margin: 0 0 100px 0;
}
.block_company-set .company-sec-title {
	text-align: center;
	font-size: 140%;
	margin: 0 0 20px 0;
}
.block_company-set .company-sec-title.margin-top{
    margin: 80px 0 20px;
}
.table_base {
	width: 100%;
	font-size: 88%;
}
.table_base th {
	width: 120px;
	background: #BDCCD4;
	padding: 11px 10px 11px 35px;
	border: solid 1px #000;
	text-align: left;
	vertical-align: top;
}
.table_base td {
	padding: 11px 10px 11px 35px;
	border: solid 1px #000;
}
/**/
.block_company-map {
	margin: 0 0 100px 0;
}
#map_canvas {
	margin: 0 0 30px 0;
}
#map_canvas iframe {
	width: 100%;
	height: 480px;
}
/**/

.block_company-set .title_center {
	font-size: 230%;
	font-weight: normal;
}
.block_company-set .float-box {
	margin: 0 0 70px 0;
}
.block_company-set .float-box .table_base {
	float: left;
	width: 580px;
	margin: 0 30px 0 0;
}
.block_company-set .float-box .area_img {
	float: left;
	width: 350px;
}
/* ======
page-name #business
======*/
.block_business {
	margin: 130px auto 0;
}
.list_nav-base {
	margin: 40px 0 60px 0;
	padding: 0;
}
.block_business .area_business-set {
	padding: 0 0 50px 0;
	margin: 0 auto;
	transition: all .5s;
	max-width: 1400px;
}
.block_business .area_business-set + .area_business-set {
	margin: 50px auto 0;
}
.block_business .area_business-set + .area_business-set .inner {
	border-top: solid 1px #ccc;
	padding: 50px 0 0 0;
}
.block_business .area_business-set.set01 {
	background: url(../img/business/business01-1.jpg) no-repeat left top;
}
.block_business .area_business-set.set02 {
	background: url(../img/business/business02-1.jpg) no-repeat left top 50px;
}
.block_business .area_business-set.set03 {
	background: url(../img/business/business03-1.jpg) no-repeat left top 50px;
}
.block_business .area_business-set.set04 {
	background: url(../img/business/business04-1.jpg) no-repeat left top 50px;
}

@media all and (max-width:1100px) {
.block_business .area_business-set.set01 {
	background-position: left -60px top;
}
.block_business .area_business-set.set02, .block_business .area_business-set.set03, .block_business .area_business-set.set04 {
	background-position: left -60px top 50px;
}
}

@media all and (min-width:1400px) {
.block_business .area_business-set.set01 {
	background-position: left 10% top;
}
.block_business .area_business-set.set02, .block_business .area_business-set.set03, .block_business .area_business-set.set04 {
	background-position: left 10% top 50px;
}
}
.block_business .area_business-set .set-detail {
	box-sizing: border-box;
	width: 360px;
	height: 440px;
	position: relative;
	margin: 0 0 0 auto;
	display: block;
}
.block_business .area_business-set .set-detail .title {
	font-size: 125%;
	font-weight: normal;
	margin: 0 0 20px 0;
}
.block_business .area_business-set .set-detail .text {
	font-size: 88%;
	line-height: 1.8;
}
.block_business .area_business-set .set-detail .thumbnail {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.block_business .area_business-set .set-detail .thumbnail img {
	vertical-align: top;
}
.block_business .area_business-set .set-detail .name {
	position: absolute;
	bottom: -50px;
	left: 0;
	background: url(../img/business/arrow.png) no-repeat right 10px center;
	width: 100%;
	font-size: 88%;
	z-index: 2;
	opacity: 0;
	transform: translateY(20px);
	transition: all .5s ease .8s;
}
.block_business .area_business-set .set-detail .name strong {
	font-size: 150%;
	font-weight: normal;
	padding: 0 0 0 .5em;
}
.block_business .area_business-set.scroll__start .set-detail .name {
	opacity: 1;
	transform: translateY(0px);
}
/* ======
page-name #recruit
======*/

.block_recruit-main {
	margin: 130px 0 0 0;
	position: relative;
}
.page__open .block_recruit-main .title_center {
	letter-spacing: 0;
}
.block_recruit-main::after {
	content: '';
	width: 100%;
	height: 180px;
	background: #D9E021;
	position: absolute;
	left: 0;
	top: 55px;
	z-index: -1;
}
.block_recruit-main .bnr-numbers {
	text-align: center;
	margin: 40px 0;
}
/**/
.block_recruit-voices {
	margin: 0 0 100px 0;
}
.block_recruit-voices .title_center, .block_recruit-youkou .title_center {
	font-size: 300%;
}
.list_voices-thumbnail {
	overflow: hidden;
	margin: 50px 0 0 0;
}
.list_voices-thumbnail li {
	float: left;
	width: 210px;
	margin: 0 0 0 40px;
}
.list_voices-thumbnail li:first-child {
	margin: 0;
}
.list_voices-thumbnail a {
	display: block;
}
.list_voices-thumbnail .thumb {
	width: 210px;
	height: 210px;
	margin: 0 0 20px 0;
	overflow: hidden;
	position: relative;
}
.list_voices-thumbnail a .thumb img {
	transition: all .3s;
	position: absolute;
	left: -25px;
	margin: auto;
	max-width: none;
}
.list_voices-thumbnail a:hover .thumb img {
	transform: scale(1.15);
}
.list_voices-thumbnail p {
	text-align: center;
	font-size: 88%;
}
.list_voices-thumbnail p strong {
	font-size: 170%;
}
.list_recruit-youkou {
	overflow: hidden;
	margin: 60px auto 0;
}
.list_recruit-youkou li {
	float: left;
	width: 450px;
	height: 150px;
	display: table;
	text-align: center;
}
.list_recruit-youkou li + li {
	margin: 0 0 0 60px;
}
.list_recruit-youkou li:nth-child(1) {
	background: url(../img/recruit/voices-bnr01.jpg) no-repeat center;
}
.list_recruit-youkou li:nth-child(2) {
	background: url(../img/recruit/voices-bnr02.jpg) no-repeat center;
}
.list_recruit-youkou a {
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	font-size: 150%;
	text-shadow: #666 0 0 3px ;
}
.list_recruit-youkou a span {
	display: block;
	font-size: 50%;
}

.block_recruit-detail .detail-title{
	font-size: 150%;
	text-align: center;
	margin:30px 0 60px;
}
.recruit-detail-set {
	margin:60px 0 0 0;
}
.recruit-detail-set .detail-sub-title{
	text-align: center;
	font-size: 130%;
	margin:0 0 10px 0;

}
.recruit-detail-set h4.detail-line{
	font-size: 120%;
	border-bottom:solid 1px #000;
	padding: 0 0 5px 0;
	margin:50px 0 10px 0;
}
.recruit-detail-set .big-text{
	font-size: 150%;
}
.recruit-detail-set ul{
	padding: 30px;
	border:solid 1px #ccc;
	margin:30px;
}

/* ======
page-name #recruit .data
======*/
#page_recruit.page_data {
	background: #000;
}
.block_data .area_title {
	margin: 150px 0 20px 0;
	border: solid 3px #fff;
	color: #fff;
	padding: 30px 0 50px;
}
.block_data .area_title .data-title {
	text-align: center;
	font-size: 370%;
	line-height: 1.4;
	margin: 0 0 30px 0;
}
.block_data .area_title .data-title .jp {
	font-size: 50%;
	display: block;
}
.block_data .area_title .data-lead {
	font-size: 88%;
	width: 75%;
	margin: 0 auto;
}
.block_data .area_pr {
	border: solid 1px #fff;
	color: #fff;
	padding: 30px 0 50px;
	position: relative;
}
.block_data .area_pr .pr-title {
	text-align: center;
	font-size: 160%;
	margin: 0 0 30px 0;
}
.list_pr {
	overflow: hidden;
	margin: 0 0 0 50px;
}
.list_pr li {
	float: left;
	width: 46%;
	list-style-type: disc;
	margin: 0 0 0 4%;
}
.block_data .image-box {
	margin: 0 0 30px 0;
	position: relative;
}
.block_data .image-box img {
	vertical-align: top;
}
.block_data .image-box.scroll_obi::before {
	background: #000;
}
/* ======
page-name #recruit .voices
======*/

.block_recruit-voices .area_voices-main {
	height: 560px;
	position: relative;
	margin: 0 0 50px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.block_recruit-voices.voices01 .area_voices-main {
	background-image: url(../img/recruit/voices01-bg.jpg);
}
.block_recruit-voices.voices02 .area_voices-main {
	background-image: url(../img/recruit/voices02-bg.jpg);
}
.block_recruit-voices.voices03 .area_voices-main {
	background-image: url(../img/recruit/voices03-bg.jpg);
}
.block_recruit-voices.voices04 .area_voices-main {
	background-image: url(../img/recruit/voices04-bg.jpg);
}
.block_recruit-voices .area_voices-main .voices-title {
	font-size: 400%;
	color: #fff;
	line-height: 1.4;
	padding: 200px 0 30px 0;
	margin: 0 0 30px;
	position: relative;
}
.block_recruit-voices .area_voices-main .voices-title::after {
	content: '';
	width: 30px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.block_recruit-voices .area_voices-main .voices-title span {
	font-size: 25%;
	display: block;
}
.block_recruit-voices .area_voices-main .voices-person {
	color: #fff;
}
.block_recruit-voices .area_voices-main .voices-person strong {
	display: block;
	font-size: 175%;
}
.block_recruit-voices .area_voices-content .voices-lead {
	text-align: center;
	font-size: 200%;
	margin: 0 0 80px 0;
}
.block_recruit-voices .content-box01, .block_recruit-voices .content-box02, .block_recruit-voices .content-box03 {
	overflow: hidden;
	margin: 0 0 100px 0;
}
.block_recruit-voices .content-box01 .text-box {
	float: left;
	width: 600px;
}
.block_recruit-voices .content-box01 .img-box {
	float: right;
	width: 300px;
}
.block_recruit-voices .voices-sec-title {
	font-size: 150%;
	margin: 0 0 30px 0;
}
.block_recruit-voices .voices-sec-text {
	line-height: 2;
}
.block_recruit-voices .content-box013 .text-box {
	float: right;
	width: 600px;
}
.block_recruit-voices .content-box03 .img-box {
	float: left;
	width: 300px;
	margin: 0 60px 0 0;
}
/**/
.block_recruit-voices .area_voices-schedule {
	margin: 0 0 20px 0;
}
.block_recruit-voices .area_voices-schedule .inner::before {
	top: auto;
	bottom: 0;
}
.block_recruit-voices .area_voices-schedule .inner.scroll__start::before {
	height: 0;
	width: 100%;
}
.block_recruit-voices .area_voices-schedule .inner {
	background: #29ABE2;
	color: #fff;
	padding: 40px;
	box-sizing: border-box;
}
.block_recruit-voices .area_voices-schedule .schedule-title {
	font-size: 220%;
	margin: 0 0 50px 0;
}
.dl_schedule {
	overflow: hidden;
	position: relative;
	display: table;
	table-layout: fixed;
	margin: 25px 0;
}
.block_recruit-voices .schedule-box {
	position: relative;
}
.block_recruit-voices .schedule-box::after {
	content: '';
	width: 1px;
	height: 92%;
	background: #fff;
	position: absolute;
	left: 70px;
	top: 3%;
}
.dl_schedule dt {
	display: table-cell;
	width: 250px;
	overflow: hidden;
	vertical-align: middle;
	font-weight: bold;
}
.dl_schedule dt .time {
	float: left;
	display: block;
	width: 100px;
	position: relative;
}
.dl_schedule dt .time::before {
	content: '';
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	left: 63px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.dl_schedule dt .title {
	float: left;
	position: relative;
}
.dl_schedule dd {
	display: table-cell;
	border-left: solid 1px #fff;
	padding: 0 0 0 50px;
	font-size: 88%;
	vertical-align: middle;
}
.dl_schedule dd.ex {
	border: none;
}
/**/
.block_recruit-voices .area_voices-qualification {
	margin:0 0 20px 0;
}
.dl_qualification{
	display: table;
}
.dl_qualification dt{
	display: table-cell;
	border:solid 1px #000;
	padding: 5px 10px;
}
.dl_qualification dd{
	display: table-cell;
	padding: 5px 20px;
}
/**/
.block_recruit-voices .area_voices-private {
	margin: 0 0 140px 0;
}
.block_recruit-voices .area_voices-private .inner {
	overflow: hidden;
	border: solid 1px #000;
	padding: 40px;
	box-sizing: border-box;
}
.block_recruit-voices .area_voices-private .private-title {
	float: left;
	width: 170px;
	background: #000;
	text-align: center;
	color: #fff;
	font-size: 150%;
	line-height: 1;
	padding: 5px 0;
	margin: 2px 30px 0 0;
}
.block_recruit-voices .area_voices-private .area_text {
	float: left;
	width: calc(100% - 200px);
}
.block_recruit-voices .area_voices-private .area_text .lead {
	font-size: 130%;
	font-weight: bold;
	margin: 0 0 15px 0;
}
.page_voices .list_voices-thumbnail li {
	width: 260px;
	margin: 0 0 0 90px;
}
.page_voices .list_voices-thumbnail li:first-child {
	margin: 0;
}
.page_voices .list_voices-thumbnail li .thumb {
	width: 260px;
}
.page_voices .list_voices-thumbnail a .thumb img {
	left: 0;
}
/* ======
page-name #contact
======*/

.block_contact {
	margin: 130px 0 0 0;
}
.form_base {
	border: solid 1px #ccc;
	padding: 30px;
	margin: 50px auto;
	width: 800px;
}
.form_base input[type="text"], .form_base input[type="email"], .form_base textarea {
	width: 100%;
}
.form_base textarea {
	border: solid 1px #ccc;
}
.list_form li {
	overflow: hidden;
	padding: 15px 0;
	border-bottom: dotted 1px #ccc;
}
.list_form .area_label {
	float: left;
	width: 250px;
	font-weight: bold;
}
.list_form .area_input {
	float: left;
	width: calc(100% - 280px);
}
.form_base .area_confirm {
	margin: 20px 0;
	text-align: center;
}
.form_base .area_confirm input {
	margin: 0 10px 0 0;
}
.text_link {
	color: blue;
	text-decoration: underline;
	transition: all .2s;
}
.text_link:hover {
	color: red;
}
.form_base .area_submit {
	margin: 50px 0;
	text-align: center;
}
.form_base .area_submit input[type="submit"], .form_base .area_submit input[type="button"] {
	display: inline-block;
	margin: 0 auto;
	width: 250px;
	border: solid 1px #ccc;
	line-height: 50px;
	font-weight: bold;
	background: rgba(30,72,157,1);
	color: #fff;
	cursor: pointer;
}
.form_base .area_submit input[type="button"] {
	background: #999;
}
.block_contact .area_thanks {
	border: solid 1px #ccc;
	outline: solid 1px #ccc;
	outline-offset: 3px;
	padding: 40px;
	margin: 80px 0 0 0;
}
.block_contact .area_thanks p {
	text-align: center;
	margin: 0 0 30px 0;
}
.block_contact .area_thanks .btn_base {
	width: 400px;
	margin: 60px auto 0;
}
.block_contact .text_center {
	text-align: center;
	margin: 60px 0 0 0;
}
.formTable {
	width: 100%;
	margin: 0 0 100px 0;
}
.formTable th, .formTable td {
	border-bottom: solid 1px #ccc;
	padding: 20px;
	text-align: left;
}
/* ======
page-name #policy
======*/
.block_policy {
	margin: 130px 0 0 0;
}
.block_policy .policy-title{
	font-size: 150%;
	margin:50px 0 15px 0;
}
.block_policy .policy-lead{
	margin: 0 0 30px 0;
}
.dl_policy{
	padding: 20px 0;
	border-bottom:dashed 1px #ccc;
}
.dl_policy dt{
	font-weight: bold;
	margin: 0 0 5px 0;
}
.dl_policy dd{
	font-size: 88%;
	padding: 0 0 0 1em;
}

/*------------------------------------*/
#page_recruit.page_data .animsition-overlay-slide {
	background-color: #000;
}

.front-banner{
    position: absolute;
    top: 75%;
}

.img_wrap{
  border: 1px solid #ddd;
  width: 289px;
  height: 78px;
  margin: 50px auto;
  overflow: hidden;
  background: #000;
}
.img_wrap img{
  width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.img_wrap:hover img{
  opacity: 0.6;
  transition-duration: 0.3s;
}
