@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&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;
	font-family: 'Zen Maru Gothic','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
--------------------------------------------------*/
.header{
	position: relative;
	padding-top: 137px;
}

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

.header__logo{
	position: absolute;
	top: 9px;
	left: 10px;
	z-index: 310;
	width: 266px;
}

.header__logo img{
	width: 100%;
}

.header__nav{
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
}

.nav__index{
	width: fit-content;
	display: flex;
	flex-direction: row;
}

.nav__item{
	margin-left: 72px;
	white-space: nowrap;
	position: relative;
}

.nav__item:first-child{
	margin-left: 0;
}

.nav__item a{
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 15px;
  font-weight : 700;
  font-size : 18px;
  color : #6A443A;
}

.nav__btn{
	width: 180px;
	height: 180px;
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 500;
}

.nav__btn a{
	display: block;
}

@media screen and (max-width: 1360px) {
	.nav__index{
		right: 250px;
	}

	.nav__item{
		margin-left: 40px;
	}

	.ipad .nav__item{
		margin-left: 30px;
	}

	.nav__item a{
		font-size: 15px;
	}

	.ipad .nav__item a{
		font-size: 13px;
	}

	.nav__btn{
	width: 220px;
	}
}

@media screen and (min-width: 769px) {
	/*hover*/
	.nav__btn a:hover,
	.nav__item a:hover,
	.header__logo a:hover{
		opacity: .6;
	}
	
	/*fixed*/
	.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 .header__logo{
		top: 4px;
		width: 200px;
	}

	.is-fixed .nav__item a{
		padding-top: 0;
	}
}

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

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

	.header__logo{
			top: 10px;
			left: 10px;
			width: 120px;
	}

	.header__logo span{
		height: 19px;
	}

	.header__nav,
	.nav__btn{
		display: none;
	}
}

/*mainvisual
--------------------------------------------------*/
.mainvisual{
	position: relative;
	width: 100%;
	z-index: 200;
}

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

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

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

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

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

/*SP navi
--------------------------------------------------*/
/*hamburger SP*/
@media screen and (max-width: 768px) {
	.hamburger{
		position: fixed;
    top: 10px;
		right: 10px;
    width: 45px;
    height: 45px;
		z-index: 700;
		background: #990011;
		border-radius: 50px;
	}
	
	.hamburger__inner{
		position: absolute;
		top: 20px;
		left: 15px;
		width: 16px;
		height: 8px;
		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;
	}
}

/*navi*/
.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{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #fff;
}

.sp-nav__btn{
width: 100%;
}

.sp-nav__btn a{
	width: 100%;
	height: 60px;
	border-radius: 50px;
	background: #990011;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.1em;
	padding-bottom: 5px;
	line-height: 1;
	color: #fff;
}

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

.sp--hidden{
	display: block;
}

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

/*heading
--------------------------------------------------*/
.content__heading{
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content__heading--en{
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/heading_balloon.svg) no-repeat 0 0/100%;
	width: 140px;
	height: 48px;
  font-weight : 700;
  font-size : 16px;
  color : #fff;
	margin-bottom: 12px;
	padding-bottom: 9px;
}

.content__heading--ja{
  font-weight : 700;
  font-size : 40px;
  letter-spacing : 2px;
  color : #990011;
}

.content__mhd{
  font-weight : 700;
  font-size : 26px;
  color : #6A443A;
	width: fit-content;
	margin: 0 auto;
	position: relative;
}

.content__mhd::after{
	content: '';
	display: block;
	background: url(../img/heading_bg_left.svg) no-repeat 0 0/100%;
	width: 21px;
	height: 19px;
	position: absolute;
	top: -6px;
	left: -24px;
}

.content__mhd::before{
	content: '';
	display: block;
	background: url(../img/heading_bg_right.svg) no-repeat 0 0/100%;
	width: 21px;
	height: 19px;
	position: absolute;
	top: -6px;
	right: -24px;
}

