@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

*, :after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html{
	overflow: auto;
}

html,body{
    width: 100%;
}

body {
  color : #000;
	background: #F7F7EE;
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', Osaka, 'MS PGothic', arial, helvetica;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	position: relative;
}

@media screen and (min-width: 769px) {
	body{
		min-width: 1200px;
		overflow: hidden;
	}
}

.ipad{
	min-width: 1200px;
}

a,
a img{
	text-decoration: none;
	transition: 0.3s ease-out;
}

.clearfix:after {
  content:" ";
  display:block;
  clear:both;
}

/*ヘッダー
--------------------------------------------------*/
.header{
	position: relative;
	padding-top: 115px;
}

.floating__nav{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 115px;
	z-index: 300;
}

.header__logo{
	position: absolute;
	top: 0;
	left: 43px;
	z-index: 310;
	width: 360px;
}

.header__logo a{
	display: block;
	height: 0;
	padding-top:83px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background: url(../img/logo_pc.webp) no-repeat 0 0/100%;
}

.header__nav{
	position: absolute;
	top: 0;
	right: 96px;
}

.nav__index{
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.nav__item{
	margin-left: 61px;
}

.nav__item a{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 115px;
	white-space: nowrap;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #000;
	padding-top: 8px;
	box-sizing: border-box;
}

.nav__item a span{
	display: block;
	padding: 0 0 10px 0;
	border-bottom: 1px solid transparent;
	transition: 0.3s ease-out;
}

@media screen and (min-width: 769px) {
	/*hover*/
	.header__logo a:hover{
		opacity: .6;
	}

	.nav__item a:hover span{
		border-bottom: 1px solid #707070;
	}

	/*固定化*/
	.is-fixed{
		position: fixed;
		z-index: 500;
		background: rgba(255, 255, 255, 0.95);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
		height: 90px;
	}

	.is-fixed .nav__item a{
		height: 90px;
	}
}

@media screen and (max-width: 768px) {
	.header{
		padding-top: 80px;
	}

	.floating__nav{
		height: auto;
		min-width: auto;
		top: 0;
	}

	.header__logo{
		left: 10px;
		width: 247px;
	}

	.header__logo a{
		padding-top: 50px;
		background-image: url(../img/logo_sp.webp);
	}

	.header__nav{
		display: none;
	}
}

/*メインビジュアル
--------------------------------------------------*/
.mainvisual{
	position: relative;
	width: 100%;
	z-index: 200;
	margin-bottom: 160px;
}

.mainvisual:before{
	content: '';
	display: block;
	padding-top:48.4375%;
}

.mv__ph{
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/mv_pc.webp) no-repeat 0 0/100%;
	width: 100%;
	height: 0;
	padding-top:48.4375%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.mainvisual{
		margin-bottom: 60px;
	}

	.mainvisual:before{
		padding-top: 144%;
	}

	.mv__ph{
		background-image: url(../img/mv_sp.webp);
		padding-top: 144%;
	}
}

/*SPナビ
--------------------------------------------------*/
/*ハンバーガー SP*/
@media screen and (max-width: 768px) {
	.hamburger{
		position: fixed;
		top: 0;
		right: 0;
    width: 50px;
    height: 50px;
		z-index: 700;
		background : #009B73;
	}
	
	.hamburger__inner{
		position: absolute;
		top: 21px;
		left: 17px;
		width: 16px;
		height: 12px;
		cursor: pointer;
	}

	.hamburger__line{
		background: #fff;
		display: block;
		height: 1px;
		position: absolute;
		transition: 0.3s ease-out;
		width: 100%;
	}

	.hamburger__line--c{
		top: 6px;
	}

	.hamburger__line--b{
		bottom: 0px;
		background: transparent;
		}

	.hamburger__line--t.nav--active{
		top: 3px;
		transform: rotate(45deg);
	}

	.hamburger__line--c.nav--active{
		transform:scaleX(0);
	}

	.hamburger__line--b.nav--active{
		top:3px;
		transform: rotate(135deg);
		background: #fff;
	}
}

/*ナビ*/
.sp-nav{
	background: rgba(0,0,0,0.8);
	display: none;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 600;
	top: 0;
	left: 0;
}

.sp-nav__container{
	align-items:center;
	display: flex;
	height: 100%;
	justify-content: center;
	position: absolute;
	width: 100%;
}

