@charset "utf-8";
/*==================================================================================================
【search_widget.css】
フリーワード検索＆ジョブロケボタン用CSS
search_widget.cssはoriginal-css、もしくはasset-cssに配置してください
 2024/03/12:ver1.00 
 2024/08/02:ver1.10 ジョブロケボタン文言変更・tabindex修正・フリーワード検索隠しテキスト更新
 2025/00/00:ver1.11 日本地図の外に出しても使える（単独使用）できるように修正
====================================================================================================*/
/*
#################################################################################################
##  ■アイコンフォント
## "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;
}
/*-------------------------------------------*/
/*◆位置・サイズ調整用
/*-------------------------------------------*/
/*地図内の位置調整用（PCのみ）*/
/* #zoneSearch_pack #search_widget {
	max-width: 420px;
	left: 80px;
} */
/*-------------------------------------------*/
/*◆ロケスマ
/*-------------------------------------------*/
.gpsObj {
  width: 100%;
}
.gpsObj .locasma a {
  position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 75px;
	padding: 5px 35px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4445;
	color: #fff !important;
	text-align: center;
	text-decoration: none !important;
	background: #003e8b;
	border-radius: 10px;
	box-shadow: 0 5px 0 #7e9bbc;
	transition: opacity 0.3s ease;
}
.gpsObj .locasma a::before {
	display: inline-block;
	width: 29px;
	height: 32px;
	margin-right: 10px;
	content: "";
	background: url(../images/icon_map_01.svg) no-repeat left top / contain;
}
.gpsObj .locasma a::after {
  position: absolute;
  top: calc(50% + 1px);
  right: 29px;
  width: 8px;
  height: 13px;
  content: "";
  background: url(../images/icon_arrow_right_01.svg) no-repeat left top / contain;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .gpsObj .locasma a::before {
    margin-right: 21px;
  }
  .gpsObj .locasma a::after {
    top: 50%;
  }
	.gpsObj .locasma a:hover {
		opacity: 0.8;
	}
}

@media (max-width: 374px) {
	.gpsObj .locasma a {
    padding-inline: 25px;
    font-size: 16px;
    line-height: 1.5;
	}
  .gpsObj .locasma a::before {
    width: 20px;
    height: 22px;
  }
  .gpsObj .locasma a::after {
    right: 15px;
  }
}
/*-------------------------------------------*/
/*◆フリーワード検索
/*-------------------------------------------*/
.fwdObj {
  width: 100%;
}
/*flexで横並べ*/
.fwdObj form {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fwdObj form input {
	box-sizing: border-box;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}
/*入力*/
.fwdObj form #freeword {
	box-sizing: border-box;
	width: calc(100% - 80px);
	height: 75px;
	padding: 0 0 0 18px;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	border: solid #003e8b;
  border-width: 2px 0 2px 2px;
	border-radius: 10px 0 0 10px;
	outline: none;
}
.fwdObj form #freeword::-webkit-input-placeholder {
	color: #a7a7a7;
}
.fwdObj form #freeword:-moz-placeholder {
	color: #a7a7a7;
}
.fwdObj form #freeword::-moz-placeholder {
	color: #a7a7a7;
}
.fwdObj form #freeword:-ms-input-placeholder {
	color: #a7a7a7;
}
.fwdObj form #freeword::-ms-input-placeholder {
	color: #a7a7a7;
}
.fwdObj form #freeword::placeholder {
	color: #a7a7a7;
}
/*検索ボタン（アイコンフォント使用）*/
.fwdObj form #freewordsearch {
  display: flex;
  align-items: center;
  justify-content: center;
	width: 80px;
	height: 75px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
	cursor: pointer;
  background-color: #003e8b;
	border: none;
  border-radius: 0 10px 10px 0;
	transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .fwdObj form #freeword {
    font-size: 18px;
	}
  .fwdObj form #freewordsearch {
    font-size: 18px;
    line-height: 1.4445;
  }
	.fwdObj form #freewordsearch:hover,
	.fwdObj form #freewordsearch:active {
		opacity: 0.8;
	}
}

@media (max-width: 374px) {
	.fwdObj form #freeword {
    width: calc(100% - 65px);
    padding-left: 8px;
		font-size: 14px;
	}
  .fwdObj form #freewordsearch {
    width: 65px;
  }
}
/*-------------------------------------------*/
/*◆マップ用
/*-------------------------------------------*/
#zoneSearch_pack #search_widget {
  position: absolute;
  /*max-width: 420px;*/
  top: 0;
  left: 80px;
  z-index: 100;
  width: 100%;
}
/*スマホにしたときの調整用・位置初期化*/
#zoneSearch_pack #search_widget._js-spmode {
  position: static;
  max-width: initial;
}

@media only screen and (max-width: 900px) and (min-width: 768px) {
	#zoneSearch_pack #search_widget { left: 0; }
}
/*-------------------------------------------*/
/*◆スクリーンリーダー
/*-------------------------------------------*/
.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;
}



/*=============================================================================================================*/
/* ▼検索▼（GPSボタンとフリーワード検索　★★★横並びパターン★★★）：#fwdObj に .sideBySide を追加
/*=============================================================================================================*/
/*-------------------------------------------*/
/*◆外枠（横並び）：#search_widget.sideBySide
/*-------------------------------------------*/
#search_widget.sideBySide {
	position: relative;
  left: 0;
	display: flex;
  align-items: start;
	justify-content: center;
  max-width: 1000px;
}

@media only screen and (max-width: 767px) {
	#search_widget.sideBySide {
		flex-direction: column;
		justify-content: center;
	}
}
/*-------------------------------------------*/
/*◆ロケスマ（横並び）：#search_widget.sideBySide
/*-------------------------------------------*/
#search_widget.sideBySide .locasma {
  box-sizing: border-box;
	width: calc(100% - 30px);
	margin-right: 1em;
}

@media only screen and (max-width: 767px) {
  #search_widget.sideBySide .locasma {
    width: 100%;
    max-width: initial;
    margin-right: 0;
	}
}

@media only screen and (max-width: 519px) { /* 520px未満 */
	#search_widget.sideBySide .locasma {
		width: 100%;
    max-width: 100%;
	}
}
/*-------------------------------------------*/
/*◆フォーム（横並び）：#search_widget.sideBySide
/*-------------------------------------------*/
#search_widget.sideBySide form {
	/* max-width: 420px; */
	margin-bottom: 1em;
}

@media only screen and (max-width: 767px) {
	#search_widget.sideBySide form {
		width: 100%;
		max-width: initial;
	}
}

@media only screen and (max-width: 519px) {
  #search_widget.sideBySide form {
		max-width: 100%;
	}
}
