@charset "UTF-8";

/* 共通部分のCSSです。 */

/*--------------目次-------------------
  0.ベース
    （html, *, body, containerなど）

  1.ヘッダー
    --- 【コーポレート トップ】
    --- 【リクルート トップ】
    --- 【コーポレート トップ以外】
    --- 【リクルート トップ以外】

  2.フッター
    --- 【コーポレート】
    --- 【リクルート】

  3.パーツ
    --- 【パンくずリスト】
    --- 【見出し】
    --- 【ボタン】
    --- 【インタビューカード】
    --- 【その他】

  4. GoogleMap

--------------目次終わり-------------*/


/* --------------------------------
 * 0. ベース
 * -------------------------------- */
html {
  font-size: 70.0%;
  overflow: auto;
  height: 100%;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face { font-family: "Yu Gothic M"; src: local("Yu Gothic Medium"); }
@font-face { font-family: "Yu Gothic M"; src: local("Yu Gothic Bold"); font-weight: bold; }

body {
  color: #253C4D;
  background-color: #FAF7F3;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
  font-family:
  sofia-pro, 'Noto Sans JP',
  -apple-system, BlinkMacSystemFont,
  "游ゴシック体", YuGothic,
  "Yu Gothic M",
  "游ゴシック Medium", "Yu Gothic Medium",
  "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3,
  "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
  "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
  "メイリオ", Meiryo,
  Osaka,
  "ＭＳ Ｐゴシック", "MS PGothic",
  "Helvetica Neue", HelveticaNeue,
  Helvetica,
  Arial,
  "Segoe UI",
  sans-serif,
  "Apple Color Emoji",
  "Segoe UI Emoji",
  "Segoe UI Symbol",
  "Noto Color Emoji";
  font-weight: 400;
  overflow-x: hidden; /* 横スクロール禁止 */
  -webkit-text-size-adjust: 100%; /* スマホブラウザでフォントサイズ指定が効かない対策 */
}

/* フッターを画面下につけるための指定 */
.wrapper {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  flex: 1 auto;
  min-height: 100vh;
}

/* IEだとflexの影響で意図しない余白ができるため解除 */
.js_isIe .wrapper {
 display: block;
}

.body--recruit {
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto 120px;
}

.container--recruit {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 80px 24px;
}


/* コンテンツの高さが足りないぺージで、
縦長の画面の時にIEのみ
フッターの下に余白ができてしまうのを防止
(コンテンツ部分に指定) */
.js_isIe .ie-footer-fit {
  min-height: 40vh;
}

/* 行間を空ける */
.mt10 {
  margin-top: 10px;
}

.mt24 {
  margin-top: 24px;
}

/* 空白を空ける */
.ml10 {
  margin-left: 10px;
}

/* 右寄せ */
.text-right {
  text-align: right;
}

/* 文字色指定 */
.font-white {
  color: #fff;
}

.font-orange {
  color: #F36B30;
}

/* 太字にする */
.fw-bold {
  font-weight: bold;
}

/* 文章内リンク */
.underline-link {
  color: #333;
  border-bottom: 1px solid #333;
}

.underline-link:hover {
  color: #F36B30;
  border-bottom: 1px solid #F36B30;
}

/* aタグのリンク無効化 */
.no-link{
	pointer-events:none;
}
@media (max-width: 1024px) {
  .container {
    margin: 0 40px 80px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }

  .container--recruit {
     padding: 0 40px 24px;
  }
}

@media (max-width: 414px) {
  .container {
    margin: 0 16px 64px;
  }
}

/* --------------------------------
*  1.ヘッダー --- 【コーポレート トップ】
* -------------------------------- */
.header--top {
  position: fixed;
  z-index: 90;
  top: 0;
  width: 100%;
  height: 100px;
  padding: 0 80px;
  transition: .6s; /* スクロールアニメーション用 */
}

.header-animation { /* スクロールしたら白背景表示 */
  background-color: #fff;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, .1);
}

/* 左上の固定四角ロゴ */
.header-logo {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 124px;
  height: 124px;
  padding: 38px 18px 18px;
  color: #fff;
  background-color: #F36B30;
  text-align: right;
  letter-spacing: 1px;
  font-weight: bold;
  transition: .3s; /* スクロールアニメーション用 */
}

.header-logo-animation {
  height: 100px;
  width: 100px;
  padding: 16px 14px 18px 0px;

}

/* ヘッダーメニュー */
.gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.gnav__item {
  position: relative; /* ホバー時のアンダーライン配置用 */
  display: inline-block;
  padding: 0px 24px;
  color: #fff;
  line-height: 100px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: .3s; /* スクロールアニメーション用 */
}

.gnav__item-animation {
  color: #253C4D;
}

.gnav__item:hover,
.open .gnav__item:hover {
  color:  #F36B30;
}

/* ホバー時のアンダーライン */
.gnav__item::after {
  position: absolute;
  bottom: 30px;
  left: 20%;
  content: '';
  width: 60%;
  height: 2px;
  background: #F36B30;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

.gnav__item:hover::after {
  transform: scale(1, 1);
}

.open .gnav__item::after {
  bottom: 20px;
}

/* ハンバーガーメニュー */
#nav-toggle div {
  position: relative;
}

#nav-toggle {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 40px;
  right: 40px;
  width: 34px;
  height: 36px;
  cursor: pointer;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: #fff;
  left: 0;
  transition: .3s ease-in-out;
}

