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

/******************************
cssリセット
*******************************/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align:baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article, header, footer, aside, figure, figcaption, nav, section { 
  display:block;
}
figure {
	margin: 0;
}



body {
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	color: #000;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
	max-width: 100%;
	margin: auto;
	height: auto;
	display: block;
}




/*----------------------------
共通：色コード
-----------------------------*/
.mainColor {
	background-color: #64BB00;
}

.mainColor--text {
	color: #64BB00;
}

.contentsBack {
	background-color: #FBF9F3;
}

/*----------------------------
共通：各種設定
-----------------------------*/
/* スマホサイトでは非表示 */
.sp-none {
	display: none;
}





/*---------------------------------------------
汎用class
---------------------------------------------*/
.flexBetween {
	display: flex;
	justify-content: space-between;
}

.flexCenter {
	display: flex;
	justify-content: center;
}

.flexWrap{
	flex-wrap: wrap;
}

.taCenter{
	text-align: center;
}

.taRight{
	text-align: right;
}

.taLeft{
	text-align: left;
}

.mb5,
.allmb5 li {
	margin-bottom: 5px;
}

.mb10,
.allmb10 li {
	margin-bottom: 10px;
}

.mb20,
.allmb20 li {
	margin-bottom: 20px;
}

.mb30,
.allmb30 li {
	margin-bottom: 30px;
}

.mb40,
.allmb40 li {
	margin-bottom: 40px;
}

.mb50,
.allmb50 li {
	margin-bottom: 50px;
}

.mb60,
.allmb60 li {
	margin-bottom: 60px;
}

.mb70,
.allmb70 li {
	margin-bottom: 70px;
}

.mb80,
.allmb80 li {
	margin-bottom: 80px;
}

/* マウスオーバー */
/* 単体用 */
.over_css:hover {
	opacity: 0.7;
	transition: 0.3s;
}
/* 複数用 */
.over_css_ml a:hover img,
.over_css_ml a:hover {
	opacity: 0.7;
	transition: 0.3s;
}


.contents {
	width: 100%;
	font-size: 14px;
	padding: 0;
	margin-bottom: 40px;
}

.contents-group {

}

.contents-inner {
	width: 90%;
	margin: 0 auto;
}


.contents-space {
	margin-bottom: 80px;
}


/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}




/*******************************************
モバイルファースト対応（スマホ基準）
*******************************************/

/* ヘッダー */
.header {
	/* margin-bottom: 10px; */
	/* position: fixed; */
	/* height: 100px; */
	z-index: 1;
	background: #fff;
	top: 0;
	/* float: left; */
	width: auto;
	display: block;
}

.header-inner {
	position: relative;
	width: 100%;
	height: 100px;
	font-weight: 100;
	text-align: left;
	padding: 0 15px;
	margin-bottom: 20px;
}

.header-inner h1 {
	font-size: 10px;
	font-weight: normal;
	margin-top: 2px;
	margin-bottom: 10px;
}

.header-logo {
	width: 80%;
	margin: 0 auto;
}

.header-button {
	display: flex;
	padding: 0;
	margin: 0;
	width: 100%;
	justify-content: space-between;
	margin: 15px auto;
}
.hp-top {
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
	width: 100%;
	display: block;
	padding: 10px 0;
	border-radius: 50px;
	position: relative;		
	background-color: #E6E7E8;
	color: #000;
}

.hp-top:after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 10px;
	transform: rotate(45deg);
	position: absolute;
	right: 20px;
	top: 12px;	
	border-top: 2px solid #000;
	border-right: 2px solid #000;	
}

.entry-button {
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
	width: 100%;
	display: block;
	padding: 10px 0;
	border-radius: 50px;
	position: relative;	
}

.entry-button:after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 10px;
	transform: rotate(45deg);
	position: absolute;
	right: 20px;
	top: 12px;	
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.header-button li {
	/* width: 48.5%; */
	width: calc((100% - 10px)/2);
}



