@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: 980px;
    margin: 10px auto;
}
.gpsObj .locasma a {
	color: #fff !important;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none !important;
	text-align: center;
	padding: 15px 20px;
	display: block;
	background: #c9151e;
	border-radius: 10px;
	margin-bottom:1em;
	position: relative;
	transition: .3s;
}
.gpsObj .locasma a:after {
	font-family: recop-iconfonts;
	content: "\e900";
	font-size: 32px;
	position: absolute;
	right: 0.5em;
	top: 0;
	bottom: 0;
	margin: auto;
	line-height: 1;
	width: 1em;
	height: 1em;
	font-weight: normal;
}
.gpsObj .locasma a:hover,
.gpsObj .locasma a:active{
	opacity:.6;
}
/*-------------------------------------------*/
/*◆フリーワード検索
/*-------------------------------------------*/
.fwdObj {
    max-width: 650px;
}
/*flexで横並べ*/
.fwdObj form {
	display:flex;
	flex-wrap: nowrap;
	width: 100%;
	height: 60px;
	line-height: 60px;
	justify-content: space-between;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
}
/**/
.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% - 80px);
	padding: 0 20px;
	border: none;
	border-right: none;
}
.fwdObj form #freeword::placeholder{
	color: #9A9A9A;
	font-size: 16px;
}
/*検索ボタン（アイコンフォント使用）*/
.fwdObj form #freewordsearch{
	background-color:#B43131;
	color:#fff;
	font-family: recop-iconfonts;
	font-size: 32px;
	cursor: pointer;
	transition: .3s;
	width: 80px;
}
.fwdObj form #freewordsearch:hover,
.fwdObj form #freewordsearch:active{
	opacity: .6;
}
@media screen and (max-width: 820px) {
	.fwdObj {
		max-width: 100%;
	}
	.fwdObj form {
		height: 60px;
		line-height: 60px;
	}
	.fwdObj form #freeword{
		font-size: 16px;
		width: calc(100% - 60px);
	}
	.fwdObj form #freewordsearch{
		width: 60px;
	}
}
/*-------------------------------------------*/
/*◆マップ用
/*-------------------------------------------*/
#zoneSearch_pack #search_widget
{
    position: inherit;
    max-width: 420px;
    top: 0;
    left: 80px;
    z-index: 100;
    width: 100%;
}
/*スマホにしたときの調整用*/
#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;
}
