/**=========
base css
==========**/
body {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    line-height: 1.7;
	letter-spacing: 1px;
    width: 100%;
    height: 100%;
    margin:0;
    padding:0;
    box-sizing: border-box;
	font-optical-sizing: auto;
	color: #393838;
}

@media screen and (max-width:540px) {
	body {
		font-family: "Noto Sans JP", sans-serif;
		font-style: normal;
		font-weight: 500;
		text-align: center;
		line-height: 1.5;
		letter-spacing: 1px;
		width: 100%;
		height: 100%;
		margin:0;
		padding:0;
		box-sizing: border-box;
		font-optical-sizing: auto;
		color: #393838;
	}
}

*:focus {
	outline: none;
}

html{
    scroll-behavior: smooth;
}
.container-fluid {
	padding: 0;
}

ul {
    list-style: none;
}

a {
    color: #393838;
    text-decoration: none;
    transition: 0.5s;
	font-weight: 500;
}
a:hover {
    color: #4E392E;
    text-decoration: none;
    transition: 0.5s;
}

h1 {
	font-size: 38px;
	color: #393838;
}

h2 {
	font-size: 30px;
	color: #393838;
}

@media screen and (max-width:991px) {
	h1 {
		font-size: 38px;
		color: #393838;
	}
	
	h2 {
		font-size: 24px;
		color: #393838;
	}
}

h3 {
	color: #393838;
}


p {
	margin-bottom: 0;
	font-size: 16px;
	/*color: #5C5C5C;*/
	color: #5C5C5C;
}
.p_dg {
	color: #393838;
}
.font_gr {
	color: #5C5C5C !important;
}
.small_font {
	font-size: 14px;
}
img {
	width: 100%;
	height:auto;
}

.line_img {
	height: 3px;
}
/**color**/


/**font**/
.maru_jp {
	font-family: "M PLUS Rounded 1c", sans-serif;
  	font-weight: 500;
}
.jost {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}
.zen_maru {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700;
	font-style: normal;
}  

/**clearfit**/
.clearfit {
	min-width: 1280px;
	overflow: hidden;
	object-fit: cover;
	object-position: center;
}
.clearfit1440 {
	min-width: 1440px;
	overflow: hidden;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width:1440px) {
	.clearfit1440 {
		min-width: initial;
		overflow: hidden;
		object-fit: cover;
	}
}
@media screen and (max-width:1280px) {
	.clearfit {
		min-width: initial;
		overflow: hidden;
		object-fit: cover;
	}
}

.wrap {
	margin: auto;
}

.margin_140 {
	margin: auto;
	margin-top: 150px;
}
.margin_100 {
    margin: auto;
    margin-top: 100px;
}
.inner_margin {
	margin: auto;
	margin-top: 60px;
}

@media screen and (max-width:991px) {
	.margin_140 {
		margin-top: 70px;
	}
	.margin_100 {
		margin: auto;
		margin-top: 70px;
	}
	.inner_margin {
		margin: auto;
		margin-top: 40px;
	}
}

/**reponsive**/
.res_991 {
	display: none !important;
}
.res_540 {
	display: none !important;
}
.res_1280 {
	display: none !important;
}
@media screen and (max-width:1280px) {
	.pc_1280 {
		display: none !important;
	}
	.res_1280 {
		display: block !important;
	}
}
@media screen and (max-width:991px) {
	.pc_991 {
		display: none !important;
	}
	.res_991 {
		display: block !important;
	}
	
}
@media screen and (max-width:540px) {
	.pc_540 {
		display: none !important;
	}
	.res_540 {
		display: block !important;
	}
	.res_padding_top {
        padding-top: 40px !important;
    }
    .res_margin00 {
        margin-top: 0 !important;
    }
}




/**=============
header
=============**/
header {
	/*position: fixed;
	top: 0;*/
	z-index: 10;
	/*background-color: rgba(255, 255, 255, 0.9);*/
}
.header {
	margin-top: 15px;
	margin-bottom: 15px;
	/*display: flex;
	justify-content: space-between;*/
	float: right;
}
.header h1 {
	position: fixed;
	left: 0;
	top: 15px;
	z-index: 4;
}
.header h1 img {
	width: 125px;
	height: auto;
	margin-left: 60px;
}

.header .img_zone {
	display: flex;
	padding-left: 0;
}
.header .member_img img {
	width: 157px;
	height: auto;
	margin-right: 40px;
}
.header .tel_img img {
	width: 290px;
	height: auto;
}