.sp-nav__index {
	width: 200px;
	margin: 0 auto;
}

.sp-nav__item{
	margin-bottom: 15px;
	padding-bottom: 15px;
	text-align: center;
}

.sp-nav__item:last-child{
	border: none;
}

.sp-nav__item a{
	line-height: 1;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-weight: 500;
}

.sp-nav__btn{
	width: 200px;
	margin: 0 auto;
}

.sp-nav__btn__item{
	width: 100%;
	margin-bottom: 20px;
}

.sp-nav__btn__item a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	background: #009B73;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-align: center;
	color: #fff;
	border: 1px solid #009B73;
}

.sp-nav__btn__item span{
	font-family: 'Jost';
	font-size: 10px;
	letter-spacing: 0.15em;
}

.sp-nav__btn__item:nth-child(2) a{
	color: #000;
	background: #fff;
	border: 1px solid #707070;
}

/*改行
--------------------------------------------------*/
.pc--hidden{
	display: none;
}

.sp--hidden{
	display: block;
}

@media screen and (max-width: 768px) {
	.pc--hidden{
		display: block;
	}
	
	.sp--hidden{
		display: none;
	}
}

/*コンテンツフェードアップ
--------------------------------------------------*/
.content-fadeinup{
	transition: .5s ease-in;
	opacity: 0;
	transform: translateY(50px);
}

/*見出し
--------------------------------------------------*/
.content__heading{
	line-height: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	box-sizing: border-box;
}

.content__heading--en{
	font-family: 'Jost';
	font-weight: 500;
	font-size: 60px;
	letter-spacing: 0.15em;
	line-height: 1;
	color: #333;
	margin-bottom: 15px;
}

.content__heading--ja{
	font-weight: 500;
	font-size: 23px;
	letter-spacing: 0.1em;
	line-height: 1;
	padding-right: 7px;
}

@media screen and (max-width: 768px) {
	.content__heading--en{
		font-size: 26px;
		margin-bottom: 8px;
	}

	.content__heading--ja{
		font-size: 18px;
		padding-right: 0;
	}
}

/*environment
--------------------------------------------------*/
.environment{
	background: #EDEBDA;
	padding-top: 196px;
}

.environment__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
}

.environment__heading{
	position: absolute;
	top: -222px;
	left: 0;
	text-align: center;
}

.environment__block{
	margin-bottom: 157px;
	position: relative;
}

.environment__mhd{
	position: absolute;
	top: 2px;
	left: -45px;
	width: 256px;
	height: 192px;
	background: 
	url(../img/quote_l.svg) no-repeat top 0 left 0,
	url(../img/quote_r.svg) no-repeat bottom 0 right 0;
	padding: 14px 0 0 45px;
	font-family: 'Noto Serif JP';
	font-size: 30px;
	letter-spacing: 0.1em;
	line-height: 1.666;
}

.environment__list{
	width: 713px;
	margin: 0 0 0 auto;
	display: flex;
	justify-content: space-between;
}

.environment__item{
	width: 194px;
	background: url(../img/environment_img_01.svg) no-repeat top 0 left 50%/170px;
	padding-top: 190px;
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.06em;
	line-height: 1.888;
}

.environment__item:nth-child(2){
	background-image: url(../img/environment_img_02.svg);
}

.environment__item:nth-child(3){
	background-image: url(../img/environment_img_03.svg);
}

/*職場の特徴*/
.feature__container{
	margin-bottom: 85px;
}

.feature__block{
	background: url(../img/feature_bg_01.svg) repeat-y top 0 left 50%;
	position: relative;
	margin-bottom: 90px;
}

.feature__block-2{
	background-image: url(../img/feature_bg_02.svg);
}

.feature__block-3{
	margin-bottom: 0;
}

