@charset "UTF-8";
/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
	/*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
	font-size: 16px;
	line-height: 1.6;
	color: #524e44;
	background-color:#fff;
	font-family: "Zen Kaku Gothic New", YuGothic,'Yu Gothic', Osaka, sans-serif, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/* セクションごとの余白の設定 */
#about, #service, #benefit, #member, #infomation {
	padding-top: 120px;
	padding-bottom: 100px;

}

/* コンテンツの最大幅を設定 */
.section-inner-00 {
	max-width: 1200px;
	margin: 0 auto;
}


.section-inner {
	max-width: 815px;
	margin: 0 auto;
}

.section-inner-2 {
	max-width: 840px;
	margin: 0 auto;
}

.section-inner-3 {
	max-width: 1000px;
	margin: 0 auto;
} 

.pc-only {
	/* PCは表示 */
	display: block;
}

.sp-only {
	/* SP非表示 */
	display: none;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {

	.section-inner, .section-inner-00, .section-inner-2, .section-inner-3 {
		padding: 0 20px;
		max-width: 550px;
	}
	.pc-only {
		display: none; }

	.sp-only {
		display: block;}
	
	#about, #service, #benefit, #member, #infomation, #flow {
		padding: 80px 0 40px 0;
	}

	
}



/* テキスト */

h2.large {
	font-size: 32px;
	font-weight: 400;
	letter-spacing: 0.1em;
	padding-bottom: 54px;
	
}

h3.large {
	font-size: 32px;
	font-weight: 400;
	letter-spacing: 0.1em;
	padding-bottom: 48px;
}

h4.small {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	
}

p.member-number {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 70px;
	color: #7c9176;
}

p.large {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.18em;
	line-height: 2.0;
	
}

p.medium {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin-bottom: 32px;
}

p.small {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.08em;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
	h2.large {
		font-size: 24px;
		font-weight: 400;
		letter-spacing: 0.1em;
		padding-bottom: 53px;
		
	}
	
	h3.large {
		font-size: 24px;
		font-weight: 400;
		letter-spacing: 0.1em;
		padding-bottom: 30px;
	}
	
	h4.small {
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.06em;
		
	}
	
	
	p.large {
		font-size: 13px;
		font-weight: 400;
		letter-spacing: 0.04em;
		line-height: 2.5;
		
	}
	
	p.medium {
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.06em;
		line-height: 2.0;
		margin-bottom: 32px;
	}
	
	p.small {
		font-size: 13px;
		font-weight: 400;
		letter-spacing: 0.02em;
		line-height: 1.8;
	}
}

/* 見出し */
.title-en {
	text-align: center;
	padding-bottom: 28px;
}

.title-en .title {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.1em;

}
.title {
	display: inline;
	position: relative;
}
.title::before {
	content: "";
	position: absolute;
	background-image: url("../images/tsutsumu_small.svg");
	background-size: contain;
	width: 51px;
	height: 65px;
	left: -23px;
	top: -24px;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
	.title-en {
		text-align: center;
		padding-bottom: 18px;
	}
	
	.title-en .title {
		font-family: "Noto Sans JP", sans-serif;
		font-size: 20px;
		font-weight: 400;
		letter-spacing: 0.1em;
	
	}

}







/* ヘッダー */
#header {
	background-color: rgba(255, 255, 255, 0.6);
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	position: fixed;
	top: 0px;
	z-index: 2;
}


h1.header-logo {
	display: inline;
}

h1.header-logo a {
	text-decoration: none;
}
.gnav-pc-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gnav-pc a {
	text-decoration: none;
	display: inline;
	color: #524e44;
	position: relative;
}

.gnav-pc a::before{
	background: #524e44;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 1s;
}

.gnav-pc a:hover::before{
	transform-origin: left top;
  	transform: scale(1, 1);
}



.gnav-pc {
	display: flex;
}

.gnav-pc li {
	text-decoration: none;
	color: #5f685d;
	list-style: none;
	font-size: 16px;
	letter-spacing: 0.05em;
	padding-left: 45px;
}

.gnav-sp-wrap {
	display: none;
}

.header-logo-img {
	padding: 18px 0 2px 0;
}

.logo-subtext {
	font-family: "Noto Sans JP", sans-serif;
	color: #5f685d;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-align: right;
}

#header .button {
	margin-left: 70px;
}
.button-company {
	color: #fff;
}

#menu-button {
	display: none;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