/**hover css**/
.gnavi{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.gnavi li a{
	font-weight: 500;
    display: block;
   	padding:10px 30px;
    text-decoration: none;
    color: #5C5C5C;
	font-size: 16px;
}
.gnavi li{
	margin-left: 20px;
	margin-right: 20px;
}
.gnavi li a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
  color:#427BBF;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#427BBF;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}



@media screen and (max-width:991px) {
	.header {
		margin-top: 0px;
		margin-bottom: 0px;
		display: flex;
		justify-content: space-between;
	}
	.header h1 {
		position: fixed;
		left: 0;
		top: 5px;
		z-index: 4;
	}
	.header h1 img {
		width: 115px;
		height: auto;
		margin-left: 10px;
	}
	
}


/**=============
drawer menu
=============**/

#drawer .drawer-hamburger {
	display: flex;
	flex-direction: column;
	right: 60px;
	top: 20px;
	align-items: center;
	z-index: 5;
}
.drawer--right .drawer-hamburger, .drawer--right.drawer-open .drawer-nav, .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0rem;
}
.drawer--right.drawer-open .drawer-hamburger {
    right: 29rem !important;
}

.drawer-hamburger-icon{
	background-color: transparent;
	position: relative;
	display: block;
	width: 60px;
	height: 0px;

}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before{
	display: block;
	width:100%;
	height:2px;
	-webkit-transition:all .6s cubic-bezier(.19,1,.22,1);
	transition:all .6s cubic-bezier(.19,1,.22,1);
	background-color:#000000;
   	width: 60px;
	height: 1px;
	border-radius: 50px;
}

.drawer-hamburger-icon:after {
	top: 0;
}
.drawer-open .drawer-hamburger-icon {
	width: 30px;
	padding-bottom: 10px;
}
.drawer-open .drawer-hamburger-icon:after,
.drawer-open .drawer-hamburger-icon:before{
	display: block ;
	width:100%;height:2px;
	-webkit-transition:all .6s cubic-bezier(.19,1,.22,1);
	transition:all .6s cubic-bezier(.19,1,.22,1);
	background-color:#000;
   	width: 30px;
	height: 1px;
	border-radius: 50px;
}
.drawer-open .drawer-hamburger-icon {
    background-color: transparent;
}
.drawer-nav {
    position: fixed;
    z-index: 4;
    top: 0;
    overflow: hidden;
    width: 35.25rem;
    height: 100%;
    color: #222;
    background-color: #fff;
}
.drawer--left .drawer-nav{
	left:-35.25rem;
	-webkit-transition:left .6s cubic-bezier(.19,1,.22,1);
	transition:left .6s cubic-bezier(.19,1,.22,1)
}

.drawer--left.drawer-open .drawer-hamburger{
	left:-35.25rem
}
.drawer--right .drawer-nav{
	right:-35.25rem;
	-webkit-transition:right .6s cubic-bezier(.19,1,.22,1);
	transition:right .6s cubic-bezier(.19,1,.22,1);
}
.drawer-nav p.res_logo {
	margin-top: 100px;
	text-align: left;
	margin-left: 50px;
}
.drawer-brand {
	padding-left: 0;
}
.drawer-nav p.res_logo img {
	width: 140px;
}
.drawer-menu {
	margin-top: 0px;
	text-align: left;
}
.drawer-menu a {
	color: #515657;
	transition: 0.5s;
	padding-left: 60px;
}
.drawer-menu a:hover {
	color: #515657;
	background-color: #F7F6F2;
	transition: 0.5s;
	text-decoration: none !important;
}
@media screen and (max-width:991px) {
	.drawer-menu a:hover {
		color: #54C3F1 !important;
		background-color: #F7F6F2;
		transition: 0.5s;
		text-decoration: none !important;
	}
}
.drawer-nav p.member_img,
.drawer-nav p.tel_img {
	text-align: left;
	margin-left: 60px;
}
.drawer-nav p.member_img img {
	width: 150px;
	height: auto;
	margin: auto;
	margin-left: 0;
	margin-top: 20px;
}
.drawer-nav p.tel_img img {
	width: 200px;
	height: auto;
	text-align: left;
	margin-top: 20px;
}

.drawer-nav .contact_zone {
	/*margin-top: 20px;*/
	text-align: left;
	/*margin-left: 60px;*/
	display: flex;
}

.drawer-nav .contact_zone p {
	font-size: 12px;
	line-height: 1.5;
	/*font-weight: 600;*/
}

