@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+Antique:wght@400;500;700;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 : #403630;
	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;
		background:
		url(../img/bg_line_01.svg) no-repeat top 84.5625vw left calc(50% - 7px),
		url(../img/bg_line_02.svg) no-repeat top 159.375vw left calc(50% + 1331px),
		url(../img/bg_line_03.svg) no-repeat top 226.875vw left calc(50% - 743px),
		url(../img/bg_line_04.svg) no-repeat top 313.5vw left calc(50% - 118px),
		url(../img/main_bg.webp) no-repeat top 0 left 50%/100%,
		#B3E1EA;
	}
}

@media screen and (max-width: 768px) {
	body{
		background:
		url(../img/bg_line_01.svg) no-repeat top 336vw left 50%/800px,
		url(../img/main_bg.webp) no-repeat top 0 left 50%/800px,
		#B3E1EA;
	}
}

.ipad{
	min-width: 1200px;
}

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

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

/*header nav
--------------------------------------------------*/
.header{
	position: relative;
}

.header__floating__nav{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 700;
}

.header__logo{
	position: absolute;
	line-height: 0;
	width: 175px;
	left: 24px;
	top: 21px;
	z-index: 200;
}

.header__logo img{
	width: 100%;
}

.hamburger{
	position: absolute;
	z-index: 700;
	right: 0;
	top: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
	transition: 0.3s ease-out;
	background: #5EA0D8;
}

.hamburger__inner{
	position: absolute;
	left: 18px;
	top: 20px;
	width: 24px;
	height: 19px;
}

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

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

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

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

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

.hamburger__line--b.active{
	bottom: 8px;
	transform: rotate(135deg);
}

.floating__nav{
	background: #fff;
	display: block;
	height: 0;
	width: 100%;
	position: fixed;
	z-index: 600;
	top: 0;
	left: 0;
	transition: all 0.3s linear;
}

.floating__nav.show{
	height: 550px;
}

.floating__nav__bg{
	width: 100%;
	height: 0;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	z-index: 500;
	transition: all 0.3s linear;
	top: 0;
	left: 0;
}

.floating__nav__bg.show{
	height: 100%;
}

.header__nav{
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: absolute;
	overflow: hidden;
}

.nav__index{
	padding-top: 30px;
}

.nav__item {
	text-align: center;
}

 .nav__item a{
	display: block;
	padding: 20px 0;
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.08em;
	line-height: 1;
	color: #000;
 }

/*fixed*/
.is-fixed{
	position: fixed;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	height: 60px;
	z-index: 700;
}

.noShadow{
	box-shadow: none;
}

.is-fixed .header__logo{
	top: 6px;
	width: 90px;
}

@media screen and (min-width: 769px) {
	.header__logo a:hover,
	.hamburger:hover,
	.nav__item a:hover{
		opacity: 0.5;
	}
}

@media screen and (max-width: 768px) {
	.header__logo{
		width: 68px;
		top: 6px;
		left: 10px;
	}

	.header__btn{
		display: none;
	}

	.hamburger{
		width: 42px;
		height: 42px;
	}

	.hamburger__inner{
		left: 12px;
		top: 14px;
		width: 17px;
		height: 13px;
	}

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

	.hamburger__line--t.active{
		top: 6px;
	}

	.hamburger__line--b.active{
		bottom: 6px;
	}

	.floating__nav.show{
		height: 450px;
	}

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

	/*fixed*/
	.is-fixed{
		height: 42px;
	}

	.is-fixed .header__logo{
		top: 5px;
		width: 60px;
	}
}

/*mainvisual
--------------------------------------------------*/
.mainvisual{
	width: 100%;
	height: 0;
	padding-top: 60.3125%;
	position: relative;
}

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

