@charset "utf-8";

#particles-js {
	width:100%;
	background-color:#fff;
	position: relative;
	height: 680px;
}
#mainimg {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 9;
	height: 710px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#mainimg .inner {
	display: flex;
	justify-content: space-between;
	/*width: 1300px;*/
	width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	margin-top: 80px;
}
#mainimg .inner .copy {
	/*max-width: 508px;*/
	/*width: 39%;*/
    width: 32%;
	margin-top: 120px;
    margin-left: 110px;
	line-height: 0;
}
#mainimg .inner .copy img {
	width: 100%;
}
#mainimg .inner .imgs {
	width: 58%;
	height: 700px;
	position: relative;
	line-height: 0;
}
#mainimg .inner .imgs .img1 {
	position: absolute;
	top: 0;
	/*right: 0;*/
	/*width: 89%;*/
    left: 0;
    width: 56%;
	height: auto;
}
#mainimg .inner .imgs .img2 {
	position: absolute;
	top: 43%;
	/*right: 28%;*/
	/*width: 473px;*/
	/*width: 82%;*/
    left: 0;
    width: 38%;
	z-index: 2;
}
#mainimg .inner .imgs .img3 {
	position: absolute;
	top: 23%;
    right: 12%;
    width: 50%;
	z-index: 3;
}

@media screen and (min-width:541px) and (max-width: 1024px) {
	#particles-js,
	#mainimg {
		height:500px;
	}
	#mainimg .inner {
		width: auto;
		height:500px;
		margin-top: 40px;
	}
	#mainimg .inner .copy {
		margin-top: 100px;
	}
	#mainimg .inner .imgs {
		height: 460px;
	}
}
@media screen and (max-width: 540px) {
	#particles-js {
		height:560px;
	}
	#mainimg {
		height:auto;
	}
	#mainimg .inner {
		max-width: none;
		width: 100%;
		padding: 0;
		margin-top: 10px;
	}
	#mainimg .inner .copy {
		width: 100%;
		height:560px;
		margin-top: 0;
        margin-left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		text-align: center;
		z-index: 4;
		line-height: 0
	}
	#mainimg .inner .copy img {
		width: 84%;
		max-width: 380px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		padding-bottom: 40px;
	}
	#mainimg .inner .imgs {
		width: 100%;
		height:580px;
		margin-left: auto;
		margin-right: auto;
	}
	#mainimg .inner .imgs .img1 {
		width: 280px;
		top: 20px;
		right: 9%;
		left: inherit;
	}
	#mainimg .inner .imgs .img2 {
		width: 160px;
		left: 28px;
		top: 64%;
	}
    #mainimg .inner .imgs .img3 {
        width: 192px;
        top: 54%;
        right: 4%;
    }
}

/* メインビジュアルアニメーション */
.title {
	overflow: hidden;
	transform: translate(-100%, 0);
	transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.title span {
	display: block;
	transform: translate(100%, 0);
	transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
@media screen and (max-width: 540px) {
.title span {
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8029586834733894) 15%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 70%, rgba(255,255,255,0.8029586834733894) 85%, rgba(255,255,255,0) 100%);
}
}
.title.-visible, .title.-visible span {
	transform: translate(0, 0);
}