.drawer-nav .contact_zone p span {
	font-size: 42px;
	font-weight: 600;
	color: #393838;
}
.drawer-nav .contact_zone .page_link {
	margin-top: 20px;
	margin-left: 70px;
}
.drawer-nav .contact_zone .form_zone a {
	font-size: 14px;
}
.drawer-nav .contact_zone .tel_zone a {
	letter-spacing: 2px;
}

@media screen and (max-width:1440px) {
	.navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: center;
    }
}
@media screen and (max-width:1280px) {
	.navbar-expand-lg .navbar-collapse {
		display: none !important;
	}	

	.drawer-nav .contact_zone {
		/*margin-top: 20px;*/
		text-align: left;
		/*margin-left: 60px;*/
		display: ruby-text;
		margin-top: 100px;
	}
	.drawer-nav .contact_zone .page_link {
		margin-top: 20px;
		margin-left: 30px;
	}
	
} 


@media screen and (max-width:991px) {
	#drawer .drawer-hamburger {
		border-radius: 5px;
		display: flex;
		flex-direction: column;
		right: 10px;
		top: 10px;
		padding: 10px 0.75em 20px;
	}
}

@media screen and (max-width:991px) {
	.drawer-nav .contact_zone {
		margin-top: 40px;
		text-align: left;
		/*margin-left: 60px;*/
		display: block;
	}
	.drawer-nav .contact_zone p {
		font-size: 12px;
	}
	.drawer-nav .contact_zone p span {
		font-size: 22px;
		font-weight: 600;
	}
	.drawer-nav .contact_zone .page_link {
		margin-top: 20px;
		margin-left: 0px;
		display: inline-block;
	}
	.drawer-nav .contact_zone .tel_zone {
		padding-left: 30px;
	}

}

@media screen and (max-width:540px) {
	.drawer-nav .contact_zone {
		margin-top: 20px;
		text-align: left;
		/*margin-left: 60px;*/
		display: block;
	}
	.drawer-nav .contact_zone p {
		font-size: 12px;
		color: #fff;
	}
	.drawer-nav .contact_zone p span {
		font-size: 22px;
		font-weight: 600;
		color: #fff;
	}
	.drawer-nav .contact_zone .tel_zone {
		padding-left: initial;
	}
}

.relative {
	position: relative;
}
.absolute {
	position: absolute;
}








/**===============
index top css
================**/
#index .main_img_zone {
	margin-top: 105px;
}
#index .main_img_zone .main_img {
	/*width: 100%;
	height: auto;*/
	height: 922px;
	width: auto;
}
#index .main_title_zone {
	position: absolute;
	top: 270px;
	left: 20%;
	text-align: left;
}
#index .main_img_zone h1.main_comment img {
	height: 230px;
	width: auto;
}
#index .main_img_zone h1.name {
	margin-top: 50px;
}
#index .main_img_zone h1.name img {
	height: 50px;
	width: auto;
}

@media screen and (max-width:1440px) {
	#index .main_img_zone {
		min-width: 100%;
		height: auto;
	}
}
@media screen and (max-width:1180px) {
	#index .main_title_zone {
		position: absolute;
		top: 200px;
		left: 20%;
		text-align: left;
	}
	#index .main_img_zone .main_img {
		/*width: 100%;
		height: auto;*/
		height: 700px;
		width: auto;
	}
	#index .main_img_zone h1.main_comment img {
		height: 180px;
		width: auto;
	}
}


@media screen and (max-width:991px) {
	#index .main_img_zone {
		margin-top: 70px;
	}
}

@media screen and (max-width:991px) {
	#index .main_img_zone .main_img {
		/*width: 100%;
		height: auto;*/
		height: 700px;
		width: auto;
	}
	#index .main_title_zone {
		position: absolute;
		top: 300px;
		left: 2%;
		text-align: left;
		z-index: 2;
	}
	#index .main_img_zone h1.main_comment img {
		width: 330px;
		height: auto;
	}
}
@media screen and (max-width:540px) {
	#index .main_title_zone {
		position: absolute;
		top: 200px;
		left: 2%;
		text-align: left;
		z-index: 2;
	}
}

#index .concept {
	justify-content: space-around;
	height: 100vh;
}
#index .concept .logo_zone h1 {
	margin: auto;
}
#index .concept .text_zone {
	text-align: left;
	margin: auto;
}
#index .concept .text_zone h2 {
	font-size: 58px;
	line-height: 1.5;
}
#index .concept .text_zone p {
	width: 95%;
	margin-left: 0;
}