/*---------------------------------------
メイン画像
----------------------------------------*/

.mainImage {
	background-image: url("../../images/mainimage.jpg");
	background-repeat: no-repeat;
	background-position-x: center;
	background-size: cover;
	overflow: hidden;
	height: 300px;
	position: relative;
	clear: both;
	/* margin-top: 102px; */
	margin-bottom: 20px;
}

.mainCatch img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 70%;
}

/* -------------------------
 メイン画像下　メニュー
---------------------------  */
#global-nav ul {
  display: block;
  margin-right: 0px;
}

#global-nav ul li {
  border-right: none;
}

#head_wrap {
  top: 0;
  position: fixed;
  margin-top: 0;
  width: 100%;
  padding: 0;
  /* Fixed reset */
  z-index: 99999;
}
#head_wrap .inner {
  width: 100%;
  padding: 0;
}
#head_wrap .fixed {
  padding-top: 0;
  background: transparent;
}
#mobile-head {
  background: transparent;
  width: 100%;
  height: 0;
  z-index: 999;
  position: relative;
}
#head_wrap.fixed .logo,
#head_wrap .logo {
  position: absolute;
  left: 13px;
  top: 13px;
  color: #333;
  font-size: 26px;
}
#global-nav {
  position: absolute;
  /* 開いてないときは画面外に配置 */
  top: -1300px;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  text-align: center;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#global-nav ul {
  list-style: none;
  position: static;
  right: 0;
  bottom: 0;
  font-size: 14px;
  margin-top: 20px;
}
#global-nav ul li {
  float: none;
  position: static;
  line-height: 2;
	  width: 80%;
	margin:0 auto
}
#head_wrap #global-nav ul li a,
#head_wrap.fixed #global-nav ul li a {
  display: block;
  padding: 15px 40px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  margin: 0 auto;
  text-align: left;
}

.sp-menu li:not(:last-child) {
  border-bottom: 1px solid #b7b7b7;
}



#nav-toggle {
	display: block;
	position: absolute;
	right: 12px;
	top: 14px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 9999999;
}
/* #nav-toggle 切り替えアニメーション */
#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #666;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}
.open #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
/* #global-nav スライドアニメーション */
.open #global-nav {
  /* #global-nav top + #mobile-head height */
  -moz-transform: translateY(556px);
  -webkit-transform: translateY(556px);
  transform: translateY(556px);
  top: -556px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.sp-menu__number {
	margin-right: 15px;
}



/*---------------------------
コンテンツ部分
---------------------------*/
.main-contents {

}

.contents-back {
	background-color: #FBF9F3;
	padding-bottom: 4%;
	margin-bottom: 40px;
}
.contents-pic img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	z-index: 1;
}

.contents-text {
	padding: 6%;
}

.contents-number {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 3px;
}

.contents-title {
	/* font-size: 24px; */
	border-bottom: 1px solid #000;
	padding:8px 0 12px 0;
	margin-bottom: 20px;
	letter-spacing: 3px;
	font-size: 4vw;
}

.textLarge {
	font-size: 13px;
	line-height: 2.2;
	letter-spacing: 1px;
}

.contents-company {

}

.contents-company div:not(:last-child) {
	margin-bottom: 40px;
}

.contents-companyList {
	background-color: #fff;
}




.contents-companyTtl {
	font-size: 13px;
	padding: 15px 10px;
	line-height: 1.5;
}

.contents-companyTtl br {
	display: block;
}

.company-act h4 {
	background-color: #000;
	color: #fff;
	/* line-height: 1.5; */
}

.company-c21 h4 {
	background-color: #BEAF87;
	color: #000;
	/* line-height: 1.5; */
}

.contents-companyLogo {
	width: 60%;
	margin: 20px auto 0 auto;
}

.contents-companyText {
	padding: 20px;
}