#header {
	height: 60px;
	display: flex;
	padding: 0;
}
.header-logo-box {
	padding: 0 20px;
}

#header .button {
	margin: 0;
	text-align: center;
}

.logo-subtext {
	font-size: 15px;
}



.gnav-pc-wrap {
	display: none;

}
#menu-button {
	display: block;
	width: 60px;
	height: 60px;
	padding: 22px 18px;
}

.menu-button-inner {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.menu-button-inner span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #5f685d;
	position: absolute;

}
.menu-button-inner span:nth-child(1) {
    top: 0;
}

.menu-button-inner span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.menu-button-inner span:nth-child(3) {
    bottom: 0;
}

.close span:nth-of-type(1){
    width: 100%;
    transform: rotate(45deg);
    top: 7px;
}

.close span:nth-of-type(2){
    opacity: 0;
}

.close span:nth-of-type(3){
	width: 100%;
    transform: rotate(-45deg);
    bottom: 7px;
}

  /* スマホ用メニューの設定 */
.gnav-sp-wrap {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
	margin-top: 60px;
	padding: 90px 0;
    z-index: 900;

}


ul.gnav-sp li{
	text-align: center;
	margin-bottom: 66px;
	list-style: none;
}

ul.gnav-sp li a {
	font-size: 16px;
	text-decoration: none;
	color: #524e44;
	position: relative;
}

}




/* メインビジュアル */
#mainvisual	{
	background-image: url(../images/fv-pc.jpg);
	width: 100vw;
	height: 100vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}


.fv_icon {
	position: absolute;
	left: 12%;
	bottom: 24%;
	z-index: 1;

}
#mainvisual .fv_icon .pc-only {
	width: 80%;
	height: 80%;
}

.left-triangle {
	position: absolute;
	left: 0;
	bottom: -20px;
}

.right-triangle {
	position: absolute;
	right: 0;
	bottom: -20px;
}

/* エントリーボタン */
.entry-button-circle {
	position: absolute;
	bottom: 8%;
	right: 2%;
	position: fixed;
	z-index: 8;
	transition: 0.8s;
	
}
.entry-button-circle:hover {
	transform: translate(-50px)scale(1.3);
	transition: 0.8s;
	

}

.entry-circle {
	display: block;
	width: 180px;
	transition: all 1.0s ease;
	
}

.entry-circle.isSmall {
	width: 150px !important;
	transform: scale(0.7);
}

.entry-circle .pc-only {
	width: 100%;
	height: 100%;

}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
	.entry-button-circle {
		bottom: 8%;
		right: -10%;
		position: fixed;
		z-index: 8;
		
	}

	.entry-button-circle:hover {
		transform: translate(-20px)scale(1.2);
		transition: 0.8s;
	
	}

	.entry-circle {
		display: block;
		width: 160px;
		transition: all 0.8s ease;
		
	}
	
	.entry-circle.isSmall {
		width: 120px !important;
		transform: scale(0.7);
	}
	
}

/* ボタン */

.button-green {
	display: block;
	width: 240px;
	height: 58px;
	background-color: #bfc9bd;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 29px;
	border: 2px solid #bfc9bd;
	text-align: center;
	line-height: 54px;
	margin: 0 auto;
	position: relative;
	transition: 0.5s;
}

.button-green:hover {

	background: #fff;
	color: #7c9176;
	transition: 0.5s;
}

.button-green::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(../images/arrow-white.png);
	background-size: contain;
	width: 9px;
	height: 12px;
	right: 35px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: 0.5s;
}

.button-green:hover::after {
	background-image: url(../images/arrow-green.png);
	transition: 0.5s;
	
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
	.button-green {
		display: block;
		width: 334px;
		height: 58px;
		background-color: #bfc9bd;
		color: #fff;
		text-decoration: none;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0.04em;
		border-radius: 29px;
		text-align: center;
		line-height: 58px;
		margin: 0 auto;
		position: relative;
	}
	
	.button-green::after {
		position: absolute;
		content: "";
		display: block;
		background-image: url(../images/arrow-white.png);
		background-size: contain;
		width: 9px;
		height: 12px;
		right: 35px;
		top: 0;
		bottom: 0;
		margin: auto;
	}

}

.button-white {
	display: block;
	width: 316px;
	height: 58px;
	background-color: #fff;
	color: #bb9e52;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 29px;
	border: 1px solid #bb9e52;
	text-align: center;
	line-height: 54px;
	margin: 0 auto;
	position: relative;
	transition: 0.5s;
}