/* メインビジュアルアニメーション */
.img1{
	animation-name: fadeintop;
	animation-duration: 1.3s;
	animation-fill-mode:forwards;
	opacity: 0;
	animation-delay: 1s;
}
@keyframes fadeintop {
from {
    opacity: 0;
    transform: translateY(-100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.img2{
	animation-name: fadeinbottom;
	animation-duration: 1.3s;
	animation-fill-mode:forwards;
	opacity: 0;
	animation-delay: 1.5s;
}
@keyframes fadeinbottom {
from {
    opacity: 0;
    transform: translateY(200px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.img3{
	animation-name: fadeinright;
	animation-duration: 1.3s;
	animation-fill-mode:forwards;
	opacity: 0;
	animation-delay: 2.0s;
}
@keyframes fadeinright {
from {
    opacity: 0;
    transform: translateX(160px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}


/* 共通 
------------------------------------------------------------------------------ */
/* 共通 h2 */
h2 {
	text-align: center;
	white-space: nowrap;
}
.conttitle_box {
	padding-bottom: 10px;
}
h2.conttitle_en {
	white-space: nowrap;
	padding-bottom: 15px;
	font-family: 'Montserrat', sans-serif;
	font-size: 32px;
	font-weight: 700;
	/*color: #E71E10;*/
}
h2.conttitle_en span {
	font-size: 32px;
	font-weight: 700;
	/*color: #E71E10;*/
}
.red span:first-child {
	padding-left: 21px;
	background-image: url("../common/images/icn_y_red.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 16px auto;
}
.green span:first-child {
	padding-left: 21px;
	background-image: url("../common/images/icn_y_green.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 16px auto;
}
.conttitle_jp {
	text-align: center;
	white-space: nowrap;
	line-height: 0;
	padding-left: 21px;
}
.conttitle_jp span {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.typ {opacity: 0;}
.typ span {opacity: 0;}


.movetext span{opacity: 0;}
.movetext.appeartext span{ animation:text_anime_on 2s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

@media screen and (max-width: 540px) {
	.conttitle_box {
		padding-top: 3px;
		padding-bottom: 10px;
	}
}

/* 画像リンク */
.imgbox {
	position: relative;
	display: block;
}
/* 画像リンク マウスオン エフェクト */
.image {
	overflow: hidden;
	line-height: 0;
}
.image img {
	transition: all .3s ease;
}
.image:hover img {
	transform: scale(1.07);
	opacity: 0.8;
}

/* Coming Soon */
.comingsoon h3,
.comingsoon img{
	opacity: 0.5;
}
.comingsoon:hover img {
	transform: scale(1.00);
	opacity: 0.5;
}
.at_wrap .comingsoon:hover .txtbox h3 {
	background-color: #e71e10;
	transition: 0.3s;
}
.imgbox .comingtxt{
	position: absolute;
	top: 55%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	font-size: 30px;
	font-weight: 500;
}

.work_wrap_bg .comingsoon{
	position: relative;
	margin-top: 70px;
}
.work_wrap_bg .comingsoon a{
	cursor: default;
}
.work_wrap_bg .comingsoon .comingtxt{
	position: absolute;
	top: 49%;
	left: 45%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	font-size: 30px;
	font-weight: 500;
}
.work_wrap_bg .comingsoon:hover a .txtbox {
	background-color: #008043 !important;
	transition: 0.3s;
}
@media screen and (max-width: 540px) {
	.comingsoon {
	 margin-bottom: 10px;
	}
	.imgbox .comingtxt{
		font-size: 18px;
	}
	.work_wrap_bg .comingsoon .comingtxt{
		top: 24%;
		left: 50%;
		font-size: 18px;
	}
	.work_wrap_bg .comingsoon{
		margin-top: 0px;
	}
}

/* ホーバーカラー */
/*
.at_wrap a:hover .txtbox h3,
.work_wrap .column a:hover > .txtbox,
#workstyle_wrap .workstyle_wrap_inner .stylebox:hover > p.style_no{
	background-color: #008043;
	transition: 0.3s;
}
*/
.at_wrap a:hover .txtbox h3 {
	background-color: #008043;
	transition: 0.3s;
}
.work_wrap .column a:hover > .txtbox,
#workstyle_wrap .workstyle_wrap_inner .stylebox:hover > p.style_no{
	background-color: #e71e10;
	transition: 0.3s;
}

/* はじめに
------------------------------------------------------------------------------ */
.at_wrap {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 100px;
	padding-bottom: 130px;
	/*
	background-image: url("../images/at_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	*/
	background: rgb(246,250,251);
	background: linear-gradient(180deg, rgba(246,250,251,1) 0%, rgba(233,241,245,1) 57%, rgba(207,224,232,1) 100%);
}
.at_wrap .conttitle_box {
	padding-bottom: 30px;
}
.at_wrap .inner {
	margin: 0 auto;
	display: flex;
}
.at_wrap .inner:nth-of-type(1) {
	max-width: 1300px;
}

.at_wrap .txtbox {
	position: absolute;
}
.at_wrap .txtbox h3 {
	display: table;
	background-color: #E71E10;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	line-height: 100%;
	padding: 4px 12px;
}
.at_wrap .txtbox p {
	color: #fff;
	line-height: 1.6em;
}
.at_wrap .box1 {
	bottom: 36px;
	left: 40px;
}
.at_wrap .box1 p {
	padding-top: 10px;
}
.at_wrap .box2 {
	top: 12px;
	left: 20px;
}
.at_wrap .box2 p {
	display: flex;
	align-items: center;
	margin-bottom: 4px;
}
.at_wrap .box2 p:before {
  border-top: 1px solid;
  content: "";
  width: 30px;
}
.at_wrap .box2 p:before {
  margin-right: 6px;
}
.at_wrap .lead {
	text-align: center;
	font-size: 20px;
	padding-top: 80px;
	padding-bottom: 30px;
}
.at_wrap .inner:nth-of-type(2) {
	max-width: 1040px;
	justify-content: space-between;
}
.at_wrap .inner:nth-of-type(2) .imgbox {
	width: 48%;
	max-width: 500px;
}

/* MOVボタン */
.imgbox .movbtn {
	position: absolute;
	top: 55%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
}
.imgbox .movbtn img {
	width: 130px;
	height: auto;
	transform: scale(1);
	opacity: 1;
}

@media screen and (max-width: 540px) {
	.at_wrap {
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 40px;
		padding-bottom: 60px;
	}
	.at_wrap .txtbox h3 {
		font-size: 18px;
		padding-bottom: 6px;
	}
	.at_wrap .txtbox p {
		line-height: 1.4em;
	}
	.at_wrap .box1 {
		bottom: 18px;
		left: 20px;
	}
	.at_wrap .box1 p {
		padding-top: 10px;
		padding-right: 20px;
		font-size: 14px;
	}
	.at_wrap .lead {
		font-size: 16px;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.at_wrap .box2 {
		top: 10px;
		left: 10px;
	}
	.at_wrap .inner:nth-of-type(2) {
		margin: 0 auto;
		display: block;
	}
	.at_wrap .inner:nth-of-type(2) .imgbox {
		width: 80%;
		max-width: none;
		margin-left: auto;
		margin-right: auto;
	}
	.at_wrap .inner:nth-of-type(2) .imgbox:nth-of-type(2) {
		margin-top: 10px;
	}
	
	/* MOVボタン */
	.imgbox .movbtn {
		top: 60%;
	}
	.imgbox .movbtn img {
		width: 60px;
		height: auto;
		transform: scale(1);
		opacity: 1;
	}
}

/* FUSOが描く未来 */
.future_wrap {
	position: relative;
	overflow: hidden;
	height: 350px;
	display: block;
}
.future_wrap:after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	background: url(../images/fu_bg_pc.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.future_wrap:hover:after {
	opacity: .8;
	-moz-transform: scale(1.07);
	-webkit-transform: scale(1.07);
	-ms-transform: scale(1.07);
	transform: scale(1.07);
}

.future_wrap h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	z-index: 103;
	
	display: table;
	background-color: #E71E10;
	padding: 4px 12px;
}
.future_wrap:hover h2 {
	background-color: #008043;
}
.future_wrap .txtimg {
	position: absolute;
	top: 43%;
	left: 90%;
	right: 0;
	width: 30px;
	z-index: 101;
	opacity: .7;
}

/*
.future_wrap .txtimg img {
	transform: scale(1);
	opacity: 1;
}
.morebtn {
	width:  100%;
	position: absolute;
	bottom: 0;
	z-index: 102;
}
.morebtn {
	background-color: #E71E10;
	color: #fff;
	text-align: center;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}
.morebtn span {
	background-image: url("../common/images/icn_san_w.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 8px auto;
	padding-right: 20px;
}
.future_wrap:hover > .morebtn {
	background-color: #008043;
}
*/
@media screen and (max-width: 540px) {
/* FUSOが描く未来 */
	.future_wrap {
		height: 300px;
	}
	.future_wrap:after {
	background: url(../images/fu_bg_sp.jpg) no-repeat center center;
	background-size: auto 300px;
	background-position: center
}
	.future_wrap h2 {
		font-size: 20px;
	}
	.future_wrap .txtimg {
		top: 45%;
		width: 18px;
	}
}

/* 仕事を知る
------------------------------------------------------------------------------ */
.work_wrap_bg {
	background-image: url("../images/bgimg.svg");
	background-repeat: no-repeat;
	background-position: top 400px center;
	background-size: 1340px auto;
	
	padding: 0 20px 130px 20px;
}
.work_wrap {
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 120px;
	display: flex;
	justify-content: space-between;
}
.work_wrap .conttitle_box h2 {
	padding-top: 30px;
	padding-right: 250px;
}
.work_wrap .conttitle_box p {
	padding-right: 250px;
}
.work_wrap .column {
	width: 47%;
}
.work_wrap .column a {
	max-width: 550px;
	position: relative;
	display: block;
}
.work_wrap .column:nth-of-type(1) a {
	margin-top: 70px;
}
.work_wrap .column .imgbox_wrap:nth-of-type(2) {
	margin-top: 70px;
}
.work_wrap .column a .txtbox {
	position: absolute;
	left: -40px;
	bottom: 20px;
	
	background-color: #008043;
	display: table;
	padding: 10px 18px;
	z-index: 100;
}
.work_wrap .column a .txtbox h3 {
	line-height: 1.3em;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
}
.work_wrap .column a .txtbox h3 span.no {
	display: block;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	position: relative;
	padding-left: 3px;
}
.work_wrap .column a .txtbox h3 span.no::after {
    content:"";
    display: inline-block;
    height: 1px;
    background-color: #fff;
    position:absolute;
    bottom: 4px;
    left: 0;
    width: 24px;
}
.work_wrap .column a .txtbox h3 span.sub {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3em;
}
.work_wrap .column a .movbtn {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
}
.work_wrap .column a .movbtn img {
	width: 100px;
	height: auto;
	transform: scale(1);
	opacity: 1;
}
@media screen and (min-width:541px) and (max-width: 1024px) {
	.work_wrap_bg {
		padding: 0 20px 130px 60px;
	}
	.work_wrap .column {
		width: 46.5%;
	}
}
@media screen and (max-width: 540px) {
	.work_wrap_bg {
		background-position: top -30px center;
		background-size: auto;
		padding: 0 0px 70px 40px;
	}
	.work_wrap {
		max-width: none;
		margin-top: 0px;
		padding-top: 40px;
		display: block;
	}
	.work_wrap .conttitle_box h2 {
		padding-top: 0px;
		padding-right: 90px;
		position: relative;
	}
	.work_wrap .conttitle_box p {
		padding-right: 90px;
	}
	.work_wrap .column {
		width: auto;
		margin-left: 50px;
	}
	.work_wrap .column a {
		max-width: none;
	}
	.work_wrap .column:nth-of-type(1) a {
		margin-top: 30px;
	}
	.work_wrap .column:nth-of-type(2) a {
		margin-top: 20px;
	}
	.work_wrap .column .imgbox_wrap:nth-of-type(2) {
		margin-top: 20px;
	}
	.work_wrap .column a .txtbox {
		left: -80px;
		padding: 8px 16px;
	}
	.work_wrap .column a .txtbox h3 {
		font-size: 18px;
	}
	.work_wrap .column a .txtbox h3 span.no {
		font-size: 14px;
		padding-left: 3px;
		padding-bottom: 4px;
	}
	.work_wrap .column a .movbtn {
		left: 70%;
	}
	.work_wrap .column a .movbtn img {
		width: 65px;
	}
}

/* PEOPLE - FUSOの人を知る
------------------------------------------------------------------------------ */
#people_wrap {
	padding-bottom: 120px;
}
#people_wrap .people_wrap_inner{
	max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
}
#people_wrap .people_wrap_inner figure {
	/*width: 280px;*/
	width: 100%;
	position: relative;
	overflow: hidden;
}
#people_wrap .people_wrap_inner figcaption {
	position: absolute;
	bottom: 0px;
	right: 100%;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	-webkit-transition: .2s;
	transition: .2s;
	display: flex;
	justify-content: center;
	align-items: center;
	
	font-size: 16px;
	text-align: center;
	color: #FFFFFF;
	line-height: 1.7em;
}

#people_wrap .people_wrap_inner figure:hover figcaption {
	right: 0;
}

#people_wrap .people_wrap_inner .introbox {
    position: relative;
}
#people_wrap .people_wrap_inner .introbox ul{
    position: absolute;
    top: 0;
    left: -10px;
    display: flex;
	z-index: 3;
}
#people_wrap .people_wrap_inner .introbox ul li{
    color: #fff;
    padding: 5px 14px 7px 14px;
    font-size: 15px;
	line-height: 1.4em;
}
#people_wrap .bg1 {
	background-color: #008043;
}
#people_wrap .bg2 {
	background-color: #E71E10;
}
#people_wrap .introbox p.name{
    width: 100%;
	padding-top: 8px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
    line-height: 1.4em;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
    bottom: 0;
    left: 0;
}
#people_wrap .introbox p.name span:nth-of-type(1) {
    border-bottom: #fff 1px solid;
	display: block;
	padding-bottom: 4px;
	margin-bottom: 8px;
	font-size: 13px;
}
#people_wrap .introbox p.name span:nth-of-type(2) {
   font-size: 23px;
   padding-right: 12px;
}