@media screen and (max-width: 768px) {
	.mainvisual{
		padding-top: 170.66%;
	}

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

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

.sp--hidden{
	display: block;
}

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

/*content fade
--------------------------------------------------*/
.content-fadeinup{
	opacity: 0;
	transform: translateY(50px);
}

/*heading
--------------------------------------------------*/
.content__heading{
	line-height: 1;
}

@media screen and (max-width: 768px) {

}

/*想い
--------------------------------------------------*/
.message{
	padding: 62px 0 230px 0;
}

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

.message__heading{
	margin-bottom: 50px;
}

.message__txt{
	font-family: 'Zen Kaku Gothic Antique';
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.05em;
	line-height: 2;
}

.message__ph__list{
	position: absolute;
	top: 0;
	right: 0;
}

.message__ph__item{
	line-height: 0;
	position: absolute;
}

.message__ph__item img{
	width: 100%;
}

.message__ph__item:nth-child(1){
	width: 535px;
	top: 38px;
	right: -120px;
}

.message__ph__item:nth-child(2){
	width: 314px;
	top: 441px;
	right: -234px;
	}

.message__ph__item:nth-child(3){
	width: 213px;
	top: 718px;
	right: 51px;
}

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

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

	.message__heading{
		margin-bottom: 30px;
	}

	.message__heading img{
		width: 234px;
	}

	.message__txt{
		font-size: 16px;
		letter-spacing: 0.05em;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.message__ph__list{
		position: relative;
		top: auto;
		right: auto;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.message__ph__item{
		position: relative;
		top: auto !important;
		right: auto !important;
	}

	.message__ph__item:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}

	.message__ph__item:nth-child(2){
		width: 48%;
		}

	.message__ph__item:nth-child(3){
		width: 48%;
	}
}

/*知る
--------------------------------------------------*/
.about{
	padding: 91px 0 129px 0;
}

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

.about__heading{
	margin-bottom: 48px;
}

.about__mhd{
	line-height: 0;
	text-align: center;
}

.jobdetails__read{
	margin: 33px 0 76px 0;
	font-family: 'Zen Kaku Gothic Antique';
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
}

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

.jobdetails__item{
	width: 440px;
	height: 803px;
	border-radius: 20px;
	background: #fff;
	position: relative;
}

.jobdetails__ph{
	line-height: 0;
	margin-bottom: 41px;
}

.jobdetails__ph img{
	width: 100%;
}

.jobdetails__ttl{
	font-family: 'M PLUS 1p';
	font-weight: 500;
	font-size: 26px;
	letter-spacing: 0.06em;
	line-height: 1;
	text-align: center;
	margin-bottom: 27px;
}

.work__list{
	margin: 0 45px 14px 45px;
}

.work__item{
	font-family: 'Zen Kaku Gothic Antique';
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.875;
	padding-left: 21px;
	background: url(../img/about_dot.svg) no-repeat top 50% left 0;
}

.jobdetails__txt{
	font-family: 'Zen Kaku Gothic Antique';
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.875;
	margin: 0 45px 0 44px;
}

.jobdetails__btn{
	position: absolute;
	bottom: 46px;
	left: 50%;
	transform: translateX(-50%);
	width: 268px;
	height: 70px;
}

.jobdetails__btn a{
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	border-radius: 35px;
	background: #4a9dbe url(../img/about_arrow.svg) no-repeat top 50% right 14px;
	font-family: 'M PLUS 1p';
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
	padding-left: 34px;
}

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

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

.carrierstep__tab__item{
	width: 309px;
	height: 80px;
}

.carrierstep__tab__item a{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	border-radius: 40px;
	background: #6cb075;
	font-family: 'M PLUS 1p';
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1.388;
	text-align: center;
	color: #fff;
}

.carrierstep__tab__item:nth-child(2) a{
	background-color: #F29D66;
}

.carrierstep__tab__item:nth-child(3) a{
	background-color: #66A6DD;
}

.carrierstep__block{
	height: 600px;
	border-radius: 20px;
	margin-bottom: 70px;
	background-position: bottom 63px right 56px;
	background-repeat: no-repeat;
	background-color: #fff;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

#carrierstep-1{
	background-image: url(../img/about_carrierstep_01.svg);
}

#carrierstep-2{
	background-image: url(../img/about_carrierstep_02.svg);
}

#carrierstep-3{
	background-image: url(../img/about_carrierstep_03.svg);
	background-position: bottom 84px right 56px;
}

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