.company-history__group {
    /* display: flex; */
    /* justify-content: space-between; */
    /* margin-bottom: 40px; */
}
 
.company-history {
  width: 90%;
  /* padding: 10px; */
  margin-right: 5px;
  /* background: #ffc0cb; */
  /* display: flex; */
  /* align-items: center; */
  margin: 0 auto;
  padding-bottom: 60px;
}

.company-history h4 {
	font-size: 20px;
	color: #A19276;
	margin-bottom: 20px;	
}


.company-history__list {

}
.company-history__list li {
	border-bottom: 1px solid #A19276;
	padding: 3%;
	line-height: 2;
}

.company-history img {
    width: 75%;
}

.contents-staff__voice {
	background-color: #fff;
	padding: 4%;
}

.contents-staff__voice:not(:last-child) {
	margin-bottom: 40px;
}

.contents-staff__pic img {
	width: 80%;
	height: 230px;
	object-fit: cover;
}

.contents-staff__commentGroup {
	padding: 6% 0;
}

.staff-company {
	color: #fff;
	padding: 0 3%;
	border-radius: 3px;
	margin-right: 4%;
}

.contents-staff__ttl {
	font-size: 20px;
	border-bottom: 1px solid #000;
	padding-bottom: 8px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.contents-staff__comment h4 {
	/* position: relative; */
	/* padding-left: 6%; */
}

.contents-staff__comment h4:before,
.contents-seek__ttl:before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	background-image: url(../../images/contents_icon.svg);
	background-size: contain;
	vertical-align: middle;
	margin-right: 4%;
}

.contents-staff__comment {
	margin-bottom: 20px;
}

