@charset "utf-8";
/* -------------------------------------------------------------------------------- */
/* お仕事情報
/* -------------------------------------------------------------------------------- */
/* ------------------------------------------------------------ */
/* 共通
/* ------------------------------------------------------------ */
/* お仕事情報 */
.searchList .jobBox {
    position: relative;
    display: block;
    border: 1px solid #e6ddd1;
	margin-bottom: 30px;
}
.searchList .jobBox:not(:last-child) {
    margin-bottom: 70px;
}

/*美容師*/
.salon .Lead {
    background: url('../img/icon_salon.svg');
}
/*スパ二スト*/
.spa .Lead {
    background: url('../img/icon_spa.svg');
}
/*エステティシャン*/
.est .Lead {
    background: url('../img/icon_est.svg');
}
/*ネイリスト*/
.nail .Lead {
    background: url('../img/icon_nail.svg');
}
/*カラーリスト*/
.color .Lead {
    background: url('../img/icon_color.svg');
}
/*アイリスト*/
.eye .Lead {
    background: url('../img/icon_eye.svg');
}
/*パーマ*/
.perm .Lead {
    background: url('../img/icon_perm.svg');
}
/*その他*/
.others .Lead {
    background: url('../img/icon_others.svg');
}
/* -------------------- */
/* 新着アイコン
/* -------------------- */
.searchList .jobBox.new::before {
    content: "NEW";
    position: absolute;
    top: -5px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 42px;
    background: #fff400;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'El Messiri', sans-serif;
    color: #401922;
}
.searchList .jobBox.new::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 5px 2px;
    border-color: transparent transparent #401922 transparent;
}
/* ------------------------------------------------------------ */
/* ヘッダー（タイトル、募集期間、お気に入りボタン）
/* ------------------------------------------------------------ */
.jobTitle {
	display: flex;
    justify-content: space-between;
	align-items: center;

	font-size: 2.0rem;
    letter-spacing: 0;
    border-bottom: 1px solid #e6ddd1;
    margin-bottom: 30px;

	position: relative;
    width: 100%;
    padding-bottom: 22px;
    margin: 0 auto 40px;
	font-weight: bold;
    color: #401922;
	line-height: 1.4;
}
/* -------------------- */
/* 募集期間
/* -------------------- */
.jobTitle .period {
	display: inline-block;
    font-size: 1.5rem;
    font-weight: normal;
	min-width: 270px;
}
/* 募集期間外アイコン */
.jobTitle .out_term {
	background: #969696;
	color: #fff;
	font-size: 1.2rem;
}
/* -------------------- */
/* パートナーランク区分アイコン
/* -------------------- */
.jobTitle .div_rank {
	position: relative;
	display: inline-block;
	padding: 5px 10px 1px 25px;
	margin-left: 5px;
	font-size: 1.2rem;
	font-weight: 700;
	font-family: 'El Messiri', sans-serif;
	vertical-align: middle;
	color: #fff;
}
/* パートナーランク区分アイコン （ゴールド） */
.jobTitle .div_rank.gold {
	background: url('../img/icon_gold.svg') no-repeat left 10px center #63545c;
}
/* ------------------------------------------------------------ */
/* コンテンツ（画像と詳細）
/* ------------------------------------------------------------ */
.jobContent {
    margin-bottom: 45px;
}
/* -------------------- */
/* タイトル
/* -------------------- */
.jobContent .Lead {
	display: block;
	width: 100%;
	margin-bottom: 30px;
	padding-left: 2.25em;
	font-weight: 700;
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	background-size: 1.75em;
	background-repeat: no-repeat;
	background-position: left center;
}
/* 一覧の場合 */
.searchList .jobContent .Lead {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	height: auto;
	white-space: normal;
}
/* -------------------- */
/* テーブル
/* -------------------- */
.jobContent table {
    border: none;
}
.jobContent table tbody > tr > * {
    border-right: 0;
}
.jobContent table th {
    width: 20%;
    background-color: transparent;
}
.jobContent table th,
.jobContent table td {
    padding: 15px 0;
}
/* ポイント */
.jobContent .point {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	/* height: 5em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal; */
}
/* ------------------------------------------------------------ */
/* フッター
/* ------------------------------------------------------------ */
.jobBtnBox {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	position: relative;
	width: auto;
	background-image: radial-gradient(#e6ddd1 20%, rgba(0,0,0,0) 20%), radial-gradient(#e6ddd1 20%, rgba(0,0,0,0) 20%);
	background-position: 0 0, 4px 4px;
	background-size: 8px 8px;
	background-color: rgba(0, 0, 0, 0);
}
.jobBtnBox > div {
	width: calc(100%/3);
}
/* PCサイズ */
@media print, screen and (min-width: 768px) {
	.jobBtnBox {
		margin: 0 -60px;
		padding: 25px 60px 35px;
	}
}
/* SPサイズ */
@media screen and (max-width: 767px) {
	.jobBtnBox {
		display: block;
		margin: 0 -5%;
		padding: 45px 5% 45px;
	}
	.jobBtnBox > div {
		width: 100%;
	}
	.jobBtnBox [class*='btnLink-'],
	.jobBtnBox [class*='btn-'] {
		width: 100%;
		margin-bottom: 0.5em;
	}
}

/* ---------------------------------------- */
/* お仕事情報（PC）
/* ---------------------------------------- */
@media print,screen and (min-width:768px) {
	.searchList .jobBox {
		padding: 60px 60px 0;
	}
	/* -------------------- */
	/* 募集期間
	/* -------------------- */
	.jobTitle .period {
		display: block;
		padding-left: 1em;
		/* margin-top: 1em; */
	}
	
	/* ------------------------------ */
	/* コンテンツ（画像と詳細）
	/* ------------------------------ */
	/* -------------------- */
	/* 画像
	/* -------------------- */
	.searchList .jobContent .cms_image {
		display: block;
		width: 312px;
		float: left;
	}
	.searchList .jobContent .cms_text {
		display: block;
		width: 666px;
		float: right;
	}
	
}
/* ---------------------------------------- */
/* お仕事情報（SP）
/* ---------------------------------------- */
@media print,screen and (max-width:767px) {
	/*お仕事一覧*/
	.searchList .jobBox {
		padding: 30px 5% 0;
	}
	.searchList .jobBox.new {
		padding-top: 50px;
	}
	/* ------------------------------ */
	/* ヘッダー
	/* ------------------------------ */
	.jobTitle {
		display: block;
		margin-bottom: 20px;
		padding-bottom: 10px;
	}
	
	/* -------------------- */
	/* 募集期間
	/* -------------------- */
	.jobTitle .period {
		display: block;
		/* margin-top: 1em; */
	}
	/* ------------------------------ */
	/* コンテンツ（画像と詳細）
	/* ------------------------------ */
	.jobContent {
		margin-bottom: 20px;
	}
	/* -------------------- */
	/* タイトル
	/* -------------------- */
	.jobContent .Lead {
		font-size: 2rem;
	}
	/* -------------------- */
	/* 画像
	/* -------------------- */
	.jobContent .cms_image {
		width: 100%;
		margin-bottom: 20px;
	}
	/* -------------------- */
	/* テーブル
	/* -------------------- */
	.jobContent table tr th {
		border-bottom: none !important;
		padding-bottom: 0;
	}
	.jobContent table tr td {
		padding-top: 0;
	}
	
}