@charset "UTF-8";
* {
	box-sizing: border-box;
	overflow-wrap: break-word
}

/*--- CSS Variables ---*/
:root {
	/* color */
	--color-primary: #f2b15a;
	--color-secondary: #dcbfa3;
	--color-bg: #fff;
	--color-fg: #4c4842;
	--color-accent: #7d766c;
	--color-gradient: #f2b15a, #f2b15a;
}

/*--- base ---*/
html { 
	width: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%
}
body {
	font-family: "Noto Sans JP", sans-serif;
	background: var(--color-bg);
	font-size: clamp(0.875rem, 0.82rem + 0.22vw, 1rem);
	line-height: 1.6;
	color: var(--color-fg);
	font-weight: 500;
}
body::before {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../img/recruit/bg_rec.jpg') no-repeat 0 0;
	background-size: cover;
	z-index: -1;
	}
img { width: 100%;	vertical-align:top;}
a {
	-webkit-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s;
	color: #000;
}
/* base */
section#point,
section#simulation{
	padding-top: 3%;
}

.section_inner {
	width: 100%;
	max-width: 700px;
	padding: 50px 0;
	margin: 0 auto;
}
h2 {
	position: relative;
	font-size: clamp(1.6rem, 3.5vw + 1rem, 2rem);
	font-family: "Reddit Sans", sans-serif;
	font-weight: 500;
	text-align: center;
	line-height: 1.25;
	letter-spacing: .1em;
	min-width: 10em;
	width: fit-content;
	max-width: 15em;
	margin: 0 auto;
	z-index: 0;
}
h2.mb30 {
	margin-bottom: 40px;
}
h2 span{
	letter-spacing: 0.2em;
	font-size: 0.5em;
	color: var(--color-primary);
	display: block;
}
h2>img {
	max-width: 640px
}
.m10  { margin: 10px; } .mt10 { margin-top: 10px; } .mr10 { margin-right: 10px; } .mb10 { margin-bottom: 10px; } .ml10 { margin-left: 10px; }
.m15  { margin: 15px; } .mt15 { margin-top: 15px; } .mr15 { margin-right: 15px; } .mb15 { margin-bottom: 15px; } .ml15 { margin-left: 15px; }
.m20  { margin: 20px; } .mt20 { margin-top: 20px; } .mr20 { margin-right: 20px; } .mb20 { margin-bottom: 20px; } .ml20 { margin-left: 20px; }
.m25  { margin: 25px; } .mt25 { margin-top: 25px; } .mr25 { margin-right: 25px; } .mb25 { margin-bottom: 25px; } .ml25 { margin-left: 25px; }
.m30  { margin: 30px; } .mt30 { margin-top: 30px; } .mr30 { margin-right: 30px; } .mb30 { margin-bottom: 30px; } .ml30 { margin-left: 30px; }
.m35  { margin: 35px; } .mt35 { margin-top: 35px; } .mr35 { margin-right: 35px; } .mb35 { margin-bottom: 35px; } .ml35 { margin-left: 35px; }
.m40  { margin: 40px; } .mt40 { margin-top: 40px; } .mr40 { margin-right: 40px; } .mb40 { margin-bottom: 40px; } .ml40 { margin-left: 40px; }
.m45  { margin: 45px; } .mt45 { margin-top: 45px; } .mr45 { margin-right: 45px; } .mb45 { margin-bottom: 45px; } .ml45 { margin-left: 45px; }
.m50  { margin: 50px; } .mt50 { margin-top: 50px; } .mr50 { margin-right: 50px; } .mb50 { margin-bottom: 50px; } .ml50 { margin-left: 50px; }
.p10  { padding: 10px; } .pt10 { padding-top: 10px; } .pr10 { padding-right: 10px; } .pb10 { padding-bottom: 10px; } .pl10 { padding-left: 10px; }
.p15  { padding: 15px; } .pt15 { padding-top: 15px; } .pr15 { padding-right: 15px; } .pb15 { padding-bottom: 15px; } .pl15 { padding-left: 15px; }
.p20  {padding: 20px;} .pt20 { padding-top: 20px; } .pr20 { padding-right: 20px; } .pb20 { padding-bottom: 20px; } .pl20 { padding-left: 20px; }
.p25  { padding: 25px; } .pt25 { padding-top: 25px; } .pr25 { padding-right: 25px; } .pb25 { padding-bottom: 25px; } .pl25 { padding-left: 25px; }
.p30  { padding: 30px; } .pt30 { padding-top: 30px; } .pr30 { padding-right: 30px; } .pb30 { padding-bottom: 30px; } .pl30 { padding-left: 30px; }
.p35  { padding: 35px; } .pt35 { padding-top: 35px; } .pr35 { padding-right: 35px; } .pb35 { padding-bottom: 35px; } .pl35 { padding-left: 35px; }
.p40  { padding: 40px; } .pt40 { padding-top: 40px; } .pr40 { padding-right: 40px; } .pb40 { padding-bottom: 40px; } .pl40 { padding-left: 40px; }
.p45  { padding: 45px; } .pt45 { padding-top: 45px; } .pr45 { padding-right: 45px; } .pb45 { padding-bottom: 45px; } .pl45 { padding-left: 45px; }
.p50  { padding: 50px; } .pt50 { padding-top: 50px; } .pr50 { padding-right: 50px; } .pb50 { padding-bottom: 50px; } .pl50 { padding-left: 50px; }
/* flexbox */
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}
.flex_harf{
	width: 50%;
}
.flex_inner50-100 {
	width: 50%
}
.ai_center {
	align-items: center;
}
.ai_end {
	align-items: flex-end
}
/* SP style */
@media print, screen and (max-width:767px) {
}
/* PC style */
@media print, screen and (min-width:768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* header */
header{
	background:none;
	position: relative;
	z-index: 999;
}
h1.rec_logo{
	width: auto;
	height: 60px;
	font-size: 0;
}
h1 span{
	display: block;
	width: 10vw;
	position: absolute;
	left: 5vw;
	top: 5vh;
	z-index: 5;
}
h1.rec_logo img {
	width: auto;
	height: 100%;
}
#sp_header{
	position: fixed;
	top: 0;
	width: 100%;
	height: 56px;
	z-index: 2;
	background: #FFF;
	z-index: 9999;
	justify-content: flex-end;
	align-items: center;
}
/* SP style */
@media print, screen and (max-width:767px) {
	.pc_view { display: none}
	.sp_view {display: block}
	header{
		height: auto;
		background: #e9e2e9;
	}
	header > img {
		padding-top: 60px;
	}
	h1.rec_logo {
		position: fixed;
		left: 5px;
		z-index: 99999;
	}
	h1.rec_logo a {
		display: -webkit-box;
		display: flex;
		-webkit-box-align: center;
		align-items: center;
		height: 56px;
	}
	.section_inner {
		padding: 30px 10px;
	}
	.recruitpage h2 {
		font-size: 2rem;
		margin-bottom: 25px
	}
	.flex_inner50-100 {
		width: 100%
	}
	h1 span{
		width: 16vw;
		left: 3vw;
	}
	.rec_logo:after{
		border-width: 55vh 28vw 0 0;
	}
	#spMenu {
		background: var(--color-primary);
		position: fixed;
		top: 0;
		right: 0;
		width: 56px;
		height: 56px;
		z-index: 10000;
	}
	#spMenu span {
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 70%;
		height: 2px;
		background: #FFF;
		transition: all .4s;
	}
	#spMenu span:nth-of-type(1) {
		top: 15px;
	}
	#spMenu span:nth-of-type(2) {
		top: 27px;
	}
	#spMenu span:nth-of-type(3) {
		bottom: 15px;
	}
	#spMenu.active {
	}
	#spMenu.active span:nth-of-type(1) {
		transform: translateY(12px) rotate(-315deg);
	}
	#spMenu.active span:nth-of-type(2) {
		opacity: 0;
	}
	#spMenu.active span:nth-of-type(3) {
		transform: translateY(-12px) rotate(315deg);
	}
	#sp_header-logo{
		height: auto;
		width: 200px;
		padding-left: 60px;
		font-size: 0;
	}
	#header_globalnavi {
		display: none;
		position: fixed;
		top: 54px;
		left: 0;
		right: 0;
		bottom: 45px;
		background: rgba(255,255,255,.9);
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		z-index: 999;
	}
	#header_globalnavi ul {
		flex-direction: column;
		height: calc(100vh - 120px);
		justify-content: center;
	}
	#header_globalnavi ul li + li {
		margin-top: 15px;
	}
	#header_globalnavi ul li a {
		display: block;
		text-align: center;
		color: var(--color-primary);
	}
	#header_globalnavi ul li a span {
		display: none;
		font-size: .75em;
		margin-top: 5px;
	}
	#sp_header ul{
	}
	#sp_header ul li {
		list-style: none;
		text-align: center;
		padding: 0px 5px;
	}
	#sp_header ul li:last-child {
		border-right: none;
	}
	#sp_header .btn{
		display: block;
		background-size: contain;
		white-space: nowrap;
		overflow: hidden;
		margin: 0 auto;
	}
	#sp_header li a i {
		display: block;
		font-size: 4rem;
		position: relative;
	}
	.sp_header-tel i {
		color: #000;
	}
	.sp_header-line i {
		color: #06c755;
	}
	.sp_header-mail i {
		color: #000;
	}
	#sp_header li a i::after {
		content: "";
		display: block;
		width: 30px;
		height: 30px;
		background: #fff;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		z-index: -1;
	}
}
/* PC style */
@media print, screen and (min-width:768px) {
	.pc_view {display: block}
	.sp_view {display: none}
	.section_inner {
		padding: 50px 10px;
	}
	/*--- header ---*/
	#spMenu {
		display: none;
	}
	header > img {
		padding-top: 80px;
	}
	.header_inner {
		justify-content: space-around;
		height: 80px;
	}
	.header_inner nav ul li a {
		align-items: center;
		flex-direction: column;
		justify-content: center;
		font-size: .8em;
		height: 80px;
		padding: 0 5px;
	}
	#header_nav ul li a span {
		display: block;
		font-size: .8em;
		line-height: 1.25;
	}
	#header_nav ul li a:hover {
		color: #699bd7;
	}
	.header_inner {
		position: fixed;
		margin: 0 auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		background: #FFF;
	}
	#sp_header{
		display: none;
	}
	figure{
		padding-top: 80px;
	}
	.globalnavi {
		overflow: hidden;
		width: calc(100% - 200px);
		max-width: 800px;
		z-index: 1;
	}
	.globalnavi ul {
	}
	.globalnavi li {
		position: relative;
		height: 80px;
		text-align: center;
		width: calc(100% / 5);
	}
	.globalnavi li a {
		width: 100%;
		height: 80px;
		line-height: 1.5;
		transition: .5s color;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	.globalnavi li a > span.flex {
		flex-direction: column;
		justify-content: center;
		height: 100%;
	}
	.globalnavi li a span.serif {
		display: block;
		font-size: 1em;
	}
	.globalnavi li a:hover {
		color: var(--color-primary);
	}
	.globalnavi li.salespage a:before {
		content: '';
		position: absolute;
		top: 10px;
		left: 10px;
		right: 10px;
		bottom: 10px;
		border: 1px solid;
		border-radius: 10px;
		pointer-events: none;
	}
}