@media screen and (max-width:1180px) {
	#index .concept .text_zone h2 {
		font-size: 38px;
		line-height: 1.5;
	
}
}
@media screen and (max-width:991px) {
	#index .concept {
		margin-top: 70px;
		margin-bottom: 70px;
		justify-content: space-around;
		height: auto;
	}
	#index .concept .text_zone {
		text-align: left;
		margin: auto;
		margin-top: 0;
	}
	#index .concept .text_zone h2 {
		font-size: 30px;
		line-height: 1.5;
		text-align: center;
		margin-top: 40px;
	}
	#index .concept .text_zone p {
		font-size: 18px;
		width: 100%;
		text-align: justify;
		margin-left: 0;
	}
	#index .concept .text_zone p {
		font-size: 16px;
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
	#index .concept .text_zone .page_link {
		text-align: center;
	}
}

@media screen and (max-width:540px) {
	#index .concept .text_zone h1 {
		padding: 0 25px;
	}
	#index .concept .text_zone p {
		font-size: 16px;
		width: 100%;
		margin-left: 0;
		text-align: left;
	}
}


/**page_link css**/
.page_link img {
	width: 45px;
	height: auto;
	margin-right: 25px;
}
.page_link a.top_add img {
	width: 45px;
	height: auto;
	margin-right: 45px;
}
.page_link {
	height: 53px;
}
.page_link a,
.page_link button {
	border: 1px solid #707070;
	border-radius: 50px;
	/*height: 45px;*/
	padding: 2px;
	padding-right: 35px;
	display: inline-block;
	font-weight: 500;
	position: relative;
  	overflow: hidden;
  	text-decoration: none;
    outline: none;
    transition: ease .2s;
	cursor: pointer;
	background-color: #fff;
}
.page_link a.top_add {
	border: 1px solid #707070;
	border-radius: 50px;
	/*height: 45px;*/
	padding: 2px;
	padding-right: 45px;
	display: inline-block;
	font-weight: 500;
	position: relative;
  	overflow: hidden;
  	text-decoration: none;
    outline: none;
    transition: ease .2s;
	cursor: pointer;
	background-color: #fff;
}
.page_link a:hover,
.page_link button:hover,
.page_link a:active,
.page_link button:active {
	border: 1px solid #707070;
	border-radius: 50px;
	/*height: 45px;*/
	padding: 2px;
	padding-right: 35px;
	font-weight: 500;
	display: inline-block;
	color: #fff;
	cursor: pointer;
}
.page_link a.top_add:hover {
	border: 1px solid #707070;
	border-radius: 50px;
	/*height: 45px;*/
	padding: 2px;
	padding-right: 45px;
	font-weight: 500;
	display: inline-block;
	color: #fff;
	cursor: pointer;
}
.page_link span {
  	position: relative;
  	z-index: 3;
  	color:#333;
	cursor: pointer;
}

.page_link a:hover span,
.page_link button:hover span{
  	color:#fff;
  	transition: 0.3s;
}
.page_link a i,
.page_link button i {
	vertical-align: middle;
}
.bgleft:before {
  	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
}
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
.arrow_gr:before  {
	background-color: #393838;
}
.arrow_or:before {
	background:#EE7800;
}
.arrow_pk:before {
	background-color: #E61F53;
}
.arrow_bu:before {
	background-color: #54C3F1;
}
.arrow_ye:before {
	background-color: #FCC800;
}
.arrow_dg:before {
	background-color: #00B097;
}
.arrow_gn:before {
	background-color: #8FC42F;
}
.arrow_sb:before {
	background-color: #427BBF;
}
.arrow_bk:before {
	background-color: #1A1311;
}
.arrow_yg:before {
	background-color: #8FC42F;
}
.arrow_pu:before {
	background-color: #8476B5;
}





.link_flex {
	display: flex;
}
.link_flex p {
	font-size: 42px;
	color: #393838;
	font-weight: 500;
}
.link_flex .page_link {
	margin: auto;
	margin-left: 30px;
}


@media screen and (max-width:991px) {
	/*.link_flex {
		display: block;
	}*/
	.link_flex p {
		font-size: 24px;
		color: #393838;
		font-weight: 500;
	}
	.link_flex .page_link {
		margin: auto;
		margin-left: 30px;
		/*margin-top: 10px;
		text-align: left;*/
	}
}

