@charset "UTF-8";
/* CSS Document */

/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	position: relative;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.7;
	color: #444;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
}
@media (max-width: 450px){
	body{
		font-size: 0.9rem;
	}
}
a{
	text-decoration: none;
	color: #444;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
.img{
	min-height: 0%;
}
.img img{
	display: block;
	width: 100%;
}
.img a{
	display: block;
	width: 100%;
	background: #fff;
}
.img a:hover img{
	opacity: .8;
}

.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

/*flexbox*/
.flexbox{
	display: flex;
	justify-content: space-between;
}

.mg80{
	margin-bottom: 80px;
}
.mg60{
	margin-bottom: 60px;
}
.mg40{
	margin-bottom: 40px;
}
.mg20{
	margin-bottom: 20px;
}
.mg10{
	margin-bottom: 10px;
}
.lh2{
	line-height: 2;
}
.pmg p{
	margin-bottom: 10px;
}

h2.title{
	margin-bottom: 40px;
	color: #002538;
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
}
h2.title span.en{
	display: block;
	font-family: 'Scheherazade New', serif;
	text-transform: uppercase;
	font-weight: normal;
	font-size: 4rem;
	letter-spacing: 0.15em;
	line-height: 1;
}
h2.title span.ja{
	display: block;
	font-size: 1.5rem;
	display: flex;
  	align-items: center;
  	justify-content: center;
	width: -moz-fit-content;
	width: fit-content;
	letter-spacing: 0.1rem;
}
h2.title span.ja::before{
	content: '';
	border-top: 1px solid;
	width: 2em;
	margin-right: .5em;
}
h2.title.center span.ja{
	width: 100%;
}
h2.title.center span.ja::before{
	display: none;
}
h2.title.white{
	color: #fff;
	text-shadow: none;
}
@media (max-width: 750px){
	h2.title span.en{
		font-size: 3rem;
	}
	h2.title span.ja{
		font-size: 1.2rem;
	}
}

.mtitle{
	border: 1px solid #c2c2c2;
	border-left: 10px solid #316891;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 10px;
	margin-bottom: 20px;
	background: #fff;
}

.stitle{
	position: relative;
  	font-size: 1.4rem;
	font-weight: bold;
	border-bottom: 2px solid #ccc;
	margin-bottom: 20px;
}
.stitle::before{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 100px;
	height: 2px;
	background: #316891;
}

.dtitle{
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
}
.dtitle::after{
	content: '';
	display: block;
	width: 150px;
	height: 1px;
	background: #000;
	margin: 20px auto 40px;
}
@media (max-width: 750px){
	.dtitle{
		font-size: 1.2rem;
	}
}

.ntitle{
	font-size: 1.2rem;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}
.ntitle::before{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 10px;
	color: #004A78;
}

.center{
	text-align: center;
}
.bold{
	font-weight: bold;
	font-size: 1.2rem;
}


/*ボタン*/
.sbtn{
	text-align: center;
}
.sbtn a{
	position: relative;
	padding: 10px 0;
	border: 1px solid #438cc4;
	background: #438cc4;
	color: #fff;
	font-weight: bold;
	display: inline-block;
	margin: 0 auto;
	width: 100%;
	max-width: 260px;
}
.sbtn a::after{
	transition: .4s;
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	font-weight: bold;
	display: inline-block;
	position: absolute;
	right: 20px;
}
.sbtn.non a::after{
	display: none;
}
.sbtn a:hover{
	background: #fff;
	color: #438cc4;
}
.sbtn a:hover::after{
	transform: translateX(5px);
}

.m_contact a{
	min-width: 280px;
}
.m_contact a::after{
	display: none;
}


/*2行の基本Table*/
.info_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr{
	border: 2px solid #f5f5f5;
}
.info_table th {
	background: #316891;
	color: #fff;
	width: 30%;
	border-right: 2px solid #f5f5f5;
}
.info_table th,
.info_table td {
	padding: 15px 0;
}
.info_table td{
	padding-left: 10px;
}
.info_table td {
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}

/*スタイリッシュver*/
.info_table02{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table02 tr{
	border-bottom: 2px solid #f5f5f5;
}
.info_table02 th{
	width: 30%;
	border-bottom: 2px solid #316891;
}
.info_table02 th,
.info_table02 td {
	padding: 15px 0;
}
.info_table02 td{
	padding-left: 10px;
}
.info_table02 td{
	width: 70%;
}


/*改行*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}
span.ib{
	display: inline-block;
}


/*list*/
ul.check_list li{
}
ul.check_list li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #316891;
	margin-right: .5em;
	font-size: .9em;
}

ul.dot_list li{
	margin-bottom: 5px;
}
ul.dot_list li::before{
	content: '・';
	color: #316891;
	margin-right: 5px;
}

ul.care_list li{
	margin-bottom: 5px;
}
ul.care_list li::before{
	content: '※';
	color: #f05742;
	font-weight: bold;
}

/*===info_flexbox======*/
/*画像 + テキスト 通常のflex*/
.info_flexbox{
	display: flex;
	justify-content: space-between;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .text{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox{
		display: block;
	}
	.info_flexbox .img{
		width: 100%;
	}
	.info_flexbox .text{
		width: 100%;
	}
}

/*画像 + テキスト 上下逆転のflex*/
.info_flexbox_reverse{
	display: flex;
	justify-content: space-between;
}
.info_flexbox_reverse .text{
	width: 48%;
}
.info_flexbox_reverse .img{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox_reverse{
		flex-direction: column-reverse;
	}
	.info_flexbox_reverse .text{
		width: 100%;
	}
	.info_flexbox_reverse .img{
		width: 100%;
	}
}

/*===// 共通部分ここまで ===========*/






/*===ヘッダー==============================*/
.site_header{
	padding: 30px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: .6s;
	background: #fff;
	border-bottom: 1px solid #eee;
}
.site_header.transform{
	padding: 20px 0;
}
.site_header .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site_header h1{
	width: 400px;
}
.site_header h1 a{
	display: block;
	width: 100%;
}
.site_header h1 a img{
	display: block;
	width: 100%;
	transition: .4s;
}
.site_header h1 a:hover img{
	opacity: .6;
}

/*global_nav*/
.global_nav ul{
	display: flex;
}
.global_nav li{
	margin-left: 30px;
	transition: 0.4s;
}
.global_nav li a{
	font-size: 1.1rem;
	font-weight: bold;
	color: #444;
}
.global_nav li a i{
	font-size: 1.4rem;
}
.global_nav li a:hover{
	color: #438cc4;
}

.site_header.transform .global_nav li a:hover{
	color: #438cc4;
}

@media (max-width: 1170px){
	.global_nav li{
		margin-left: 10px;
	}
	.global_nav li a{
		font-size: 0.9rem;
	}
	.global_nav li a i{
		font-size: 1.2rem;
	}
}
@media (max-width: 960px){
	.global_nav{
		display: none;
	}
	.site_header h1{
		width: 300px;
	}
}
@media (max-width: 450px){
	.site_header h1{
		width: 260px;
	}
}



/*===スライダー==============================*/
.top_slider{
	overflow: hidden;
	position: relative;
}
.top_slider .slider{
	width: 100%;
	box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.top_slider .slider li{
	width: 100%;
	height: 90vh;
	min-height: 500px;
	position: relative;
}
.top_slider .slider li.top01{
	background: url(../img/top01.jpg);
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top02{
	background: url(../img/top02.jpg);
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top03{
	background: url(../img/top03.jpg);
	background-size: cover;
	background-position: center center;
}

/*キャッチ*/
.top_slider .slider li .catch{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	text-align: center;
	z-index: 2;
	width: 90%;
	max-width: 600px;
}
@media (max-width: 750px){
	.top_slider .slider li{
		height: 60vh;
	}
}

/*===メイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 100px 0;
	position: relative;
}
@media (max-width: 750px){
	main section{
		padding: 60px 0;
	}
}

.bg{
	background: url(../img/stylish01.png);
}

/*==welcome==============================*/
.welcome .inner{
	max-width: 960px;
}
.welcome .text p{
	margin-bottom: 15px;
	line-height: 2.2;
}
.welcome .flex{
	display: flex;
	justify-content: space-between;
}
.welcome .flex .text{
	width: calc(100% - 370px);
}
.welcome .img{
	/*max-width: 274px;*/
	width: 350px;
}
@media (max-width: 750px){
	.welcome .flex{
		display: block;
	}
	.welcome .flex .text{
		width: 100%;
		margin-bottom: 20px;
	}
	.welcome .img{
		width: 100%;
		margin: 0 auto;
	}
}

/*===link==============================*/
.contents .flex{
	display: flex;
	flex-wrap: wrap;
}
.contents .flex .box{
	width: 50%;
}
.contents .flex .box a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	height: 400px;
	z-index: 1;
}
.contents .flex .box a::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index:-1;
}
.contents .flex .box:nth-child(1) a{
	background-image: url(../img/contents01.jpg);
}
.contents .flex .box:nth-child(2) a{
	background-image: url(../img/contents02.jpg);
}
.contents .flex .box:nth-child(3) a{
	background-image: url(../img/contents03.jpg);
}
.contents .flex .box:nth-child(4) a{
	background-image: url(../img/contents04.jpg);
}
.contents .flex .box a .wrap{
	background: rgba(255, 255, 255, 0.8);
	width: 80%;
	text-align: center;
	padding: 40px 10px;
}
.contents .flex .box a .wrap h3{
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 1.8rem;
}
.contents .flex .box a .wrap p{
	font-weight: bold;
	margin-bottom: 20px;
}
.contents .flex .box a .wrap .cbtn{
	background: #fff;
	border: 1px solid #fff;
	width: 60%;
	padding: 5px 0;
	margin: 0 auto;
	transition: 0.2s;
}

.contents .flex .box a:hover .wrap .cbtn{
	background: #438cc4;
	color: #fff;
}
@media (max-width: 960px){
	.contents .flex .box{
		width: 100%;
	}
}
@media (max-width: 450px){
	.contents .flex .box a{
		height: 300px;
	}
	.contents .flex .box a .wrap{
		padding: 20px 5px;
	}
	.contents .flex .box a .wrap h3{
		font-size: 1.4rem;
	}
}

/*===recruit==============================*/
.top_recruit{
	
}
.top_recruit .mini_slider{
}
.top_recruit .text{
	width: 80%;
	position: relative;
	top: -60px;
	z-index: 1;
	padding: 40px 0;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background: rgba(255, 255, 255, 0.9);
	text-align: center;
	margin: 0 auto;
	border-radius: 5px;
}
.top_recruit .text h3{
	font-size: 2rem;
	margin-bottom: 20px;
	color: #438cc4;
}
.top_recruit .text p{
	font-size: 1.2rem;
	line-height: 2;
}
.top_recruit .sbtn a{
	margin-top: 40px;
}
@media (max-width: 750px){
	.top_recruit .mini_slider{
		margin-bottom: 20px;
	}
	.top_recruit .text_wrap{
		background: none;
	}
	.top_recruit .text{
		width: 100%;
		position: static;
		padding: 0;
		box-shadow: none;
		background: none;
	}
	.top_recruit .text p{
		font-size: 1rem;
		line-height: 1.7;
	}
	.top_recruit .sbtn a{
		margin-top: 40px;
	}
}
@media (max-width: 450px){
	.top_recruit .text h3{
		font-size: 1.8rem;
	}
}


/*===フッター==============================*/
.footer_top{
	background: url(../img/footer_top.jpg);
	background-size: cover;
	background-position: center;
	padding: 60px 0;
	text-align: center;
	background-attachment: fixed;
	position: relative;
	z-index: 1;
	color: #fff;
}
/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .footer_top{
	background-attachment: scroll;
}
.footer_top::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index:-1;
}
.footer_top h2.title span.en{
	text-transform: uppercase;
}
.footer_top .btn_wrap{
	display: flex;
	justify-content: space-around;
}
.footer_top .btn_wrap .btn{
	width: 360px;
}
.footer_top .btn_wrap .btn a{
	display: block;
	width: 100%;
	background: #438cc4;
	color: #fff;
	padding: 20px 0;
	font-size: 1.5rem;
	border: 1px solid #438cc4;
}
.footer_top .btn_wrap .btn:nth-child(2) a{
	background: #316891;
	border: 1px solid #316891;
}
.footer_top .btn_wrap .btn a:hover{
	background: #fff;
	color: #438cc4;
}
.footer_top .btn_wrap .btn:nth-child(2) a:hover{
	background: #fff;
	color: #316891;
}

.footer_middle{
	text-align: center;
	padding: 60px 0 20px;
}
.footer_middle h3{
	width: 80%;
	max-width: 400px;
	margin: 0 auto 10px;
}
.footer_middle h3 a{
	display: block;
	width: 100%;
}
.footer_middle h3 a img{
	display: block;
	width: 100%;
}
.footer_middle h3 a:hover img{
	opacity: 0.7;
}
.footer_middle p{
	font-size: 0.8rem;
}

.footer_bottom{
	background: #316891;
	text-align: center;
	padding: 10px 0;
	color: #fff;
}
@media (max-width: 750px){
	.footer_top .btn_wrap{
		display: block;
	}
	.footer_top .btn_wrap .btn{
		width: 100%;
		margin-bottom: 20px;
	}
}


/*トップに戻る*/
.page_top{
	opacity: 0;
	pointer-events: none;
  	width: 50px;
  	height: 50px;
  	position: fixed;
  	right: 10px;
  	bottom: 10px;
	border-radius: 50%;
	opacity: 0;
	transition: 1s;
  	background: #316891;
  	z-index: 50;
}
.page_top a{
	display: block;
	position: relative;
	z-index: 10;
  	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.page_top a i{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  	font-weight: 900;
  	font-size: 25px;
  	color: #fff;
}
.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
	opacity: .6;
}
.page_top.is_animation:hover{
	opacity: 1;
	transform: translateY(-10px);
}


/*=================================*/
/*===下層ページ===============================================================*/
/*下層トップ*/
.kasou_top{
	background: url(../img/kasou_top.jpg);
	background-size: cover;
	background-position: center;
	height: 400px;
	width: 100%;
	position: relative;
}
.kasou_top h2{
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	font-size: 2.5rem;
	font-weight: bold;
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
}
@media (max-width: 450px){
	.kasou_top{
	  height: 300px;
	}
	.kasou_top h2{
		font-size: 1.8rem;
	}
}

/*パンくず*/
.breadcrumb{
	z-index: 1;
	font-size: 12px;
	color: #444;
}
.breadcrumb li {
	display: inline;
	list-style: none;
	font-weight: normal;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	font-size: 1.1em;
	color: #438cc4;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}

/*===事業紹介ページ==============================*/
.mt_list_flex{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.mt_list_flex li{
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 15px;
	background: #fff;
	padding: 3px 15px;
	box-shadow: 3px 3px rgb(0 0 0 / 5%);
}
.mt_list_flex li::before{
	content: '>';
	margin-right: 0.5em;
	color: #666;
}


.item_flex{
	display: flex;
	flex-wrap: wrap;
}
.item_flex .box{
	text-align: center;
	width: 31%;
	margin: 0 1% 40px;
}
.item_flex .box p{
	font-weight: bold;
	font-size: 1.2rem;
	margin-top: 5px;
}
@media (max-width: 750px){
	.item_flex .box{
		width: 48%;
		margin: 0 1% 30px;
	}
	.item_flex .box p{
		font-size: 1rem;
	}
}


/*===作業の流れページ==============================*/
.flow_list{
	position: relative;
	z-index: 1;
	padding: 40px 0;
}
.flow_list::before{
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #ccc;
	z-index:-1;
}
.flow_list .box{
	width: 50%;
	padding: 40px;
	margin-bottom: 40px;
}
.flow_list .box:last-child{
	margin-bottom: 0;
}
.flow_list .box:not(.right){
	padding-left: 0;
}
.flow_list .box.right{
	margin-left: auto;
	padding-right: 0;
}

.flow_list .box h3{
	position: relative;
	font-size: 2.2rem;
	line-height: 1.2;
	margin-bottom: 20px;
}
.flow_list .box h3 span{
	display: inline-block;
	margin-right: 0.5em;
	font-family: 'Scheherazade New', serif;
	transform: skewX(-5deg);
	font-weight: bold;
	color: #316891;
}
.flow_list .box h3::before{
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #316891;
	position: absolute;
	top: 50%;
	right: -40px;
	transform: translate(50%, -50%);
}
.flow_list .box.right h3::before{
	right: auto;
	left: -40px;
	transform: translate(-50%, -50%);
}
.flow_list .box .text{
	margin-bottom: 40px;
}
.flow_list .box .text p{
	line-height: 2;
	margin-bottom: 10px;
}
.flow_list .box .img{
	border-radius: 20px;
}


@media (max-width: 750px){
	.flow_list{
		padding: 20px 0;
	}
	.flow_list::before{
		left: 0;
		transform: none;
	}
	.flow_list .box{
		width: 100%;
	}
	.flow_list .box:not(.right){
		padding: 20px;
		padding-right: 0;
	}
	.flow_list .box.right{
		padding: 20px;
		padding-right: 0;
	}
	.flow_list .box h3{
		font-size: 2rem;
	}
	.flow_list .box h3::before,
	.flow_list .box.right h3::before{
		width: 11px;
		height: 11px;
		left: -20px;
		transform: translate(-50%, -50%);
	}
}



/*===設備一覧ページ==============================*/
.one_flow li{
	margin: 0 10px;
}
.one_flow li a{
	display: block;
	position: relative;
    overflow: hidden;
	min-height: 0%;
}
.one_flow li a::before{
    content: '';
    display: block;
    padding-top: 80%;
}
.one_flow li a img{
	display: block;
	object-fit: cover;
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.3s ease;
}
.one_flow li a::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	transition: all 0.3s ease;
}
.one_flow li a:hover::after{
	background: rgba(0, 0, 0, 0.2);
}
.one_flow li a:hover img{
	transform: scale(1.15);
}


/*arrow*/
.one_flow .slide_left, .one_flow .slide_right{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 1;
	height: 101%;
	width: 50px;
	cursor: pointer;
	display: flex !important;
	justify-content: center;
	align-items: center;
	transition: .8s;
	color: #fff;
}
.one_flow .slide_left{
	left: 0;
}
.one_flow .slide_right{
	right: 0;
}
.one_flow .slide_left i, .one_flow .slide_right i{
	display: block;
	font-size: 50px;
	transition: .8s;
}
.one_flow .slide_left:hover i{
	transform: translate(-6px);
}
.one_flow .slide_right:hover i{
	transform: translate(6px);
}

.picture_all .flex{
	display: flex;
	flex-wrap: wrap;
}
.picture_all .flex .box{
	width: 31%;
	margin: 0 1% 40px;
}
.picture_all .flex a{
	display: block;
	position: relative;
    overflow: hidden;
	min-height: 0%;
}
.picture_all .flex a::before{
    content: '';
    display: block;
    padding-top: 100%;
}
.picture_all .flex a::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	transition: all 0.3s ease;
}
.picture_all .flex a img{
	display: block;
	object-fit: cover;
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.3s ease;
}
.picture_all .flex a:hover::after{
	background: rgba(0, 0, 0, 0.2);
}
.picture_all .flex a:hover img{
	transform: scale(1.15);
}
@media (max-width: 750px){
	.picture_all .flex .box{
		width: 48%;
		margin: 0 1% 20px;
	}
}

.table_wrap{
	overflow-x: scroll !important;
}
.facility_list table{
	width: 100%;
	border-collapse: collapse;
	font-weight: normal;
}
.facility_list table tr{
	border: 2px solid #f5f5f5;
}
.facility_list table th{
	background: #316891;
	color: #fff;
	border-right: 2px solid #f5f5f5;
}
.facility_list table th,
.facility_list table td {
	padding: 15px 10px;
	white-space: nowrap;
}
.facility_list table td {
	background: #fff;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}
.facility_list table .sumb{
	background: #438cc4;
	text-align: center;
	color: #fff;
}



/*===求人情報ページ==============================*/
.interview .text p{
	line-height: 2;
	margin-bottom: 20px;
}

.d_list li{
	margin-bottom: 18px;
	padding: 3px;
	border-bottom: 2px dashed #ddd;
}
.d_list li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 10px;
}


.rec_con .flex{
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
	max-width: 750px;
}
.rec_con .flex .text{
}
.rec_con .img{
	/*max-width: 274px;*/
	width: 350px;
}
@media (max-width: 750px){
	.rec_con .flex{
		display: block;
	}
	.rec_con .flex .text{
		width: 100%;
		margin-bottom: 60px;
	}
	.rec_con .img{
		width: 100%;
		margin: 0 auto;
	}
}


/*===会社概要ページ==============================*/
.daihyo .flex{
	display: flex;
	justify-content: space-between;
}
.daihyo .flex .img{
	width: 35%;
}
.daihyo .flex .text{
	width: 63%;
}
.daihyo .flex .text p{
	line-height: 2;
}
@media (max-width: 750px){
	.daihyo .flex{
		display: block;
	}
	.daihyo .flex .img{
		width: 90%;
		max-width: 400px;
		margin: 0 auto 40px;
	}
	.daihyo .flex .text{
		width: 100%;
	}
}



/*お問い合わせ*/
.contact .telfax .flex{
	display: flex;
	justify-content: space-between;
}
.contact .telfax .flex .box{
	width: 48%;
	text-align: center;
	padding: 20px 0;
}
.contact .telfax .flex .box h4{
	font-size: 1.5rem;
	font-weight: normal;
}
.contact .telfax .flex .box .use{
	display: inline-block;
	color: #438cc4;
	font-weight: bold;
	font-size: 2rem;
	white-space: nowrap;
}
.contact .telfax ul li span{
	display: inline-block;
	margin-left: 1em;
}
.contact .telfax ul li span i{
	color: #316891;
}
@media (max-width: 750px){
	.contact .telfax .flex{
		display: block;
	}
	.contact .telfax .flex .box{
		width: 100%;
		padding: 20px 0;
		margin-bottom: 10px;
	}
}
@media (max-width: 450px){
	.contact .telfax .flex .box .use{
		font-size: 1.8rem;
	}
}

/*メールフォーム*/
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 20%;
	font-weight: bold;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.normal{
	font-weight: normal !important;
}
.mailform .row span{
  	color: #fff;
  	background: #438cc4;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #73C89C;
	color: white;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #73C89C;
}
.mailform .postal_btn:hover{
	background: #73C89C;
	opacity: 0.9;
}
.mailform button{
	display: block;
	color: #111;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: bold;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #438cc4;
	border: 1px solid #438cc4;
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #438cc4;
}
.mailform button::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #316891;
    border-bottom: 3px solid #316891;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
}

/*プライバシーポリシー*/
.privacy_flame{
	height: 250px;
	overflow-y: scroll;
	background: #fff;
}
.privacy_flame p{
	padding: 10px;
}
.privacy p span{
	font-weight: bold;
	font-size: 1rem;
	display: block;
}
/*スクロールバー全体*/
.privacy_flame::-webkit-scrollbar {
    width: 5px;
}

/*スクロールバーの軌道*/
.privacy_flame::-webkit-scrollbar-track {
  	border-radius: 10px;
  	box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
.privacy_flame::-webkit-scrollbar-thumb {
  	background-color: rgba(0, 0, 0, .5);
  	border-radius: 10px;
  	box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}

/*===サンクスページ===*/
.thanks .inner .small p{
	font-size: 0.8rem;
}
.thanks .sbtn a{
	margin-bottom: 20px;
}

/*===倉庫==============================*/
@media (max-width: 960px){
}
@media (max-width: 750px){
}
@media (max-width: 450px){
}

/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root object{
	background-attachment: scroll;
}