/*footer*/
footer {
	text-align: center;
	margin-bottom: 100px;
}
.rec_footer_link a {
	display: inline-block;
	margin: 5px;
}
.rec_footer_link a img {
	width: 100%;
	max-width: fit-content;
	height: auto;
}
.copyright {
	margin-top: 20px;
}


/*--- MV ---*/
.mv {
	max-width: 700px;
	margin: 0 auto;
}

/*about*/
#about .section_inner {
	background: #FFF;
}
#about{
	text-align: center;
}
.rec_about_box p {
	font-size: 1.1em;
	padding: 0 1em;
	letter-spacing: 0.15em;
}
.rec_about_box p:not(:last-of-type){
	margin-bottom: 0.8em;
}
.rec_about_box .txt_rec_fade {
	line-height: 1.8;
	letter-spacing: 0.15em;
}
.rec_about_box .txt_rec_fade strong {
	font-weight: 700;
	border-bottom: 1px solid #000;
}



/*rec_slider*/
#rec_slider .section_inner {
	padding: 0;
}


/*reward*/
#reward .section_inner {
	background: url('../img/recruit/reward_bg.jpg') no-repeat top left;
	background-size: cover;
}
.reward_example {
	max-width: 600px;
	margin: 0 auto;
	background: rgb(255 255 255 / 80%);
	padding: 20px;
	border: 3px solid #ffe29b;
	border-radius: 15px;
}
.reward_example h3 {
	text-align: center;
	font-size: clamp(1.2rem, 0.525rem + 3.38vw, 2rem);
	font-weight: bold;
	margin-bottom: 20px;
}
.reward_example dl {
	align-items: center;
	justify-content: flex-start;
	font-size: clamp(1rem, 0.325rem + 3.38vw, 1.8rem);
	color: var(--color-primary);
	margin: 0 auto;
	width: 100%;
	max-width: 460px;
}
.reward_example dl + dl {
	margin-top: 10px;
}
.reward_example dl dt {
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: .8em;
	line-height: 1.2;
	width: 6em;
	height: auto;
	border: 1px solid;
	margin-right: 10px;
	padding: 5px;
}
.reward_example dl dd {
	font-weight: bold;
}
.reward_example dl dt span,
.reward_example dl dd span {
	font-size: 1.4em;
	font-weight: bold;
}
.reward_txt p.txt_box {
	position: relative;
	width: fit-content;
	margin: 20px auto;
	padding: 1em;
	font-size: clamp(1rem, 0.831rem + 0.84vw, 1.2rem);
	line-height: 1.8;
	background: #ffe96e;
}
.reward_txt p.reward_catch {
	font-size: clamp(1rem, 0.662rem + 1.69vw, 1.4rem);
	text-align: center;
	color: #ff7070;
	font-weight: bold;
	margin-bottom: 10px;
	width: 100%;
}