.feature__mhd{
	position: absolute;
	top: -91px;
	left: 0;
	background: url(../img/feature_ttl_pc.svg) no-repeat 0 0/100%;
	height: 0;
	width: 87px;
	padding-top: 254px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.feature__inner{
	width: 980px;
	margin: 0 auto;
	position: relative;
	padding: 50px 0 0 0;
}

.feature__block-3 .feature__inner{
	padding-bottom: 22px;
}

.feature__block-1 .feature__inner::after{
	content: '';
	display: block;
	background: url(../img/feature_img_01.svg) no-repeat 0 0/100%;
	width: 168px;
	height: 175px;
	position: absolute;
	bottom: -26px;
	left: -19px;
}

.feature__block-2 .feature__inner::after{
	content: '';
	display: block;
	background: url(../img/feature_img_02.svg) no-repeat 0 0/100%;
	width: 157px;
	height: 177px;
	position: absolute;
	bottom: -47px;
	right: 0;
}

.feature__block-3 .feature__inner::after{
	content: '';
	display: block;
	background: url(../img/feature_img_03.svg) no-repeat 0 0/100%;
	width: 144px;
	height: 199px;
	position: absolute;
	bottom: -35px;
	left: -25px;
}

.feature__smd{
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.1em;
	line-height: 1;
	border-bottom: 1px solid #707070;
	padding-bottom: 9px;
	width: fit-content;
	margin: 0 auto 31px 119px;
}

.feature__block-2 .feature__smd{
	margin-left: 164px;
}

.feature__block-3 .feature__smd{
	margin-left: 215px;
}

.feature__smd span{
	color: #009B73;
	font-size: 24px;
}

.feature__content__area{
	display: flex;
	justify-content: space-between;
	width: 839px;
	margin-left: auto;
	flex-wrap: wrap;
}

.feature__block-2 .feature__content__area{
	margin-left: 0;
	margin-right: auto;
	flex-direction: row-reverse;
	width: 846px;
}

.feature__txt__box{
	width: 366px;
}

.feature__block-3 .feature__txt__box{
	padding-top: 3px;
}

.feature__ph__box{
	width: 430px;
	line-height: 0;	
	padding-top: 3px;
	padding-bottom: 46px;
}

.feature__ph img{
	width: 100%;
}

.feature__txt{
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.875;
	margin-bottom: 10px;
}

.feature__hd{
	line-height: 30px;
	background: #009B73;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	color: #fff;
	padding: 0 15px 0 18px;
	display: inline-block;
}

/*社員のリアルな声*/
.voice__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
	height: 779px;
}

.voice__mhd{
	position: absolute;
	top: 99px;
	left: -45px;
	width: 256px;
	height: 192px;
	background: 
	url(../img/quote_l.svg) no-repeat top 0 left 0,
	url(../img/quote_r.svg) no-repeat bottom 0 right 0;
	padding: 14px 0 0 45px;
	font-family: 'Noto Serif JP';
	font-size: 30px;
	letter-spacing: 0.1em;
	line-height: 1.666;
}