/* トップページのみスクロールしたら色変更 */
#nav-toggle.nav-toggle-animation span{
  background: #333;
}

.header--otherpages #nav-toggle span {
  background: #333;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}

/* ハンバーガーメニュークリック時 */
.open #nav-toggle span {
  background: #333;
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

@media (max-width: 1100px){
  .header--top {
    height: 80px;
  }

  .header-logo {
    height: 100px;
    width: 100px;
    /*padding:20px 18px 18px;*/
    padding:16px 0 8px !important;
  }

  .header-logo-p {
    display:block;
    transform:scale(0.8);
  }
  .open.header--top {
    padding: 0;
  }

  .open .header-logo {
    height: 80px;
    width: 80px;
    padding: 8px;
  }

  .open .gnav {
    width: 100vw;
    height: 100vh;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    background: #fff;
    font-size: 1.6rem;
  }

  .open .gnav__item {
    line-height: 5;
    color: #253C4D;
  }

  .open .join-us-btn {
    position: relative;
    top: 30px;
    margin-left: 0;
  }

  .gnav {
    display: none;
  }

  #nav-toggle {
    display: block;
    top: 30px;
    right: 40px;
  }

  .body--recruit #nav-toggle span{
    background: #333;
  }
}

@media (max-width: 414px) {
  #nav-toggle {
    top: 30px;
    right: 24px;
  }

  .body--recruit #nav-toggle {
    top: 30px;
    right: 24px;
  }

  .header--top{
    height: 80px;
  }

  .header-logo-animation {
    height: 80px;
    width: 80px;
    padding: 10px;
  }
}

@media (max-width: 320px) {
  #nav-toggle {
    top: 30px;
    right: 20px;
    width: 34px;
    height: 34px;
  }

  .header-logo {
    height: 80px;
    width: 80px;
    padding: 10px;
  }
}

/* --------------------------------
*  1.ヘッダー --- 【コーポレート トップ以外】
* -------------------------------- */
.header--otherpages {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 100px;
  padding: 0 80px;
  background-color: #fff;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, .1);
}

.header--otherpages .header-logo {
  height: 100px;
  width: 100px;
  /*padding: 20px 18px 18px;*/
  padding: 16px 14px 18px 0px;
}

.header--otherpages .gnav__item {
  color: #253C4D;
}

.header--otherpages .gnav__item:hover {
  color:  #F36B30;
}

/* 訪問中のページのgnav__itemの指定 */
.header--otherpages .current{
  color: #F36B30;
}

.header--otherpages .current::after {
  transform: none;
}

.open.header--otherpages {
  padding: 0;
}


@media (max-width: 1100px){
  .header--otherpages {
    height: 80px;
  }

  .header-logo,
  .header--otherpages .header-logo {
    height: 80px;
    width: 80px;
    padding: 16px 8px 8px 8px;
  }
}

/* --------------------------------
*  1.ヘッダー --- 【リクルート トップ】
* -------------------------------- */
.header-logo--recruit__text {
  color: #333;
  position: fixed;
  z-index: 100;
  top: 40px;
  left: 140px;
  font-weight: bold;
  transition: .3s; /* スクロールアニメーション用 */
}

.header--otherpages .header-logo--recruit__text {
  top: 30px;
  left: 120px;
}

/* スクロールしたら＆ハンバーガーメニュー押したら左上に少し移動 */
.header-logo--recruit__text-animation,
.open .header-logo--recruit__text {
  top: 30px;
  left: 120px;
}