@media screen and (max-width: 768px) {
	.about{
		padding: 50px 0 20px 0;
		background:
		url(../img/bg_line_02.svg) no-repeat top 600px right -610px / 660px,
		url(../img/bg_line_03.svg) no-repeat top 2200px left -230px / 380px,
		url(../img/bg_line_04.svg) no-repeat bottom -124px left -231px / 860px;
	}

	.jobdetails__container{
		width: auto;
		padding: 0 20px;
		margin-bottom: 40px;
	}

	.about__heading{
		margin-bottom: 10px;
	}

	.about__heading img{
		width: 235px;
	}

	.about__mhd{
		line-height: 0;
		text-align: center;
	}

	.about__mhd img{
		width: 173px;
	}

	.jobdetails__read{
		margin: 20px 0 30px 0;
		font-size: 16px;
		letter-spacing: 0;
		line-height: 1.6;
	}

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

	.jobdetails__item{
		width: 100%;
		height: auto;
		border-radius: 10px;
		margin-bottom: 20px;
		padding-bottom: 30px;
	}

	.jobdetails__ph{
		margin-bottom: 20px;
	}

	.jobdetails__ttl{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.work__list{
		margin: 0 20px 10px 20px;
	}

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

	.jobdetails__txt{
		font-size: 14px;
		line-height: 1.6;
		margin: 0 20px;
	}

	.jobdetails__btn{
		position: relative;
		bottom: auto;
		left: auto;
		transform: translateX(0);
		width: 250px;
		height: 50px;
		margin: 20px auto 0 auto;
	}

	.jobdetails__btn a{
		background: #4a9dbe url(../img/about_arrow.svg) no-repeat top 50% right 14px/30px;
		font-size: 16px;
		padding-left: 20px;
	}

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

	.carrierstep__tab{
		margin: 30px 0 20px 0;
	}

	.carrierstep__tab__item{
		width: 33%;
		height: 50px;
	}

	.carrierstep__tab__item a{
		font-size: 12px;
		letter-spacing: 0;
	}

	.carrierstep__tab__item span{
		font-size: 10px;
	}

	.carrierstep__block{
		width: 335px;
		margin: 0 auto 30px auto;
		border-radius: 10px;
		background-position: top 0 left 0 !important;
	}

	#carrierstep-1{
		height: 886px;
		background-image: url(../img/about_carrierstep_01_sp.svg);
	}

	#carrierstep-2{
		height: 635px;
		background-image: url(../img/about_carrierstep_02_sp.svg);
	}

	#carrierstep-3{
		height: 595px;
		background-image: url(../img/about_carrierstep_03_sp.svg);
	}
}

/*好きなところ
--------------------------------------------------*/
.favorite{
	padding: 90px 0 36px 0;
}

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

.favorite__container::before{
	display: block;
	content: '';
	background: url(../img/favorite_img.svg) no-repeat 0 0/100%;
	width: 369px;
	height: 315px;
	position: absolute;
	top: -153px;
	right: -116px;
}

.favorite__heading{
	margin-bottom: 24px;
}

.favorite__slide__list-1{
  margin-left:-176px;
}

.favorite__slide{
	width: 312px;
	border-radius: 15px;
	background: #6cb075;
	position: relative;
	padding: 24px 36px 23px 36px;
	margin: 0 40px 62px 0;
}

.favorite__slide::after{
	content: '';
	display: block;
	background: url(../img/favorite_balloon_g.svg) no-repeat 0 0/100%;
	width: 53px;
	height: 51px;
	position: absolute;
	bottom: -36px;
	left: 50%;
	transform: translateX(-50%);
}

.slide__col__g2::after{
	background-image: url(../img/favorite_balloon_g2.svg);
}


.slide__col__o,
.slide__col__o2{
	background-color: #F29D66;
}

.slide__col__o::after{
	background-image: url(../img/favorite_balloon_o.svg);
}

.slide__col__o2::after{
	background-image: url(../img/favorite_balloon_o2.svg);
}

.slide__col__b,
.slide__col__b2{
	background-color: #68A4DD;
}

.slide__col__b::after{
	background-image: url(../img/favorite_balloon_b.svg);
}

.slide__col__b2::after{
	background-image: url(../img/favorite_balloon_b2.svg);
}

.favorite__txt{
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.875;
	color: #fff;
	margin-bottom: 3px;
}

.favorite__age{
	text-align: right;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.875;
	color: #fff;
}

.favorite .slick-track {
  display: flex;
  align-items: flex-end;
}

.favorite .slick-slide {
  height: auto;
}

.slick-slider div { transition: none; }

.landscape{
	width: 100%;
	line-height: 0;
}