.contents-seek__group {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contents-seek {
	width: 90%;
	/* padding-bottom: 40px; */
	/* min-height: 200px; */
	/* display: block; */
	margin: 0 auto;
	padding-bottom: 20px;
}


.contents-seek__group div:not(:last-child) {
	margin-bottom: 20px;
}

.contents-seek__ttl {
	font-size: 18px;
}

.contents-seek__ttl small {
	font-weight: normal;
	color: #000;
}

.seek-will {
	background-image: url(../../images/contents7-img1.svg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 20% auto;
}

.seek-trust {
	background-image: url(../../images/contents7-img2.svg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 25% auto;
}

/* 活躍する社員の6つの特徴 */


.contents-feature {
	background-color: #F0F5EB;
	padding-bottom: 50px;
}

.contents-feature__ttl {
  position: relative;
  display: inline-block;
  margin: 0 0 1.5em 0;
  padding: 15px 0;
  width: 100%;
  color: #000;
  font-size: 110%;
  background: #fff;
  text-align: center;
  letter-spacing: 1px;
}

.contents-feature__ttl:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}


.feature-ttl__number {
	font-size: 150%;
}


.feature-tes {
  display: flex;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}	
.feature-tes div {
	width: 80%;
	background: #64BB00;
	margin: 0 auto;
}

.feature-tes div:not(:last-child) {
	margin-bottom: 40px;
}


.contents-feature__pic {
  background-color: #fff;
}
.contents-feature__Listttl {
  font-size: 25px;
  border-bottom: 1px solid #fff;
  padding: 6% 4%;
  color: #fff;
  letter-spacing: 3px;
}

.contents-feature__comment {
  color: #fff;
  padding: 8%;
}


/*----------------------------------------------------------------------------
募集要項
----------------------------------------------------------------------------*/
.recruit-contents__ttl {
	text-align: center;
	font-size: 25px;
	margin-bottom: 30px;
}
.recruit-contents {
	width: 90%;
	margin: 0 auto;
}
/* タブメニュー */
.fs-tab__tabMenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: end;
}

.fs-tab__tabItem {
  box-sizing: border-box;
  height: 60px;
  line-height: 1.5;
  text-align: center;
  font-size: 15px;
  color: #000;
  background-color: #CCC;
  letter-spacing: 1px;
  border-radius: 5px 5px 0 0;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 70%;
  width: calc((100% - 5px)/2);
  margin-bottom: 2px;
  padding: 0 10px;
}

.fs-tab__tabItem:hover {
  cursor: pointer;
}

.fs-activeTab {
  background-color: #BEAF87;
  height: 70px;
  font-size: 80%;
  color: #fff !important;
}

/* タブ切り替えページ */
.fs-tab__tabPage {
  position: relative;
}

.fs-tab__tabPageChild {
  display: none;
}

.fs-activeTabPage {
  display: block;
  padding: 4%;
  background-color: #F5F5F5;
}

/* 募集要項コンテンツ */
.fs-tab__listBanner {
  width: 95%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.fs-tab__listBanner:last-child {
  margin-bottom: 0;
}

.fs-tab__listBanner li {
  max-width: 300px;
}

.fs-tab__listBanner li:last-child {
  margin-right: 0;
}

.fs-tab__listBanner a:hover {
  text-decoration: none;
}

.fs-tab__listBanner a:visited {
  color: #414042;
}

.fs-tab__text {
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  color: #414042;
  background-color: #FFF;
  border-bottom: 1px solid #CCC;
}

.fs-commonTitle {
  margin-bottom: 20px;
  padding-top: 15px;
  line-height: 1;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: #000;
  border-top: 1px solid #414042;
  letter-spacing: 4px;
}
.fs-commonTitle::after {
  content: attr(data-textEn);
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 2px;
}

.recruit-info {
	
}

.recruit-info,
.recruit-info tbody,
.recruit-info tr,
.recruit-info th,
.recruit-info td {
	display: block;
}

.recruit-info th,
.recruit-info td {
	width: 100%;
}

.recruit-ttl {
	background-color: #BEAF87;
	color: #fff;
	padding: 15px 0;
}

.recruit-data {
	background-color: #FFFFFF;
	padding: 6%;
	width: auto !important;
}

.recruit-data__text {
	
}

/* フッター */
footer {
	padding-top: 80px;
}

.footer-entryButton {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  text-decoration: none;
  width: 100%;
  display: block;
  padding: 10px 0;
  border-radius: 50px;
  position: relative;
  line-height: 2.5;
}

.footer-entryButton:after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 10px;
	transform: rotate(45deg);
	position: absolute;
	right: 20px;
	top: 23px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.footer-logo {
	width: 70%;
	margin: 0 auto 20px auto;
}

.footer-logo img {
	
}

.copyright {
	background-color: #414042;
}

.copyright-text {
	font-weight: bold;
	font-size: 11px;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	padding: 10px 0;
}


/*******************************************
タブレット / 構築
*******************************************/
@media screen and (min-width:768px) and (max-width:1100px) {
	/* PCサイトでは非表示 */
	.pc-none {
		display: none !important;
	}
	.tab-up {
		display: block !important;
	}

	.textLarge {
		font-size: 15px;
	}
	/*----------------------------
	ヘッダー
	-----------------------------*/

	.header {
		margin-bottom: 10px;
	}
	.header-button {
		
	}
	/*----------------------------
	メイン画像下メニュー
	------------------------------*/

	.sp-menu li {/* display: flex; */}
	.sp-menu li a {display: flex !important;}
	/*---------------------------
	コンテンツ部分
	---------------------------*/
	.main-contents {

	}

	.contents-back {
		background-color: #FBF9F3;
		padding-bottom: 4%;
		margin-bottom: 40px;
	}
	.contents-pic img {
		width: 100%;
		height: 300px;
		object-fit: cover;
	}

	.contents-text {
		padding: 6%;
	}

	.contents-number {
		font-size: 20px;
		font-weight: bold;
		letter-spacing: 3px;
	}

	.contents-title {
		font-size: 2.5vw;
		border-bottom: 1px solid #000;
		padding:8px 0 12px 0;
		margin-bottom: 20px;
		letter-spacing: 3px;
	}

	.textLarge {
		font-size: 13px;
		line-height: 2.2;
		letter-spacing: 1px;
	}



	.contents-company {
		display: flex;
		margin: auto;
		justify-content: space-between;
	}

	.contents-company div {
		width: calc((100% - 60px)/2);
		background: #fff;
		margin-bottom: 0 !important;
	}

	.company-history__group {
    display: flex;
    justify-content: space-between;
}
 
.company-history {
  width: calc((100% - 60px)/2);
  align-items: center;
}

.company-history h4 {
	font-size: 20px;
	color: #A19276;
	margin-bottom: 20px;	
}


.company-history__list {

}
.company-history__list li {
	border-bottom: 1px solid #A19276;
	padding: 3%;
	line-height: 2;
}

.company-history img {
    width: 100%;
}

.company-growth {
	width: 45%;
}


	.contents-staff__voice {
		background-color: #fff;
		padding: 4%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.contents-staff__voice:not(:last-child) {
		margin-bottom: 40px;
	}

	.contents-staff__pic img {
		width: 100%;
		height: 300px;
		object-fit: cover;
	}

	.contents-staff__commentGroup {
		padding: 0 4%;
		width: 65%;
	}

	.staff-company {
		color: #fff;
		padding: 1.2% 3%;
		border-radius: 3px;
		margin-right: 4%;
	}

	.contents-staff__ttl {
		font-size: 20px;
		border-bottom: 1px solid #000;
		padding-bottom: 8px;
		margin-bottom: 10px;
	}

	.contents-staff__comment h4 {
	}

	.contents-staff__comment h4:before,
	.contents-seek__ttl:before {
		content: "";
		display: inline-block;
		width: 7px;
		height: 7px;
		background-image: url(../../images/contents_icon.svg);
		background-size: contain;
		vertical-align: middle;
		margin-right: 4%;
	}

	.contents-staff__comment {
		margin-bottom: 20px;
	}

.contents-seek__group {
	display: flex;
	justify-content: space-between;
}

.contents-seek {
	width: calc((100% - 30px)/2);
}

	.contents-seek__group div:not(:last-child) {
		margin-bottom: 0 !important;	
	}

	.contents-seek__ttl {
		font-size: 18px;
	}

	.contents-seek__ttl small {
		font-weight: normal;
		color: #000;
	}

	.seek-will {
		background-image: url(../../images/contents7-img1.svg);
		background-repeat: no-repeat;
		background-position: right 40px bottom;
		background-size: 25% auto;
		margin-left: 0;
	}

	.seek-trust {
		background-image: url(../../images/contents7-img2.svg);
		background-repeat: no-repeat;
		background-position: right 20px bottom;
		background-size: 30% auto;
		margin-right: 0;
	}

	/* 活躍する社員の6つの特徴 */

	.feature-tes {
	display: flex;
	width: 90%;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: space-between;
	}	
	.feature-tes div {
	background: #64BB00;
	width: calc((100% - 60px)/2);
	margin-bottom: 40px !important;
	}
	.contents-feature__pic {
	background-color: #fff;
	}
	.contents-feature__Listttl {
	font-size: 20px;
	border-bottom: 1px solid #fff;
	padding: 6% 4%;
	color: #fff;
	letter-spacing: 3px;
	}

	.contents-feature__comment {
	color: #fff;
	}

		/*----------------------------------------------------------------------------
	募集要項
	----------------------------------------------------------------------------*/
	.recruit-contents__ttl {
		text-align: center;
		font-size: 30px;
		margin-bottom: 30px;
	}
	.recruit-contents {
		width: 90%;
		margin: 0 auto;
	}




}	


/*******************************************
PCサイト / 構築
*******************************************/

@media screen and (min-width: 1100px) {
	/* PCサイトでは非表示 */
	.pc-none {
		display: none !important;
	}
	.pc-up {
		display: block !important;
	}

	.textLarge {
		font-size: 15px;
	}
	/*----------------------------
	ヘッダー
	-----------------------------*/

	.header {
		/* margin-bottom: 10px; */
	}


	.header-inner {
		position: relative;
		height: 80px;
		margin: 0 auto;
		text-align: left;
		max-width: 1200px;
		padding: 0;
	}

	.header-inner h1 {
		font-size: 10px;
		font-weight: normal;
		margin-top: 2px;
		margin-bottom: 0;
	}

	.header-logo {
		width: 100%;
	}
	.header-logo img {
		text-align: left;
		margin: unset;

}

	.header-group {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		top: 20px;
	}

	.header-button {
		display: flex;
		padding: 0;
		margin: 0;
		width: 55%;
		justify-content: space-between;
	}


	.entry-button a {
		color: #fff;
	}

	.entry-button a:after {
		border-top: 3px solid #fff !important;
		border-right: 3px solid #fff !important;
	}

	.header-button li a {
		text-align: center;
		font-weight: bold;
		font-size: 13px;
		text-decoration: none;
		/* width: 230px; */
		display: block;
		padding: 10px 0;
		border-radius: 50px;
		position: relative;
	}

	.scroll-button {
		margin-top: 0;
		position: fixed;
		top: 190px;
		right: 0;
		z-index: 1;
	}

	.scroll-entry {
		display: block;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		color: #fff;
		text-decoration: none;
		padding: 12px;
		border-radius: 5px 0 0 5px;
	}

	/*---------------------------------------
	メイン画像
	----------------------------------------*/

	.mainImage {
		background-image: url("../../images/mainimage.jpg");
		background-repeat: no-repeat;
		background-position-x: center;
		background-size: cover;
		overflow: hidden;
		height: 800px;
		/* min-width: 1200px; */
		margin-bottom: 0;
	}
	.mainCatch img {
		width: 50%;
	}

	/*-----------------------------------
	メイン画像下メニュー
	-------------------------------------*/

	#head_wrap {
  /* top: -100px; */
  position: unset;
  width: 100%;
  /* margin: 100px auto 0; */
  line-height: 1;
  /* z-index: 999; */
  /* height: 1200px; */
  text-decoration: none;
}

#head_wrap a {
  text-decoration: none;
}

#head_wrap .inner {
  width: 100%;
  margin: 0 auto;
  position: unset;
}

#head_wrap .inner:after {
  content: "";
  clear: both;
  display: block;
}