/* ハンバーガーメニュー押したら文字色黒に */
.open .header-logo--recruit__text {
  color: #333;
}

.gnav--recruit {
  z-index: 80;
  width: 100%;
  height: 100px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, .1);
}

.entry-btn.entry-btn--hamburger {
  display: none;
}

.open .entry-btn.entry-btn--hamburger {
  display: block;
  position: static;
  margin-top: 18px;
}

/* スクロールしたら上に固定 */
#js-gnavRecruit.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.gnav--recruit__item {
  position: relative;
  padding: 0 16px;
  color: #333;
  line-height: 100px;
  display: inline-block;
  font-weight: bold;
  font-style: oblique;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-align: center;
  transition: .3s;
}

.gnav--recruit__item:hover {
  color:  #F36B30;}

.gnav--recruit__item::after {
  position: absolute;
  bottom: 30px;
  left: 20%;
  content: '';
  width: 60%;
  height: 2px;
  background: #F36B30;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

.gnav--recruit__item:hover::after {
  transform: scale(1, 1);
}

.open .gnav--recruit__item::after {
  bottom: 20px;
}


@media (max-width: 1100px){
  .gnav--recruit {
    display: none;
    position: absolute;
    top: 0;
  }

  .header--recruit .entry-btn,
  .header--otherpages .entry-btn {
    display: none;
  }

  .header-logo--recruit__text {
    font-size: 1.3rem;
    top: 20px;
    left: 100px;
    color: #333;
  }

  .header-recruit-spbg { /* PC以外のヘッダー白背景 */
    display: none;
    z-index: 90;
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    background-color: #fff;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, .1);
  }

  .open .gnav--recruit {
    width: 100vw;
    height: 100vh;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    background: #fff;
    color: #333;
    font-size: 1.6rem;
  }

  .open .gnav--recruit__item {
    line-height: 5;
  }

  .header-recruit-spbg {
    display: block;
  }

  /* スクロールしたら＆ ハンバーガーメニュー押したら左上に少し移動 */
  /* .header-logo--recruit__text-animation, */
  .open .header-logo--recruit__text {
    top: 20px;
    left: 100px;
    color: #333;
  }

  .header--otherpages .header-logo--recruit__text {
    top: 20px;
    left: 100px;
  }
}

@media (max-width: 320px) {
  .header-recruit-spbg {
    height: 80px;
  }

  .header-logo--recruit__text,
  .header-logo--recruit__text-animation,
  .open .header-logo--recruit__text {
    font-size: 1.1rem;
    top: 20px;
    left: 90px;
  }
}


/* --------------------------------
*  1.ヘッダー --- 【リクルート トップ以外】
* -------------------------------- */
.header--otherpages .gnav--recruit {
  box-shadow: none;
}

@media (max-width: 414px){
  .header--otherpages .header-logo--recruit__text {
    top: 20px;
    left: 100px;
  }
}

@media (max-width: 320px) {
  .header--otherpages .header-logo--recruit__text {
    font-size: 1.2rem;
    top: 20px;
    left: 90px;
  }
}

/* --------------------------------
* 2.フッター --- 【コーポレート】
* -------------------------------- */
.footer {
  width: 100%;
  padding: 24px 80px;
  background-color: #253C4D;
  margin-top: auto; /* コンテンツの少ないページの場合画面下に固定する用 */
}

.footer .container {
  margin: 0 auto;
}

.footer__nav {
  position: relative;
  display: flex;
  padding: 32px 0;
  border-bottom: solid 1px #707070;
}

.footer__nav li:last-child {
  margin-left: auto;
}

.footer__nav__item {
  color: #fff;
  margin: 0 20px;
  border-bottom: 1px solid rgba(0,0,0,0); /* ホバー時のズレ防止 */
}

.footer__company-nav {
  margin: 24px 0 0 20px;
  color: #fff;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0); /* ホバー時のズレ防止 */
}

.footer__nav__item, .footer__company-nav {
  display: inline-block;
}

.footer__nav__item:hover,
.footer__company-nav:hover {
  border-bottom: 1px solid #fff;
}

.copyright {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 18px 0 10px;
}

.footer small {
  color: #d1d1d1;
  font-weight: lighter;
  margin-top: 24px;
}

@media (max-width: 768px){
  .footer__nav {
    display: none;
  }

  .footer__company-nav {
    display: block;
    max-width: 130px;
    margin: 0 auto 20px;
    text-align: center;
  }
}

/* ページトップに戻るボタン */
.to-top-btn {
  position: relative;
  display: block;
  float: right;
}

.to-top-btn::before,
.to-top-btn::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.to-top-btn::before{
    left: 26px;
    top: 4px;
    width: 2px;
    height: 24px;
    background: #F36B30;
}

.to-top-btn::after{
    left: 18px;
    width: 18px;
    height: 18px;
    border-top: 2px solid #F36B30;
    border-right: 2px solid #F36B30;
    transform: rotate(-45deg);
}

@media (max-width: 768px){
  .to-top-btn {
    position: relative;
    right: 80px;
    bottom: 10px;
  }
}

@media (max-width: 480px){
  .to-top-btn {
    right: 10px;
  }
}

/* --------------------------------
* 2.フッター --- 【リクルート】
* -------------------------------- */
.footer--recruit {
  background-color: #3B4043;
  width: 100%;
}

.footer--recruit__upper-side {
  position: relative;
  border-bottom: solid 1px #707070;
  padding: 0 24px 24px;
  margin-top: 16px;
}

.abss-logo--recruit {
  display: flex;
  align-items: flex-end;
}

.abss-logo--recruit__img {
  width: 150px;
}

.abss-logo--recruit__desc {
  color: #fff;
  margin-left: 8px;
  font-weight: bold;
  font-style: oblique;
  font-size: 1.3rem;
}

.footer__banner {
  display: flex;
  margin-top: 24px;
}

.footer__banner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
}

.footer__banner__item__img {
  height: 64px;
}

.footer__banner__item__desc {
  margin-top: 8px;
  color: #b2b2b2;
  font-size: 1.2rem;
}

.footer__nav--recruit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 155px;
  position: absolute;
  top: 0;
  right: 24px;
}