/*special_treatment*/
#special_treatment .point {
	margin-top: 30px;
}
#special_treatment .point > div {
	width: fit-content;
	margin: 0 auto;
}
#special_treatment .point dl {
	flex-direction: row;
	align-items: center;
	font-size: 1.2em;
	line-height: 1.25;
	margin-bottom: 20px;
}
#special_treatment .point dl dt {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #FFF;
	background: var(--color-primary);
	padding: 0 15px;
	margin: 0 auto;
	width: 80px;
	height: auto;
	aspect-ratio: 1/1;
	font-size: 1.5em;
	line-height: 1;
	text-align: center;
	border-radius: 20%;
}
#special_treatment .point dl dt span {
	display: block;
	font-size: .5em;
}
#special_treatment .point dl dd {
	font-weight: 700;
	line-height: 1.5;
	width: calc(100% - 100px);
	margin-left: 20px;
}
#special_treatment .point dl dd ruby {
	font-size: 1.2em;
	color: var(--color-primary);
	font-weight: 800;
}
#special_treatment ul.treatment {
	max-width: 500px;
	margin: 0 auto;
}
#special_treatment ul.treatment li {
	align-items: center;
	justify-content: center;
	width: calc(100% / 4 - 10px);
	height: auto;
	aspect-ratio: 1/1;
	color: #699bd7;
	text-align: center;
	background: #FFF;
	margin: 4px 5px;
	border: 2px solid;
	border-radius: 50%;
}
.treatment li:nth-child(2) {animation-delay: .1s}
.treatment li:nth-child(3) {animation-delay: .2s}
.treatment li:nth-child(4) {animation-delay: .3s}
.treatment li:nth-child(5) {animation-delay: .4s}
.treatment li:nth-child(6) {animation-delay: .5s}
.treatment li:nth-child(7) {animation-delay: .6s}
.treatment li:nth-child(8) {animation-delay: .7s}
.treatment li:nth-child(9) {animation-delay: .8s}
.treatment li:nth-child(10) {animation-delay: .9s}
.treatment li:nth-child(11) {animation-delay: 1s}
.treatment li:nth-child(12) {animation-delay: 1.1s}
#special_treatment ul.treatment li i {
	text-align: center;
	opacity: .2;
	font-size: 3rem;
}
#special_treatment ul.treatment li span {
	position: absolute;
	font-weight: 700;
	line-height: 1.2;
}