@media screen and (max-width: 768px) {
	.content__heading--en{
		width: 100px;
		height: 34px;
		font-size : 12px;
		margin-bottom: 8px;
		padding-bottom: 5px;
	}

	.content__heading--ja{
		font-size : 20px;
		letter-spacing : 0;
	}

	.content__mhd{
		font-size : 18px;
	}

	.content__mhd::after{
		width: 16px;
		height: 16px;
		top: -4px;
		left: -24px;
	}

	.content__mhd::before{
		width: 16px;
		height: 16px;
		top: -4px;
		right: -24px;
	}
}

/*about us
--------------------------------------------------*/
.aboutus{
	background: 
	url(../img/aboutus_character.webp) no-repeat top 456px left calc(50% - 422px)/221px,
	url(../img/aboutus_img.svg) no-repeat top 380px left calc(50% + 476px),
	url(../img/aboutus_bg.svg) no-repeat 50% 0;
	margin-top: -37px;
	padding: 57px 0 96px 0;
}

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

.aboutus__heading{
	background: url(../img/heading_bar_01.svg) no-repeat 0 0/100%;
	width: 630px;
	height: 158px;
	margin: 0 auto 51px auto;
	padding-top: 18px;
}

.aboutus__txt__area{
	width: 426px;
	height: 460px;
	margin: 0 auto 60px auto;
	position: relative;
}

.aboutus__txt-1{
	position: absolute;
	top: -18px;
	right: 5px;
  font-weight : 700;
  font-size : 30px;
	line-height: 1;
  color : #6A443A;
	writing-mode: vertical-rl;
}

.aboutus__txt-2{
	position: absolute;
	top: 0;
	right: 45px;
	font-weight: 700;
	font-size: 22px;
	line-height: 39px;
	color: #6A443A;
	writing-mode: vertical-rl;
}

