@charset "utf-8";

/*****************************************
	original.css
	企業固有のスタイルを指定
******************************************/
:root {
  --color-red04: #D7000F;
  --color-base: #333;
}

body {
  -webkit-text-size-adjust: 100% !important;
}

body,
#header {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/*コンテンツ幅設定用（依頼指示の幅+20px）*/
#main>.content {
  max-width: 1020px;
  margin: auto;
  background-color: #fff;
}

/*404エラー画面（依頼指示の幅+20px）*/
#errorContent {
  max-width: 1020px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
}

@media only screen and (max-width: 767px) {
  #errorContent {
    padding: 0 15px;
  }
}

#errorContent a:link,
#errorContent a:active,
#errorContent a:visited {
  text-decoration: underline;
}

/*******************************
 スクリーンリーダー
*******************************/
.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;
}

/*******************************
 スキップリンク
 *******************************/
.skip-hidden-text {
  position: relative;
}

.skip-hidden-text a,
.skip-hidden-text span {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-hidden-text a:focus,
.skip-hidden-text a:active {
  display: block;
  width: 15em;
  height: auto;
  top: 10px;
  left: 10px;
  clip: auto;
  z-index: 1000;
  font-size: 1rem;
  padding: 5px;
  background-color: #FFF;
  border: 1px solid #999;
  border-radius: 10px;
  text-align: center;
}

/*******************************
 loading=lazy画像
 *******************************/
img {
  height: auto;
}

img[loading="lazy"] {
  width: auto;
  max-width: 100%;
  height: auto;
}

/*******************************
 clearfix
 *******************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*******************************
 ヘッダー・フッター共有
*******************************/
#header,
#footer,
#header *,
#footer * {
  box-sizing: border-box;
}

#header img,
#footer img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*******************************
 自由ヘッダー
*******************************/
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 60px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .header-inner {
    flex-direction: column;
    height: auto;
  }
}

.header-logo {
  max-width: 160px;
  width: 100%;
  padding: 15px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .header-logo {
    max-width: 100px;
  }
}

.header-logo img {
  max-width: 100%;
  margin: auto;
}

.header-contents {
  width: calc(100% - 160px - 20px);
  padding: 0 10px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .header-contents {
    width: 100%;
    text-align: center;
  }
}

.header_title {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .header_title {
    font-size: 15px;
  }
}

.header_title span {
  display: inline-block;
}

/*******************************
 自由フッター
*******************************/
#footer {
  min-height: 100px;
}

.footer-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 145px;
  position: relative;
  background-color: var(--color-base);
}

.footer-inner p {
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  padding-bottom: 0.3em;
}

.footer-inner p small {
  font-size: 100%;
}

/*for Android copyrightマークの色*/
.footer-inner span.copy {
  font-family: Verdana, "Droid Sans" !important;
}

.footer-inner a:link,
.footer-inner a:active,
.footer-inner a:visited,
.footer-inner a:hover {
  color: #fff !important;
}

@media only screen and (max-width: 767px) {
  #footer {
    position: absolute;
    bottom: 0;
  }
}

/*** footer の高さが増える場合、この数値も増やす ***/
#container #main {
  padding-bottom: 180px!important;
}

@media only screen and (max-width: 767px) {
  #container #main {
    padding-bottom: 145px!important;
  }
}

/*******************************
/* 下層ページ用：
/*GPS/現在地から検索するボタン 
/*******************************/
#joblist .locasma a {
  background-color: var(--color-red04)!important;
  color: #fff!important;
  transition: .3s;
  padding-left: 0;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

#joblist .locasma a:before {
  font-family: recop-iconfonts;
  content: "\e900";
  position: static;
  margin: 0;
}