@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 {
  width: 100%;
}
.gpsObj .locasma a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	padding: 3px 6px 3px 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #fff !important;
	text-align: center;
	text-decoration: none !important;
	letter-spacing: 0.2em;
	background: #3a9e7f;
	border-radius: 10px;
	transition: 0.3s;
}
.gpsObj .locasma a::before {
	display: inline-block;
	width: 26px;
	height: 42px;
	margin-right: 10px;
	content: "";
	background: url(../images/icon_pin_01.svg) no-repeat left top / contain;
}

@media (min-width: 768px) {
	.gpsObj .locasma a {
		min-height: 70px;
		padding: 4px 17px 3px 10px;
		font-size: 18px;
		line-height: 1.445;
	}

	.gpsObj .locasma a::before {
		margin-right: 28px;
	}

	.gpsObj .locasma a:hover {
		opacity: 0.7;
	}
}

@media (max-width: 374px) {
	.gpsObj .locasma a {
		font-size: 16px;
		letter-spacing: 0.1em;
	}
	.gpsObj .locasma a::before {
		width: 16px;
		height: 25px;
	}
}
/*-------------------------------------------*/
/*◆フリーワード検索
/*-------------------------------------------*/
.fwdObj {
  width: 100%;
}
/*flexで横並べ*/
.fwdObj form {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 60px;
}
.fwdObj form input {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}
/*入力*/
.fwdObj form #freeword {
	box-sizing: border-box;
	width: calc(100% - 60px);
	padding: 0 5px 0 9px;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #333;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	border: solid #999;
	border-width: 1px 0 1px 1px;
	border-radius: 10px 0 0 10px;
	outline: none;
}
.fwdObj form #freeword::-webkit-input-placeholder {
	color: #9b9b9b;
}
.fwdObj form #freeword:-moz-placeholder {
	color: #9b9b9b;
}
.fwdObj form #freeword::-moz-placeholder {
	color: #9b9b9b;
}
.fwdObj form #freeword:-ms-input-placeholder {
	color: #9b9b9b;
}
.fwdObj form #freeword::-ms-input-placeholder {
	color: #9b9b9b;
}
.fwdObj form #freeword::placeholder {
	color: #9b9b9b;
}
/*検索ボタン（アイコンフォント使用）*/
.fwdObj form #freewordsearch {
	position: relative;
	flex: 0 0 auto;
	width: 60px;
	cursor: pointer;
	background-color: #e2750f;
	border: none;
	border-radius: 0 10px 10px 0;
	transition: opacity 0.3s;
}
.fwdObj form #freewordsearch::before {
	position: absolute;
	top: calc(50% + 1px);
	left: 50%;
	width: 30px;
	height: 30px;
	content: "";
	background: url(../images/icon_search_02.svg) no-repeat left top / contain;
	transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
	.fwdObj form {
		height: 70px;
	}
	.fwdObj form #freeword {
		width: calc(100% - 70px);
	}
	.fwdObj form #freewordsearch {
		width: 70px;
	}
	.fwdObj form #freewordsearch::before {
		left: calc(50% + 1px);
	}
	.fwdObj form #freewordsearch:hover,
	.fwdObj form #freewordsearch:active {
		opacity: 0.7;
	}
}

/*-------------------------------------------*/
/*◆マップ用
/*-------------------------------------------*/
#zoneSearch_pack #search_widget {
	position: absolute;
	top: 0;
	left: 80px;
	z-index: 100;
	width: 100%;
	max-width: 420px;
}
/*スマホにしたときの調整用*/
#zoneSearch_pack #search_widget._js-spmode {
	position: static;
	max-width: initial;
}
/*-------------------------------------------*/
/*◆スクリーンリーダー
/*-------------------------------------------*/
.screen-reader-wrap { position:relative; }
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	word-wrap: normal !important;
	border: 0;
}
