@charset "utf-8";
/*==================================================================================================
【search_widget.css】
フリーワード検索＆ジョブロケボタン用CSS
search_widget.cssはoriginal-css、もしくはasset-cssに配置してください
 2024/03/12:ver1.00 
 2024/08/**:ver1.10 ジョブロケボタン文言変更・tabindex修正・フリーワード検索隠しテキスト更新
====================================================================================================*/
/*
#################################################################################################
##  ■アイコンフォント
## "recop-iconfonts" has been generated by the fontello & flaticon.
##  
##  【fontello】http://fontello.com/	
##  License is under the materials SIL Open Font License 1.1
##
## 【Font Awesome】http://fortawesome.github.com/Font-Awesome/
## 【Typicons】http://typicons.com/
## 【MFG Labs】http://www.mfglabs.com/
## 【Entypo】http://www.entypo.com
## 【Modern Pictograms】http://thedesignoffice.org/project/modern-pictograms/
## 【Iconic】http://somerandomdude.com/work/iconic/
## 【Web Symbols】http://www.justbenicestudio.com/
## 【Elusive】http://aristeides.com
## 【Freepik】http://www.freepik.com
##
##
##  【flaticon】https://www.flaticon.com/
##  Icons made by under the materials from www.flaticon.com Licensed by [CC 3.0 BY]
##
## 【Scott de Jonge】https://www.flaticon.com/authors/scott-de-jonge
## 【Trinh Ho】https://www.flaticon.com/authors/trinh-ho
## 【SimpleIcon】https://www.flaticon.com/authors/simpleicon
## 【google】https://www.flaticon.com/authors/google
##
#################################################################################################
*/

@font-face {
	font-family: recop-iconfonts;
	src:
		url('option/font/recop-iconfont.eot?') format('eot'),
		url('option/font/recop-iconfont.woff') format('woff'),
		url('option/font/recop-iconfont.ttf') format('truetype');
	font-display: swap;
}

/*-------------------------------------------*/
/*◆ロケスマ
/*-------------------------------------------*/
.gpsObj {
	max-width: 400px;
	width: 100%;
	margin: 10px auto;
}

.gpsObj .locasma a {
	color: #fff !important;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none !important;
	text-align: center;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	background: var(--color-red04);
	margin-bottom: 1em;
	position: relative;
	transition: .3s;
}

.gpsObj .locasma a::before {
	font-family: recop-iconfonts;
	content: "\e900";
	font-size: 38px;
	margin-right: 5px;
	line-height: 1;
	width: 1em;
	height: 1em;
	font-weight: normal;
}

.gpsObj .locasma a:hover,
.gpsObj .locasma a:active {
	opacity: .6;
}

/*-------------------------------------------*/
/*◆フリーワード検索
/*-------------------------------------------*/
.fwdObj {
	max-width: 400px;
	width: 100%;
	margin: 10px auto;
}

/*flexで横並べ*/
.fwdObj form {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: 60px;
	line-height: 50px;
	margin-bottom: 1em;
	background-color: #fff;
	overflow: hidden;
	justify-content: space-between;
}

/**/
.fwdObj form input {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}

/*入力*/
.fwdObj form #freeword {
	font-size: 18px;
	width: calc(100% - 60px);
	padding: 0 30px;
	border: none;
	border-radius: 0;
	background-color: #E6E6E6;
}

@media screen and (max-width: 768px) {
	.fwdObj form #freeword {
		font-size: 13px;
		padding-right: 0;
	}
}

/*検索ボタン（アイコンフォント使用）*/
.fwdObj form #freewordsearch {
	background-color: var(--color-base);
	border: none;
	color: #fff;
	font-family: recop-iconfonts;
	font-size: 34px;
	cursor: pointer;
	transition: .3s;
	width: 60px;
}

@media screen and (max-width: 768px) {
	.fwdObj form #freewordsearch {
		width: 60px;
		font-size: 32px;
	}
}

.fwdObj form #freewordsearch:hover,
.fwdObj form #freewordsearch:active {
	opacity: .6;
}

/*-------------------------------------------*/
/*◆マップ用
/*-------------------------------------------*/
#zoneSearch_pack #search_widget {
	position: relative;
	max-width: 820px;
	width: 100%;
	margin: auto;
	z-index: 100;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/*スマホにしたときの調整用*/
@media screen and (max-width: 900px) {
	#zoneSearch_pack #search_widget {
		position: static;
		max-width: 473px;
		margin: auto;
		display: block;
	}

	#mapObj {
		margin-right: auto !important;
	}
}

#zoneSearch_pack #search_widget._js-spmode {
	position: static;
	max-width: initial;
}

/*-------------------------------------------*/
/*◆スクリーンリーダー
/*-------------------------------------------*/
.screen-reader-wrap {
	position: relative;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}