@media screen and (max-width:540px) {
	.page_link img {
		width: 30px;
		height: auto;
		margin-right: 15px;
	}
	.page_link a.top_add img {
		width: 30px;
		height: auto;
		margin-right: 15px;
	}
	.page_link {
		height: 40px;
	}
	.page_link a i,
	.page_link button i {
		font-size: 14px;
	} 
	.page_link a,
	.page_link button {
		border: 1px solid #707070;
		border-radius: 50px;
		/*height: 45px;*/
		padding: 3px;
		padding-right: 25px;
		display: inline-block;
		font-weight: 500;
		position: relative;
		  overflow: hidden;
		  text-decoration: none;
		outline: none;
		transition: ease .2s;
		cursor: pointer;
		background-color: #fff;
	}
	.page_link a.top_add {
		border: 1px solid #707070;
		border-radius: 50px;
		/*height: 45px;*/
		padding: 3px;
		padding-right: 25px;
		display: inline-block;
		font-weight: 500;
		position: relative;
		  overflow: hidden;
		  text-decoration: none;
		outline: none;
		transition: ease .2s;
		cursor: pointer;
		background-color: #fff;
	}
	.page_link a:hover,
	.page_link button:hover,
	.page_link a:active,
	.page_link button:active {
		border: 1px solid #707070;
		border-radius: 50px;
		/*height: 45px;*/
		padding: 3px;
		padding-right: 25px;
		font-weight: 500;
		display: inline-block;
		color: #fff;
		cursor: pointer;
	}
	.page_link a.top_add:hover,
	.page_link a.top_add:active {
		border: 1px solid #707070;
		border-radius: 50px;
		/*height: 45px;*/
		padding: 3px;
		padding-right: 25px;
		font-weight: 500;
		display: inline-block;
		color: #fff;
		cursor: pointer;
	}

}





@media screen and (max-width:540px) {
	#header .page_link img {
		width: 30px;
		height: auto;
		margin-right: 25px;
	}
	#header .page_link {
		height: 30px;
	}
	#header .page_link a i {
		vertical-align: middle;
		font-size: 14px;
	}
	#header .tel_zone i {
		letter-spacing: 3px;
	}
}





/**===============
logistics
================**/
#index .back_color {
	/*background-color: #F7F7F7;*/
	padding-top: 180px;
	background-image: url("../img/logistic_bg_img.jpg");
	background-position: top;
	background-size: 100%;
	background-repeat: no-repeat;
}
#index .line_img_zone img {
	position: absolute;
	top: 0;
	right: 0;
	width: 960px;
}
#index .logistics_text {
	text-align: left;
	justify-content: right;
}

#index .logistics {
	position: absolute;
	left: 0;
	z-index: 1;
}
#index .logistics_text .img_zone {
	position: absolute;
	margin-top: 40px;
	left: 0;
	top: 20%;
	padding-left: 0;
}
#index .equipment {
	margin: auto;
}
#index .equipment .img_zone02 {
	padding-right: 0;
	position: absolute;
	right: 0;
}



@media screen and (max-width:991px) {
	#index .back_color {
		background-color: #F7F7F7;
		padding-top: 70px;
		background-image: url("../img/logistic_bg_img.jpg");
		background-position: top;
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#index .line_img_zone img {
		position: absolute;
		top: 0;
		right: 0;
		height: 3px;
		width: 70%;
	}
	#index .logistics_text {
		text-align: left;
		justify-content: center;
	}
	#index .logistics_text .img_zone {
		position: initial;
		margin-top: 40px;
		left: 0;
		top: 20%;
		padding-left: 0;
		padding-right: 0;
	}
	#index .logistics_text .img_zone02 {
		padding-right: 0;
		position: initial;
		right: 0;
		margin-top: 40px;
	}

}





#index .logistics_text .back_color_wh {
	background-color: #fff;
	padding-bottom: 150px;
}
#index .logistics_text .back_color_wh .text_zone {
	width: 55%;
	margin: auto;
	margin-right: 100px;
	margin-top: 150px;
	/*margin-bottom: 40px;*/
}
#index .logistics_text .back_color_wh .text_zone h3 {
	font-size: 28px;
}
#index .logistics_text .back_color_wh .text_zone p {
	text-align: justify;
}
#index .logistics_text .back_color_wh .text_zone .link_flex {
	margin-top: 40px;
}
#index .logistics_text .back_color_wh .text_zone .link_flex02 {
	margin-top: 10px;
}
#index .logistics_text .back_color_wh .link_flex {
	margin: auto;
	/*width: 40%;*/
}
#index .logistics {
	margin-left: 0;
	position: absolute;
	left: 0;
}
@media screen and (max-width:991px) {
	#index .logistics_text .back_color_wh {
		margin-top: 40px;
		background-color: initial;
		padding-bottom: 0px;
	}
	#index .logistics_text .back_color_wh .text_zone {
		width: 100%;
		margin: auto;
		/*margin-top: 40px;
		margin-bottom: 40px;*/
	}
	#index .logistics_text .back_color_wh .text_zone h3 {
		font-size: 24px;
		margin-bottom: 0;
		line-height: 1.5;
	}
}