.aboutus__txt-3{
	position: absolute;
	top: 0;
	right: 149px;
  font-size : 18px;
  line-height : 1.777;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

@media screen and (max-width: 768px) {
	.aboutus{
		margin-top: 0;
		background: #fbf7e6;
		border-radius: 15px;
		padding: 50px 20px 10px 20px;
		margin: 0 20px;
	}

	.aboutus__container{
		width: auto;
		margin-bottom: 40px;
	}

	.aboutus__container::before{
		content: '';
		display: block;
		background: url(../img/aboutus_character.webp) no-repeat 0 0/100%;
		width: 100px;
		height: 125px;
		position: absolute;
		top: -65px;
		left: -30px;
	}

		.aboutus__container::after{
		content: '';
		display: block;
		background: url(../img/aboutus_img.svg) no-repeat 0 0/100%;
		width: 60px;
		height: 88px;
		position: absolute;
		top: -82px;
		right: auto;
		left: 50%;
		margin-left: -20px;
	}

	.aboutus__heading{
		width: 280px;
		height: 115px;
		margin-bottom: 10px;
		padding-top: 21px;
		background-size: auto 100%;
	}

	.aboutus__txt__area{
		width: auto;
		height: auto;
		margin-bottom: 30px;
	}

	.aboutus__txt-1{
		position: relative;
		top: auto;
		right: auto;
		font-size : 20px;
		line-height: 1.4;
		writing-mode: horizontal-tb;
		margin-bottom: 10px;
	}

	.aboutus__txt-2{
		position: relative;
		top: auto;
		right: auto;
		font-size: 18px;
		line-height: 1.4;
		writing-mode: horizontal-tb;
		margin-bottom: 10px;
	}

	.aboutus__txt-3{
		position: relative;
		top: auto;
		right: auto;
		font-size : 16px;
		line-height : 1.777;
		writing-mode: horizontal-tb;
	}
}

/*Environment
--------------------------------------------------*/
.environment__container{
	width: 980px;
	margin: 0 auto;
}

.environment__heading{
	background: url(../img/heading_bar_02.svg) no-repeat top 19px left 0;
	width: 369px;
	height: 106px;
	margin: 0 auto 37px auto;
}

.environment__point{
	display: flex;
	justify-content: space-between;
	margin: 62px 0 70px 0;
}

.environment__point__item{
	border-radius : 20px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	width: 310px;
	height: 440px;
	position: relative;
	padding: 72px 25px 0 25px;
	box-sizing: border-box;
}

.environment__no{
	width: 90px;
	height: 90px;
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -45px;
}

.environment__point__txt-1{
  font-weight : 700;
  font-size : 20px;
  line-height : 1.6;
  color : #6A443A;
	margin-bottom: 13px;
	text-align: center;
}

.environment__point__txt-2{
  font-size : 14px;
  line-height : 1.535;
}

.environment__staff{
	display: flex;
	flex-wrap: wrap;
	width: 976px;
	margin: 38px auto 43px auto;
}

.environment__staff__item{
	width: 480px;
	height: 310px;
	border-radius : 20px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	padding: 26px 27px 0 32px;
	box-sizing: border-box;
	margin-right: 16px;
	margin-bottom: 20px;
	position: relative;
}

.environment__staff__item:nth-child(2n){
	margin-right: 0;
}

.environment__staff__item:nth-child(n+3){
	height: 330px;
}

.environment__staff__txt{
  font-size : 14px;
  line-height : 1.535;
}

.environment__staff__img{
	position: absolute;
	bottom: 10px;
	left: 21px;
	line-height: 0;
	width: 150px;
}

.environment__staff__img img{
	width: 100%;
}

.environment__staff__name{
	position: absolute;
	bottom: 50px;
	left: 186px;
	font-weight: 700;
	font-size: 20px;
	color: #6A443A;
	line-height: 1.4;
}

.environment__staff__name span{
	font-size : 16px;
}

.environment__welfare{
	display: flex;
	margin-top: 27px;
	flex-wrap: wrap;
}

.environment__welfare__item{
	width: 310px;
	height: 160px;
	border-radius: 20px;
	margin-right: 25px;
	margin-bottom: 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	background: #fff;
	line-height: 0;
	display: flex;
	align-items: center;
}

.environment__welfare__item:nth-child(n+4){
	width: 227px;
	height: 183px;
	margin-right: 24px;
}

.environment__welfare__item:nth-child(1){
	padding: 0 0 3px 62px;
}

.environment__welfare__item:nth-child(2){
	padding: 0 0 2px 63px;
}

.environment__welfare__item:nth-child(3){
	margin-right: 0;
	padding: 0 0 2px 38px;
}

.environment__welfare__item:nth-child(4){
	padding: 0 0 5px 17px;
}

.environment__welfare__item:nth-child(5){
	padding: 0 0 0px 62px;
}

.environment__welfare__item:nth-child(6){
	padding: 0 0 3px 22px;
}


.environment__welfare__item:nth-child(7){
	margin-right: 0;
	padding: 31px 0 0 17px;
}

@media screen and (max-width: 768px) {
	.environment__container{
		width: auto;
	}

	.environment__heading{
		background: url(../img/heading_bar_02.svg) no-repeat top 19px left 0 / 100%;
		width: 280px;
		height: 65px;
		margin-bottom: 40px;
	}

	.environment__point{
		display: block;
		width: 280px;
		margin: 40px auto 50px auto;
	}

	.environment__point__item{
		border-radius : 15px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
		width: 100%;
		height: auto;
		padding: 30px 20px 20px 20px;
		margin-bottom: 40px;
	}

	.environment__no{
		width: 50px;
		height: 50px;
		top: -25px;
		margin-left: -25px;
	}

	.environment__no img{
		width: 100%;
	}

	.environment__point__txt-1{
		font-size : 16px;
		margin-bottom: 10px;
	}

	.environment__staff{
		display: block;
		width: 280px;
		margin: 30px auto 50px auto;
	}

	.environment__staff__item{
		width: 100%;
		height: auto !important;
		border-radius : 15px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
		padding: 20px 20px 110px 20px;
		margin: 0 0 20px 0 !important;
	}

	.environment__staff__img{
		bottom: 10px;
		left: 10px;
		width: 100px;
	}

	.environment__staff__name{
		bottom: 33px;
		left: 110px;
		font-size: 16px;
	}

	.environment__staff__name span{
		font-size : 14px;
	}

	.environment__welfare{
		width: 300px;
		margin: 30px auto 0 auto;
		flex-wrap: wrap;
	}

	.environment__welfare__item{
		width: 140px !important;
		height: auto !important;
		margin: 0 auto 10px auto !important;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
		border-radius: 15px;
		padding: 20px 0 !important;
		justify-content: center;
	}

	.environment__welfare__item:nth-child(1) img{
		width: 120px;
	}

	.environment__welfare__item:nth-child(2) img{
		width: 111px;
	}
	
	.environment__welfare__item:nth-child(3) img{
		width: 131px;
	}
	
	.environment__welfare__item:nth-child(4) img{
		width: 93px;
	}
	
	.environment__welfare__item:nth-child(5) img{
		width: 66px;
	}
	
	.environment__welfare__item:nth-child(6) img{
		width: 94px;
	}
	
	.environment__welfare__item:nth-child(7) img{
		width: 104px;
	}

	.environment__welfare__item:nth-child(7){
		margin-right: 0;
		padding: 31px 0 0 17px;
	}
}

/*Job
--------------------------------------------------*/
.job{
	padding: 0 0 136px 0;
}

.job__container{
	padding-top: 143px;
	width: 980px;
	margin: 0 auto;
	background: url(../img/job_character_01.webp) no-repeat top 58px right 91px/220px;
}

.job__heading{
	width: 360px;
	height: 123px;
	margin: 0 auto 108px auto;
	background: url(../img/heading_bar_03.svg) no-repeat top 100% left 0;
}

/*tab*/
.switched__area{
	position: relative;
  background : #fff;
	border: 4px solid #6A443A;
  border-radius : 30px;
	box-sizing: border-box;
	padding: 103px 86px 86px 88px;
}

.tab__list{
	width: 826px;
	position: absolute;
	top: -47px;
	left: 72px;
	display: flex;
	justify-content: space-between;
}

.job__tab__item{
	width: 200px;
	height: 90px;
	border: 4px solid #6a443a;
	border-radius: 20px;
	background: #fff;;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s ease-out;
  font-weight : 700;
  font-size : 16px;
	line-height: 1;
	color : #6A443A;
}

.job__tab__item.tab--active{
	background-color: #6A443A;
	color: #fff;
	position: relative;
}

.job__tab__item.tab--active::after{
	content: '';
	display: block;
	background: url(../img/job_tab_balloon.svg) no-repeat 0 0/100%;
	width: 10px;
	height: 10px;
	position: absolute;
	bottom: -14px;
	left: 50%;
	margin-left: -3px;
}

.tab__block {
	display: none;
}

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

.job__tab__header{
	display: flex;
	justify-content: space-between;
	margin-bottom: 39px;
}

.job__txt__box{
	width: 380px;
	padding-top: 7px;
}

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

.job__ph img{
	width: 100%;
}

.job__mhd{
  font-weight : 700;
  font-size : 26px;
	line-height: 1;
  color : #6A443A;
	margin-bottom: 17px;
}

.job__txt{
  font-size : 18px;
  line-height : 1.75;
}

.job__point{
	background: #fbf7e6 url(../img/job_character_02.webp) no-repeat top 44px left 77px/107px;
	border-radius: 20px;
	position: relative;
	padding: 37px 0 17px 0;
	margin-bottom: 31px;
}

.job__point__hd{
	position: absolute;
	top: -12px;
	left: 23px;
	line-height: 0;
}

.job__point__hd img{
	width: 100%;
}

.job__point__list{
	margin-left: 281px;
}

.job__point__item{
  font-weight : 700;
  font-size : 22px;
  line-height : 25px;
	padding-left: 34px;
	margin-bottom: 19px;
	background: url(../img/job_point_circle.svg) no-repeat left 3px top 50%;
}

.job__scenery{
	display: flex;
	justify-content: space-between;
	margin-bottom: 61px;
}

.job__gallery__item{
	width: 240px;
}

.job__gallery__item img{
	width: 100%;
}

.job__btn{
	width: 600px;
	margin: 0 auto;
}

.job__btn a{
	display: flex;
	width: 100%;
	height: 80px;
	background: #990011 url(../img/job_arrow.svg) no-repeat top 50% right 19px;
	border-radius: 80px;
	justify-content: center;
	align-items: center;
  font-weight : 700;
  font-size : 28px;
  color : #fff;
	line-height: 1;
}

.tab__gotop{
	width: 320px;
	height: 60px;
	position: absolute;
	bottom: -30px;
	right: 35px;
	border-radius: 60px;
	background: #fff;

}

.tab__gotop a{
	display: flex;
	width: 100%;
	height: 100%;
	background: #6a443a url(../img/job_arrow.svg) no-repeat top 50% right 20px;
	border-radius: 60px;
	justify-content: center;
	align-items: center;
  font-weight : 700;
	font-size : 20px;
  color : #fff;
	line-height: 1;
}

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

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

	.job__container{
		padding-top: 50px;
		width: auto;
		padding: 90px 20px 0 20px;
		background: none;
		position: relative;
	}

	.job__container::before{
		content: '';
		display: block;
		background: url(../img/job_character_01.webp) no-repeat 0 0/100%;
		width: 120px;
		height: 118px;
		position: absolute;
		top: 30px;
		right: 10px;
	}

	.job__heading{
		width: 280px;
		height: 78px;
		margin-bottom: 50px;
		background: url(../img/heading_bar_03.svg) repeat-x top 12px left 0 / auto 65px;
	}

	/*tab*/
	.switched__area{
		border: 2px solid #6A443A;
		border-radius : 15px;
		padding: 40px 20px 50px 20px;
	}

	.tab__list{
		width: 100%;
		top: -25px;
		left: 0;
	}

	.job__tab__item{
		width: 24%;
		height: 40px;
		border: 2px solid #6a443a;
		border-radius: 10px;
		font-size : 10px;
	}

	.job__tab__item.tab--active::after{
		bottom: -8px;
	}

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

	.job__tab__header{
		display: block;
		margin-bottom: 30;
	}

	.job__txt__box{
		width: 100%;
		padding-top: 0;
		margin-bottom: 20px;
	}

	.job__ph__box{
		width: 100%;
	}

	.job__mhd{
		font-size : 18px;
		margin-bottom: 10px;
	}

	.job__txt{
		font-size : 14px;
		line-height : 1.6;
	}

	.job__point{
		background: #fbf7e6;
		border-radius: 15px;
		position: relative;
		padding: 35px 0 10px 0;
		margin-bottom: 30px;
	}

	.job__point::before{
		content: '';
		display: block;
		background: url(../img/job_character_02.webp) no-repeat no-repeat 0 0/100%;
		width: 55px;
		height: 65px;
		position: absolute;
		top: -28px;
		left: 155px;
	}

	.job__point__hd{
		position: absolute;
		top: -12px;
		left: 23px;
		line-height: 0;
		width: 130px;
	}

	.job__point__list{
		margin: 0 20px;
	}

	.job__point__item{
		font-weight : 700;
		font-size : 16px;
		line-height : 1.4;
		padding-left: 20px;
		margin-bottom: 10px;
		background: url(../img/job_point_circle.svg) no-repeat left 3px top 5px/14px;
	}

	.job__scenery{
		margin-bottom: 30px;
		flex-wrap: wrap;
		justify-content:space-around;
	}

	.job__gallery__item{
		width: 47.5%;
		margin-bottom: 2%;
	}

	.job__btn{
		width: 200px;
	}

	.job__btn a{
		height: 50px;
		background: #990011 url(../img/job_arrow.svg) no-repeat top 50% right 15px/6px;
		font-size : 18px;
	}

	.tab__gotop{
		width: 180px;
		height: 40px;
		bottom: -20px;
		right: auto;
		left: 50%;
		margin-left: -90px;
	}

	.tab__gotop a{
		background: #6a443a url(../img/job_arrow.svg) no-repeat top 50% right 15px/6px;
		font-size : 14px;
	}
}