@media screen and (min-width:541px) and (max-width: 1024px) {
	#people_wrap .people_wrap_inner{
		width: 84%;
		margin-left: auto;
		margin-right: auto;
	}
	#people_wrap .people_wrap_inner figure {
		width: 100%;
	}
	#people_wrap .people_wrap_inner figcaption {
		top: 50%;
		right: 0;
		z-index: 2;
		align-items: flex-start;
		font-size: 15px;
	}
	#people_wrap .people_wrap_inner figcaption p {
		font-size: 15px;
		padding-top: 14px;
		line-height: 1.0em;
	}
	#people_wrap .people_wrap_inner .introbox {
		margin: 0 0px 0 15px;
	}
	#people_wrap .people_wrap_inner .introbox ul li{
		font-size: 14px;
		line-height: 1.2em;
	}
	#people_wrap .introbox p.name{
		width: 100%;
		z-index: 3;
		background: rgba(0, 0, 0, .0);
	}
	#people_wrap .introbox p.name span:nth-of-type(1) {
		font-size: 12px;
	}
	#people_wrap .introbox p.name span:nth-of-type(2) {
	   font-size: 18px;
	   padding-right: 8px;
	}
}
@media screen and (max-width: 540px) {
	#people_wrap {
		padding-bottom: 60px;
	}
	#people_wrap .people_wrap_inner{
		max-width: none;
		width: 67%;
		margin-left: auto;
		margin-right: auto;
		padding-top: 30px;
		padding-left: 12px;
	}
	#people_wrap .people_wrap_inner figure {
		width: 100%;
	}
	#people_wrap .people_wrap_inner figcaption {
		top: 49%;
		right: 0;
		z-index: 2;
		align-items: flex-start;
		font-size: 14px
	}
	#people_wrap .people_wrap_inner figcaption p {
		ont-size: 14px;
		padding-top: 10px;
		line-height: 1.1em !important;
	}
	#people_wrap .people_wrap_inner .introbox {
		margin: 0 10px 0 15px;
	}
	#people_wrap .introbox p.name{
		width: 100%;
		z-index: 3;
		background: rgba(0, 0, 0, .0);
	}
	#people_wrap .introbox p.name span:nth-of-type(1) {
		font-size: 11px;
	}
}