.button-white:hover {
	background: #bb9e52;
	color: #fff;
	transition: 0.5s;
}

.button-white::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(../images/arrow-yellow.png);
	background-size: contain;
	width: 9px;
	height: 12px;
	right: 35px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: 0.5s;
}

.button-white:hover:after {
	background-image: url(../images/arrow-white.png);
	transition: 0.5s;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){

	.button-white {
		display: block;
		width: 334px;
		height: 58px;
		background-color: #fff;
		color: #bb9e52;
		text-decoration: none;
		font-size: 18px;
		font-weight: 700;
		letter-spacing: 0.04em;
		border-radius: 29px;
		border: 1px solid #bb9e52;
		text-align: center;
		line-height: 54px;
		margin: 0 auto;
		position: relative;
	}
	
	.button-white::after {
		position: absolute;
		content: "";
		display: block;
		background-image: url(../images/arrow-yellow.png);
		background-size: contain;
		width: 9px;
		height: 12px;
		right: 35px;
		top: 0;
		bottom: 0;
		margin: auto;
	
	}

}

.button-entry {
	display: block;
	width: 240px;
	height: 58px;
	background-image: url(../images/entry-back.png);
	background-position: center;
	background-size: auto;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 29px;
	text-align: center;
	line-height: 54px;
	margin: 0 auto;
	transition: 0.8s;
}

.button-entry:hover {
	transform: scale(1.1);
	transition: 0.8s;
}



/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
	.button-entry {
	display: block;
	width: 334px;
	height: 58px;
	background-image: url(../images/entry-back.png);
	background-position: center;
	background-size: 120%;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 29px;
	text-align: center;
	line-height: 54px;
	margin: 0 auto;
	}
}






/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {

#mainvisual {
	background-image: url(../images/fv-sp.jpg);
	width: 100vw;
	height: 100vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.fv_icon {
	position: absolute;
	left: 15px;
	bottom: 88px;
	z-index: 1;
}

.left-triangle {
	position: absolute;
	left: 0;
	bottom: -2px;
}

.entry-circle-box {
	position: absolute;
	bottom: 8%;
	right: 6%;
	position: fixed;
	z-index: 8;
}

}






/* アバウト */

#about {
	background-color: #f5efe1;
}

.copy-img-box {
	display: flex;
	justify-content: center;
}


#about h2.large {
	text-align: center;
}

#about p.large {
	text-align: center;
	margin: 49px 0 23px 0;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
	.copy-img-box .sp-only {
		margin: 0 auto;
	}
}






/* ギャラリー */

.autoplay {
	height: 100%;
}

.slide-img {
	max-width: 100%;
	height: auto;

}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {

	.autoplay {
		height: 100%;
		
	}
	
	
	.slide-img {
		max-width: 100%;
		height: auto;
	}
}


/* サービス */
#service {
	background-color: #fff;
	position: relative;
}

/* サービス背景ここから */
.sbg-dot-l01pc {
	position: absolute;
	bottom: -24px;
	left: 0;
	z-index: 0;
}

.sbg-dot-l02pc {
	position: absolute;
	bottom: 0;
	left: 4%;
	z-index: 0;
}

.sbg-dot-r01pc {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}

.sbg-dot-r02pc {
	position: absolute;
	top: 16%;
	right: 0;
	z-index: 0;
}
/* サービス背景ここまで */



/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
#service {
	background-color: #fff;
	position: relative;
}

/* サービス背景ここから */
.sbg-dot-l01sp {
	position: absolute;
	top: 18%;
	left: 0;
	z-index: 0;
}

.sbg-dot-l02sp {
	position: absolute;
	bottom: 23%;
	left: 0;
	z-index: 0;
}

.sbg-dot-r01sp {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}

.sbg-dot-r02sp {
	position: absolute;
	top: 3%;
	right: 0;
	z-index: 0;
}

.sbg-dot-r03sp {
	position: absolute;
	top: 43%;
	right: 0;
	z-index: 0;
}
.sbg-dot-r04sp {
	position: absolute;
	bottom: 12%;
	right: 0;
	z-index: 0;
}

}


#service h3.large {
	text-align: center;
}

#service p.medium {
	text-align: center;
	
}



#service h4.small {
	padding-left:  6px;
	margin: 20px 0 19px 0;
}

h4.small {
	position: relative;
}