/**line_title css start**/
.line_title_zone h2 {
	font-size: 92px;
}
.line_title_zone .inner {
	text-align: left;
}
.line_title_zone {
	display: flex;
	/*align-items: center;*/
	padding-left: 0;
}
.line_title_zone::before {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: #000;
}
.line_title_zone::before {
  margin-right: 20px;
  margin-top: 15px;
}
/**line_title end**/


@media screen and (max-width:991px) {
	.line_title_zone::before {
		display: none;
	}
	.line_title_zone .inner {
		text-align: left;
		margin: auto;
	}
	#index .logistics {
		margin:auto;
		position: initial;
		left: 0;
	}
	.line_title_zone h2 {
		font-size: 44px;
	}
}




#index .logistics .img_zone {
	margin: auto;
	margin-top: 40px;
}
#index .equipment {
	margin-top: 100px;
}
#index .equipment p{
	text-align: left;
}
#index .equipment  {
	justify-content: space-between;
}
#index .equipment .text02 .link_flex {
	margin-top: 40px;
}
#index .equipment .text02 .img_zone {
	margin-top: 40px;
}
#index .equipment .img_zone02 {
	margin-top: -13%;
}


@media screen and (max-width:991px) {
	#index .equipment {
		margin-top: 40px;
		justify-content: center;
	}
	#index .equipment .text02 {
		padding: 0;
	}
	#index .equipment .text02 p {
		text-align: justify;
	}
}



/**===============
company
================**/
#index .company {
	margin-top: 200px;
}
#index .company .company_title {
	margin-left: 0;
	padding-left: 0;
}
#index .company .img_zone {
	margin: auto;
	margin-right: 0;
	padding: 0;

}
#index .company .img_zone img {
	height: 510px;
	width: auto;
	overflow: hidden;
}
#index .company .img_zone {
	margin-top: -50px;
	z-index: -1;
}
#index .company .img_zone .text_zone {
	margin-top: 40px;
	text-align: left;
}
#index .company .page_link {
	margin-right: 0;
	text-align: left;
}
@media screen and (max-width:1180px) {
	#index .company .img_zone img {
		height: 410px;
		width: auto;
		overflow: hidden;
	}
}


@media screen and (max-width:991px) {
	#index .company .company_title {
		margin: auto;
	}
	#index .company .company_title .line_title_zone .inner {
		margin-left: 72px;
	}
	#index .company {
		margin-top: 70px;
	}
	#index .company .img_zone img {
		width: 100%;
		height: auto;
		/*height: 200px;
		overflow: hidden;*/
	}
	#index .company .img_zone {
		margin: auto;
		margin-top: 40px;
		z-index: -1;
	}
	#index .company .img_zone .text_zone {
		margin-top: 40px;
		text-align: left;
		text-align: justify;
		width: 100%;
	}
	#index .company .page_link {
		margin: auto;
		margin-top: 40px;
		text-align: left;
	}
}
@media screen and (max-width:540px) {
	#index .company .company_title {
		margin: auto;
		padding-left: 12px;
		justify-content: left;
	}
	#index .company .company_title .line_title_zone .inner {
		margin-left: 42px;
	}
}

/**===============
environment
================**/
#index .environment {
	padding-top: 0;
}
#index .environment .border_top {
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	margin: auto;
	width: 1280px;
	justify-content: space-around;
}
#index .environment .section {
	padding-top: 100px;
	padding-bottom: 100px;
}
#index .environment .title_zone p.zen_maru {
	color: #393838;
	font-size: 18px;
}
#index .environment .title_zone h2.zen_maru {
	font-size: 45px;
}
#index .environment .img_zone {
	margin-top: 40px;
}

@media screen and (max-width:991px) {
	#index .environment .border_top {
		border-top: none;
		border-bottom: none;
		margin: auto;
		width: 1280px;
		justify-content: space-around;
	}
	#index .environment .section {
		padding: 0;
		padding-top: 70px;
		padding-bottom: 70px;
	}
	#index .environment .csr {
		padding-top: 0;
	}
}