.footer__nav--recruit__item {
  color: #b2b2b2;
  font-style: oblique;
}

.footer__company-nav__wrapper {
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.footer--recruit small { /* コピーライト */
  color: #b2b2b2;
  font-weight: lighter;
}

.footer--recruit .to-top-btn {
  bottom: 60px;
}

.footer__nav--recruit__item:hover, {
  border-bottom: 1px solid #b2b2b2;
  margin-bottom: -1px; /* 下線の高さが他に影響するのを防ぐ */
}

@media (max-width: 980px) {
  .footer__banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__banner__item { /* 縦並びになったので右マージン消去 */
    margin-right:0;
  }

  .footer__banner__item:not(:first-child) {
    margin-top: 10px;
  }

  .footer__company-nav--recruit:not(:first-child) { /* 「お問合せ」の左の余白 */
    margin-left: 16px;
  }

  .footer--recruit .to-top-btn {
    right: 0;
  }
}

@media (max-width: 768px) {
  .footer--recruit {
    padding: 24px 24px;
  }

.footer__company-nav.footer__company-nav--recruit {
    margin: 24px 0 0;
  }

.footer__company-nav.footer__company-nav--recruit:not(:first-child) {
    margin-left: 16px;
  }

}

@media (max-width: 520px) {
  .footer--recruit .container--recruit {
    padding: 24px 0;
  }

  .footer__nav--recruit {
    display: none;
  }

  .footer__banner {
    align-items: center;
  }

  .footer__banner__item__desc {
    margin-top: 4px;
  }

  .footer__company-nav__wrapper {
    flex-direction: column;
  }

  .footer__company-nav.footer__company-nav--recruit:not(:first-child) {
      margin-left: 0px;
      margin-top: 12px;
  }

  .footer--recruit .to-top-btn {
    right: 40px;
  }
}

/* --------------------------------
* 3. パーツ --- 【パンくずリスト】
* -------------------------------- */
.breadcrumb.container {
  width: 80%;
  margin: 24px auto;
}

.breadcrumb.service-detail {
  margin-top: 140px;
}

.breadcrumb li {
  display:inline;
  list-style: none;
  font-size: 1.2rem;
}

.breadcrumb li:not(:first-child):before {
  content: '>';
  color: #F36B30;
  margin-left: 8px;
  margin-right: 2px;
}

.breadcrumb li a {
  color: #253C4D;
}

@media (max-width: 768px)  {
  .breadcrumb.container {
    width: 90%
  }

  .breadcrumb.service-detail {
    margin-top: 120px;
  }
}

@media (max-width: 414px)  {
  .breadcrumb li {
    font-size: 1.1rem;
  }
}


/* --------------------------------
* 3. パーツ --- 【見出し】
* -------------------------------- */
/* コーポレート 各セクションの見出し */
.section-title {
  position: relative; /* ←見出しをコンテンツの上に重ねる */
  color: #F36B30;
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-align: center;
 }

 .section-desc {
   text-align: center;
   font-weight: bold;
 }


@media (max-width: 768px) {
 .section-title {
  font-size: 3.2rem;
 }
}

/* コーポレート 先頭にオレンジの四角がある見出し */
.orange-box-title {
  position: relative;
  padding-left: 14px;
  margin-top: 16px;
}

.orange-box-title--large { /* 大文字版 */
  position: relative;
  padding-left: 14px;
  font-size: 1.8rem;
}

.orange-box-title::before,
.orange-box-title--large::before {
  position: absolute;
  content: '';
  margin-right: 20px;
  bottom: -2px;
  left: 0;
  top: 0;
  width: 5px;
  height: 24px;
  background-color: #F36B30;
}

/* リクルート 各セクションの見出し */
.section-title--recruit {
  z-index: 60;
  position: relative;
  padding-left: 20%;
  font-size: 3.0rem;
  font-weight: 600;
  font-style: oblique;
}

.section-title--recruit::before {
  content: '';
  position: absolute;
  left:0;
  top: 50%;
  display: inline-block;
  width: 19%;
  height: 2px;
  background-color: #F36B30;
}

/* ↑の右にくる日本語部分 */
.section-title-ja--recruit {
  z-index: 60;
  font-weight: bold;
  font-size: 1.6rem;
  margin-left: 18px;
  font-style: normal;
}

/* 見出し下の説明テキスト */
.section-desc--recruit {
  padding-left: 20%;
  margin-top: 4px;
}

/* リクルート 先頭に２桁の数字がついている見出し */
.section-subtitle--recruit {
  font-size: 1.8rem;
}

.section-subtitle--recruit .font-orange { /* 二桁の数字 */
  font-size: 3.8rem;
  font-style: oblique;
  font-weight: 600;
  margin-right: 4px;
}

.section-desc--recruit-otherpages {
  padding: 0 24px;
}

@media (max-width: 768px) {
  .section-title--recruit {
    font-size: 2.4rem;
  }

  .section-title-ja--recruit {
    font-size: 1.4rem;
    margin-left: 10px;
  }

  .section-desc--recruit {
    padding-right: 40px;
  }

  .section-subtitle--recruit {
    font-size: 1.6rem;
  }

  .section-subtitle--recruit .font-orange {
    font-size: 2.8rem;
  }
}


/* --------------------------------
* 3. パーツ --- 【パンくずリスト】
* -------------------------------- */
.page-path {
  display: flex;
  position: relative;
}

.page-path__item {
  margin-right: 10px;
}

.page-path:not(:first-child)::before {
  position: absolute;
  top: 3px;
  right: -15px;
  content: '';
  width: 6px;
  height: 6px;
  display: block;
  transform: rotate(45deg);
  border-top: 1px solid #F36B30;
  border-right: 1px solid #F36B30;
}



/* --------------------------------
* 3. パーツ --- 【ボタン】
* -------------------------------- */
/* コーポレート「JOIN US!」ボタン */
.join-us-btn {
  position: relative;
  padding: 12px 50px;
  margin-left: 24px;
  color: #F36B30;
  text-align: center;
  background-color: #fff;
  border: 2px solid #F36B30;
  font-size: 1.6rem;
  font-weight: bold;
  transition: .3s;
}

.join-us-btn:hover {
  box-shadow: 3px 3px 12px rgba(243, 107, 48, .4);
}

.join-us-btn::before {
  position: absolute;
  top: 14px;
  right: -20px;
  content: '';
  display: inline-block;
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #F36B30;
  border-right: 2px solid #F36B30;
  transform: skew(45deg);
}

@media (max-width: 768px) {
  .join-us-btn{
    padding: 8px 40px;
  }
}

/* コーポレート「READ MORE」ボタン */
.read-more-btn {
  color: #F36B30;
  position: relative;
  display: inline-block;
  width: 150px;
  height: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  transition: .3s;
}

.read-more-btn::before {
  position: absolute;
  top: 4px;
  left: 95px;
  content: '';
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #F36B30;
  border-right: 2px solid #F36B30;
  transform: skew(45deg);
}

.read-more-btn:hover {
  transform: translateX(10px);
}

.read-more-btn2 {
  color: #F36B30;
  position: relative;
  display: inline-block;
  width: 150px;
  height: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  transition: .3s;
}

.read-more-btn2::before {
  position: absolute;
  top: 4px;
  left: 95px;
  content: '';
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #F36B30;
  border-right: 2px solid #F36B30;
  transform: skew(45deg);
}

.read-more-btn2:hover {
  transform: translateX(10px);
}
/* リクルート エントリーボタン */
.entry-btn {
  display: block;
  z-index: 100;
  position: absolute;
  position: fixed;
  right: 80px;
  top: 25px;
  width: 180px;
  padding: 12px 0px;
  background-color: #F36B30;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-style: oblique;
  font-size: 1.6rem;
  transition: .3s;
}

.entry-btn:hover {
  box-shadow: 3px 3px 12px rgba(243, 107, 48, .4);
}

/* リクルート トップの矢印つきボタン */
.read-more-btn__recruit {
  z-index: 2; /* recruit.htmlのINTERVIEW部分のボタンがスライダーで隠れてしまうので */
  color: #F36B30;
  display: inline-block;
  padding-right: 50px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  transition: .3s;
}

.read-more-btn__recruit::after {
  position: absolute;
  top: 4px;
  right: 5px;
  content: '';
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #F36B30;
  border-right: 2px solid #F36B30;
  transform: skew(45deg);
}

.read-more-btn__recruit:hover {
  transform: translateX(10px);
}

/* 外部リンク用ボタン */
.external-link-btn {
  display: block;
  width: 230px;
  padding: 10px 16px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #F36B30;
  color: #F36B30;
  font-weight: bold;
  transition: .3s;
}

.external-link-btn:hover {
  box-shadow: 3px 3px 12px rgba(243, 107, 48, .4);
}


/* --------------------------------
* 3. パーツ --- 【インタビューカード】
* -------------------------------- */
.interview-card {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
}

.interview-card__item {
  position: relative; /* 白背景のテキスト部分用 */
  margin: 60px 4px 0;
  width: 24%;
  transition: .3s;
}

.interview-card__item:hover {
  box-shadow: 5px 8px 16px rgba(243, 107, 48, .2);
}

.interview-card__item__img.object-fit-images {
  display: block;
  position: relative;
  width: 100%;
  height: 360px;
  object-fit: cover;
  font-family: 'object-fit: cover;'/* IE対策 */
}

.interview-card__item__job {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 8px;
  background-color: #fff;
  color: #F36B30;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #F36B30;
}

.interview-card__item__caption {
  z-index: 2;
  position: absolute;
  top: 200px;
  right: 16px;
  text-align: right;
  font-size: 1.3rem;
  color: #fff;
}

.interview-card__item__desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  color: #333;
  width: 100%;
  min-height: 130px;
  background-color: #fff;
  padding: 16px;
  font-weight: bold;
}