.landscape img{
	width: 100%;
}

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

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

	.favorite__container::before{
		width: 110px;
		height: 94px;
		top: -95px;
		right: 0;
	}

	.favorite__heading{
		margin-bottom: 0;
	}

	.favorite__heading img{
		width: 300px;
	}

	.favorite__slide__list-1{
		margin-left:-100px;
		margin-bottom: 20px;
	}

	.favorite__slide{
		width: 200px;
		border-radius: 10px;
		padding: 15px;
		margin: 0 20px 20px 0;
	}

	.favorite__slide::after{
		width: 25px;
		height: 37px;
		bottom: -30px;
	}

	.favorite__txt{
		font-size: 12px;
		letter-spacing: 0.05em;
		line-height: 1.6;
		margin-bottom: 3px;
	}

	.favorite__age{
		font-size: 12px;
		letter-spacing: 0.05em;
		line-height: 1.6;
	}
}

/*福利厚生
--------------------------------------------------*/
.benefits{
	padding-top: 92px;
	background: #fff url(../img/bg_line_05.svg) no-repeat top -149px left calc(50% - 139px);
}

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

.benefits__heading{
	margin-bottom: 98px;
	text-align: center;
}

/*準備ができたら表示*/
.benefits__slides__list {display: none;}
.benefits__slides__list.slick-initialized {display: block;}


.benefits__slides{
	margin: 0 0 51px 36px;
	overflow: hidden;
}

.slide__arrow{
	width: 86px;
	height: 40px;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 80px;
	right: 0;
}

.slide__arrow__item{
	width: 40px;
	cursor: pointer;
	transition: 0.3s ease-out;
	line-height: 0;
}

.slide__arrow__item img{
	width: 100%;
}

.benefits__slide{
width: 312px;
border-radius: 15px;
padding: 132px 0 27px 0;
margin-right: 35px;
}

.benefits__slide-1{
	background: #daebdc url(../img/benefits_icon_01.svg) no-repeat top 42px left 50%; 
}

.benefits__slide-2{
	background: #FCE6D8 url(../img/benefits_icon_02.svg) no-repeat top 37px left 50%;
	margin-top: 74px;
}

.benefits__slide-3{
	background: #DAE8F7 url(../img/benefits_icon_03.svg) no-repeat top 39px left 50%;
}

.benefits__slide-4{
	background: #daebdc url(../img/benefits_icon_04.svg) no-repeat top 42px left 50%;
	margin-top: 74px;
}

.benefits__slide-5{
	background: #FCE6D8 url(../img/benefits_icon_05.svg) no-repeat top 45px left 50%;
}

.benefits__slide-6{
	background: #DAE8F7 url(../img/benefits_icon_06.svg) no-repeat top 44px left 50%;
	margin-top: 74px;
}

.benefits__slide-7{
	background: #daebdc url(../img/benefits_icon_07.svg) no-repeat top 44px left 50%;
}

.benefits__slide-8{
	background: #FCE6D8 url(../img/benefits_icon_08.svg) no-repeat top 45px left 50%;
	margin-top: 74px;
}

.benefits__ttl{
	font-family: 'M PLUS 1p';
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.07em;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 18px;
}

.benefits__ttl__mrg__b{
	margin-bottom: 3px;
}

.benefits__txt{
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.875;
	margin: 0 31px 15px 31px;
}

@media screen and (min-width: 769px) {
	.slide__arrow__item:hover{
		opacity: .7;
	}
}

@media screen and (max-width: 768px) {
	.benefits{
		padding-top: 50px;
		background: #fff url(../img/bg_line_05.svg) no-repeat top 139px left 50%/980px;
	}

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

	.benefits__heading{
		margin-bottom: 20px;
	}

	.benefits__heading img{
		width: 280px;
	}

	.benefits__slides{
		margin: 0 0 30px 0;
	}

	.slide__arrow{
		width: 86px;
		height: 40px;
		position: relative;
		top: auto;
		right: auto;
		margin: 0 auto 30px auto;
	}

	.slide__arrow__item{
		width: 40px;
		cursor: pointer;
		transition: 0.3s ease-out;
		line-height: 0;
	}

	.slide__arrow__item img{
		width: 100%;
	}

	.benefits__slide{
	width: 300px;
	border-radius: 15px;
	padding: 90px 0 20px 0;
	margin: 0 10px;
	margin-top: 0 !important;
	background-position: top 20px left 50% !important;
	background-size: auto 50px;
	}

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

	.benefits__txt{
		font-size: 14px;
		letter-spacing: 0.05em;
		line-height: 1.6;
		margin: 0 20px 10px 20px;
	}
}