/*slider
--------------------------------------------------*/
.slick-slider div { transition: none; }

.slides{
	height: 280px;
	overflow: hidden;
	margin-bottom: 109px;
}

.slide__ph{
	width: 360px;
	height: 280px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 340px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.slide__ph-1,
.slide__ph-3,
.slide__ph-5,
.slide__ph-7,
.slide__ph-9{
	background-position: top 50px left 0;
}

.slide__ph-1{
	background-image: url(../img/slide_01.webp);
}

.slide__ph-2{
	background-image: url(../img/slide_02.webp);
}

.slide__ph-3{
	background-image: url(../img/slide_03.webp);
}

.slide__ph-4{
	background-image: url(../img/slide_04.webp);
}

.slide__ph-5{
	background-image: url(../img/slide_05.webp);
}

.slide__ph-6{
	background-image: url(../img/slide_06.webp);
}

.slide__ph-7{
	background-image: url(../img/slide_07.webp);
}

.slide__ph-8{
	background-image: url(../img/slide_08.webp);
}

.slide__ph-9{
	background-image: url(../img/slide_09.webp);
}

@media screen and (max-width: 768px) {
	.slides{
		height: 125px;
		margin-bottom: 50px;
	}

	.slide__ph{
		width: 160px;
		height: 125px;
		background-size: 151px;
	}

	.slide__ph-1,
	.slide__ph-3,
	.slide__ph-5,
	.slide__ph-7,
	.slide__ph-9{
		background-position: top 22px left 0;
	}
}

/*Search
--------------------------------------------------*/
.search{
	height: 832px;
	background: url(../img/search_bg.svg) no-repeat top 0 left 50%;
}

.search__container{
	padding-top: 102px;
	width: 980px;
	margin: 0 auto;
	background: url(../img/search_character.webp) no-repeat top 63px right 59px/256px;
}

.search__heading{
	margin-bottom: 63px;
}

.search__mhd{
	margin-bottom: 42px;
}

.search__list{
	display: flex;
	flex-wrap: wrap;
}

.search__list-1{
	margin-bottom: 42px;
}

.search__item{
	width: 310px;
	margin-right: 24px;
	margin-bottom: 25px;
}

.search__item:nth-child(3n){
	margin-right: 0;
}

.search__item a{
	display: flex;
	width: 100%;
	height: 80px;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border: 4px solid #990011;
	background: #fff;
	border-radius: 80px;
  font-weight : 700;
  font-size : 20px;
	line-height: 1;
  color : #990011;
}

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

@media screen and (max-width: 768px) {
	.search{
		height: auto;
		background: #fbf7e6;
		border-radius: 15px;
		padding:20px;
		margin: 0 20px;
	}

	.search__container{
		padding-top: 0;
		width: auto;
		position: relative;
		background: none;
	}

	.search__container::before{
		content: '';
		display: block;
		background: url(../img/search_character.webp) no-repeat 0 0/100%;
		width: 120px;
		height: 115px;
		position: absolute;
		top: 6px;
		right: -30px;
	}

	.search__heading{
		margin-bottom: 30px;
	}

	.search__mhd{
		margin-bottom: 20px;
	}

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

	.search__list-1{
		margin-bottom: 30px;
	}

	.search__item{
		width: 49%;
		margin-right: 0 !important;
		margin-bottom: 3%;
	}

	.search__item a{
		height: 50px;
		border: 2px solid #990011;
		font-size : 15px;
	}

	.search__list-2 .search__item:nth-child(1) a{
		letter-spacing: -1px;
	}
}

/*Footer entry area
--------------------------------------------------*/
.foot__entry{
	height: 1031px;
	background: url(../img/foot_entry_img_pc.webp) no-repeat top 78px left 50%;
}

.foot__entry__container{
	width: 980px;
	margin: 0 auto;
	padding-top: 869px;
}

.foot__entry__btn{
	width: 600px;
	margin: 0 auto;	
}

.foot__entry__btn a{
	display: flex;
	width: 100%;
	height: 80px;
	background: #990011;
	justify-content: center;
	align-items: center;
  font-weight : 700;
  font-size : 28px;
	line-height: 1;
  color : #fff;
	border-radius: 80px;
}

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

@media screen and (max-width: 768px) {
	.foot__entry{
		width: 100%;
		height: auto;
		position: relative;
		background: url(../img/foot_entry_img_sp.webp) no-repeat 50% 0/100%;
	}

	.foot__entry:before{
	content: '';
	display: block;
	padding-top: 173%;
}

	.foot__entry__container{
		width: auto;
		padding: 0;
	}

	.foot__entry__btn{
		display: none;
	}
}

/*sp entry button
--------------------------------------------------*/
.floating__btm__block{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 300;
}

.pg-top{
	position: fixed;
	display: none;
	bottom: 100px;
	right: 74px;
	z-index: 300;
	width: 150px;
	height: 150px;
	border-radius: 100px;
	box-shadow : 0px 10px 10px rgba(0, 0, 0, 0.1);
}

.pg-top a{
	display: flex;
	justify-content: center;
	padding-top: 60px;
	background: url(../img/pgtop.svg) no-repeat 0 0/100%;
	width: 100%;
	height: 150px;
  font-weight : 700;
  font-size : 19px;
  color : #fff;
}

.floating__btm__btn{
	display: none;
}

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

@media screen and (max-width: 768px) {
	.floating__btm__block{
		position: sticky;
		bottom: 0;
		left: 0;
		z-index: 300;
		width: 100%;
		pointer-events: none;
	}

	.pg-top{
		position: sticky;
		bottom: 0;
		left: 0;
		width: 100%;
		box-shadow : none;
		z-index: 310;
	}
	
	.pg-top a{
		pointer-events:fill;
		position: absolute;
		bottom: 70px;
		right: 10px;
		width: 50px;
		height: 50px;
		font-size: 11px;
		padding-top: 18px;
		border-radius: 50px;
		box-shadow : 0px 5px 5px rgba(0, 0, 0, 0.1);
	}

	.floating__btm__btn{
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 60px;
		z-index: 300;
	}
	
	.floating__btm__btn a{
		pointer-events:fill;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		background: #990011;
		color: #fff;
		font-weight: 700;
		font-size: 16px;
		letter-spacing: 0.1em;
		line-height: 1;
	}
}

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

.footer{
	background: #6a443a;
}

.footer__container{
	padding: 57px 0 60px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

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

.footerLink__item{
  font-weight : 700;
  font-size : 16px;
	line-height: 1;
	margin-left: 71px;
	position: relative;
}

.footerLink__item::after{
	display: block;
	content: '';
	width: 1px;
	height: 24px;
	background: #fff;
	position: absolute;
	top: -3px;
	left: -33px;
}

.footerLink__item:first-child{
	margin-left: 0;
}

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

.copyright{
  font-weight : 700;
  font-size : 16px;
	line-height: 1;
}

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

@media screen and (max-width: 768px) {
	.footer__container{
		padding: 30px 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

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

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

	.footerLink__item::after{
		height: 14px;
		top: 5px;
		left: -10px;
	}

	.copyright{
		font-size : 12px;
	}
}