/* ====================
新着メンズエステ求人情報
===================== */
/* 変数定義 */
:root {
	--main-color: #61d4ca;
}

/* =========================
	セクション全体
========================= */
.f-newRecruitInfo {
	margin: 1rem 0.1rem 1rem;
}

@media (min-width: 835px) {
	.f-newRecruitInfo {
		margin: 20px auto;
	}
}

/* 見出し */
.f-newRecruitInfo > h2 {
	margin-bottom: 1.3rem;
	text-align: center;
	font-size: 1.7rem;
	font-weight: bold;
}

@media (min-width: 835px) {
	.f-newRecruitInfo > h2 {
		margin-bottom: 20px;
		font-size: 20px;
	}
}
/* 【エリアページ】スクリーンリーダー用の見出し */
.sr-only {
	/* 通常のレイアウトフローから外す */
	position: absolute;
	/* 最小サイズにして見えなくする */
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	/* 表示領域を完全に切り取る */
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* タブ */
.f-newRecruitInfo__tabList {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	margin-bottom: 1rem;
}

@media (min-width: 835px) {
	.f-newRecruitInfo__tabList {
		margin-bottom: 10px;
		gap: 9px;
	}
}

.f-newRecruitInfo__tabList > li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 1 0;
	height: 4.9rem;
	background: #f2f2f3;
	border-radius: 0.5rem 0.5rem 0 0;
	font-size: 1.3rem;
}

@media (min-width: 835px) {
	.f-newRecruitInfo__tabList > li {
		height: 50px;
		font-size: 14px;
		border-radius: 5px 5px 0 0;
		cursor: pointer;
	}
}

.f-newRecruitInfo__tabList > li.current {
	background-color: #fff;
	border-top: 0.5rem solid var(--main-color);
	cursor: default;
}

@media (min-width: 835px) {
	.f-newRecruitInfo__tabList > li.current {
		border-top-width: 5px;
	}
}

/* タブ1件のみ */
.f-newRecruitInfo__tabList > li:only-child {
	max-width: none;
	width: 100%;
}

/* タブ内容 */
.f-newRecruitInfo__body {
	display: none;
}
/* タブのテキスト */
.f-newRecruitInfo__tab_words{
	text-align: center;
}

.f-newRecruitInfo__tab_newRecruit{
	font-size: 13px;
	font-weight: bold;
}
@media (max-width: 834px) {
	.f-newRecruitInfo__tab_newRecruit{
		font-size: 1.28rem;
	}
}

.f-newRecruitInfo__tab_time {
	text-align: left;
	line-height: 1.6;
	font-size: 10px;
	letter-spacing: 0;
	color: #A5AAAD;
}
@media (max-width: 834px) {
	.f-newRecruitInfo__tab_time {
		font-size: 0.85rem;
	}
}

.f-newRecruitInfo__body.current {
	display: block;
}

/* 求人リスト：基本 */
.f-newRecruitInfo__shopList {
	padding: 0 1rem;
	/* overflow-y: visible; */
}

/* 求人リスト：スクロール共通 */
/* スクロール領域 */
.f-newRecruitInfo__shopList--scroll {
	max-height: 50vh;
	overflow-x: hidden; 
}

/* トラック（背景） */
.f-newRecruitInfo__shopList--scroll 
.simplebar-track.simplebar-vertical {
	background: #ffffff;
	width: 1rem !important;
	opacity: 1 !important;
	z-index: 10;
}

/* スクロールバー本体 */
.f-newRecruitInfo__shopList--scroll 
.simplebar-scrollbar:before {
	background: #A5AAAD;
	opacity: 1 !important;
	border-radius: 4px;
}

/* スクロールバー操作性 */
.f-newRecruitInfo__shopList--scroll::-webkit-scrollbar {
	width: 12px;
}

.f-newRecruitInfo__shopList--scroll::-webkit-scrollbar-track {
	background: #f5f5f5;
}

.f-newRecruitInfo__shopList--scroll::-webkit-scrollbar-thumb {
	background: #c5c5c5;
	border-radius: 6px;
}


/* =========================
	求人アイテム
========================= */
.f-newRecruitInfo__shopItem {
	padding: 0.8rem 0;
	border-bottom: 1px solid #F2F2F3;
}

/* 求人本体（横並び） */
.f-newRecruitInfo__shop {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem; /* 不要な右余白を排除 */
}

/* 右側コンテンツ */
.f-newRecruitInfo__shopRight {
	flex: 1;
	font-size: 1.3rem;
	min-width: 0; /* 折り返し・省略対策 */
}

@media (min-width: 835px) {
	.f-newRecruitInfo__shopRight {
		font-size: 14px;
	}
}

/* NEW + 店名 */
.f-newRecruitInfo__shopRightInner {
	display: flex;
	gap: 0.5rem;
	margin-left: 1.1rem;
}

.f-newRecruitInfo__shopRightInner .new_icon {
	display: inline-flex;
	align-items: center;
	height: 1.55rem; 
	padding: 0.4rem 0.5rem 0.3rem 0.5rem;
	background: var(--main-color);
	border-radius: 0.187rem; 
	text-align: left;
	line-height: 1.5;
	font-size: 0.9rem;
	letter-spacing: 0;
	color: #fff;
	white-space: nowrap;
}
/* pcのnewアイコンの大きさ */
@media (min-width: 835px) {
	.f-newRecruitInfo__shopRightInner .new_icon {
		margin-top: 5px;
		font-size: 9px;
		height: 16px; 
		padding-bottom: 0.4rem;
	}
}

/* 店名 */
.f-newRecruitInfo__shopName {
	font-weight: bold;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 0.3rem;
}
@media (max-width: 834px) {
	.f-newRecruitInfo__shopName {
		font-size: 1.1rem;
	}
}

/* =========================
	エリア・本文
========================= */
.f-newRecruitInfo__shopArea {
	display: flex;
	align-items: center;
	font-size: 12px;
	gap: 0.4rem;
	margin-bottom: 0.3rem;
	color: #A5AAAD;
}
@media (max-width: 834px) {
	.f-newRecruitInfo__shopArea {
		font-size: 1.1rem;
	}
}

.f-newRecruitInfo__shopArea img {
	width: 0.86rem;
}

.f-newRecruitInfo__shopArea p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* =========================
	キャッチコピー・本文
========================= */
.f-newRecruitInfo__shopCatchCopy {
	line-height: 1.7;
	font-size: 14px;
}
@media (max-width: 834px) {
.f-newRecruitInfo__shopCatchCopy {
		font-size: 1.1rem;
	}
}


.f-newRecruitInfo__shopMessage {
	line-height: 1.7;
	font-size: 12px;
	margin-left: -0.2rem;
}

@media (max-width: 834px) {
.f-newRecruitInfo__shopMessage {
		font-size: 1.1rem;
	}
}

/* [PC]1行で表示し、溢れた文字は「…」で隠す**/
@media (min-width: 768px) {
	.f-newRecruitInfo__shopCatchCopy,
	.f-newRecruitInfo__shopName {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

/* ==========
	強調表示
============ */
.f-newRecruitInfo__highlight {
	color: #0C83DF;
	font-size: 12px;
}

@media (max-width: 834px) {
.f-newRecruitInfo__highlight {
		font-size: 1.1rem;
	}
}

/* =========================
【３点リーダー】SP / PC 切り替え
========================= */
@media (max-width: 767px) {
	.is-pc {
		display: none;
	}
}

@media (min-width: 768px) {
	.is-sp {
		display: none;
	}
}