.interview-card__item__desc::before {
  z-index: 1;
  display: block;
  content: '';
  height: 60px;
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, .4) , transparent);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .4), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent);
}

.interview-card__item__desc > p:first-child{
   display: -webkit-box;
   overflow: hidden;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 3;
 }

.interview-card__item__name {
  position: absolute;
  bottom: 16px;
  right: 16px;
}


@media (max-width: 1000px){
  .interview-card__item {
    width: 28%;
  }

  .interview-card__item__job {
    display: none;
  }
}

@media (max-width: 768px){
  .interview .container--recruit {
    padding: 0 24px 24px;
  }

    .interview-card {
    width: 100%;
  }

  .interview-card__item {
    margin-top: 40px;
    width: 30%;
    height: 280px;
  }

   .interview-card__item__img.object-fit-images {
    height: 280px;
  }

   .interview-card__item__caption {
    top: 128px;
  }

  .interview-card__item__desc {
    padding: 11px;
  	min-height: 120px;
  }

  .interview-card__item__name {
    bottom: 11px;
    right: 11px;
  }

 .interview-card__item__desc::before {
   height: 40px;
  }

   .interview-card__item__caption {
     font-size: 1.1rem;
   }

  .interview-card__item__name {
    text-align: right;
  }
}

@media (max-width: 414px){
  .interview-card {
    width: 100%;
  }

  .interview-card__item {
    margin-top: 40px;
    width: 46%;
    height: 240px;
  }

  .interview-card__item:nth-child(1),
  .interview-card__item:nth-child(2) {
    margin-top: 0;
  }

  .interview-card__item__img.object-fit-images {
    height: 240px;
  }

  .interview-card__item__desc {
    padding: 8px;
    font-size: 1.2rem;
  	min-height: 100px;
  }

  .interview-card__item__name {
    bottom: 8px;
    right: 8px;
  }

  .interview-card__item__caption {
    top: 115px;
  }
}