.voice__balloon{
	line-height: 0;
	position: absolute;
	top: 0;
	left: 231px;
	background: url(../img/voice_balloon_pc.svg) no-repeat 0 0/100%;
	height: 0;
	width: 750px;
	padding-top: 578px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.environment{
		padding-top: 50px;
	}

	.environment__container{
		width: auto;
		padding: 0 20px;
	}

	.environment__heading{
		top: -60px;
	}

	.environment__block{
		margin-bottom: 60px;
	}

	.environment__mhd{
		position: relative;
		top: auto;
		left: auto;
		width: fit-content;
		margin: 0 auto 30px auto;
		height: auto;
		background: 
		url(../img/quote_l.svg) no-repeat top 0 left 0/25px,
		url(../img/quote_r.svg) no-repeat bottom 0 right 0/25px;
		padding: 5px 10px 0 5px;
		font-size: 18px;
		line-height: 1.666;
	}

	.environment__list{
		width: 194px;
		margin: 0 auto;
		display: block;
	}

	.environment__item{
		width: 100%;
		padding-top: 175px;
		font-size: 16px;
		margin-bottom: 20px;
	}

	/*職場の特徴*/
	.feature__container{
		margin-bottom: 50px;
	}

	.feature__block{
		background: #F7F7EE !important;
		margin-left: 20px;
		margin-bottom: 40px;
	}

	.feature__block-2{
		margin: 0 20px 40px 0;
	}

	.feature__block-3{
		margin-bottom: 0;
	}

	.feature__mhd{
		top: -40px;
		left: -10px;
		background-image: url(../img/feature_ttl_sp.svg);
		width: 154px;
		padding-top: 54px;
	}

	.feature__mhd img{
		width: 50px;
	}

	.feature__inner{
		width: auto;
		padding: 30px 20px !important;
	}

	.feature__block-1 .feature__inner::after{
		width: 92px;
		height: 96px;
		bottom: -10px;
		left: -10px;
	}

	.feature__block-2 .feature__inner::after{
		width: 86px;
		height: 97px;
		bottom: -10px;
		right: 10px;
	}

	.feature__block-3 .feature__inner::after{
		width: 79px;
		height: 109px;
		bottom: -10px;
		left: -10px;
	}

	.feature__smd{
		font-size: 16px;
		line-height: 1.7;
		padding-bottom: 5px;
		margin: 0 auto 20px auto !important;
		text-align: center;
	}

	.feature__smd span{
		font-size: 20px;
	}

	.feature__content__area{
		display: block !important;
		width: auto !important;
		margin: 0;
	}

	.feature__txt__box{
		width: 100%;
		margin-bottom: 20px;
	}

	.feature__block-3 .feature__txt__box{
		padding-top: 0;
	}

	.feature__ph__box{
		width: 100%;
		padding-top: 0;
		padding-bottom: 0;
	}

	.feature__txt{
		font-size: 14px;
		margin-bottom: 10px;
	}

	.feature__hd{
		line-height: 28px;
		font-size: 14px;
		padding: 0 10px;
	}

	/*社員のリアルな声*/
	.voice__container{
		width: auto;
		padding: 0 20px 100px 20px;
		height: auto;
	}

	.voice__mhd{
		position: relative;
		top: auto;
		left: auto;
		width: fit-content;
		margin: 0 auto 30px auto;
		height: auto;
		background: 
		url(../img/quote_l.svg) no-repeat top 0 left 0/25px,
		url(../img/quote_r.svg) no-repeat bottom 0 right 0/25px;
		padding: 5px 10px 0 5px;
		font-size: 18px;
		line-height: 1.666;
	}

	.voice__balloon{
		position: relative;
		top: auto;
		left: auto;
		background-image: url(../img/voice_balloon_sp.svg);
		width: 271px;
		padding-top: 795px;
		margin: 0 auto;
	}
}

/*interview
--------------------------------------------------*/
.interview{
	padding: 169px 0 194px 0;
}

.interview__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
}

.interview__container::before{
	content: '';
	display: block;
	background: url(../img/interview_bg_ph.webp) no-repeat 0 0/100%;
	width: 582px;
	height: 282px;
	position: absolute;
	top: -378px;
	left: 50%;
	margin-left: -23px;
}

.interview__heading{
	position: absolute;
	top: -199px;
	left: 0;
}

.slides{
	height: 434px;
	position: relative;
	overflow: hidden;
	margin-bottom: 93px;
}

.interview__slide{
	width: 665px;
}

.interview__slide span{
	display: block;
	width: 582px;
	height: 0;
	padding-top: 434px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	transition: 0.3s ease-out;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: 100%;
}

.interview__slide-1 span{
	background-image: url(../img/interview_slide_01.webp);
}

.interview__slide-2 span{
	background-image: url(../img/interview_slide_02.webp);
}

.interview__slide-3 span{
	background-image: url(../img/interview_slide_03.webp);
}

.interview__slide-4 span{
	background-image: url(../img/interview_slide_04.webp);
}

.slide__arrow{
	position: absolute;
  top: 181px;
	transition: 0.3s ease-out;
	cursor: pointer;
	z-index: 100;
}

.slide__arrow--l{
	left: 120px;
}

.slide__arrow--r{
	left: 1453px;
}

.interview__insta{
	width: 980px;
	margin: 0 auto;
}