/* スライド */
.slider {
    width: 100%;
}
.slick-slide {
    margin: 0px 20px;
}
.slick-slide img {
      width: 100%;
}
.slick-prev:before,
.slick-next:before {
      color: #005050 !important;
}
.slick-current {
      opacity: 1;
}
.prev-arrow,
.next-arrow{
    width: 50px !important;
    height: 50px !important;
    display: block;
    cursor: pointer;
    border-radius: 50%;
    background-color: #E71E10;
}
.prev-arrow:hover,
.next-arrow:hover{
    /*opacity: .5;*/
    width: 50px !important;
    height: 50px !important;
    transition: all ease-in-out .2s;
    background-color: #008043;
}
.next-arrow{
    background-image: url("../common/images/icn_san_w.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px auto;
}
.prev-arrow{
    background-image: url("../common/images/icn_san_w.svg");
     background-repeat: no-repeat;
    background-position: center;
    background-size: 8px auto;
	transform: rotateZ(180deg);
}
.slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
.prev-arrow {
	left: -80px;
	z-index: 10;
}
.next-arrow {
	right: -80px;
}

@media screen and (min-width:541px) and (max-width: 1024px) {
	.prev-arrow,
	.next-arrow{
		width: 30px !important;
		height: 30px !important;
	}
	.prev-arrow:hover,
	.next-arrow:hover{
		/*opacity: .5;*/
		width: 30px !important;
		height: 30px !important;
	}
	.prev-arrow {
		left: -35px;
		z-index: 10;
	}
	.next-arrow {
		right: -40px;
	}
}
@media screen and (max-width: 540px) {
	/* スライド */
	.prev-arrow,
	.next-arrow{
		width: 30px !important;
		height: 30px !important;
	}
	.prev-arrow:hover,
	.next-arrow:hover{
		/*opacity: .5;*/
		width: 30px !important;
		height: 30px !important;
	}
	.next-arrow{
		background-size: 6px auto;
	}
	.prev-arrow{
		background-size: 6px auto;
	}
	.prev-arrow {
		left: -45px;
		z-index: 10;
	}
	.next-arrow {
		right: -45px;
	}
}


/* WORKSTYLE - 働く環境
------------------------------------------------------------------------------ */
#workstyle_wrap {
	padding-bottom: 120px;
	padding-left: 20px;
	padding-right: 20px;
}
#workstyle_wrap .workstyle_wrap_inner {
	max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
	display: flex;
	justify-content: space-between;
}
#workstyle_wrap .workstyle_wrap_inner .stylebox {
    position: relative;
	width: 33.4%;
	display: block;
}
#workstyle_wrap .workstyle_wrap_inner .stylebox:nth-of-type(1) {
	margin-top: 80px;
}
#workstyle_wrap .workstyle_wrap_inner .stylebox:nth-of-type(2) {
	margin-top: 40px;
}
#workstyle_wrap .workstyle_wrap_inner .stylebox p.style_no {
	position: absolute;
    top: -10px;
    left: 20px;
	padding: 5px 7px;
    font-size: 15px;
	font-weight: 700;
	line-height: 1.4em;
	background-color: #008043;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	z-index: 100;
}
#workstyle_wrap .workstyle_wrap_inner .stylebox .ex {
    position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	z-index: 100;
	
	width: 100%;
	text-align: center;
}
@media screen and (max-width: 540px) {
	#workstyle_wrap {
		padding-bottom: 60px;
		padding-left: 0px;
		padding-right: 0px;
	}
	#workstyle_wrap .workstyle_wrap_inner {
		max-width: none;
		padding-top: 10px;
		display: block;
	}
	#workstyle_wrap .workstyle_wrap_inner .stylebox {
		width: 76%;
		margin-top: 20px !important;
	}
	#workstyle_wrap .workstyle_wrap_inner .stylebox:nth-of-type(1) {
		
	}
	#workstyle_wrap .workstyle_wrap_inner .stylebox:nth-of-type(2) {
		margin-left: 24%;
	}
	#workstyle_wrap .workstyle_wrap_inner .stylebox .ex {
		font-size: 18px;
	}
	
}