#head_wrap .logo {
  float: left;
  font-size: 36px;
}

#global-nav {
  position: unset;
  right: 0;
  top: 0;
  background-color: transparent;
}

#global-nav ul {
  list-style: none;
  font-size: 15px;
  margin-right: 10px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 20px;
  /* justify-content: start; */
  /* height: 280px; */
}

#global-nav ul li {
  /* padding: 20px 10px; */
  font-size: 0.9em;
  padding: 0;
  width: 20%;
  text-align: center;
  height: 45px;
  line-height: 45px;
  margin-bottom: 30px;
  position: relative;
  border-top: none;
  border-bottom: none;
  margin: 0 0 40px 0;
}

#global-nav ul li:last-child {
  border-right: none;
}
#global-nav ul li {
background-image: url(../../images/fs_headernav_arrow.svg);
    background-position: bottom 0px center;
    background-repeat: no-repeat;
    cursor: pointer;	
}

#global-nav ul li a {
  padding: 0 5px !important;
  padding: 2px;
  transition: all .6s ease 0s;
  box-sizing: border-box;
  font-weight: normal;
  border-bottom: none !important;
  width: 100% !important;
  text-align: center !important;
}
#global-nav ul li:after {
	content: "";
	width: 2px;
	background: #E6E7E8;
	height: 45px;
	position: absolute;
	left: 0;
	top: 0;
}