@media (max-width: 325px){
 .interview-card__item__caption,
  .interview-card__item__desc::before {
    display: none;
  }

 .interview-card__item__desc {
    min-height: 80px;
  }
}



/* 以下slickスライダーの指定 */
#slick-slider { /* 読み込み時に一瞬縦に表示されるのを防止 */
 display: none;
}

#slick-slider.slick-initialized { /* 読み込み時に一瞬縦に表示されるのを防止 */
 display: block;
}

.slide-dots {
  margin-top: 16px;
  text-align: center;
}

.slide-dots li {
  display: inline-block;
  margin: 0 12px;
}

.slide-dots li button{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  text-indent: -9999px; /* slickデフォルト指定の数字を枠外へ */
}

.slide-dots li button:before {
  content: '●';
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-dots li.slick-active button:before {
  color: #F36B30;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.prev-arrow {
  left: -40px;
  width: 20px;
  height: 20px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(-135deg);
  cursor: pointer;
}

.next-arrow {
  right: -40px;
  width: 20px;
  height: 20px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  cursor: pointer;
}

/* --------------------------------
* 4. パーツ --- 【Google Map】
* -------------------------------- */
 .map {
   display: block;
   height: 280px;
 }

 @media (max-width: 768px){
   .map__wrapper{
     overflow: hidden;
     width: 100%;
     padding-bottom:56.25%;
     position: relative;
   }

   .map {
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     width: 100%;
   }
 }

/* --------------------------------
* 5. パーツ --- 【その他】
* -------------------------------- */

/* 採用情報や会社概要のテーブル */
.table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 70%;
  margin: 24px auto 0;
  table-layout: fixed; /* IE対策 */
}