/* RECRUIT - 採用情報
------------------------------------------------------------------------------ */
#recruit_wrap {
	padding-top: 70px;
	padding-bottom: 120px;
	background-color: #F4F4F4;
}
#recruit_wrap ul {
	max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	padding-left: 20px;
	padding-right: 20px;
}
#recruit_wrap ul li {
	width: 49%;
}
#recruit_wrap ul li a {
	width: 100%;
	display: block;
	color: #212121;
	border: #212121 solid 1px;
	background-color: #fff;
	padding: 44px 45px;
	font-size: 17px;
	font-weight: 600;
	
	background-image: url("../common/images/icn_gm2.svg");
	background-repeat: no-repeat;
	background-position: center right 40px;
	background-size: 12px auto;
}
#recruit_wrap ul li a:hover {
	text-decoration: none;
	color: #fff;
	background-color: #E71E10;
	background-image: url("../common/images/icn_san_w.svg");
}

#recruit_wrap ul .nobtn {
	opacity: 0.4
}
#recruit_wrap ul .nobtn a:hover {
	background-color: #fff !important;
	color: #E71E10;
	background-image: url("../common/images/icn_gm2.svg");
	cursor: default;
}



@media screen and (max-width: 540px) {
	#recruit_wrap {
		padding-top: 50px;
		padding-bottom: 60px;
	}
	#recruit_wrap ul {
		max-width: none;
		display: block;
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 40px;
		padding-left: 0px;
		padding-right: 0px;
	}
	#recruit_wrap ul li {
		width: 100%;
		margin-top: 10px;
	}
	#recruit_wrap ul li a {
	padding: 30px 30px;
	font-size: 17px;
	font-weight: 600;
	background-position: center right 30px;
	background-size: 10px auto;
}
}