/* Fixed */
#head_wrap.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  height: 100px;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  z-index: 9999;
}

#head_wrap.fixed .logo {
  font-size: 36px;
  color: #333;
}

#head_wrap.fixed #global-nav ul li a {
  color: #333;
  padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  /* position: absolute; */
  /* right: 12px; */
  /* top: 14px; */
  /* width: 34px; */
  /* height: 36px; */
  /* cursor: pointer; */
  /* z-index: 101; */
}

#nav-toggle div {
  position: relative;
}


#menu1, #menu2, #menu3, #menu4, #menu5 {
  margin-top: 500px;
  padding-top: 130px;
}

#menu5 {
  padding-bottom: 100vh;
}


.pc-menu::after {
    content: "";
    width: 2px;
    background: #E6E7E8;
    height: 45px;
    position: absolute;
    left: 0;
    top: 0;
	display:none !important;
 }
 .open#head_wrap {position: relative;max-height: 2800px;}
 .open .inner {position: relative !important;height: 280px;}
 .open #mobile-head {

 }
 .open #global-nav {position: absolute;/* clear: both; */max-height: 280px;overflow: hidden;/* top: -50px; */}

	/*------------------------------------
	コンテンツ
	-----------------------------------*/
	.contents-back {
		padding: 4% 0;
	}
	.contents-back .contents-text {
		padding: 0 3%;
	}
	.contents-title {
		/* font-size: 40px; */
		padding-bottom: 25px;
		line-height: 1.2;
		font-size: 2.2vw;
	}
	.contents-number {
		font-size: 35px;
		padding-bottom: 10px;
	}

	.contents {
		width: 100%;
		font-size: 14px;
		padding: 0 4%;
		margin-bottom: 40px;
	}

	.contents-group {
		display: flex;
		/* padding: 4%; */
		align-items: center;
		margin-bottom: 80px;
	}

	.contents-inner {
		width: 90%;
		margin: 0 auto;
		max-width: 1200px;
	}
	.contents-reverse {
		flex-direction: row-reverse;
	}
	.contents-pic {
		min-width: 46%;
	}
	.contents-pic img {
		width: 100%;
		height: 500px;
	}
	.contents-text {
		padding: 0 6% 0 0;
	}

	.contents-company {
		display: flex;
		margin: auto;
		justify-content: space-between;
	}

	.contents-company div {
		width: calc((100% - 60px)/2);
		background: #fff;
		margin-bottom: 0 !important;
	}

	.company-history__group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.company-history {
  width: calc((100% - 60px)/2);
  display: flex;
  align-items: center;
  margin: 0;
  padding-bottom: 0;
}