.interview__insta a{
	display: block;
	background: url(../img/interview_btn_pc.svg) no-repeat 0 0/100%;
	height: 0;
	padding-top: 89px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.slick-list { /*スライドの右チラ見せ調整*/
	padding: 0 0 0 175px !important;
}

@media screen and (max-width: 1550px) {
	.slide__arrow--r{
		left: 784px;
	}
}

@media screen and (min-width: 769px) {
	.interview__insta a:hover,
	.slide__arrow:hover,
	.interview__slide span:hover{
		opacity: .6;
	}
}

@media screen and (max-width: 768px) {
	.interview{
		padding: 50px 0 70px 0;
	}

	.interview__container{
		width: auto;
		padding: 40px 20px 0 20px;
	}

	.interview__container::before{
		width: 150px;
		height: 75px;
		top: -80px;
		left: auto;
		right: 10px;
		margin-left: 0;
	}

	.interview__heading{
		top: -65px;
		left: 0;
		padding-left: 20px;
	}

	.slides{
		height: 225px;
		margin-bottom: 30px;
	}

	.interview__slide{
		width: 301px;
	}

	.interview__slide span{
		width: 262px;
		padding-top: 196px;
	}

	.slide__arrow{
		top: 85px;
	}

	.slide__arrow img{
		width: 12px;
	}

	.slide__arrow--l{
		left: 50%;
		margin-left: -160px;
	}

	.slide__arrow--r{
		left: 50%;
		margin-left: 145px;
	}

	.interview__insta{
		width: auto;
		padding: 0 20px;
		max-width: 335px;
	}

	.interview__insta a{
		background-image: url(../img/interview_btn_sp.svg);
		width: 100%;
		padding-top: 38.8%;
	}

	.slick-list { /*スライドの右チラ見せ調整*/
		padding: 0 0 0 9% !important;
	}
}

/*modal
--------------------------------------------------*/
.modal{
	margin: 50px auto;
	width: 980px;
	background: #F7F7EE;
	padding: 98px 0 60px 0;
	box-sizing: border-box;
	position: relative;
}

.modal__close__top{
	position: absolute;
	width: 30px;
	height: 30px;
	top: 20px;
	right: 24px;
	transition: 0.3s ease-out;
	cursor: pointer;
	z-index: 300;
}

.modal__close__top img{
	width: 100%;
}

.modal__close__btm{
	width: 170px;
	height: 50px;
	margin: 0 auto;
	transition: 0.3s ease-out;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	background : #F7F7EE url(../img/modal_icon_close.svg) no-repeat top 50% right 23px;
  border: 1px solid #009B73;
	font-family: 'Jost';
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.15em;
	color: #009b73;
}

.modal__header{
	width: 670px;
	margin: 0 auto 48px auto;
	position: relative;
}

.modal__ttl{
	line-height: 0;
	position: absolute;
	top: -11px;
	left: -17px;
	z-index: 100;
}

#modal-4 .modal__ttl{
	left: auto;
	right: -18px;
}

.header__ph__area{
	position: relative;
	margin-bottom: 13px;
}

.modal__ph{
	line-height: 0;
}

.modal__ph img{
	width: 100%;
}

.modal__name{
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 230px;
	height: 66px;
	display: flex;
	align-items: flex-end;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 1;
	background: #F7F7EE;
}

#modal-4 .modal__name{
	left: auto;
	right: 0;
	width: 244px;
	padding-left: 25px;
}

.modal__name strong{
	font-family: 'Jost';
	font-weight: 400;
	font-size: 49px;
	line-height: 1;
	color: #333;
}

.name-1{
	padding-bottom: 8px;
	margin-right: 7px;

}

.name-2{
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 24px;
	text-align: center;
	border: 1px solid #707070;
	padding: 0 20px 0px 23px;
	border-radius: 25px;
	margin-bottom: 3px;
}

.modal__pos{
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2.18;
}

.modal__pos span{
	padding-bottom: 2px;
	border-bottom: 1px solid #707070;
}

.modal__qa{
	width: 841px;
	margin: 0 auto 60px auto;
}

.modal__q{
	background: #fff;
	border-bottom: 1px solid #707070;
	margin-bottom: 17px;
	padding: 19px 20px 17px 106px;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.08em;
	line-height: 1.555;
	position: relative;
}

.modal__q strong{
	display: block;
	width: 64px;
	background: url(../img/modal_icon_slash.svg) no-repeat top 50% right 0;
	font-family: 'Jost';
	font-size: 24px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #009b73;
	position: absolute;
	top: 50%;
	left: 27px;
	margin-top: -11px;
}

.modal__a{
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.875;
	margin-bottom: 32px;
}

@media screen and (min-width: 769px) {
	.modal__close:hover,
	.modal__btm__btn__item a:hover{
		opacity: .6;
	}
}

