@charset 'UTF-8';
/*----------------------------------------

	- search_history
	- result
		- result_head
		- result_content
	- mypage_create

-----------------------------------------*/

@media screen and (max-width: 800px) {
	.result {
		--font-size32: var(--font-size21);
	}

	.mypage_create {
		--font-size32: var(--font-size24);
	}
}

/*----------------------------------------
search_history
-----------------------------------------*/
.search_history {
	margin-top: 48px;
	padding-bottom: 48px;
}

.search_history .search_history_box {
	display: flex;
	gap: 32px;
}

.search_history .heading_s3 {
	min-width: 126px;
}

.search_history .heading_s3+div {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.search_history .btn_box {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

/* sp */
@media screen and (max-width: 800px) {
	.search_history {
		margin-top: 32px;
	}

	.search_history .search_history_box {
		flex-direction: column;
		gap: 16px;
	}

	.search_history .heading_s3 {
		width: auto;
	}

	.search_history .btn_box {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
		justify-content: center;
		width: 97%;
		margin-inline: auto;
	}
}

/*----------------------------------------
result
-----------------------------------------*/
.result {
	width: 100%;
	padding-block: 32px;
	background-color: var(--color_sand);
}

/* 検索結果が0件の表示 */
.result_none {
	margin-block: 32px;
}

.result_none p {
	text-align: center;
	line-height: var(--line-height175);
	letter-spacing: var(--letter-spacing005);
}

/* 検索結果が1件以上の表示 */
.result .result_head {
	display: flex;
	gap: 8px;
	justify-content: space-between;
	align-items: flex-end;
}

.result .result_head select {
	width: 200px;
}

/* 記事 */
.result .result_content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-top: 32px;
}

.result .item_header {
	padding: 32px 80px 24px;
	border-radius: 8px 8px 0 0;
	background-color: var(--color_aquamarine-500);
}

.result .working_status {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
	margin-top: 24px;
}

.result .working_status .tag_color_new {
	border: 1px solid var(--color_white);
}

.result .item_body {
	padding: 48px 80px;
	background-color: var(--color_white);
}

.result .samary_list {
	display: grid;
	gap: 24px 64px;
	grid-template-columns: repeat(auto-fit, minmax(408px, 1fr));
}

.result .samary {
	display: grid;
	gap: 24px;
	grid-template-columns: 136px 1fr;
}

.result .samary:not(:nth-last-of-type(-n+2)) {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color_cmn-line);
}

@media screen and (max-width: 1199px) and (min-width: 801px) {
	.result .samary:not(:nth-last-of-type(-n+1)) {
		padding-bottom: 24px;
		border-bottom: 1px solid var(--color_cmn-line);
	}
}

.result .samary>p {
	display: flex;
	gap: 16px;
	align-items: center;
	height: fit-content;
}

.result .samary>p::before {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
}

.result .job>p::before {
	background-image: var(--ic_job07);
}

.result .salary>p::before {
	background-image: var(--ic_job06);
}

.result .address>p::before {
	background-image: var(--ic_job05);
}

.result .station>p::before {
	background-image: var(--ic_job04);
}

.result .work_hours>p::before {
	background-image: var(--ic_job03);
}

.result .work_days>p::before {
	background-image: var(--ic_job02);
}

.result .samary li:first-of-type {
	display: flex;
	align-items: center;
	min-height: 40px;
}

.result .samary .font21+.font14 {
	margin-top: 6px;
}

.result .btn_box {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 8px;
	justify-content: center;
	align-items: center;
	margin-top: 64px;
}

.result .ic_favorite::before {
	content: '';
	background-image: var(--ic_favorite-on);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.result .btn_color_faded.ic_favorite::before {
	background-image: var(--ic_favorite-off);
}

.result .btn_box a,
.result .btn_box button {
	width: 192px;
}

/* sp */
@media screen and (max-width: 800px) {
	.result_none {
		margin-block: 16px;
	}

	.result_none p {
		font-size: var(--font-size18);
	}

	.result_none br {
		display: none;
	}

	.result_none span {
		display: block;
	}

	.result .result_head {
		flex-wrap: wrap;
	}

	.result .result_head select {
		width: 160px;
	}

	.result .item_header {
		padding: 16px 24px;
	}

	.result .item_body {
		padding: 24px 24px 48px;
	}

	.result .samary_list {
		grid-template-columns: 1fr;
		row-gap: 15px;
	}

	.result .samary {
		gap: 16px;
		grid-template-columns: 48px 1fr;
	}

	.result .samary:not(:last-of-type) {
		padding-bottom: 16px;
		border-bottom: 1px solid var(--color_cmn-line);
	}

	.result .samary>p {
		justify-content: flex-end;
	}

	.result .samary>p span {
		display: none;
	}

	.result .samary .font21 {
		font-size: var(--font-size16);
	}

	.result .samary .font21+.font14 {
		margin-top: 0;
	}

	.result .samary .font14 {
		line-height: var(--line-height15);
	}

	.result .samary ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}

	.result .samary li:first-of-type {
		min-height: auto;
	}

	.result .btn_box {
		margin-top: 48px;
	}

	.result button.btn_s2,
	.result a.btn_s2,
	.result .btn_box p {
		max-width: 240px;
		width: 100%;
	}
}
/*----------------------------------------
mypage_create
-----------------------------------------*/
.mypage_create {
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
}

/* sp */
@media screen and (max-width: 800px) {
	.mypage_create {
		margin-top: 64px;
	}

	.mypage_create p {
		width: 100%;
		text-align: center;
	}

	.mypage_create .btn_l {
		max-width: 352px;
		margin-inline: auto;
	}
}
