@charset"utf-8";

/*base--------------------------------*/

*{
	font-family: 'Noto Sans JP', 'Meiryo', 'メイリオ', 'ヒラギノ 角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'MS PGothic', 'ＭＳ Ｐゴシック';
	font-size: 100%;
	}
.container figcaption {
	font-size: 0.75em;
}

html, body {
	height: 100%;
	overflow: visible;
}

body{
	margin: 0;
	padding: 0;
	overflow-y: scroll;
}

/* よく登場する要素のリセット */

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, caption, th, td, img, form, div {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	list-style-type: none;
	font-family: 'Noto Sans JP', 'Meiryo', 'メイリオ', 'ヒラギノ 角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'MS PGothic', 'ＭＳ Ｐゴシック';
	color: #333;
}

/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
textarea { font-size: 100%; }

/* 画像の下にできる隙間をなくす */
img {
	vertical-align: bottom;
}

.cf:after {
	content: ".";	/* 新しい要素を作る */
	display: block;	/* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}

.cf {
	min-height: 1px;
}

* html .cf {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

ruby rt {
	font-size: 50%;
}
@-moz-document url-prefix() {
	ruby rt {
		font-size: 50%;
	}
}

/*common--------------------------------*/

#wrap {
	overflow: hidden;
}

p{
	line-height: 1.2em;
}

a:link,
a:visited,
a:active {
	color: #333;
	text-decoration: none;
}

a:focus {
	outline:none;
	text-decoration: none;
}

a.underline {
	text-decoration: underline;
}