h4.small::before {
	position: absolute;
	content: "";
	background-image: url(../images/square.png);
	background-size: contain;
	width: 9px;
	height: 12px;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

#service .service-text-wrap {
	margin-bottom: 35px;

}

.service-img-wrap {
	display: flex;
	justify-content: space-between;
}

.service-img01 {
	margin-right: 10px;
}

.service-text-wrap {
	display: flex;
	justify-content: space-between;
}

.service-text-wrap .item {
	width: calc((100% - 76px)/3);
}



/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
	
	#service h4.small {
		padding-left:  6px;
		margin: 14px 0 0 0;
	}

	
	#service p.small {
		padding: 14px 0 40px 0;
	}

	
	.service-img01 {
		text-align: center;
		margin-left: 10px;
	}

}




/* 働く環境 */
#benefit {
	background-color: #f5efe1;
}

#benefit h3.large {
	text-align: center;
}

#benefit p.medium {
	text-align: center;
}


.benefit-box {
	text-align: center;
}

.benefit-ul {
	padding: 0;
	list-style: none;
	display: inline-block;
}

.benefit-name {
	text-align: left;
	display: block;
	width: 513px;
	height: 110px;
	background-color: #fff;
	color: #3b3633;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 55px;
	line-height: 110px;
	margin: 0 auto;
	margin-bottom: 28px;
	padding-left: 20px;
	position: relative;
}

a {
	display: block;
}

.benefit-name {
	
	text-decoration: none;
}

.benefit-text {
	display: inline-block;
	padding-left: 193px;

}

.benefit-img01 {
	vertical-align: middle;
	width: 90px;
	height: 80px;
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translate(0,-50%);
}

.benefit-img02 {
	vertical-align: middle;
	width: 60px;
	height: 93px;
	position: absolute;
	top: 50%;
	left: 60px;
	transform: translate(0,-50%);
}


.benefit-img03 {
	vertical-align: middle;
	width: 88px;
	height: 72px;
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translate(0,-50%);
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
	


	.benefit-name {
		text-align: left;
		display: block;
		width: 336px;
		height: 110px;
		background-color: #fff;
		color: #3b3633;
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 0.04em;
		border-radius: 55px;
		line-height: 110px;
		margin: 0 auto;
		margin-bottom: 28px;
		padding-left: 120px;
		position: relative;
	}
	
	a {
		display: block;
	}
	
	.benefit-name {
		text-decoration: none;
	}
	
	.benefit-text {
		display: inline-block;
		padding-left: 10px;
	
	}
	
	.benefit-img01 {
		vertical-align: middle;
		width: 90px;
		height: 80px;
		position: absolute;
		top: 50%;
		left: 25px;
		transform: translate(0,-50%);
	}
	
	.benefit-img02 {
		vertical-align: middle;
		width: 60px;
		height: 93px;
		position: absolute;
		top: 50%;
		left: 33px;
		transform: translate(0,-50%);
	}
	
	
	.benefit-img03 {
		vertical-align: middle;
		width: 88px;
		height: 72px;
		position: absolute;
		top: 50%;
		left: 25px;
		transform: translate(0,-50%);
	}
	

}

/* メンバー紹介 */
#member {
	background-color: #fff;	
	position: relative;
}

/* メンバー紹介背景ここから */
.mbg-dot-l01pc {
	position: absolute;
	top: 0;
	left: 10%;
	z-index: 0;
}

.mbg-dot-l02pc {
	position: absolute;
	top: 6%;
	left: 0;
	z-index: 0;
}

.mbg-dot-r01pc {
	position: absolute;
	bottom: 5%;
	right: 0;
	z-index: 0;
}

.mbg-dot-r02pc {
	position: absolute;
	bottom: 2%;
	right: 11%;
	z-index: 0;
}
/* メンバー紹介背景ここまで */


#member h3.large {
	text-align: center;
}

#member p.medium {
	text-align: center;
}



p.member-name {
	font-size: 20px;
	font-weight: 700;
	color: #524e44;
}

p.member-job {
	display: block;
	width: 280px;
	font-size: 16px;
	font-weight: 700;
	color: #524e44;
	position: relative;
	padding-top: 10px;
}

.member-job::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(../images/arrow-green.png);
	background-size: contain;
	width: 9px;
	height: 12px;
	top: 10px;
	bottom: 0;
	right: 23px;
	margin: auto;
}

.member-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 38px 58px; 
	padding-bottom: 20px;
}