@media screen and (max-width:540px) {
	#index .environment .section {
		padding: 12px;
		padding-top: 70px;
		padding-bottom: 70px;
	}
}


/**===============
infomation
================**/
#index .news {
	margin: 0 auto;
	padding-top: 70px;
}
#index .news .title_zone img {
	width: 42px;
	height: auto;
}
#index .news .news_list {
	margin: auto;
	margin-left: 50px;
	text-align: left;
}
#index .news .news_list a {
	transition: 0.5s;
	display: block;
	margin-top: 7px;
	margin-bottom: 7px;
}
#index .news .news_list a:hover p {
	transition: 0.5s;
	color:#427BBF;
}
#index .news .news_list p span {
	padding-right: 40px;
}

#index .news .zone_link {
	margin: auto;
	margin-top: 20px;
	text-align: left;
}

@media screen and (max-width:991px) {
	#index .news .title_zone img {
		height: 45px;
		width: auto;
		margin: auto;
	}
	#index .news .news_list {
		margin: auto;
		margin-top: 70px;
		text-align: left;
	}
	#index .news .news_list a {
		transition: 0.5s;
		/*display: inline-block;*/
		display: block;
		margin-top: 7px;
		margin-bottom: 7px;
	}
	#index .news .news_list p span {
		/*display: block;*/
		padding-right: 40px;
	}
	#index .news .zone_link {
		margin: auto;
		margin-top: 40px;
		/**margin-top: 0;**/
		text-align: left;
	}
}


/**===============
recruit
================**/
#index .recruit {
	background-image: url("../img/recruit_img01.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	justify-content: center;
	margin-bottom: 150px;
}
/*
#index .recruit .title_zone p.maru_jp {
	color: #393838;
	font-size: 18px;
}
*/
#index .recruit .title_zone h2.zen_maru {
	font-size: 42px;
	margin-bottom: 30px;
}
#index .recruit .back_color_wh {
	text-align: left;
	background-color: #fff;
	left: 200px;
	margin: 150px;
}
#index .recruit .back_color_wh .title_zone {
	display: table;
	margin: 130px auto;
}
#index .recruit .img_zone {
	position: absolute;
}
#index .recruit .img_zone img {
	width: 100%;
	height: auto;
}
#index .recruit .zone01 {
	right: 15%;
	top: -150px;
}
#index .recruit .zone02 {
	left: 15%;
	bottom: -150px;
}


@media screen and (max-width:991px) {
	#index .recruit {
		background-image: initial;
		justify-content: center;
		margin-bottom: 0px;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	#index .recruit .res_padding {
		padding: 0;
	}
	#index .recruit .back_color_wh {
		text-align: left;
		background-color: #fff;
		padding: 0 25px;
		margin: auto;
	}
	#index .recruit .back_color_wh .title_zone {
		display: table;
		margin: 40px auto 0 auto;
	}
	#index .recruit .img_zone {
		position: initial;
		padding: 0;
	}
	#index .recruit .title_zone h2.zen_maru {
		font-size: 45px;
		margin-bottom: 30px;
	}


	#page .recruit .title_zone {
		display: table;
		margin: 40px auto 0 auto;
	}


}





/**=========
top btn
==========**/

.top_btn {
	display: block;
	z-index: 1;	
}
.top_btn a {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1;
	font-size: 12px;
	font-weight: 500;
}
.top_btn a img{
	width: 25px;
	height: auto;
}

.top_btn a:hover img {
	animation: topanim 1s ease-out forwards infinite;
}
@keyframes topanim {
    0% {transform: translateY(0);}
    100% {transform: translateY(-15px);}
}

@media screen and (max-width:540px) {
	.top_btn a img{
		width: 20px;
		height: auto;
	}
}


/**=============
footer
=============**/
footer {
	padding-top: 150px;
}
footer .footer {
	margin: auto;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	padding-top: 60px;
	padding-bottom: 60px;
	justify-content: space-around;
}
footer .footer .footer_left {
	text-align: left;
}
footer .footer .footer_left  h2 {
	font-size: 42px;
	margin-bottom: 0;
}
footer .footer .footer_left .contact_zone {
	margin-top: 40px;
}
footer .footer .footer_left .form_zone {
	padding-right: 20px;
	margin-top: 40px;
}
footer .footer .footer_left .page_link a {
	padding-right: 45px;
}
@media screen and (max-width:540px) {
	footer .footer .footer_left .page_link a {
		width: 310px;
		text-align: left;
	}
}