@media screen and (max-width: 768px) {
	.modal{
		margin: 30px auto;
		width: 90%;
		padding: 50px 20px 40px 20px;
	}

	.modal__close__top{
		width: 20px;
		height: 20px;
		top: 10px;
		right: 10px;
	}

	.modal__close__btm{
		width: 150px;
		height: 50px;
		font-size: 14px;
	}

	.modal__header{
		width: 100%;
		margin: 0 auto 30px auto;
		padding: 0 20px;
	}

	.modal__ttl{
		top: -10px;
		left: 5px;
	}

	#modal-4 .modal__ttl{
		right: 5px;
	}

	.modal__ttl img{
		width: 20px;
	}

	.header__ph__area{
		margin-bottom: 10px;
	}

	.modal__name{
		position: absolute;
		bottom: -4px;
		left: 0;
		width: 200px;
		height: 50px;
		font-size: 16px;
	}

	#modal-4 .modal__name{
		width: 200px;
		padding-left: 10px;
	}

	.modal__name strong{
		font-size: 35px;
	}

	.name-1{
		padding-bottom: 5px;
		margin-right: 5px;

	}

	.name-2{
		font-size: 12px;
		line-height: 20px;
		padding: 0 10px;
		margin-bottom: 3px;
	}

	.modal__pos{
		font-size: 14px;
		letter-spacing: 0;
		line-height: 2;
	}

	.modal__qa{
		width: 100%;
		margin: 0 auto 30px auto;
	}

	.modal__q{
		margin-bottom: 10px;
		padding: 10px 10px 10px 70px;
		font-size: 16px;
		letter-spacing: 0;
	}

	.modal__q strong{
		width: 45px;
		font-size: 15px;
		top: 50%;
		left: 15px;
		margin-top: -6px;
	}

	.modal__a{
		font-size: 14px;
		letter-spacing: 0.05em;
		line-height: 1.875;
		margin-bottom: 20px;
	}
}

/*about jobs
--------------------------------------------------*/
.job{
	background: #fff;
	padding-top: 143px;
}

.job__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
}

.job__heading{
	position: absolute;
	top: -175px;
	left: 0;
	text-align: center;
}

/*tab*/
.tab__list{
	width: 980px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.job__tab__item{
	width: 470px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s ease-out;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.06em;
	line-height: 1;
	color: #333;
	background: url(../img/tab_bg.svg);
}

.job__tab__item.tab--active{
	background-image: url(../img/tab_bg_hov.svg);
	color: #fff;
}

.switched__area{
	border-top: 5px solid #009B73;
	background: #EDEBDA;
	padding: 40px 0 87px 0;
}

.tab__block {
	display: none;
	background: #fff;
	padding: 48px 68px 64px 78px;
	width: 980px;
	margin: 0 auto 37px auto;
}

.tab__block.tab--active {
	display: block;
}

.job__mhd{
	font-family: 'Noto Serif JP';
	font-weight: 500;
	font-size: 28px;
	letter-spacing: 0.06em;
	line-height: 1;
	text-align: center;
	background: url(../img/job_mhd_sales.svg) no-repeat top 0 left 50%;
	padding-top: 31px;
	margin-bottom: 50px;
	padding-right: 15px;
}

.tab__block-2 .job__mhd{
	background-image: url(../img/job_mhd_kitchen.svg);
}

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

.job__staff__block--top{
	margin-bottom: 78px;
}

.job__staff__block--btm{
	flex-direction: row-reverse;
}

.job__txt__box{
	width: 420px;
  padding-top: 32px;
}

.job__ph__box{
	width: 350px;
	line-height: 0;
}

.job__ph img{
	width: 100%;
}

.job__ttl{
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.06em;
	line-height: 1;
	text-align: center;
	margin-bottom: 28px;
}

.job__txt{
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.875;
	margin-bottom: 30px;
}

.job__btn{
	width: 420px;
}

.job__btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 90px;
	background: #009B73 url(../img/job_arrow.svg) no-repeat top 50% right 21px;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.06em;
	line-height: 1.875;
	color: #fff;
}