.member-card {
	text-decoration: none;
	position: relative;
	transform: 0.5s;
}

.member-card:hover {
	opacity: 0.7;
	transform: 0.5s;
}

.member-introduction-text {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: -18px;
}

.member-img-text {
	position: absolute;
	width: 80%;
	top: 180px;
	left: 15px;
}

.member-img-text span {
	color: #524e44;
	font-size: 28px;
	line-height: 2.5em;
	height: 53px;
	background-color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	border-bottom: 4px solid #7c9176;
	text-align: left;
	margin: 0 auto;

}



.member-name span {
	font-size: 14px;
	color: #524e44;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {

	.member-wrap {
		width: 100%;
		display: flex;
		padding-bottom: 20px;
		overflow: hidden;
	}
	.member-wrap a {
		z-index: 1;
	}
	.member-wrap a:hover {
		opacity: 0.7;
		display: block;
	}
	

	p.member-name {
		font-size: 18px;
	}
	p.member-name span {
		font-size: 14px;
	}

	p.member-job {
		font-size: 16px;
	}

	.member-introduction-text {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-top: -18px;
		margin-left: 5px;
		margin-right: 5px;
	}
	
	

	.member-card {
		text-decoration: none;
		position: relative;
		z-index: 1;
	}

	
	.member-img-text {
		position: absolute;
		width: 266px;
		top: 192px;
		left: 35px;
	}
	


	.member-img-text span {
		color: #524e44;
		font-size: 25px;
		line-height: 2.1em;
		height: 53px;
		background-color: rgba(255, 255, 255, 0.8);
		text-decoration: none;
		border-bottom: 4px solid #7c9176;
		text-align: left;
		margin: 0 auto;
	}

	p.member-job {
		display: block;
		width: 280px;
		font-size: 16px;
		font-weight: 700;
		color: #524e44;
		position: relative;
		padding-top: 10px;
	}
	
	.member-job::after {
		position: absolute;
		content: "";
		display: block;
		background-image: url(../images/arrow-green.png);
		background-size: contain;
		width: 9px;
		height: 12px;
		top: 10px;
		bottom: 0;
		right: 38px;
		margin: auto;
	}


	/* slickの設定 */
	.member-img {
		position: relative;
		margin: 0 6px;
		width: 98%;
	}
	
	.slick-arrow {
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
	  }
	  .prev-arrow {
		position: absolute;
		left: 2px;
		z-index: 1;
	  }
	  .next-arrow {
		position: absolute;
		right: 0;
		z-index: 1;
	  }
	  
}

/* 募集職種 */
#infomation {
	background-color: #f5efe1;
}

#infomation h3.large {
	text-align: center;
}

#infomation p.medium {
	text-align: center;
}


.job-name-label-box {
	padding-bottom: 25px;
}

.job-name-label {
	display: flex;
	padding-bottom: 23px;
	
}
.job-name:hover {
	opacity: 0.8;
}


.job-name {
	display: block;
	width: 323px;
	height: 57px;
	background-color: #fff;
	color: #524e44;
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	border-left: 10px solid #df8585;
	text-align: left;
	line-height: 57px;
	margin: 0 auto;
	padding-left: 18px;
	position: relative;
}

.job-name::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(../images/arrow-pink.png);
	background-size: contain;
	width: 9px;
	height: 12px;
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto;
    transition: all .3s;
}


.job-name:hover::after {
	right: 5%;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
	
}

#flow {
	background-color: #f5efe1;
	padding-bottom: 120px;
}


#flow h3.large {
	text-align: center;
}

.flow-img-box {
	display: flex;
	justify-content: space-between;
}


.flow01 {
	position: relative;
}


.flow-text01 {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translate(-10%,-50%);
	font-size: 25px;
	font-weight: 700;
	color: #7c9176;
}

.flow02 {
	position: relative;
}


.flow-text02 {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translate(15%,-50%);
	font-size: 25px;
	font-weight: 700;
	color: #7c9176;
	text-align: center;

}

.flow03 {
	position: relative;
}


.flow-text03 {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translate(40%,-50%);
	font-size: 25px;
	font-weight: 700;
	color: #fff;
}

.flow-arrow {
	display: flex;
	align-items: center;
}

.flow-subtext-box {
	text-align: center;
	padding-top: 18px;
}

