@charset "utf-8";
/*==================================================================================================
★career用★【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%;
	height: 100%;
	margin: 0 auto;
}
.gpsObj .locasma a {
	min-height: 70px;
	color: #fff !important;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none !important;
	text-align: center;
	padding: 16px 20px;
	display: grid;
	align-items: center;
	background: var(--red);
	border-radius: 4px;
	position: relative;
	transition: 0.3s;
}
.gpsObj .locasma a:before {
	content: "";
	position: absolute;
	left: calc(50% - 142px);
	top: 0;
	bottom: 0;
	margin: auto;
	line-height: 1;
	width: 26px;
	height: 40px;
	background: url(/brand-jobfind/asset/images/ic_locasma.png) center center
		no-repeat;
	background-size: contain;
	font-weight: normal;
}
.gpsObj .locasma a:hover,
.gpsObj .locasma a:active {
	opacity: 0.6;
}
@media only screen and (max-width: 768px) {
	.gpsObj .locasma a:before {
		width: 25px;
		height: 40px;
		left: calc(50% - 140px);
	}
	.gpsObj .locasma a {
		margin-bottom: 20px;
		font-size: 20px;
	}
}

/*-------------------------------------------*/
/*◆フリーワード検索
/*-------------------------------------------*/
#freewordsearch img {
	max-width: 30px;
}
.fwdObj {
	width: 100%;
}
/*flexで横並べ*/
.fwdObj form {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: 70px;
	line-height: 50px;
	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% - 70px);
	padding: 0 15px;
	border: 1px solid #999999;
	border-right: none;
	border-radius: 5px 0 0 5px;
}
/*検索ボタン（アイコンフォント使用）*/
.fwdObj form #freewordsearch {
	padding: 0 18px;
	background-color: var(--red);
	border: 1px solid var(--red);
	border-radius: 0 5px 5px 0;
	color: #fff;
	font-family: recop-iconfonts;
	font-size: 32px;
	cursor: pointer;
	transition: 0.3s;
	width: 70px;
}
.fwdObj form #freewordsearch:hover,
.fwdObj form #freewordsearch:active {
	opacity: 0.6;
}
@media only screen and (max-width: 768px) {
	.fwdObj form #freeword {
		padding: 0 10px;
		font-size: 16px;
	}
	.fwdObj {
		margin-bottom: 0;
	}
}
@media only screen and (min-width: 500px) and (max-width: 768px) {
	.fwdObj form #freeword {
		font-size: 16px;
	}
}

/*-------------------------------------------*/
/*◆マップ用
/*-------------------------------------------*/
#zoneSearch_pack #search_widget {
	position: absolute;
	max-width: 420px;
	top: 5rem;
	left: 2rem;
	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;
}