.table tr{
  border-bottom: solid 1px #c4c4c4;
  display: flex;
  align-items: flex-start;
}

.table th,
.table td{
  text-align: left;
  padding: 20px 24px;
}

.table th {
  display: inline-block;
  margin-left: 24px;
  width: 24%;
}

.table td {
  position: relative;
  display: inline-block;
  width: 76%;
}

@media (max-width: 768px){
  .table {
    width: 100%;
  }
  .table th,
  .table td{
    text-align: left;
    padding: 16px 0;
  }

  .table th {
    margin-left: 8px
  }

  .table td {
    margin-left: 16px
  }
}


/* コーポレート ABOUT US,SERVICE,CHALLENGE, RECRUITの説明カード */
  .card {
    padding: 50px 60px 64px;
    background-color: #fff;
    box-shadow: 8px 8px 15px rgba(145, 125, 107, .2);
  }

  .card__title {
    font-size: 1.8rem;
  }

  .card__title::after {
    content: '';
    display: block;
    margin-top: 24px;
    margin-left: 0;
    height: 2px;
    width: 60px;
    background-color:  #F36B30;
  }

  .card__desc {
    margin: 24px 0;
  }

@media (max-width: 768px) {
  .card {
    padding: 30px 40px 50px;
  }

  .card__title {
    font-size: 1.6rem;
  }

  .card__title::after {
    margin-top: 16px
  }

  .card__desc {
    margin-top: 16px;
  }
}

/* コーポレート フッター上のぼかし背景のリンク（CONTACT, SERVICE） */
.blur-bg-area {
  background: url("../img/blur_bg.jpg") left top /cover no-repeat;
  width: 100%;
  padding: 40px;
  position: relative;
  z-index: 0;
  overflow: hidden; /* ブラー効果でぼやけた部分を非表示 */
}

.blur-bg-area__title {
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #fff;
}

.blur-bg-area__title::after {
  content: '';
  display: block;
  margin: 24px auto 0;
  height: 2px;
  width: 60px;
  background-color:  #F36B30;
}

.blur-bg-area__desc {
  color: #fff;
  text-align: center;
  margin-top: 24px;
}

.blur-bg-area__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: .3s;
}

.blur-bg-area__link:hover {
  background-color: rgba(255, 255, 255, .2);
}

@media (max-width: 1260px){
  .blur-bg-area {
    padding: 30px;
  }

 .blur-bg-area__title {
   font-size: 3.2rem;
 }
}