/*お仕事検索
--------------------------------------------------*/
.search__container{
	width: 980px;
	margin: 0 auto;
	padding: 90px 0 98px 0;
}

.search__heading{
	text-align: center;
	margin-bottom: 88px;
}

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

.search__area{
	width: 311px;
	background: url(../img/search_icon_01.svg) no-repeat top 10px left 50%;
	padding-top: 110px;
}

.search__category{
	width: 311px;
	background: url(../img/search_icon_02.svg) no-repeat top 0 left 50%;
	padding-top: 110px;
}

.search__mhd{
	font-family: 'M PLUS 1p';
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
	color: #000;
	margin-bottom: 41px;
}

.search__item{
	width: 311px;
	margin-bottom: 22px;
}

.search__item a{
	display: block;
	line-height: 70px;
	font-family: 'M PLUS 1p';
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.05em;
	color: #fff;
	border-radius: 35px;
	padding-left: 34px;
	background: #4a9dbe url(../img/search_arrow.svg) no-repeat top 50% right 14px;
}

.search__category .search__item a{
	background-color: #6CB075;
}

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

@media screen and (max-width: 768px) {
	.search__container{
		width: auto;
		padding: 50px 20px 100px 20px;
	}

	.search__heading{
		margin-bottom: 30px;
	}

	.search__heading img{
		width: 163px;
	}

	.search__block{
		width: 300px;
		display: block;
	}

	.search__area{
		width: 100%;
		background: url(../img/search_icon_01.svg) no-repeat top 10px left 50%/40px;
		padding-top: 60px;
		margin-bottom: 30px;
	}

	.search__category{
		width: 100%;
		background: url(../img/search_icon_02.svg) no-repeat top 0 left 50%/80px;
		padding-top: 60px;
	}

	.search__mhd{
		font-size: 17px;
		margin-bottom: 15px;
	}

	.search__list{
		width: 250px;
		margin: 0 auto;
	}

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

	.search__item a{
		font-size: 16px;
		line-height: 60px;
		padding-left: 34px;
		background: #4a9dbe url(../img/search_arrow.svg) no-repeat top 50% right 14px/35px;
	}

	.search__category .search__item a{
		background-color: #6CB075;
	}
}

/*side botton ・ sp entry button ・ page top button
--------------------------------------------------*/
/*pgage top */
.pg-top{
	position: fixed;
	display: none;
	bottom: 96px;
	right: 22px;
	z-index: 300;
	width: 81px;
}

.pg-top img{
	width: 100%;
}

/*side button*/
.side__nav__btn{
	position: absolute;
	top: 70.67%;
	right: 2.1875%;
	z-index: 200;
}

.side__nav__btn a{
	display: block;
}

.side-is-fixed{
	position: fixed;
	top: 135px;
}

/*sp entry button*/
.floating__btm__btn{
	display: none;
}

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

@media screen and (max-width: 768px) {
	.side__nav__btn{
		display: none;
	}

	.floating__btm__block{
		position: sticky;
		bottom: 0;
		left: 0;
		z-index: 300;
		width: 100%;
	}

	.pg-top{
		position: absolute;
		bottom: 60px;
		right: 10px;
		width: 40px;
	}

	.floating__btm__btn{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 300;
		display: flex;
	}

	.floating__btm__btn a{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		line-height: 0;
		padding: 10px 0 5px 0;
		background: #F3F117;
	}
}

/*フッター
--------------------------------------------------*/
.footer{
	background: #B2E0E9;
}

.footer p,
.footer a{
	color: #000;
}

.footer__container{
	padding: 29px 49px 28px 52px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

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

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

.footerLink__item::before{
	content: '';
	display: block;
	height: 14px;
	width: 1px;
	background: #000;
	position: absolute;
	left: -28px;
	top: 0;
}


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

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

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

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

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

	.footerLink__list{
		margin: 0 auto 10px auto;
		justify-content: center;
	}

	.footerLink__item{
		font-size: 12px;
		letter-spacing: 0;
		margin-left: 30px;
		margin-bottom: 15px;
	}

	.footerLink__item::before{
		height: 12px;
		left: -15px;
	}

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