/*example*/
#example .section_inner {
	padding-bottom: 0;
}
.example_wrapper {

}
.case-box {
	background: var(--color-primary);
	border-radius: 12px;
	margin-bottom: 30px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
	display: flex;
	gap: 20px;
}
.left {
	width: 30%;
	position: relative;
}
.left .silhouette {
	position: absolute;
	left: 0;
	bottom: 0;
	width: fit-content;
}
.left .badge {
	position: absolute;
	top: 5px;
	left: 5px;
	background: #ffe96e;
	padding: 5px 15px;
	border-radius: 50px;
	font-weight: bold;
	z-index: 2;
}
.right {
	flex: 1;
	padding: 15px;
	z-index: 1;
}
.title {
	font-size: clamp(1.2rem, 0.695rem + 2.53vw, 1.8rem);
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.work-time {
	background: #555;
	color: #fff;
	padding: 6px 12px;
	display: inline-block;
	border-radius: 6px;
	width: 100%;
	margin-bottom: 10px;
}
.price {
	background: #FFF;
	padding: 15px;
	border-radius: 8px;
	font-size: 26px;
	font-weight: bold;
	margin-top: 5px;
}
.price dl {
	align-items: flex-end;
	justify-content: space-between;
	font-size: clamp(1.2rem, 0.863rem + 1.68vw, 1.6rem);
}
.price dl dt {
	
}
.price dl dd {
	
}
.price dl.total {
	color: var(--color-primary);
	border-top: 1px solid #999;
}
.price dl.total dd {
	font-weight: bold;
}


/* recommend */
#recommend .section_inner {
}
#recommend ul {
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#recommend ul li {
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
	text-align: center;
	font-size: clamp(0.8rem, 0.125rem + 3.38vw, 1.6rem);
	color: var(--color-primary);
	font-weight: bold;
	width: calc(100% / 3 - 5px);
	height: auto;
	aspect-ratio: 1/1;
	border-left: 5px double;
	border-right: 5px double;
	border-bottom: 15px double;
	border-radius: 50%;
	margin-top: 10px;
}
#recommend ul li img {
	position: absolute;
	top: 0;
	width: 25%;
	height: 25%;
	background: var(--color-primary);
	border: 4px solid;
	border-radius: 50%;
	overflow: hidden;
}
#recommend p {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	height: 4em;
	font-weight: 600;
	line-height: 1.5;
}
#recommend ul li:nth-child(2) {animation-delay: .1s; filter: hue-rotate(30deg);}
#recommend ul li:nth-child(3) {animation-delay: .2s; filter: hue-rotate(60deg);}
#recommend ul li:nth-child(4) {animation-delay: .3s; filter: hue-rotate(90deg);}
#recommend ul li:nth-child(5) {animation-delay: .4s; filter: hue-rotate(120deg);}
#recommend ul li:nth-child(6) {animation-delay: .5s; filter: hue-rotate(150deg);}
#recommend ul li:nth-child(7) {animation-delay: .6s; filter: hue-rotate(180deg);}
#recommend ul li:nth-child(8) {animation-delay: .7s; filter: hue-rotate(210deg);}
#recommend ul li:nth-child(9) {animation-delay: .8s; filter: hue-rotate(240deg);}