.job__message{
	width: 980px;
	height: 0;
	padding-top: 110px;
	margin: 0 auto;
	background: url(../img/job_message_pc.svg) no-repeat 0 0/100%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

@media screen and (min-width: 769px) {
	.job__tab__item:hover,
	.job__btn a:hover{
		opacity: .6;
	}
}

@media screen and (max-width: 768px) {
	.job{
		padding-top: 50px;
	}

	.job__container{
		width: auto;
		padding: 20px 20px 0 20px;
	}

	.job__heading{
		top: -65px;
	}

	/*tab*/
	.tab__list{
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

	.job__tab__item{
		width: 49%;
		height: 30px;
		font-size: 12px;
		background-size: 100%;
		background: #fff;
		border-top: #707070 solid 1px;
		border-left: #707070 solid 1px;
		border-right: #707070 solid 1px;
		border-bottom: #fff solid 3px;
		padding-top: 3px;
	}

	.job__tab__item.tab--active{
		background: #009B73;
		border-top: #009B73 solid 1px;
		border-left: #009B73 solid 1px;
		border-right: #009B73 solid 1px;
		border-bottom: #009B73 solid 3px;

	}

	.switched__area{
		border-top: 3px solid #009B73;
		padding: 20px 0 40px 0;
	}

	.tab__block {
		display: none;
		background: #fff;
		padding: 30px 20px;
		width: 100%;
		margin-bottom: 20px;
	}

	.job__mhd{
		font-size: 20px;
		padding-top: 20px;
		margin-bottom: 30px;
		padding-right: 0;
		background-size: auto 30px;
	}

	.job__staff__block{
		display: block;
	}

	.job__staff__block--top{
		margin-bottom: 40px;
	}

	.job__txt__box{
		width: 100%;
		padding-top: 0;
	}

	.job__ph__box{
		width: 100%;
		margin-bottom: 20px;
	}

	.job__ttl{
		font-size: 16px;
		margin-bottom: 15px;
	}

	.job__txt{
		font-size: 14px;
		margin-bottom: 15px;
	}

	.job__btn{
		width: 100%;
	}

	.job__btn a{
		height: 55px;
		background-size: 15px;
		background-position: top 50% right 10px;
		font-size: 14px;
		line-height: 1.4;
	}

	.job__message{
		max-width: 335px;
		width: 100%;
		padding-top: 38.8%;
		background-image: url(../img/job_message_sp.svg);
	}
}

/*job search
--------------------------------------------------*/
.search{
	padding-bottom: 105px;
}

.search__img{
	line-height: 0;
	margin-bottom: 175px;
}

.search__img img{
	width: 100%;
}

.search__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
}

.search__heading{
	position: absolute;
	top: -202px;
	left: 0;
	padding-left: 8px;
}

.search__heading .content__heading--ja{
	margin-left: -8px;
}

.search__place{
	margin-bottom: 85px;
}

.search__mhd{
	font-family: 'Noto Serif JP';
	font-weight: 500;
	font-size: 28px;
	letter-spacing: 0.06em;
	line-height: 1;
	text-align: center;
	background: url(../img/search_mhd_place.svg) no-repeat top 0 left 50%;
	padding-top: 31px;
	margin-bottom: 38px;
}

.search__employment .search__mhd{
	background-image: url(../img/search_mhd_employment.svg);
}

.search__list__block{
	background: #fff;
	border: 1px solid #707070;
	padding: 62px 67px 62px 60px;
}

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

.search__item{
	width: 410px;
}

.search__item a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70px;
	border: 1px solid #009B73;
	background: url(../img/search_arrow.svg) no-repeat top 50% right 22px;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.06em;
	line-height: 1;
	color: #009b73;
}

@media screen and (min-width: 769px) {
	.search__item a:hover{
		opacity: .6;
	}
}

@media screen and (max-width: 768px) {
	.search{
		padding-bottom: 120px;
	}

	.search__img{
		margin-bottom: 40px;
	}

	.search__container{
		width: auto;
		padding: 30px 20px 0 20px;
	}

	.search__heading{
		top: -50px;
		left: 0;
		padding-left: 20px;
	}

	.search__heading .content__heading--ja{
		margin-left: 0;
	}

	.search__place{
		margin-bottom: 40px;
	}

	.box_map button[type="submit"]{
		background: #009B73;
	}

	.search__mhd{
		font-size: 20px;
		padding-top: 20px;
		margin-bottom: 30px;
		padding-right: 0;
		background-size: auto 30px;
	}

	.search__employment .search__mhd{
		background-image: url(../img/search_mhd_employment.svg);
	}

	.search__list__block{
		padding: 30px 0 10px 0;
	}

	.search__list{
		display: block;
		width: 280px;
		margin: 0 auto;
	}

	.search__item{
		width: 100%;
		margin-bottom: 20px;
	}

	.search__item a{
		height: 55px;
		background-size: 15px;
		background-position: top 50% right 10px;
		font-size: 16px;
	}
}