footer .footer .footer_left .tel_zone {
	margin-top: 20px;
	letter-spacing: 3px;
}
footer .footer .footer_left  img {
	margin-right: 35px;
}
footer .footer .footer_right {
	margin-top: 120px;
}
footer .footer .footer_right ul {
	padding-left: 0;
}
footer .footer .footer_right .padding0 {
	padding-bottom: 0;
}
footer .footer .footer_right ul li {
	padding: 18px 0 0 0 ;
}
footer .footer .footer_right ul.main_ul {
	text-align: left;
	column-count: 3;
	margin-bottom: 0;
}
footer .footer .footer_right ul ul a {
	color: #5C5C5C;
}
footer .footer .footer_right ul ul li {
	display: block;
}
footer .footer .footer_right li.sns_zone {
	padding-top: 0;
}
footer .footer .footer_right li.sns_zone ul img {
	width: 30px;
	height: auto;
}
footer .footer .footer_right li.sns_zone ul {
	column-count: 2;
}
footer .footer .footer_right li.sns_zone ul li {
	display: inline-block;
	margin-right: 10px;
}





footer .copyright_zone {
	margin: auto;
	margin-top: 30px;
}
footer #copyright {
	margin-top: 0px;
	text-align: center;
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 14px;
}



@media screen and (max-width:991px) {
	footer {
		padding-top: 70px;
	}
	footer .footer {
		margin: auto;
		border-top: 1px solid #707070;
		border-bottom: 1px solid #707070;
		padding-top: 40px;
		padding-bottom: 40px;
		justify-content: space-around;
	}
	footer .footer .footer_left {
		text-align: center;
		padding: 0;
	}
	footer .footer .footer_left h1 img {
		margin: auto;
		width: 65%;
	}
	footer .footer .footer_left .form_zone {
		padding-right: 0px;
		margin-top: 40px;
	}
	footer .footer .footer_right {
		margin-top: 40px;
	}
	footer .footer .footer_right ul {
		margin-bottom: 0;
	}
	footer .footer .footer_right ul.main_ul {
		text-align: left;
		column-count: 1;
	}
}

@media screen and (max-width:540px) {
	footer .footer .footer_right ul li {
		padding: 10px 0 0 0 ;
	}
	
}








/**=================================
resposive index.html keyvisual
==================================**/
.img-box{
	width: 100%;
	/*height: 46vw;*/
	height: 900px;
	overflow: hidden;
	position: relative;
  }
  .img-box>div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/*height: 46vw;*/
	height: 900px;
	background-position: top left;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
	opacity: 0;
	animation-name: fade;
	animation-duration: 12s;
	animation-iteration-count: infinite;
  }
  @keyframes fade {
	0%{
	  opacity: 0;
	}
	20%{
	  opacity: 1;
	}
	80%{
	  opacity: 0;
	}
	100%{
	  opacity: 0;
	  z-index: 0;
	}
  }
  /* 1枚目のスライド */
  .img-box>div:first-of-type{
	background-image: url(../img/res_main_img01.jpg);
	/*background-position: bottom -100px left;*/
  }
  
  /* 2枚目のスライド */
  .img-box>div:nth-of-type(2){
	background-image: url(../img/res_main_img02.jpg);
	/* 追記 */
	animation-delay: 4s;
  }
  
  /* 3枚目のスライド */
  .img-box>div:last-of-type{
	background-image: url(../img/res_main_img03.jpg);
	/* 追記 */
	animation-delay: 8s;
  }




@media screen and (max-width:540px) {
	.img-box{
		width: 100%;
		/*height: 46vw;*/
		height: 650px;
		overflow: hidden;
		position: relative;
	  }
	  .img-box>div{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		/*height: 46vw;*/
		height: 650px;
		background-position: top left;
		background-size: cover;
		background-repeat: no-repeat;
		z-index: 1;
		opacity: 0;
		animation-name: fade;
		animation-duration: 12s;
		animation-iteration-count: infinite;
	  }
	.img-box>div:first-of-type{
		background-image: url(../img/res_main_img01.png);
		background-position: top left;
	}
	    /* 2枚目のスライド */
	.img-box>div:nth-of-type(2){
		background-image: url(../img/res_main_img02.png);
		/* 追記 */
		animation-delay: 4s;
	}
	
	/* 3枚目のスライド */
	.img-box>div:last-of-type{
		background-image: url(../img/res_main_img03.png);
		/* 追記 */
		animation-delay: 8s;
	}
}