/* our_strength */
#our_strength .section_inner {
	background: url('../img/recruit/our_strength_bg.jpg') no-repeat center;
	background-size: cover;
}
#our_strength h2 {
	margin-bottom: 60px;
}
#our_strength p.txt_box {
	font-weight: bold;
	color: var(--color-primary);
	padding: 0;
}
.our_strength {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.our_strength ul {
	counter-reset: number 0;
	margin: 2em;
	width: fit-content;
}
.our_strength ul li + li {
	margin-top: 10px;
}
.our_strength ul li dl dt {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	aspect-ratio: 1/1;
	position: relative;
	width: 80px;
	margin-right: 10px;
	border: 4px solid;
}
.our_strength ul li dl dt:after {
	text-align: center;
	counter-increment: number 1;
	content: counter(number);
}
.our_strength ul li dl dt:before {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	aspect-ratio: 1/1;
	background: url('../img/recruit/our_strength_icon.png') no-repeat center;
	background-size: cover;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: -1;
}
.our_strength ul li dl dd {
	align-items: center;
	line-height: 1.2;
	font-size: clamp(1rem, 0.831rem + 0.84vw, 1.2rem);
	width: calc(100% - 90px);
}
.our_strength p {
	text-align: center;
	padding: 2.5em 1.5em 2em;
	margin: 0 auto;
}



/*flow*/
#flow .section_inner {
	background: #eee;
}
#flow ul.flowlist {
	max-width: 800px;
	margin: 0 auto;
	counter-reset: number 0;
}
#flow ul.flowlist > li {
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 20px;
}
#flow ul.flowlist > li:not(:last-of-type) {
	margin-bottom: 50px;
}
#flow ul.flowlist > li:not(:last-child):after {
	content: "";
	position: absolute;
	border-top: 30px solid var(--color-primary);
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	bottom: -40px;
	left: calc(50% - 30px);
}
#flow ul.flowlist > li .flow_img {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 20px;
	overflow: hidden;
	filter: drop-shadow(5px 5px 0 var(--color-primary));
}
#flow ul.flowlist > li .flow_img img {
	width: 100%;
	height: 100%;
}
#flow ul.flowlist > li div + div {
	width: 100%;
}
#flow ul.flowlist > li div + div h3 {
	align-items: center;
	position: relative;
	font-size: 2.2rem;
	color: var(--color-primary);
	font-weight: 700;
	margin-bottom: 10px;
}
#flow ul.flowlist > li h3 span {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1;
	color: #FFF;
	font-family: "Reddit Sans", sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	width: 80px;
	height: auto;
	aspect-ratio: 1/1;
	background: var(--color-primary);
	margin-right: 10px;
}
#flow ul.flowlist > li h3 span:after {
	counter-increment: number 1;
	content: counter(number);
	display: block;
	font-size: 2.8rem;
	text-align: center;
}
#flow ul.flowlist_info {
	width: calc(100% - 40px);
	background: rgba(255, 255, 255, .8);
	margin: 0 auto;
	padding: 1em;
}
#flow ul.flowlist > li p {
	padding: 10px 20px;
}