.hover {
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

.hover:hover {
	opacity:0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	zoom:1;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

.container {
	width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.stripe {
	background: url('../img/common/bg_stripe.gif') left top;
	/*background: repeating-linear-gradient(45deg, #e60027 0px, #e60027 10px, #dc0328 10px, #dc0328 20px);*/
}

.sp {
	display: none;
}

.red {
	color: #cc0000;
}

.fit {
	width: 100%;
}

.zoom {
	transition-duration: 0.3s;
}

.zoom:hover {
	transform: scale(1.1);
	transition-duration: 0.3s;
}

.sec_tit {
	width: 100%;
	height: 400px;
	text-align: center;
	margin: -80px 0 -320px 0;
	padding: 80px 0;
	position: relative;
	background: url('../img/common/tit_bg_stripe.png') center top no-repeat;
	z-index: 3;
}

.stripe .sec_tit {
	background: url('../img/common/tit_bg_white.png') center top no-repeat;
}

.sec_tit span {
	font-size: 50px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 1em;
	padding-bottom: 5px;
	display: block;
	position: relative;
}

.stripe .sec_tit span {
	color: #dc0328;
}

.sec_tit b {
	font-size: 18px;
	color: #dfc499;
	font-weight: normal;
	position: relative;
}

.sub_tit {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	position: relative;
}

.sub_tit:after {
	content: '';
	width: 72px;
	height: 8px;
	background-color: #dfc499;
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -36px;
}

.lower .sub_tit {
	margin-bottom: 50px;
	color: #fff;
	text-shadow: 2px 2px 5px #333;
	z-index: 3;
}

.lower .sub_tit.red {
	color: #dc0328;
}

.top .sub_tit {
	margin-bottom: 0;
}

.plain_txt {
	font-size: 16px;
	line-height: 1.8em;
	padding-bottom: 1em;
}

.btn_container {
	padding-top: 60px;
}

.btn_container a {
	display: block;
	background-color: #fff;
	width: 500px;
	height: 60px;
	box-sizing: border-box;
	margin: 0 auto;
	border: 1px solid #dc0328;
	color: #e60027;
	font-size: 18px;
	line-height: 60px;
	text-align: center;
	position: relative;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

.btn_container a:hover {
	background-color: #dc0328;
	border: 1px solid #fff;
	color: #fff;
}

.anchor {
	margin-top: -80px;
	padding-top: 80px;
}

a.disabled {
	pointer-events: none;
}


/*----------------------------------------*/

/*header*/

/*----------------------------------------*/

header {
	width: 100%;
	height: 80px;
	box-sizing: border-box;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	box-shadow: 2px 2px 4px #666;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header .logo_container {
	padding: 15px;
	float: left;
	display: flex;
	align-items: center;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header .logo_container a {
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header .header_logo_obj {
	height: 50px;
	margin-right: 10px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header a:first-of-type .header_logo_obj {
	height: unset;
	width: 160px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header nav {
	float: right;
}

header nav .nav_inner {
	display: flex;
}

header nav .nav_inner .nav_container {
	display: flex;
	padding-top: 28px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header nav .nav_inner .nav_container .nav_item {
	padding-left: 4em;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header nav .nav_inner .nav_container .nav_item:first-child {
	padding-left: 0;
}

header nav .nav_inner .nav_container .nav_item a {
	color: #333;
	font-size: 16px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header nav .nav_inner .inquiry_container {
	padding-left: 45px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header nav .nav_inner .inquiry_container a {
	display: block;
	width: 180px;
	height: 80px;
	background-color: #e60027;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 80px;
	text-indent: 2em;
	position: relative;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header nav .nav_inner .inquiry_container a:before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: url('../img/common/ico_mail.png') center center no-repeat;
	background-size: 30px 30px;
	position: absolute;
	top: 50%;
	left: 20px;
	margin-top: -15px;
}

header.fixed {
	height: 60px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header.fixed .logo_container {
	width: 120px;
	padding: 10px;
	float: left;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header.fixed .header_logo_obj {
	height: 40px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header.fixed .header_logo_obj:first-of-type {
	width: 120px;
	height: unset;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header.fixed nav .nav_inner .nav_container {
	display: flex;
	padding-top: 18px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header.fixed nav .nav_inner .nav_container .nav_item {
	padding-left: 3em;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header.fixed nav .nav_inner .inquiry_container {
	padding-left: 35px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header.fixed nav .nav_inner .inquiry_container a {
	width: 160px;
	height: 60px;
	font-size: 16px;
	line-height: 60px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

header.fixed nav .nav_inner .inquiry_container a:before {
	width: 25px;
	height: 25px;
	background-size: 25px 25px;
	margin-top: -12.5px;
}

	

/*menu-trigger--------------------------------*/

.menu-trigger {
	display: none;
}



/*----------------------------------------*/

/*footer*/

/*----------------------------------------*/

footer {
	background-color: #222;
	padding: 60px 0 20px;
	position: relative;
	z-index: 2;
}

footer .logo_container {
	width: 250px;
	margin: 0 auto;
}

footer nav {
	text-align: center;
}

footer nav .nav_container {
	margin: 30px auto 60px;
	text-align: center;
}

footer nav .nav_container .nav_item {
	display: inline-block;
}

footer nav .nav_container .nav_item:after {
	content: '｜';
	color: #fff;
}

footer address {
	font-size: 14px;
	color: #fff;
	text-align: center;
}

footer nav .nav_container .nav_item:last-child:after {
	content: '';
}

footer nav .nav_container .nav_item a {
	color: #fff;
}



/*----------------------------------------*/

/*mv_container*/

/*----------------------------------------*/

.top .mv_container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: calc(100vh - 60px);
	z-index: -1;
}

.top .mv_container .slick_item div {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
	margin: 0;
	position: relative;
}

.top .mv_container .slick_item div:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	z-index: 1;
}

.top .mv_container .mv_bg01 {
	background-image: url('../img/top/mv01.jpg');
}
.top .mv_container .mv_bg02 {
	background-image: url('../img/top/mv02.jpg');
}

.top .mv_container .catch {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-40%) translateX(-50%);
	-webkit-transform: translateY(-40%) translateX(-50%);
	color: #fff;
	font-size: 1.6vw;
	font-weight: normal;;
	white-space: nowrap;
	z-index: 2;
}

.top .mv_container .catch em {
	font-size: 6vw;
	font-weight: bold;
	line-height: 1em;
	font-style: normal;
	display: block;
	padding-bottom: 50px;
}

.lower .mv_container {
	position: absolute;
	top: 0;
	left: 0;
	background: url('../img/top/service_bg.jpg') center center no-repeat;
	background-size: cover;
	width: 100%;
	height: 350px;
	z-index: 1;
}

.lower .mv_container:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 350px;
	background-color: rgba(0,0,0,.5);
	z-index: 2;
}

.lower .mv_container .page_tit {
	font-size: 42px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 10px;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	z-index: 3;
}


/*----------------------------------------*/

/*loading*/

/*----------------------------------------*/

.loader-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 99999;
}

.load-spinner {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;height: 50px;
	margin: -25px 0 0 -25px;
	border-radius: 50%;
	color: #e60027;
}

.loading {
	text-align: center;
}

.loading_post{
	padding-top: 30px;
	text-align: center;
}
.loading_post .load-spinner {
	position: static;
}



/*----------------------------------------*/

/*breadcrumb*/

/*----------------------------------------*/

.breadcrumb_container {
	padding: 5px 0;
}

.breadcrumb_list_container {
	display: flex;
	width: 1000px;
	margin: 0 auto;
}

.breadcrumb_list_item {
	padding: 0 3px;
	font-size: 14px;
}

.breadcrumb_list_item:after {
	content: '>';
}
.breadcrumb_list_item:last-child:after {
	content: '';
}

.breadcrumb_list_item a {
	color: #e60027;
	font-size: 14px;
}

.breadcrumb_list_item a:hover {
	text-decoration: underline;
}



/*----------------------------------------*/

/*article*/

/*----------------------------------------*/

article {
	padding-top: calc(100vh - 60px);
	position: relative;
}

.lower article {
	padding-top: 350px;
}



/*----------------------------------------*/

/*section*/

/*----------------------------------------*/

section {
	width: 100%;
	background-color: #fff;
	position: relative;
	z-index: 2;
	padding: 80px 0;
}



/*----------------------------------------*/

/*top*/

/*----------------------------------------*/

/*lastest_news_container------------------*/

.lastest_news_container {
	width: 100%;
	height: 60px;
	background-color: #222;
	position: relative;
	z-index: 2;
}

.lastest_news_container .container {
	display: flex;
}

.lastest_news_container .lastest_news_tit {
	width: 140px;
	height: 60px;
	background-color: #e60027;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 60px;
	text-align: center;
}

.lastest_news_container .txt_container {
	width: 860px;
}

.lastest_news_container .txt_container a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 60px;
	text-indent: 3em;
	color: #fff;
}

.lastest_news_container .txt_container a span {
	font-weight: normal;
	padding-right: 2em;
}

.lastest_news_container .txt_container a b {
	font-weight: normal;
}



/*sec01-----------------------------------*/

.top .sec01 {
	background: url('../img/top/service_bg.jpg') center center no-repeat;
	background-size: cover;
	position: relative;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.3);
	z-index: 4;
}

.top .sec01:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	z-index: 2;
}

.top .service_list_container {
	display: flex;
	flex-wrap: wrap;
}

.top .service_list_item {
	width: 50%;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.top .service_list_item:nth-child(even) {
	padding-left: 10px;
}

.top .service_list_item a {
	display: block;
	width: 490px;
	height: 280px;
	overflow: hidden;
	position: relative;
}

.top .service_list_item a h3 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 65px;
	background: rgba(255,255,255,.8);
	font-size: 24px;
	font-weight: bold;
	color: #dc0328;
	text-align: center;
	line-height: 65px;
	margin-top: -32.5px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

.top .service_list_item a:hover h3 {
	background: rgba(220,3,40,.8);
	color: #fff;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}



/*sec02-----------------------------------*/

.top .about_container {
	width: 100%;
	display: flex;
}

.top .about_container .left_container {
	width: 60%;
	padding: 50px 0;
	position: relative;
	z-index: 1;
}

.top .about_container .left_container .about_tit {
	text-align: right;
	padding-right: 40%;
}

.top .about_container .left_container .about_tit span {
	font-size: 50px;
	font-weight: bold;
	color: #fff;
	line-height: 1em;
	padding-bottom: 5px;
	display: block;
}

.top .about_container .left_container .about_tit b {
	font-size: 18px;
	color: #dfc499;
	font-weight: normal;
}

.top .about_container .left_container .btn_container {
	text-align: right;
	padding-right: 40%;
}

.top .about_container .left_container .btn_container a {
	width: 230px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	margin: 0;
}


.top .about_container .right_container {
	width: 40%;
	background-color: #fff;
	padding: 50px 0;
}

.top .about_container .right_container .img_container {
	width: 155%;
	max-height: 700px;
	margin-left: -55%;
	background-color: #fff;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.top .about_container .right_container .img_container .company_img {
	width: 140%;
}



/*sec03-----------------------------------*/

.top .human_container {
	width: 100%;
	display: flex;
}


.top .human_container .left_container {
	width: 40%;
	background-color: #fff;
	padding: 50px 0;
}

.top .human_container .left_container .img_container {
	width: 155%;
	max-height: 700px;
	background-color: #fff;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.top .human_container .left_container .img_container .human_img {
	width: 100%;
}

.top .human_container .right_container {
	width: 60%;
	padding: 50px 0;
	position: relative;
	z-index: 1;
}

.top .human_container .right_container .human_tit {
	padding-left: 40%;
}

.top .human_container .right_container .human_tit span {
	font-size: 50px;
	font-weight: bold;
	color: #fff;
	line-height: 1em;
	padding-bottom: 5px;
	display: block;
}

.top .human_container .right_container .human_tit b {
	font-size: 18px;
	color: #dfc499;
	font-weight: normal;
}

.top .human_container .right_container .btn_container {
	padding-left: 40%;
}

.top .human_container .right_container .btn_container a {
	width: 230px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	margin: 0;
}



/*sec04-----------------------------------*/

.news_list_container {
	display: flex;
	flex-wrap: wrap;
}

.news_list_container .news_list_item {
	width: calc(100% / 3);
	padding-bottom: 20px;
	box-sizing: border-box;
}

.news_wrap {
	width: 320px;
	height: 100%;
	display: block;
	background-color: #fff;
}

.news_list_container .news_list_item:nth-child(3n - 1) .news_wrap {
	margin: 0 auto;
}

.news_list_container .news_list_item:nth-child(3n) .news_wrap {
	float: right;
}

.news_wrap .img_container {
	width: 320px;
	height: 180px;
	overflow: hidden;
	position: relative;
}

.news_wrap .img_container .news_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	
}

.news_wrap .txt_container {
	width: 320px;
	box-sizing: border-box;
	padding: 15px 15px 0;
}

.news_wrap .txt_container:hover {
	text-decoration: underline;
}

.news_wrap .txt_container span {
	color: #999;
}



/*sec05-----------------------------------*/

.top .recruit_wrap {
	background: url('../img/top/recruit_bg.jpg') center center no-repeat;
	background-size: cover;
	position: relative;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.3);
	z-index: 4;
}

.top .recruit_wrap:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	z-index: 2;
}

.top .recruit_container {
	background-color: #fff;
}

.movie_container {
	width: 1000px;
	position: relative;
	margin: 0 auto;
	z-index: 3;
}

.movie_container:before {
	content: '';
	display: block;
	padding-bottom: 56.25%;
}

.movie_container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.top .recruit_wrap .btn_container {
	position: relative;
	z-index: 3;
}



/*sec06-----------------------------------*/

.gmap_container {
	position: relative;
	z-index: 4;
	width: 95%;
	height: 500px;
	margin: 0 auto;
	overflow: hidden;
}

.gmap_container iframe {
	margin-top: -250px;
}

.access_container {
	padding-top: 60px;
}

.access_container .sub_tit {
	margin-bottom: 30px;
}

.access_container .plain_txt {
	color: #fff;
	text-align: center;
}

.access_container + .btn_container {
	padding-top: 30px;
}



/*----------------------------------------*/

/*company*/

/*----------------------------------------*/

/*sec01-----------------------------------*/

.greet_container {
	display: flex;
	background-color: rgba(0,0,0,.6);
	padding: 20px;
}

.greet_container .left_container {
	width: 75%;
}

.greet_container .left_container .lead {
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	padding-bottom: 10px;
}

.greet_container .left_container .plain_txt {
	width: 97%;
	color: #fff;
}

.greet_container .right_container {
	width: 25%;
}

.greet_container .right_container .CEO_container {
	padding: 30px 0 0 55px;
}

.greet_container .right_container .CEO_container h3 {
	font-family: "Sawarabi Mincho";
	font-size: 28px;
	color: #fff;
}

.greet_container .right_container .CEO_container h3 span {
	font-family: "Sawarabi Mincho";
	font-size: 16px;
	color: #fff;
	display: block;
}



/*sec03-----------------------------------*/

.plain_table {
	width: 100%;
}

.plain_table th {
	width: 25%;
	background-color: rgba(0,0,0,.8);
	padding: 30px;
	box-sizing: border-box;
	vertical-align: top;
	color: #fff;
	font-weight: bold;
}

.plain_table td {
	width: 75%;
	background-color: rgba(0,0,0,.6);
	padding: 30px;
	box-sizing: border-box;
	color: #fff;
	vertical-align: top;
}

.plain_table td ul li {
	text-indent: -1em;
	padding-left: 1em;
	color: #fff;
}

.plain_table td a {
	color: #fff;
}

.plain_table td a:hover {
	text-decoration: underline;
}

.group_table th {
	width: 30%;
}

.group_table td {
	width: 70%;
}

.group_table .btn_container {
	padding-top: 20px;
}

.group_table .btn_container a {
	color: #cc0000;
}

.group_table .btn_container a:hover {
	color: #fff;
	text-decoration: none;
}


/*----------------------------------------*/

/*news*/

/*----------------------------------------*/

.post_tit {
	background-color: rgba(0,0,0,.7);
	padding: 20px;
	margin-bottom: 10px;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
}

.post_content {
	background-color: rgba(0,0,0,.6);
	padding: 20px;
}

.post_content p {
	font-size: 16px;
	color: #fff;
	line-height: 2em;
	padding-bottom: 2em;
}
.post_content img {
	max-width: 100%;
	height: auto;
	margin-bottom: 1.5em;
}
.post_content figure {
	margin: 0;
}
.post_content a {
	color: #007fff;
	text-decoration: underline;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}
.post_content a:hover {
	opacity: .6;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}
.post_content h1 {
	font-size: 40px;
	line-height: 1.5em;
	font-weight: bold;
	padding-bottom: .5em;
}
.post_content h2 {
	font-size: 35px;
	color: #fff;
	line-height: 1.5em;
	font-weight: bold;
	padding-bottom: .5em;
}
.post_content h3 {
	font-size: 30px;
	color: #fff;
	line-height: 1.5em;
	font-weight: bold;
	padding-bottom: .5em;
}
.post_content h4 {
	font-size: 25px;
	color: #fff;
	line-height: 1.5em;
	font-weight: bold;
	padding-bottom: .5em;
}
.post_content h5 {
	font-size: 20px;
	color: #fff;
	line-height: 1.5em;
	font-weight: bold;
	padding-bottom: .5em;
}
.post_content h6 {
	font-size: 16px;
	color: #fff;
	line-height: 1.5em;
	font-weight: bold;
	padding-bottom: .5em;
}
.post_content strong {
	font-weight: bold;
	color: #fff;
	padding-bottom: .5em;
}
.post_content em {
	font-style: italic!important;
	color: #fff;
	padding-bottom: 1.5em;
}
.post_content ul {
	padding-left: 2em;
	padding-bottom: 1.5em;
}
.post_content ul li {
	list-style-type: disc;
	color: #fff;
	padding-bottom: 0;
	border: 0;
	line-height: 1em;
}
.post_content ol {
	padding-left: 2em;
	padding-bottom: 1.5em;
}
.post_content ol li {
	list-style-type: decimal;
	color: #fff;
	padding-bottom: 0;
	border: 0;
	line-height: 1.2em;
}
.post_content blockquote {
	margin: 10px;
	padding: 0 20px;
	background-color: #999;
	color: #fff;
}
.post_content blockquote:before {
	content: '“';
	font-size: 50px;
	line-height: 1em;
	height: 30px;
	display: block;
	padding-top: 10px;
	color: #ccc;
}
.post_content blockquote:after {
	content: '”';
	font-size: 50px;
	line-height: 1em;
	height: 20px;
	color: #ccc;
	display: block;
	padding-bottom: 10px;
	width: 100%;
	text-align: right;
}

.aligncenter {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/*----------------------------------------*/

/*inquiry*/

/*----------------------------------------*/

.inquiry .plain_table {
	margin-bottom: 30px;
}

input[type="text"] {
	width: 100%;
	height: 50px;
	font-size: 22px;
	background-color: #ddd;
	border: none;
	box-sizing: border-box;
	padding: 5px;
}

input:focus,
textarea:focus {
	outline: 5px solid #dc0328;
}

textarea {
	width: 100%;
	height: 10em;
	font-size: 22px;
	background-color: #ddd;
	border: none;
	box-sizing: border-box;
	padding: 5px;
}

.req {
	background-color: #dc0328;
	color: #fff;
	font-size: 12px;
	letter-spacing: .2em;
	padding: 2px 5px;
	margin-left: 10px;
}

.submit_container {
	text-align: center;
	padding-top: 5px;
}

input[type="submit"] {
	width: 400px;
	height: 50px;
	font-size: 22px;
	color: #fff;
	text-align: center;
	line-height: 50px;
	background-color: #dc0328;
	border: 2px solid #dc0328;
	cursor: pointer;
	zoom:1;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

input[type="submit"].back {
	background-color: #fff;
	color: #dc0328;
}

.btn_container.back {
	padding-top: 80px;
}

.btn_container.back a {
	display: block;
	width: 400px;
	height: 50px;
	font-size: 22px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	background-color: #dc0328;
	border: 2px solid #dc0328;
	margin: 0 auto;
	cursor: pointer;
	zoom:1;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

input[type="submit"]:hover,
.btn_container.back a:hover {
	font-size: 22px;
	color: #dc0328;
	line-height: 50px;
	background-color: #fff;
	border: 2px solid #dc0328;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

.error {
	color: #cc0000;
	font-size: 14px;
}

.inquiry .center {
	text-align: center;
}

.inquiry .plain_txt,
.section ul {
	padding-bottom: 20px;
}

.inquiry.confirm .plain_txt,
.inquiry.finish .plain_txt {
	color: #333;
	font-size: 16px;
	line-height: 1.5em;
}



/*----------------------------------------*/

/*recruit*/

/*----------------------------------------*/

/*sec02-----------------------------------*/

.occ_list_container {
	display: flex;
	flex-wrap: wrap;
}

.occ_list_item {
	width: 50%;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.occ_list_item:nth-child(even) {
	padding-left: 10px;
}

.occ_list_item a {
	display: block;
	width: 490px;
	height: 280px;
	overflow: hidden;
	position: relative;
}

.occ_list_item a h3 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 65px;
	background: rgba(255,255,255,.8);
	font-size: 24px;
	font-weight: bold;
	color: #dc0328;
	text-align: center;
	line-height: 65px;
	margin-top: -32.5px;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}

.occ_list_item a:hover h3 {
	background: rgba(220,3,40,.8);
	color: #fff;
	-webkit-transition: .5s ease-out;
	-moz-transition: .5s ease-out;
	-ms-transition: .5s ease-out;
	transition: .5s ease-out;
}



/*sec03-----------------------------------*/

.req_container {
	display: flex;
	background-color: rgba(0,0,0,.6);
	padding: 20px;
	margin-bottom: 20px;
}

.req_container .left_container {
	width: 25%;
}

.req_container .right_container {
	width: 75%;
}

.req_container .right_container .lead {
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	padding-bottom: 5px;
	width: 97%;
	padding-left: 3%;
}

.req_container .right_container .plain_txt {
	color: #fff;
	width: 97%;
	padding-left: 3%;
}

/*sec05-----------------------------------*/

.recruit .works_container .movie_container {
	width: 100%;
}

.recruit .works_container .img_list_container {
	display: flex;
	justify-content: space-around;
}

.recruit .works_container .img_list_item {
	width: 30%;
}



/*----------------------------------------*/

/*service*/

/*----------------------------------------*/

/*sec01-----------------------------------*/

.service .sec01 {
	background: url('../img/service/service_img01.jpg') center center no-repeat;
	background-size: cover;
	position: relative;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.3);
	z-index: 4;
}

.service .sec01:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	z-index: 2;
}

.service .service_container {
	padding-top: 160px;
}

.service .service_container .service_tit {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	position: relative;
	margin-bottom: 80px;
}

.service .service_container .service_tit:after {
	content: '';
	width: 72px;
	height: 8px;
	background-color: #dfc499;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -36px;
}

.service .service_container .plain_txt {
	font-size: 18px;
	color: #fff;
	text-align: center;
}

.service .service_container .img_container {
	width: 400px;
	margin: 80px auto 40px;
}



/*sec02-----------------------------------*/

.service .sec02 .service_container {
	padding: 60px 0 120px;
}

.service .service_list_container {
	display: flex;
	flex-wrap: wrap;
}

.service .service_list_item {
	width: 50%;
	padding-bottom: 80px;
}

.service .service_inner {
	width: 96%;
}

.service .service_list_item:nth-child(even)  .service_inner {
	margin-left: 4%;
} 

.service .service_inner .service_tit {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	position: relative;
	margin-bottom: 50px;
}

.service .service_inner .service_tit:after {
	content: '';
	width: 72px;
	height: 8px;
	background-color: #dfc499;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -36px;
}

.service .service_inner .service_tit span {
	color: #fff;
	font-size: 92px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateY(-40%) translateX(-50%);
	-webkit-transform: translateY(-40%) translateX(-50%);
	opacity: .4;
	z-index: 1;
}

.service .service_inner .service_tit em {
	position: relative;
	z-index: 2;
	font-style: normal;
}

.service .service_img {
	margin-bottom: 10px;
}

.service .service_inner .plain_txt {
	color: #fff;
}

.service .btn_container {
	padding-top: 10px;
}

.service .btn_container a {
	width: 90%;
}



/*----------------------------------------*/

/*air_conditioner*/

/*----------------------------------------*/

/*sec01-----------------------------------*/

.works_container {
	width: 1000px;
	padding: 20px;
	margin: 0 auto;
	box-sizing: border-box;
	background-color: rgba(0,0,0,.6);
	position: relative;
	z-index: 3;
}

.works_tit {
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	position: relative;
	margin-bottom: 80px;
}

.works_tit:after {
	content: '';
	width: 72px;
	height: 8px;
	background-color: #dfc499;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -36px;
}

.works_container .plain_txt,
.works_container .plain_txt a {
	font-size: 18px;
	color: #fff;
}

/*sec02-----------------------------------*/

.works_list_container {
	width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 4;
}

.works_list_item {
	padding-bottom: 40px;
}

.works_detail_box {
	display: flex;
	padding: 20px;
	background-color: rgba(0,0,0,.8);
}

.works_list_item .img_container {
	width: 50%;
	box-sizing: border-box;
}

.works_list_item .txt_container {
	width: 50%;
	box-sizing: border-box;
	padding-left: 30px;
}

.works_list_item .txt_container .works_tit {
	font-size: 24px;
	color: #fff;
	margin-bottom: 40px;
}

.works_list_item .txt_container .plain_txt {
	color: #fff;
}

.works_list_item:nth-child(even) .img_container {
	order: 2;
}

.works_list_item:nth-child(even) .txt_container {
	order: 1;
	padding: 0 30px 0 0;
}



/*service_summary-----------------------------------*/

.service_summary .service_list_container {
	display: flex;
	flex-wrap: wrap;
	width: 98%;
	margin: 0 auto;
	padding: 40px 10px 10px;
	background-color: rgba(0,0,0,.6);
	box-sizing: border-box;
	position: relative;
	z-index: 4;
}

.service_summary .service_list_item {
	width: 25%;
}

.service_summary .service_inner {
	width: 96%;
	margin: 0 auto;
}

.service_summary .service_inner .service_tit {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
}
@media screen and (max-width: 1580px) {
	.service_summary .service_inner .service_tit {
		font-size: 1.5vw;
	}
}

.service_summary .service_inner .service_tit:after {
	content: '';
	width: 72px;
	height: 8px;
	background-color: #dfc499;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -36px;
}

.service_summary .service_inner .service_tit span {
	color: #e60027;
	font-size: 68px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateY(-40%) translateX(-50%);
	-webkit-transform: translateY(-40%) translateX(-50%);
	opacity: .4;
	z-index: 1;
}

.service_summary .service_inner .service_tit em {
	position: relative;
	z-index: 2;
	font-style: normal;
}



/*----------------------------------------*/

/*hrd*/

/*----------------------------------------*/

/*sec01-----------------------------------*/

.hrd .sec01 {
	background: url('../img/hrd/hrd_img01.jpg') center top no-repeat;
	background-size: cover;
	position: relative;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.3);
	z-index: 4;
}

.hrd .sec01:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	z-index: 2;
}

.hrd .img_list_container {
	display: flex;
	flex-wrap: wrap;
}

.hrd .img_list_item {
	width: 50%;
}

.hrd .img_list_item:nth-child(2n) {
	text-align: right;
}

.hrd .img_list_img {
	width: 98%;
}

.hrd .service_container {
	padding-top: 160px;
}

.hrd .service_container .service_tit {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	position: relative;
	margin-bottom: 80px;
}

.hrd .service_container .service_tit:after {
	content: '';
	width: 72px;
	height: 8px;
	background-color: #dfc499;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -36px;
}

.hrd .service_container .plain_txt {
	font-size: 18px;
	color: #fff;
	text-align: center;
}

.hrd .service_container .img_container {
	width: 400px;
	margin: 80px auto 40px;
}



/*sec02-----------------------------------*/

.hrd_list_container {
	display: flex;
	padding-bottom: 20px;
}

.hrd_list_item {
	width: 280px;
	position: relative;
}

.hrd_list_item:first-child,
.hrd_list_item:last-child {
	width: 50px;
	height: 200px;
	background-color: #dc0328;
	font-size: 24px;
	color: #fff;
	letter-spacing: 1em;
	writing-mode: vertical-rl;
}

.hrd_list_item:first-child span,
.hrd_list_item:last-child span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-40%) translateX(-50%);
	-webkit-transform: translateY(-40%) translateX(-50%);
}

.hrd_list_item:first-child:after,
.hrd_list_item:last-child:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 100px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 100px solid transparent;
	border-left: 20px solid #dc0328;
	position: absolute;
	top: 0;
	right: -40px;
}

.hrd_list_item dl {
	width: 200px;
	height: 200px;
	padding-left: 40px;
}

.hrd_list_item dl dt {
	height: 30px;
	background-color: #fff;
	font-size: 18px;
	font-weight: bold;
	color: #dc0328;
	text-align: center;
	margin-bottom: 10px;
}

.hrd_list_item dl dd {
	display: flex;
	background-color: #fff;
}

.hrd_list_item dl dd .session,
.hrd_list_item dl dd .test {
	writing-mode: vertical-rl;
	background-color: rgba(230,0,39,.7);
	position: relative;
	width: 20%;
	height: 160px;
}

.hrd_list_item dl dd .session span,
.hrd_list_item dl dd .test span {
	white-space: nowrap;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-40%) translateX(-50%);
	-webkit-transform: translateY(-40%) translateX(-50%);
}

.hrd_list_item dl dd .training {
	width: 60%;
	background-color: rgba(230,0,39,.4);
	position: relative;
}

.hrd_list_item dl dd .training span {
	white-space: nowrap;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-40%) translateX(-50%);
	-webkit-transform: translateY(-40%) translateX(-50%);
}

.hrd_list_item:nth-child(3) dl dd .training,
.hrd_list_item:nth-child(4) dl dd .training {
	width: 100%;
	height: 160px;
}

.hrd_list_item:nth-child(2):after,
.hrd_list_item:nth-child(3):after,
.hrd_list_item:nth-child(4):after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-right: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 25px solid #dc0328;
	position: absolute;
	top: 50%;
	right: -20px;
	margin-top: -25px;
}

.hrd_list_item:nth-child(2):after,
.hrd_list_item:nth-child(3):after {
	right: -40px;
}

.hrd_schedule_container {
	display: flex;
	padding-bottom: 30px;
}

.hrd_schedule_item {
	height: 30px;
	display: inline-block;
	font-size: 18px;
	line-height: 30px;
	font-weight: bold;
	color: #dc0328;
	text-align: center;
	background-color: #fff;
	position: relative;
}

.hrd_schedule_item:first-child {
	width: 160px;
	margin-left: 130px;
}

.hrd_schedule_item:last-child {
	width: 580px;
	margin-left: 80px;
}
.hrd_schedule_item:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #fff;
	position: absolute;
	top: 0;
	right: -30px;
}



/*sec03-----------------------------------*/

.hrd .sec03 {
	background: url('../img/service/air_conditioner_img01.jpg') center top no-repeat;
	background-size: cover;
	position: relative;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.3);
	z-index: 4;
}

.hrd .sec03:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	z-index: 2;
}

