:root {
	--main-color: #E37582;
	--mainsub-color: #FFEDEF;
	--sub-color: #F2E5DB;
	--font-color: #65513E;
	--bg-color: #FAF7F4;
}
body{
	font-family: "Kiwi Maru", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	line-height: 1.5;
}
/* 
 採用ヘッダー
----------------------------------------------------------- */
.recruit_navwrap{
	width: 95%;
	position: fixed;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	top: clamp(10px, 1vw, 20px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 998;
	transition: all ease 0.5s;
}
.recruit_navwrap img{
	height: clamp(40px, 2.6vw, 50px);
	width: auto;
}
.recruit_navwrap > ul {
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;
	background-color: #fff;
	border-radius: 50px;
	padding-right: 8px;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.08);
}
.recruit_navwrap > ul > li{
	margin-left: clamp(20px, 2.6vw, 50px);
}
.recruit_navwrap > ul > li a{
	display: inline-block;
	padding: clamp(15px, 1.6vw, 30px) 0;
	text-align: center;
	transition:all ease 0.5s;
}
.recruit_navwrap > ul > li:hover > a{
	color: var(--main-color);
}
.recruit_navwrap > ul > li:last-child{
	margin-left: clamp(15px, 2vw, 40px);
}
.recruit_navwrap > ul > li:last-child a{
	display: block;
	padding: clamp(10px, 1vw, 20px);
	border-radius: 40px;
	background-color: var(--main-color);
	color: var(--main-color);
}
.entry_txt p{ 
	position:relative;
	overflow:hidden;
	line-height: 1.5;
}
.entry_txt span{
	position:absolute;
	left:0;
	top:0;
	width:3000px;
	height:100%;
	background: url("../images/entry_txt.png") center right / auto 15px repeat-x;
}
.recruit_fix{
	position: fixed;
	right: 10px;
	bottom: 0;
	z-index: 5;
	padding: 8px clamp(10px, 0.8vw, 15px);
	padding-left: clamp(40px, 3.6vw, 70px);
	display: flex;
	align-items: center;
	border: 4px solid #F598A3;
	background-color: #FFD5DA;
	border-radius: 10px 10px 0 0;
	transition:all ease 0.5s;
}
.recruit_fix::before{
	content: "";
	position: absolute;
	left: clamp(10px, 0.8vw, 15px);
	bottom: 3px;
	padding: clamp(20px, 1.6vw, 30px);
	background-image: url('../images/recruit_fix.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.recruit_fix:hover::before{
	animation: hurueru 0.5s forwards;
}
.recruit_fix p{
	text-align: center;
	padding: 0 clamp(15px, 1.6vw, 30px);
	font-size: var(--fontsize-18);
	font-weight: 500;
}
.recruit_fix span{
	display: block;
	font-size: 14px;
	color: var(--main-color);
	letter-spacing: 0.1em;
}
.recruit_fix img{
	height: clamp(25px, 1.6vw, 30px);
}
/* 
 採用共通
----------------------------------------------------------- */
.recruit .inner{
	width: min(90%,1080px);
}
.link_btn{
	display: block;
	background-color: #fff;
	width: min(100%,300px);
	color: var(--main-color);
	transition: all ease 0.5s;
	padding: 12px;
	border-radius: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.link_btn:hover{
	background-color: var(--main-color);
	color: #fff;
}
.link_btn svg{
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	height: calc(100% - 8px);
	width: auto;
}
.link_btn svg path,
.link_btn svg circle{
	transition: all ease 0.5s;
}
.link_btn:hover svg path{
	fill: var(--main-color);
}
.link_btn:hover svg circle{
	fill: #fff;
}
/* 
 採用TOP
----------------------------------------------------------- */
.recruit_fv{
	width:100%;
	position: relative;
	z-index: -1;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}
.recruit_fv .txt{
	width: 30%;
	position: relative;
	padding: 0 20px;
	margin-top: 80px;
	display: grid;
	place-content: center;
	place-items: center center;
}
.recruit_fv .txt::before{
	content: "";
	position: absolute;
	right: -30px;
	bottom: clamp(60px, 5.7vw, 110px);
	padding: clamp(100px, 8.6vw, 165px);
	background-image: url('../images/recruit_fv_bg.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -3;
}
.recruit_fv .txt h1{
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
}
.recruit_fv.on .txt h1{
	transition-delay: 0.5s;
	opacity: 1;
}
.recruit_fv .txt h1 img{
	width: clamp(80px, 5.7vw, 110px);
}
.recruit_fv .txt p{
	width: fit-content;
	height: fit-content;
	text-decoration: underline;
	line-height: 1.8;
	margin-top: clamp(30px, 3.6vw, 70px);
	font-size: var(--fontsize-18);
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
}
.recruit_fv.on .txt p{
	transition-delay: 1s;
	opacity: 1;
}
.recruit_slider{
	width: 70%;
	height: auto;
	margin-left: auto;
	margin-bottom: 0 !important;
	position: relative;
}
.recruit_slider .slick-list,
.recruit_slider .slick-track{
	height: 100%;
}
.recruit_slider .slick-slide{
	overflow: hidden;
	border-radius: 0 0 0 clamp(30px, 2.6vw, 50px);
	height: 100%;
}
.recruit_slider .slick-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform:scale(1.1);
	transition:transform 1.4s cubic-bezier(0,.55,.45,1);
	transition-delay: 0s;
}
.recruit_slider .slick-slide.slick-active img{
	transform:scale(1);
	transition-delay: 0s;
}
.recruit_slider .slick-slide:not(.slick-active) img{
	transition-delay: 2s;
}
.recruit_fv_btm{
	margin-top: calc(clamp(30px, 2.6vw, 50px) * -1);
	position: relative;
}
.recruit_fv_btm img{
	width: 100%;
	height: auto;
}
.recruit_fv_btm::before{
	content: "";
	position: absolute;
	left: clamp(230px, 18.8vw, 360px);
	bottom: 0;
	padding: clamp(60px, 4.4vw, 85px);
	background-image: url('../images/recruit_fv_btm_piyo.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	animation: hurueru2 3s infinite;
}
@keyframes hurueru2 {
    0% {transform: rotateZ(0deg); bottom: 10px;}
    5% {transform: rotateZ(5deg); bottom: 20px;}
    10% {transform: rotateZ(0deg); bottom: 10px;}
    15% {transform: rotateZ(-5deg); bottom: 30px;}
    20% {transform: rotateZ(0deg); bottom: 10px;}
    100% {transform: rotateZ(0deg); bottom: 10px;}
}
.recruit_fv_btm::after{
	content: "";
	position: absolute;
	right: clamp(180px, 14.6vw, 280px);
	top: 0;
	padding: clamp(100px, 8.6vw, 165px);
	background-image: url('../images/recruit_fv_btm_fuwa.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	animation: cloud-y 2.5s ease-in-out infinite alternate-reverse;
	z-index: 1;
}
@keyframes cloud-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.recruit_h2{
	text-align: center;
	color: var(--main-color);
	font-size: var(--fontsize-22);
	letter-spacing: 0.1em;
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.recruit_h2 span{
	display: block;
	font-family: "Kokoro", serif;
	width: fit-content;
	margin: 0 auto;
	line-height: 1.1;
	font-size: clamp(25px, 2vw, 40px);
	padding: 0 clamp(40px, 3.6vw, 70px);
	background-image: url('../images/recruit_h2.svg'),url('../images/recruit_h2.svg');
	background-position: bottom 35% left, bottom 35%  right;
	background-repeat: no-repeat;
	background-size: clamp(30px, 2.9vw, 55px) auto;
	color: var(--font-color);
}
.recruit_message {
	background-color: var(--mainsub-color);
	background-image: url('../images/recruit_message_bg.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.recruit_message::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	padding: clamp(180px, 14.3vw, 275px);
	background-image: url('../images/recruit_message_sakura.png');
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
}
.recruit_message .inner{
	padding: clamp(35px, 3.4vw, 65px) 0 clamp(140px, 10.1vw, 190px);
	position: relative;
	z-index: 2;
}
.recruit_message .box{
	background-color: rgba(255,255,255,0.7);
	border-radius: 25px;
	padding: clamp(20px, 4.1vw, 80px) clamp(20px, 5.7vw, 110px);
	position: relative;
}
.recruit_message .box{
	background-color: rgba(255,255,255,0.7);
	border-radius: 25px;
	padding: clamp(20px, 4.1vw, 80px) clamp(20px, 5.7vw, 110px);
	position: relative;
}
.recruit_message .box::before{
	content: "";
	position: absolute;
	right: 20%;
	bottom: -26px;
	padding: 13px;
	background-image: url('../images/recruit_message_box.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}
.recruit_message .box::after{
	content: "";
	position: absolute;
	right: 12%;
	bottom: calc((clamp(80px, 6.8vw, 130px) + 26px) * -1);
	padding: clamp(40px, 3.4vw, 65px);
	background-image: url('../images/recruit_message_piyo.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	animation: hurueru3 3s infinite;
}
@keyframes hurueru3 {
    0% {transform: rotateZ(0deg); margin-bottom: 10px;}
    5% {transform: rotateZ(5deg); margin-bottom: 20px;}
    10% {transform: rotateZ(0deg); margin-bottom: 10px;}
    15% {transform: rotateZ(-5deg); margin-bottom: 30px;}
    20% {transform: rotateZ(0deg); margin-bottom: 10px;}
    100% {transform: rotateZ(0deg); margin-bottom: 10px;}
}
.recruit_message .box p{
	font-size: var(--fontsize-18);
	margin-bottom: clamp(15px, 1.6vw, 30px);
	line-height: 2;
}
.recruit_message .box img{
	width: 100%;
	height: auto;
}
.recruit_advantages_top{
	margin-top: calc(clamp(60px, 5.2vw, 100px) * -1);
	position: relative;
	z-index: 1;
	margin-bottom: -1px;
}
.recruit_advantages_top img{
	width: 100%;
	height: auto;
}
.recruit_advantages{
	background-color: var(--sub-color);
	position: relative;
	z-index: 2;
}
.recruit_advantages::after{
	content: "";
	position: absolute;
	right: 0;
	top: calc(clamp(100px, 9.1vw, 175px) * -1);
	padding: clamp(180px, 14.3vw, 275px);
	background-image: url('../images/recruit_advantages_sakura.png');
	background-position: right top;
	background-repeat: no-repeat;
	background-size: contain;
}
.recruit_advantages .inner{
	width: min(90%,1440px);
	padding: clamp(35px, 3.4vw, 65px) 0 0;
	position: relative;
}
.recruit_advantages .inner::before{
	content: "";
	position: absolute;
	left: 0;
	top: calc(clamp(60px, 5.2vw, 100px) * -1);
	padding: clamp(130px, 14.3vw, 275px);
	background-image: url('../images/recruit_advantages_green.png');
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
}
.recruit_advantages ul{
	display: grid;
	grid-column-gap: 20px;
	grid-row-gap: clamp(35px, 3.9vw, 75px);
	grid-template-columns: repeat(4, 1fr);
	position: relative;
	z-index: 1;
	margin-bottom: clamp(70px, 4.9vw, 95px);
}
.recruit_advantages ul::before{
	content: "";
	position: absolute;
	right: -20px;
	bottom: 0;
	padding: clamp(110px, 9.1vw, 175px);
	background-image: url('../images/recruit_advantages_sun.png');
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}
.recruit_advantages ul::after{
	content: "";
	position: absolute;
	right: clamp(190px, 17.2vw, 330px);
	bottom: calc(clamp(60px, 5.2vw, 100px) * -1);
	padding: clamp(30px, 2.6vw, 50px) clamp(80px, 7.8vw, 150px);
	background-image: url('../images/recruit_advantages_ashi.png');
	background-position: right top;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}
.recruit_advantages ul li:nth-child(even){
	margin-top: clamp(30px, 2.6vw, 50px);
}
.recruit_advantages ul img{
	border-radius: 118px;
	margin: 0 auto;
}
.recruit_advantages ul li h3{
	margin-top: clamp(30px, 2.6vw, 50px);
	color: var(--main-color);
	text-align: center;
	font-size: var(--fontsize-25);
	width: fit-content;
	margin: clamp(10px, 1vw, 20px) auto 0;
	font-family: "Kokoro", serif;
	line-height: 1.3;
	position: relative;
	z-index: 1;
}
.recruit_advantages ul li h3::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 55%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 12px;
	background-color: rgba(245,152,163,0.2);
}
.recruit_advantages ul li p{
	text-align: center;
	font-size: var(--fontsize-18);
}
.recruit_advantages .box{
	background-color: #fff;
	border-radius: 30px;
	width: min(100%,1080px);
	margin-inline: auto;
	padding: clamp(15px, 2.6vw, 50px) clamp(20px, 3.4vw, 65px) clamp(20px, 3.4vw, 65px);
	position: relative;
}
.recruit_advantages .box::before{
	content: "";
	position: absolute;
	left: 50%;
	top: calc(clamp(50px, 3.4vw, 65px) * -1);
	transform: translateX(-50%);
	padding: clamp(30px, 1.8vw, 35px);
	background-image: url('../images/recruit_advantages_piyo.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 2;
}
.recruit_advantages .box h3{
	color: var(--main-color);
	text-align: center;
	font-size: clamp(25px, 1.7vw, 33px);
	width: fit-content;
	margin: 0 auto clamp(10px, 0.94vw, 18px);
	font-family: "Kokoro", serif;
	padding: 0 clamp(30px, 2vw, 40px);
	background-image: url('../images/recruit_advantages_h3_l.svg'),url('../images/recruit_advantages_h3_r.svg');
	background-position: bottom 35% left, bottom 35% right;
	background-repeat: no-repeat;
	background-size: auto clamp(25px, 1.7vw, 33px);
}
.recruit_advantages .box .flex{
	align-items: center;
	justify-content: center;
}
.recruit_advantages .box .flex img{
	height: clamp(100px, 7.3vw, 140px);
	width: auto;
	margin-right: clamp(15px, 1.6vw, 30px);
}
.recruit_advantages .box .txt p{
	font-size: var(--fontsize-18);
	line-height: 2;
}
.recruit_advantages .box .txt p small{
	font-size: var(--fontsize-16);
	display: block;
}
.recruit_advantages .box .txt p span{
	display: inline-block;
	margin-right: 10px;
	padding: 3px 8px;
	color: #fff;
	background-color: #F17072;
	border-radius: 5px;
	line-height: 1.5;
}
.recruit_advantages .box .txt p span:nth-of-type(2){
	background-color: #949ADB;
}
.recruit_advantages .box .txt p span:nth-of-type(3){
	background-color: #78AE87;
}
.recruit_advantages_btm{
	position: relative;
	z-index: 1;
	margin-top: -1px;
}
.recruit_advantages_btm img{
	width: 100%;
	height: auto;
	transform: scale(1,-1);
}
.recruit_advantages_btm::before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	padding: clamp(130px, 14.3vw, 275px);
	background-image: url('../images/recruit_advantages_green.png');
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 1;
	pointer-events: none;
}
.recruit_application ul li{
	background-color: #fff;
	border-radius: clamp(15px, 1.6vw, 30px);
	padding: clamp(20px, 2.6vw, 50px) clamp(20px, 4.1vw, 80px);
}
.recruit_application ul li:not(:last-child){
	margin-bottom: clamp(15px, 1.3vw, 25px);
}
.recruit_application ul li .ttl{
	color: var(--main-color);
	font-size: clamp(17px, 1.3vw, 25px);
	padding-left: 1em;
	position: relative;
}
.recruit_application ul li .ttl span{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background-color: var(--main-color);
}
.recruit_application ul li .ttl::before,
.recruit_application ul li .ttl::after{
	background-color: var(--main-color);
}
.recruit_application ul li .box{
	margin-top: clamp(25px, 2.6vw, 50px);
	background-color: #F9F7F6;
	padding: clamp(20px, 2.6vw, 50px) clamp(20px, 3.1vw, 60px);
	border-radius: 15px;
}
.recruit_hyo {
	overflow-x: auto;
}
.recruit_hyo dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #DBDBDB;
	padding-bottom: clamp(15px, 1.3vw, 25px);
}
.recruit_hyo dl:not(:last-child) {
	margin-bottom: clamp(15px, 1.3vw, 25px);
}
.recruit_hyo dl dt {
	width: clamp(120px, 8.3vw, 160px);
	font-weight: 500;
}
.recruit_hyo dl dd {
	width: calc(100% - clamp(120px, 8.3vw, 160px));
}
.recruit_process_top{
	position: relative;
	z-index: 1;
	margin-bottom: -1px;
}
.recruit_process_top img{
	width: 100%;
	height: auto;
}
.recruit_process_top::before{
	content: "";
	position: absolute;
	right: clamp(330px, 25.5vw, 490px);
	bottom: 0;
	padding: clamp(40px, 2.6vw, 50px);
	background-image: url('../images/recruit_process_top_piyo.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	animation: hurueru2 3s infinite;
	pointer-events: none;
}
.recruit_process_top::after{
	content: "";
	position: absolute;
	right: clamp(50px, 14.6vw, 280px);
	bottom: clamp(30px, 2vw, 40px);
	padding: clamp(80px, 5.2vw, 100px);
	background-image: url('../images/recruit_process_top_ashi.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}
.recruit_process{
	background-color: var(--mainsub-color);
}
.recruit_process .inner{
	position: relative;
	padding: clamp(35px, 3.4vw, 65px) 0;
}
.recruit_process .inner::after{
	content: "";
	position: absolute;
	left: 0;
	top: calc(clamp(80px, 8.6vw, 165px) * -1);
	padding: clamp(100px, 8.6vw, 165px);
	background-image: url('../images/recruit_process_huwa.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	animation: cloud-y 2.5s ease-in-out infinite alternate-reverse;
	z-index: 1;
}
.recruit_process .flow_list{
	display: grid;
	gap: clamp(20px, 1.6vw, 30px);
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: clamp(40px, 2.9vw, 55px);
}
.recruit_process .flow_list li{
	margin-top: clamp(20px, 2vw, 40px);
	position: relative;
	z-index: 0;
}
.recruit_process .flow_list li:nth-child(1){
	z-index: 2;
}
.recruit_process .flow_list li:nth-child(2){
	z-index: 1;
}
.recruit_process .flow_list li::before{
	content: "";
	position: absolute;
	left: calc(clamp(8px, 0.8vw, 15px) * -1);
	bottom: calc(clamp(8px, 0.8vw, 15px) * -1);
	width: 100%;
	height: 100%;
	border-radius: 30px;
	background-color: #FEE1E4;
	z-index: 0;
}
.recruit_process .flow_list li:not(:last-child)::after{
	content: "";
	position: absolute;
	top: 50%;
	right: calc(clamp(15px, 1vw, 20px) * -1);
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background-image: url('../images/recruit_process_arrow.svg');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 1;
}
.recruit_process .flow_list li > div{
	padding: clamp(40px, 3.6vw, 70px)  clamp(20px, 1.3vw, 25px) clamp(20px, 1.6vw, 30px);
	background-color: #fff;
	border-radius: 30px;
	position: relative;
	z-index: 2;
	height: 100%;
}
.recruit_process .flow_list li span{
	width: clamp(50px, 4.1vw, 80px);
	height: clamp(50px, 4.1vw, 80px);
	border-radius: 40px;
	background-color: #F598A3;
	color: #fff;
	font-size: clamp(25px, 1.7vw, 33px);
	display: grid;
	place-content: center;
	place-items: center center;
	position: absolute;
	left: 50%;
	top: calc(clamp(20px, 2vw, 40px) * -1);
	transform: translateX(-50%);
}
.recruit_process .flow_list li h3{
	text-align: center;
	font-size: var(--fontsize-25);
	padding-bottom: clamp(10px, 1vw, 20px);
	margin-bottom: clamp(10px, 1vw, 20px);
	border-bottom: 1px dotted #896D54;
	color: var(--main-color);
}
.recruit_process .tac{
	font-size: var(--fontsize-18);
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.recruit_process .link_list{
	display: grid;
	gap: clamp(20px, 1.6vw, 30px);
	grid-template-columns: repeat(2, 1fr);
}
.recruit_process .link_list a{
	display: block;
	background-color: #fff;
	width: 100%;
	text-align: center;
	font-size: clamp(17px, 1.3vw, 25px);
	transition: all ease 0.5s;
	padding: clamp(15px, 1.3vw, 25px);
	border-radius: 50px;
	position: relative;
	z-index: 1;
	border: 3px dotted #BEA188;
}
.recruit_process .link_list a:hover{
	background-color: #BEA188;
	color: #fff;
}
.recruit_process .link_list a svg{
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	height: calc(100% - 20px);
	width: auto;
}
.recruit_process .link_list a svg path,
.recruit_process .link_list a svg circle{
	transition: all ease 0.5s;
}
.recruit_process .link_list a:hover svg path{
	fill: var(--main-color);
}
.recruit_process .link_list a:hover svg circle{
	fill: #fff;
}
.recruit_btm_slider{
	position: relative;
	z-index: 0;
}
.recruit_btm_slider .img{
	position: absolute;
	left: 0;
	top: -1px;
	display: block;
	width: 100vw;
	height: auto;
	z-index: 1;
}
.recruit_btm_slider .img:nth-of-type(2){
	top: auto;
	bottom: -1px;
}
.recruit_btm_slider .img img{
	width: 101%;
	height: auto;
}
.recruit_btm_slider ul{
	margin-bottom: 0;
}
/* 
 採用サブ
----------------------------------------------------------- */
.recruit_sub_fv{
	background-image: url('../images/recruit_sub_fv.svg');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	height: clamp(120px, 15.6vw, 300px);
}
.recruit_sub_footer{
	background-image: url('../images/recruit_sub_footer_bg.svg');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}
.recruit_sub .inner{
	padding: 20px 0 0;
}
/* 
 採用エントリー
----------------------------------------------------------- */
.entry{
	overflow: inherit !important;
}
.entry_area .recruit_h2{
	margin-bottom: 20px;
}
.entry_area .box{
	padding: clamp(20px, 4.1vw, 80px);
	background-color: #fff;
	border-radius: clamp(15px, 1.6vw, 30px);
	box-shadow: 0px 3px 30px 0px rgba(132, 36, 66, 0.08);
	margin-top: clamp(60px, 4.1vw, 80px);
	position: relative;
}
.entry_area .box::before{
	content: "";
	position: absolute;
	left: 50%;
	top: calc(clamp(40px, 3.1vw, 60px) * -1);
	transform: translateX(-50%);
	padding: clamp(30px, 2.2vw, 42px);
	background-image: url('../images/entry_area_piyo.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 2;
}
.entry_area .box .wpcf7{
	width: min(100%,800px);
	margin: 0 auto;
}
.entry_area .wpcf7 dl{
	display: block;
}
.entry_area .wpcf7 dl:not(:last-of-type){
	padding-bottom: 0;
	border-bottom: none;
}
.entry_area .wpcf7 dt{
	margin-bottom: 10px;
	font-size: var(--fontsize-15);
}
.entry_area .wpcf7 dt,
.entry_area .wpcf7 dd{
	width:100%;
}
.entry_area .wpcf7 dt span{
	background-color: transparent;
	padding: 0;
	font-size: 12px;
	color: #E43836;
	margin-left: 10px;
}
.entry_area .wpcf7-text,
.entry_area .wpcf7-select {
	border-radius: 3px;
	border: 1px solid #E3D7C9;
}
.entry_area .birth > p{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.entry_area .birth > p .wpcf7-select{
	width: 150px;
}
.entry_area .birth > p small{
	padding: 0 10px;
}
.entry_area .check .wpcf7-checkbox{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.entry_area .check .wpcf7-list-item{
	width: 49%;
	display: block;
	background-color: #FFF;
	max-width: 100%;
	border: 1px solid #E3D7C9;
	margin-right: 0;
	border-radius: 3px;
}
.entry_area .check .wpcf7-list-item label{
	width: 100%;
	height: 100%;
	display: block;
	padding: 5px 10px;
}
.entry_area .wpcf7 dd p .wpcf7-form-control-wrap:not(:first-of-type){
	margin-top: 0 !important;
}
/* 
 採用フッター
----------------------------------------------------------- */
.page-id-368 .top_back{
	bottom: 15px;
}
.recruit_footer {
	background-color: var(--sub-color);
}
.recruit_footer .inner{
	padding: clamp(30px, 7.8vw, 150px) 0 clamp(60px, 4.1vw, 80px);
	width: min(90%,1080px);
}
.recruit_footer img{
	height: clamp(40px, 2.6vw, 50px);
	width: auto;
	margin: 0 auto clamp(20px, 2vw, 40px);
}
.recruit_footer ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.recruit_footer ul:first-of-type{
	margin-bottom: clamp(20px, 2vw, 40px);
}
.recruit_footer ul li{
	margin: 0 clamp(15px, 1.3vw, 25px);
}
.recruit_footer ul:first-of-type li a{
	transition: all ease 0.5s;
}
.recruit_footer ul:first-of-type li a:hover{
	color: var(--main-color);
}
.recruit_footer .link_list li{
	width: min(100%,300px);
	margin: 0 8px;
}
.recruit_footer .copy{
	text-align: center;
	font-size: 14px;
	color: #fff;
	background-color: #C4AB98;
	padding: 0 10px 2px;
}
@media screen and (max-width: 1100px) {
	/* 
	 採用ヘッダー
	----------------------------------------------------------- */
	.recruit_navwrap > ul {
		display: none;
	}
	.spnavbtn {
		right:15px;
	}
	/* 
	 採用TOP
	----------------------------------------------------------- */
	.recruit_slider{
		width: 95%;
	}
	.recruit_fv .txt{
		width: 100%;
		margin-top: 40px;
		place-content: start;
		place-items: center left;
		padding: 0 10% 80px;
	}
	.recruit_fv .txt h1 img{
		width: auto;
		height: 115px;
	}
	.recruit_fv_btm::before{
		left: 5%;
	}
	.recruit_fv_btm::after{
		right: 5%;
	}
	.recruit_message .box::before{
		right: 27%;
	}
	.recruit_advantages ul{
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width:820px) {
	/* 
	 採用TOP
	----------------------------------------------------------- */
	.recruit_fv .txt h1 img{
		height: 90px;
	}
	.recruit_advantages ul{
		grid-template-columns: repeat(2, 1fr);
	}
	.recruit_advantages ul::before{
		right: 0px;
		bottom: 40px;
	}
	.recruit_advantages .inner::before{
		left: -3%;
	}
	.recruit_advantages .inner{
		padding-bottom: 40px;
	}
	.recruit_advantages ul::after{
		right: 220px;
		bottom: -20px;
	}
	.recruit_process_top::after{
		right: 5%;
	}
	.recruit_process_top::before{
		right: 200px;
	}
	/* 
	 採用エントリー
	----------------------------------------------------------- */
	.entry_area .birth > p .wpcf7-select{
		width: 130px;
	}
	/* 
	 採用フッター
	----------------------------------------------------------- */
	.recruit_footer .link_list li{
		width: 250px;
	}
}
@media screen and (max-width:640px) {
	/* 
	 採用TOP
	----------------------------------------------------------- */
	.recruit_fv .txt{
		margin-top: 30px;
		padding: 0 8% 80px;
	}
	.recruit_fv .txt h1 img{
		height: 70px;
	}
	.recruit_fv_btm::before{
		padding: 50px;
	}
	.recruit_fv_btm::after{
		padding: 80px;
	}
	.recruit_message::before{
		padding: 140px;
	}
	.recruit_advantages::after{
		padding: 140px;
		top: -80px;
	}
	.recruit_advantages .inner::before{
		left: -5%;
		top: -50px;
		padding: 90px;
	}
	.recruit_advantages ul{
		grid-template-columns: repeat(1, 1fr);
	}
	.recruit_advantages ul li:nth-child(even){
		margin-top: 0;
	}
	.recruit_advantages ul::before,
	.recruit_advantages ul::after{
		display: none;
	}
	.recruit_advantages .box .flex img{
		margin: 0 auto 10px;
	}
	.recruit_advantages ul li p{
		text-align: justify;
	}
	.recruit_hyo dl dt {
		width: 100%;
	}
	.recruit_hyo dl dd {
		width: 100%;
	}
	.recruit_process_top::after{
		padding: 60px;
	}
	.recruit_process_top::before{
		right: 140px;
		padding: 35px;
	}
	.recruit_process .inner::after{
		padding: 70px;
	}
	.recruit_process .flow_list{
		grid-template-columns: repeat(1, 1fr);
	}
	.recruit_process .flow_list li:not(:last-child)::after{
		top: auto;
		bottom: -15px;
		right: auto;
		left: 50%;
		transform: translate(-50%,0) rotate(90deg);
	}
	.recruit_process .tac{
		text-align: justify;
	}
	.recruit_process .link_list{
		grid-template-columns: repeat(1, 1fr);
	}
	.recruit_advantages .box .txt p small{
		line-height: 1.3;
	}
	/* 
	 採用エントリー
	----------------------------------------------------------- */
	.entry_area .check .wpcf7-list-item{
		width: 100%;
	}
	.entry_area .birth > p small{
		padding: 0 5px;
	}
	.entry_area .birth > p .wpcf7-select{
		width: 75px;
	}
	/* 
	 採用フッター
	----------------------------------------------------------- */
	.recruit_footer .inner{
		padding-bottom: 30px;
	}
	.recruit_footer ul:first-of-type{
		display: none;
	}
	.recruit_footer ul li{
		width: 100%;
	}
	.recruit_footer ul li a{
		margin: 0 auto;
	}
	.recruit_footer ul li:not(:last-child){
		margin-bottom: 20px;
	}
	.recruit_footer .copy{
		padding-bottom: 80px;
	}
}