/*application*/
.application_wrap {
	margin: 0 auto
}
.application {
	width: 100%;
	margin: 0 auto;
	text-align: left;
}
.application>dt {
	justify-content: center;
	color: #FFF;
	background: var(--color-primary);
	padding: 5px;
	width: 100%;
}
.application>dt:not(:first-of-type) {
	margin-top: 10px;
}
.application>dd {
	width: calc(100% - 20px);
	margin: 0 auto;
	padding: 1em;
}
.application>dd:last-of-type {
	padding-bottom: 0
}
.application .treatment li:before {
	content: '・';
}
.app_contact>dt {
	width: 5em;
	margin-bottom: 10px;
}
.app_contact>dd {
	width: calc(100% - 5em);
	margin-bottom: 10px;
}
.linkbannerrec {
	margin: 0 auto;
	max-width: 320px;
}



/*FAQ*/
.acMenu {
	text-align: left;
	font-weight: 700;
	line-height: 1.5;
	max-width: 680px;
	margin: 0 auto;
	border: 1px solid var(--color-primary);
	border-radius: 15px;
	padding: 15px;
}
.acMenu + .acMenu {
	margin-top: 15px;
}
.acMenu dt,.acMenu dd {
}
.acMenu dt {
	position: relative;
	align-items: center;
	color: var(--color-primary);
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}
.acMenu dt span {
	display: block;
	position: relative;
	padding-left: 30px;
	font-size: 1.2em;
}
.acMenu dt span:before {
	content: 'Q';
	position: absolute;
	margin-right: 5px;
	font-size: 1.5em;
	line-height: 1;
	left: 0;
	top: 0;
}
.acMenu dd {
	position: relative;
	display: block;
	padding-top: 10px;
}
.acMenu dd:not(:last-of-type) {
	margin-bottom: 20px;
}
.acMenu dd span {
	display: block;
	position: relative;
	padding-left: 30px;
}
.acMenu dd span:before {
	content: 'A';
	position: absolute;
	margin-right: 5px;
	font-size: 1.5em;
	text-align: right;
	line-height: 1;
	left: 0;
	top: 0;
}
/* SP style */
@media print, screen and (max-width:767px) {
	.acMenu dt {
	}
}
/* PC style */
@media print, screen and (min-width:768px) {
	.acMenu dt {
	}
}

