@charset "utf-8";

/* ----------------------------------------------------------------------
 追加CSS
---------------------------------------------------------------------- */

/* ------------------------------------------------
 TOP
------------------------------------------------ */
/* メニューブロック */
.top_menu{
	width: 800px;
	margin: auto;
}
.top_menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 10px;
}
.top_menu ul li{
	position: relative;
}
.top_menu ul li a{
	background-color: #009fa9;
	color: #fff;
	text-decoration: none;
	width: 260px;
	display: block;
	text-align: center;
	padding: 20px 20px;
}
.top_menu ul li a:hover{
	opacity: 0.999;
	color: #009fa9;
	text-decoration: none;
}
.top_menu ul li::before {
	content: "";
	background: url(https://www.mente-s.jp/recruit/wp-content/uploads/2025/12/arrow.png) no-repeat center;
	background-size: 100%;
	border-width: inherit;
	border-style: none;
	position: absolute;
	width: 41px;
	height: 20px;
	top: auto;
	bottom: 10px;
	right: 15px;
	transform: inherit;
}
.top_menu ul li a::before {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform: scale(0, 1);
	transform-origin: right top;
	background: #fff;
	content: "";
	transition: transform 0.3s;
}
.top_menu ul li a:hover::before {
	transform: scale(1, 1);
	transform-origin: left top;
}

@media screen and (max-width:750px){
	.top_menu{
		width: 100%;
	}
	.top_menu ul li{
		width: 47%;
	}
	.top_menu ul li a{
		width: 100%;
        display: block;
	}
}

/* よくある質問、募集要項、LINE応募 */
ul.entry-links{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
ul.entry-links .entry-links-item{
	width: calc(100% / 3);
	text-align: center;
}
ul.entry-links .entry-links-item a {
	height: 440px;
	color: rgb(225 159 45);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.3;
	text-decoration: none;
}
ul.entry-links .entry-links-item a span.entry-links-main{
	font-size: 200%;
	font-weight: 600;
}
ul.entry-links .entry-links-item a span.entry-links-sub{
	font-size: 115%;
}
ul.entry-links .entry-links-item:nth-child(2) a{
	background-color: rgb(237, 167, 47);
	color: #fff;
}
ul.entry-links .entry-links-item:nth-child(3) a{
	background-color: rgb(191, 232, 69);
	color: #fff;
}
ul.entry-links .entry-links-item a:hover{
	background-color: rgb(160 209 12);
	color: #fff;
}
ul.entry-links .entry-links-item:nth-child(3) a:hover{
	background-color: rgb(229 153 21);
}

@media screen and (max-width:750px){
	ul.entry-links{
		flex-direction: column;
	}
	ul.entry-links .entry-links-item{
		width: 100%;
	}
	ul.entry-links .entry-links-item a{
		height: 144px;
		line-height: 1;
	}
	ul.entry-links .entry-links-item a span.entry-links-main{
		font-size: 160%;
	}
}

/* ------------------------------------------------
 フッター
------------------------------------------------ */
/* foot-pop */
#foot-pop{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 560px;
	z-index: 100;
	transition: all .4s;
}
#foot-pop ul{
	display: flex;
	flex-wrap: wrap;
}
#foot-pop ul li{
	width: 280px;
	background: #06C654;
}
#foot-pop ul li:nth-child(1){
	background: #06C654;
	border-top-left-radius: 20px;
}
#foot-pop ul li:nth-child(2){
	background: rgb(237,167,47);
	border-top-right-radius: 20px;
}
#foot-pop ul li a{
	color: #fff;
	font-weight: 600;
	padding: 17px 30px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#foot-pop ul li a img{
	width: 23px;
	margin: 0 13px 0 0;
}
#foot-pop ul li a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	background: url(https://www.mente-s.jp/recruit/wp-content/uploads/2025/12/foot-pop_arrow.png) no-repeat center;
	background-size: contain;
	transition: all .4s;
}
#foot-pop ul li a:hover::after{
	right: 10px;
}

@media screen and (max-width:750px){
	#foot-pop{
		width: 100%;
	}
	#foot-pop ul li{
		width: 50%;
	}
	#foot-pop ul li:nth-child(1){
		border-top-left-radius: 0;
	}
	#foot-pop ul li:nth-child(2){
		border-top-right-radius: 0;
	}
	#foot-pop ul li a{
		padding: 13px 13px;
	}
	#foot-pop ul li a::after{
		width: 13px;
		height: 13px;
	}
}

/* return_top */
@media screen and (max-width: 1100px) {
	#return_top.active {
		bottom: 64px;
	}
}

/* copyright */
#copyright{
	padding-bottom: 100px;
}