/*ページトップ・SPエントリーボタン
--------------------------------------------------*/
/*右ボタン*/
.floating__side__btn{
	position: absolute;
	top: 265px;
	right: -2px;
	width: 62px;
	z-index: 300;
	line-height: 0;
}

.floating__side__btn__item,
.floating__side__btn__item img{
	width: 100%;
}

.floating__btm__btn{
	display: none;
}

/*sp下ボタン・上に戻る*/
.floating__btm__block{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 300;
}

.pg-top{
	position: fixed;
	display: none;
	bottom: 115px;
	right: 27px;
	z-index: 300;
	width: 11px;
}

.pg-top a{
	display: block;
	background: url(../img/gotop.svg) no-repeat 0 0/100%;
	width: 100%;
	height: 143px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

@media screen and (min-width: 769px) {
	.floating__side__btn__item a:hover,
	.pg-top a:hover{
		opacity: .7;
	}
}

@media screen and (max-width: 768px) {
	.floating__btm__block{
		position: sticky;
		width: 100%;
	}

	.floating__side__btn{
		display: none;
	}

	.floating__btm__btn{
		display: flex;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		flex-direction: row;
		z-index: 300;
		border-bottom: 1px solid #fff;
	}

	.floating__btm__btn__item{
		width: 50%;
	}
	
	.floating__btm__btn__item a{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 50px;
		background: #009B73;
		font-weight: 500;
		font-size: 16px;
		letter-spacing: 0.1em;
		line-height: 1.5;
		text-align: center;
		color: #fff;
		border: 1px solid #009B73;
	}
	
	.floating__btm__btn__item span{
		font-family: 'Jost';
		font-size: 10px;
		letter-spacing: 0.15em;
	}

	.floating__btm__btn__item:nth-child(2) a{
		color: #000;
		background: #fff;
		border-top: 1px solid #707070;
		border-left: 1px solid #707070;
		border-right: 1px solid #707070;
		border-bottom: 1px solid #fff;
	}

	.pg-top{
		position: sticky;
		bottom: 0;
		left: 0;
		right: auto;
		width: 100%;
	}
	
	.pg-top a{
		position: absolute;
		bottom: 80px;
		right: 10px;
		width: 11px;
	}
}

/*フッター
--------------------------------------------------*/
.footer a,
.footer li{
	color: #fff;
}

.footer{
	padding: 22px 33px 20px 55px;
	background: #009B73;
}

.footer__container{
	display: flex;
	flex-direction: column;
}

.footerLink__list{
	display: flex;
	margin-bottom: 17px;
}

.footerLink__item{
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
	position: relative;
}

.footerLink__list .footerLink__item:before{
	content: '　｜　';
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
}

.footerLink__item:first-child:before{
	display: none;
}

.iconLink{
	padding-right: 25px;
}

.iconInsta{
	padding-right: 26px;
}

.iconLink::after,
.iconInsta::after{
	content: '';
	display: block;
	background: url(../img/foot_icon_external.svg) no-repeat 0 0;
	width: 17px;
	height: 18px;
	position: absolute;
	top: 0;
	right: 0;
}

.iconInsta::after{
	background-image: url(../img/foot_icon_insta.svg);
}

.footerLink__item a:hover{
	text-decoration: underline;
}

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

@media screen and (max-width: 768px) {
	.footer{
		padding: 30px 0;
	}

	.footer__container{
		display: flex;
		flex-direction: column;
	}

	.footerLink__list{
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 10px;
	}

	.footerLink__item{
		font-size: 12px;
		line-height: 2;
		white-space: nowrap;
	}

	.footerLink__list .footerLink__item:before{
		font-size: 12px;
		line-height: 2;
	}

	.iconLink::after,
	.iconInsta::after{
		top: 3px;
	}

	.footerCopy__list{
		flex-direction: column;
		align-items: center;
	}
}