@charset "utf-8";

/*****************************************
original.css
企業固有のスタイルを指定
******************************************/
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100% !important;
}

.original-header,
.original-footer {
  font-family: "Noto Sans JP", Meiryo, sans-serif;
}

#header,
#footer,
#header *,
#footer * {
  box-sizing: border-box;
}

#header img,
#footer img {
  width: 100%;
}

img {
  height: auto;
  vertical-align: bottom;
}

/*コンテンツ幅設定用（依頼指示の幅+20px）*/
#main .content {
  max-width: 1020px;
}

/*404エラー画面（依頼指示の幅+20px）*/
#errorContent {
  max-width: 1020px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
  font-size: 14px;
}

#errorContent #httpError h1.error_title {
  font-size: 21px;
}

#errorContent a {
  color: #0055dd !important;
}

@media only screen and (max-width: 767px) {
  #errorContent {
    padding: 0 15px;
  }
}

/***** switch display *****/
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

/*******************************
スクリーンリーダーテキスト
*******************************/
.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;
}

/*******************************
clearfix
*******************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*******************************
regular contents reset
*******************************/
/*▼common.css で固定幅(780px)指定あり*/
#container,
#header,
#header .content,
#header .content .free,
#main,
#main .content,
#main .content .free,
#footer .content,
#footer .content .free {
  width: auto;
}

/***** #container *****/
div#container {
  width: 100%;
}

/*******************************
ヘッダー
*******************************/
header #h_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 60px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}

header img.logo {
  max-width: 320px;
  padding: 20px 0;
}

header h1 {
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  text-align: right;
  width: calc(100% - 320px - 20px);
  /* logo - margin10x2 */
  padding: 0 10px;
}

header h1 span {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  header #h_wrapper {
    flex-direction: column;
    height: auto;
  }

  header h1 {
    width: 100%;
    font-size: 15px;
    text-align: center;
    padding: 0 0 20px;
  }

  /* header h1 span {
    display: block;
  } */
  header img.logo {
    max-width: 234px;
  }
}

/*******************************
フッター
*******************************/
#footer {
  min-height: 100px;
}

#footer .content .free {
  width: 100%;
  background-color: #000000;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

footer {
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
}

footer small {
  font-size: 100%;
}

/*for Android copyrightマークの色*/
footer span.copy {
  font-family: Verdana, "Droid Sans" !important;
}

footer a:link,
footer a:active,
footer a:visited,
footer a:hover {
  color: #fff !important;
}

@media only screen and (max-width: 767px) {
  #footer {
    position: absolute;
    bottom: 0;
  }

  footer {
    min-height: 170px;
    text-align: center;
  }
}

/*** footer の高さが増える場合、この数値も増やす ***/
#main .space {
  padding-bottom: 170px;
}

@media only screen and (max-width: 767px) {
  /* #main .space {
    padding-bottom: 100px;
  } */
}

/*デザイン*/
.original-footer {
  padding: 40px 10px 32px;
  background: var(--black);
}

.original-footer_inner {
  max-width: 1160px;
  width: 100%;
  margin: auto;
}

.original-footer_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer_link-item {
  position: relative;
  padding: 5px 0;
}

.footer_link-item:not(:last-child)::after {
  content: "｜";
  margin: 0 10px;
  color: var(--white);
}

.footer_link-item a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.footer-copyright {
  margin-top: 24px;
  font-size: 12px;
  text-align: center;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .original-footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .original-footer_links {
    justify-content: flex-start;
  }

  .footer-copyright {
    margin-top: 0;
    text-align: right;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer_link-item a:hover {
    opacity: 0.7;
  }
}

/*******************************
areaLink
*******************************/
#areaLink div.area {
  width: 100%;
  max-width: 1000px;
  min-height: 100px;
  /* TOPフッター暫定対応 */
  margin: auto;
}

#areaLink div.area table {
  display: none;
  margin: 0 10px 20px 0;
}

#areaLink div.area table a {
  color: #000 !important;
}

#areaLink div.area table a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  #bottomContent #areaLink {
    padding: 0 15px;
  }

  #areaLink div.area {
    margin: 0 10px 20px auto;
  }

  #areaLink div.area table {
    margin: 0 0 0 auto;
  }
}

/*******************************
#locasma3
（下層ページ用ジョブロケボタン）
*******************************/
/*カラー＆角丸指定＆大きさ指定*/
#locasma3 a {
  background-color: #009BE4;
  border-color: #009BE4;
  color: #ffffff !important;
  border-radius:5px;
  max-width: 360px;
  font-size: 15px;
}

#locasma3 {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 60px;
  margin: 0 auto 1em;
  position: relative;
}

#locasma3 a {
  display: block;
  width: 100%;
  font-weight: bold;
  text-decoration: none !important;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: .3s;
}

/*アイコンフォント*/
#locasma3 a:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/jobfind-pc/original/images/icon_locasma.png") no-repeat center / contain;
  display: block;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

#locasma3 a:hover,
#locasma3 a:active {
  opacity: .6;
}

@media only screen and (max-width: 767px) {
  #locasma3 {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 519px) {
  #locasma3 a {
    width: 80%;
    font-size: 16px;
  }

  #locasma3 a:before {
    font-size: 30px;
    left: calc(50% - 4.0em);
  }
}

@media only screen and (max-width: 375px) {
  #locasma3 a {
    width: 90%;
    max-width: 280px;
  }
}