/* recruit_comment */
#recruit_comment .section_inner {
	background: url('../img/recruit/recruit_comment_bg.jpg') no-repeat;
	background-size: cover;
}
#recruit_comment .txt_box {
	width: fit-content;
	padding: 1em;
	line-height: 1.8;
	position: relative;
}
#recruit_comment div {
	text-align: center;
	position: relative;
}
#recruit_comment div p {
	display: inline-block;
	line-height: 2;
	padding: 20px;
}
/* SP style */
@media print, screen and (max-width:767px) {
}
/* PC style */
@media print, screen and (min-width:768px) {
	#recruit_comment div p {
		font-size: 1.2em;
		text-align: center;
	}
}

/*footer_fixed_nav*/
#footer_fixed_nav {
	position: fixed;
	bottom: 5px;
	width: 100%;
	padding: 0;
	text-align: center;
	z-index: 999;
}
#footer_fixed_nav > div {
	max-width: 700px;
	margin: 0 auto;
}
#footer_fixed_nav a {
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	color: #fff;
	font-weight: 600;
}
#footer_fixed_nav a p {
	font-weight: 600;
}
#footer_fixed_nav a i {
	font-size: 2rem;
	margin-right: 10px;
}
.line-wrap, .mail-wrap, .tel-wrap {
	margin: 0 auto;
	overflow: hidden;
	width: calc(100% / 2 - 5px);
	font-size: 1.2rem;
	border-radius: 10px;
}
.line-id-text, .mailaddress-text, .tel-text {
	font-weight: 700;
}
.line-id-text {
	font-size: 2rem;
}
.mailaddress-text {
	font-size: 1.4rem;
}
.tel-text {
	font-size: 2.5rem
}
.tel-wrap {
	background: var(--color-primary)
}
.line-wrap {
	background: #06c755
}
.mail-wrap {
	background: #3b2820
}



@media screen and (min-width: 1000px) {
	.slider-area {
		overflow: hidden;
	}
	.slick-list {
	}
	.slick-slide {
		max-width: 700px;
		width: 100% !important;
		padding: 10px 5px;
		opacity: .25;
	}
	.slick-current {
		max-width: 700px;
		width: 100% !important;
		margin: auto;
		opacity: 1;
	}
}

.animate__animated {
	opacity: 0;
}