/* コーポレート 「CONTACT US!」ボタン */
.contact-us-btn {
  position: relative;
  padding: 12px 20px;
  display: block;
  width: 200px;
  margin: 24px auto 0;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
  font-size: 1.6rem;
  font-weight: bold;
  transition: .3s;
}

.contact-us-btn:hover {
  background-color: rgba(255, 255, 255, .3);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, .5);
}

.contact-us-btn::before {
  position: absolute;
  top: 16px;
  right: -20px;
  content: '';
  display: inline-block;
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: skew(45deg);
}

/* コーポレート トップページ以外のfirstview */
.firstview {
  position: relative;
  margin: 100px 0 0;
  width: 100%;
  min-height: 300px;
  padding: 40px 0;
  background-color: #fff;
}

.firstview__wrapper {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.firstview__desc {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

@media (max-width: 1100px){
  .firstview {
    margin-top: 80px;
  }
}

@media (max-width: 768px){
  .firstview {
    min-height: 260px;
  }

  .firstview__wrapper {
    width: 80%;
  }

  .firstview__desc {
    text-align: center;
    max-width: 80%;
  }
}

@media (max-width: 414px){
  .firstview__desc {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* コーポレート アンカーリンク用ボタン */
.anchor-btn__wrapper {
  width: 60%;
  display: flex;
  justify-content: center;
  margin: 24px auto 0px;
}

.anchor-btn {
  position: relative;
  display: inline-block;
  color: #F36B30;
  font-weight: bold;
  padding: 12px 64px;
  border: 2px solid #F36B30;
  background-color: #fff;
  text-align: center;
}

.anchor-btn::after {
  content: '';
  position: absolute;
  top: 30%;
  right: 18px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #F36B30;
  border-right: 2px solid #F36B30;
  transform: rotate(135deg);
}

.anchor-btn:first-child {
  margin-right: 24px;
}

@media (max-width: 1100px){
  .anchor-btn__wrapper {
    width: 80%;
  }

  .anchor-btn:first-child {
    margin-right: 16px;
  }
}

@media (max-width: 768px){
  .anchor-btn {
    padding: 12px 50px;
  }
}

@media (max-width: 414px){
  .anchor-btn__wrapper {
    flex-direction: column;
  }

  .anchor-btn:first-child {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* リクルート トップページ以外のfirstview
（backgroundプロパティ―は各ページごとに異なるためstyle.cssで指定しています。）*/
.firstview--recruit {
  position: relative;
  margin-top: 100px;
  width: 100%;
  height: 380px;
}

.firstview--recruit::before { /* 写真の上にオレンジ透過を配置 */
  content: '';
  position: absolute;
  background-color: rgba(243, 107, 48, .65);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.firstview--recruit__title {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.firstview--recruit__subtitle {
  font-weight: normal;
}

.firstview--recruit .section-title--recruit,
.firstview--recruit__subtitle {
  color: #fff;
  text-align: center;
  padding: 0;
  margin: 0;
}

.firstview--recruit .section-title--recruit:before,
.firstview--recruit .section-title--recruit:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35%;
  height: 1.5px;
  background-color: #fff;
}

.firstview--recruit .section-title--recruit:before {
  left: 0;
}

.firstview--recruit .section-title--recruit:after {
  right: 0;
}

/* リクルート 斜めの背景用 */
.bg-oblique {
  width: 100%;
  z-index: -1;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vh 100vw 0 0;
  border-color: powderblue pink transparent transparent;
  /* styles.cssの方でピンクとブルーからそれぞれの個所の指定の色に上書きしています。 */
}

@media (max-width: 1100px) {
  .firstview--recruit {
    margin-top: 80px;
    height: 300px;
  }
}

@media (max-width: 900px) {
  .firstview--recruit .section-title--recruit:before,
  .firstview--recruit .section-title--recruit:after {
    width: 30%;
  }
}

@media (max-width: 414px) {
  .firstview--recruit {
    height: 200px;
  }

  .firstview--recruit__title {
    top: 50%;
  }

  .firstview--recruit__subtitle {
    font-weight: normal;
  }

  .firstview--recruit .section-title--recruit {
    font-size: 2.0rem;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .firstview--recruit .section-title--recruit:before,
  .firstview--recruit .section-title--recruit:after {
    width: 24%;
  }

  .firstview--recruit .section-title--recruit:before {
    left: 0;
  }

  .firstview--recruit .section-title--recruit:after {
    right: 0;
  }
}