.flow-subtext {
	display: inline-block;
	color: #7c9176;
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-align: left;

}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {

	.flow-img-box {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	
	.flow01 {
		position: relative;
		margin: 0 auto;
	}
	
	
	.flow-text01 {
		position: absolute;
		top: 50%;
		left: 50px;
		transform: translate(-6%,-50%);
		font-size: 25px;
		font-weight: 700;
		color: #7c9176;
	}
	
	.flow02 {
		position: relative;
		margin: 0 auto;
	}
	
	
	.flow-text02 {
		position: absolute;
		top: 50%;
		left: 50px;
		transform: translate(18%,-50%);
		font-size: 25px;
		font-weight: 700;
		color: #7c9176;
		text-align: center;
	
	}
	
	.flow03 {
		position: relative;
		margin: 0 auto;
	}
	
	
	.flow-text03 {
		position: absolute;
		top: 50%;
		left: 50px;
		transform: translate(40%,-52%);
		font-size: 25px;
		font-weight: 700;
		color: #fff;
	}
	
	.flow-arrow {
		margin: 0 auto;
		padding: 12px 0;
	}
	
	
}

#entry {
	background-image: url(../images/copy-image.jpg);
	width: 100vw;
	height: 500px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	
}
.entry-copy	{
	display: flex;
	padding: 122px 0 42px 0;
	justify-content: center;

}


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {
	.entry-copy .sp-only {
		margin: 0 auto;
	} 
}


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
	#entry {
		background-image: url(../images/copy-sp.jpg);
		width: 100vw;
		height: 500px;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		
	}

	.entry-copy	{
		padding: 90px 0 68px 0;
		text-align: center;
	
	}

	

}



#footer {
	background-color: #f5efe1;
	height: auto;
}

.footer-inner {
	display: flex;
}

.footer-inner-top {
	display: block;
	align-items: center;
	padding: 56px 0px 24px 87px;
}

.button-link-box	{
	display: flex;
	padding:10px 0 0 30px;
	gap: 33px;
	
}

.sns-link {
	display: flex;
	list-style: none;
	gap: 24px;
}
.sns-link a:hover {
	opacity: 0.7;
}

.button-company {
	display: inline-block;
	width: 213px;
	height: 53px;
	background-color: #98a096;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.18em;
	border-radius: 6px;
	border: 1px solid #98a096;
	text-align: center;
	line-height: 53px;
	margin: 0 auto;
	position: relative;
	transition: 0.5s;
}

.button-company:hover {
	background: #fff;
	color: #98a096;
	transition: 0.5s;
}

.button-company::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(../images/arrow-white.png);
	background-size: contain;
	width: 7px;
	height: 10px;
	right: 6px;
	top: 2px;
	bottom: 0;
	margin: auto;
	transition: 0.5s;
}

.button-company:hover::after {
	background-image: url(../images/arrow-green.png);
	transition: 0.5s;
}



ul.footer-link {
	display: flex;
	list-style: none;
	gap: 100px;
	padding-left: 72px;
	padding-top: 10px;
	align-items: center;
}


.footer-link a {
	text-decoration: none;
	color: #524e44;
	
}

.copyright	{
	display: block;
	text-align: center;
	padding-bottom: 35px;
}


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
	.footer-inner {
		max-width: 550px;
		display: block;
	}

	.footer-inner-top{
		display: block;
		padding: 0;
		
	}

	.footer-logo {
		padding: 50px 0 30px 0;
	}
	
	.footer-logo .sp-only {
		margin: 0 auto;
	}

	.button-company {
		width: 335px;
		position: relative;
	}
	
	.button-company::after {
		position: absolute;
		content: "";
		display: block;
		background-image: url(../images/arrow-white.png);
		background-size: contain;
		width: 7px;
		height: 10px;
		right: 60px;
		top: 4px;
		bottom: 0;
		margin: auto;
	}
	#footer .button {
		padding-bottom: 30px;


	}

	ul.footer-link {
		display: block;
		list-style: none;
		padding: 0;
		text-align: center;
	}
	
	.button-link-box {
		display: block;
		padding: 0;
		text-align: center;
	}
	
	.sns-link {
		display: flex;
		list-style: none;
		justify-content: center;
		padding-bottom: 20px;
		

	}

	.footer-link a {
		text-decoration: none;
		color: #524e44;
		font-size: 12px;
		font-weight: 400;
		margin-bottom: 20px;
		
	}
	
	.copyright	{
		display: block;
		font-size: 12px;
		text-align: center;
		padding-bottom: 20px;
	}

}