.company-history h4 {
	font-size: 1.1vw;
	color: #A19276;
	margin-bottom: 0;
	margin-right: 30px;
}


.company-history__list {width: 68%;}
.company-history__list li {
	border-bottom: 1px solid #A19276;
	padding: 3% 0;
	line-height: 2;
	font-size: 15px;
}

.company-history img {
}


	.contents-staff__voice {
	background-color: #fff;
	padding: 4%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}

	.contents-staff__voice:not(:last-child) {
	margin-bottom: 40px;
	}
	.contents-staff__pic {
		width:400px;
		height:400px;
	}

	.contents-staff__pic img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	}

	.contents-staff__commentGroup {
	width: 85%;
	padding: 0 4%;
	}

	.staff-company {
	color: #fff;
	padding: 1% 3%;
	border-radius: 3px;
	margin-right: 4%;
	}

	.contents-staff__ttl {
	font-size: 25px;
	border-bottom: 1px solid #000;
	padding-bottom: 15px;
	margin-bottom: 10px;
	}

	.contents-staff__comment h4 {
	}

	.contents-staff__comment h4:before,
	.contents-seek__ttl:before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	background-image: url(../../images/contents_icon.svg);
	background-size: contain;
	vertical-align: middle;
	margin-right: 4%;
	}

	.contents-staff__comment {
	margin-bottom: 20px;
	}
	.contents6-pic img {
		text-align: left;
		margin: 0;
	}

	.contents-seek__group {
		display: flex;
		justify-content: space-between;
	}
	.contents-seek__group li {
    margin-bottom: 40px;
	}
	.contents-seek {
	    width: calc((100% - 60px)/2);
	    padding-bottom: 50px;
	    margin-bottom: 0 !important;
	}


	.contents-seek__ttl {
	font-size: 18px;
	}

	.contents-seek__ttl small {
	font-weight: normal;
	color: #000;
	}

	.seek-will {
	background-image: url(../../images/contents7-img1.svg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 40% auto;
	}

	.seek-trust {
	background-image: url(../../images/contents7-img2.svg);
	background-repeat: no-repeat;
	background-position: right bottom 0;
	background-size: 40% auto;
	}

	/* 活躍する社員の6つの特徴 */

	.contents-feature__ttl {
	position: relative;
	display: inline-block;
	margin: 0 0 1.5em 0;
	padding: 15px 0 35px 0;
	width: 100%;
	color: #000;
	font-size: 45px;
	background: #fff;
	text-align: center;
	letter-spacing: 3px;
	}
		.feature-ttl__number {
	font-size: 85px;
	}	
	.feature-tes {
	display: flex;
	width: 90%;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	}	
	.feature-tes div {
	width: calc((100% - 60px)/3);
	background: #64BB00;
	margin-bottom: 40px !important;
	}
	.contents-feature__pic {
	background-color: #fff;
	}
	.contents-feature__Listttl {
	font-size: 25px;
	border-bottom: 1px solid #fff;
	padding: 6% 4%;
	color: #fff;
	letter-spacing: 3px;
	}

	.contents-feature__comment {
	color: #fff;
	padding: 8%;
	}



	/*----------------------------------------------------------------------------
	募集要項
	----------------------------------------------------------------------------*/
	.recruit-contents__ttl {
    font-size: 45px;
    margin-bottom: 45px;
    letter-spacing: 3px;
	}

	.recruit-contents {
	margin: 0 auto;
	width: 90%;
	margin: 0 auto;
	max-width: 1200px;
	}
	.fs-commonTitle{
	margin-bottom: 34px;
	}
	/* タブメニュー */
	.fs-tab__tabMenu {
	display: flex;
	}
	.fs-tab__tabItem {
	width: calc((100% - 5px)/4);
	font-size: 14px;
	}
	.fs-tab__tabItem:hover {
	cursor: pointer;
	}
	.fs-activeTab {
		font-size: 17px;
		color: #fff !important;
	}
	/* タブ切り替えページ */
	.fs-tab__tabPage {
	position: relative;
	}

	.fs-tab__tabPageChild {
	display: none;
	}

	.fs-activeTabPage {
	display: block;
	padding: 30px;
	background-color: #F5F5F5;
	}

	/* 募集要項コンテンツ */
	.recruit-info {
	
	}
	.recruit-info tr {
	display: flex;
	}
	.recruit-info tr:not(:last-child) {
	border-bottom: 2px solid #E6E7E8;
	}
	.recruit-info th {
	width: 50%;
	font-weight: normal;
	border-bottom: none;
	align-items: center;
	display: flex;
	justify-content: center;
	}
	.recruit-info td {
	width: 200% !important;
	text-align: left;
	align-items: center;
	line-height: 1.5em;
	padding: 2% 4%;
	}

	.recruit-ttl {
		background-color: #BEAF87;
		color: #fff;
		padding: 15px 0;
	}

	.recruit-data {
		background-color: #FFFFFF;
		padding: 6%;
		width: auto !important;
	}

	.recruit-data__text {
		
	}
	/* footer */
	.footer-entryButton {
		width: 50%;
		margin: 0 auto;
		font-size: 20px;
	}
	.footer-entryButton:after {
		content: "";
		top: 33px;
	}

}