@charset "UTF-8";
/*----------------------------------------------------
大項目
======================================================
基本設定
mixin-font
mixin-疑似要素
mixin-テキストホバー
mixin-ボタン
mixin-アニメーション
======================================================
----------------------------------------------------*/
/* 
デバイスサイズ
・iPhone ③種類 320px,375px,414px
・iPad 大体③種類 768px,834px,1024px

PC
・MacBookPro(13.3インチ) 1280px
・MacBookPro(14インチ) 1512px
・MacBookPro(16インチ) 1728px
・iMac(24インチ) 2240px
・iMac(27インチ) 2560px
*/
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/*----------------------------------------------------
.inner 余白 設定
----------------------------------------------------*/
/*----------------------------------------------------
//ベースフォントサイズ
----------------------------------------------------*/
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
transition
----------------------------------------------------*/
/* ホバー変更はやさ*/
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/*----------------------------------------------------
アニメーション名を指定する
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
よく使う小技
----------------------------------------------------*/
/* ボックス影 */
/* 反転*/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/* 親要素よりも幅を超えて画面いっぱいに表示するとき */
/* iconを横にぐるっと回転 */
/* slickのautoスライドの時などに、画面をタップするとスライドが動かなくなるのを防ぐ */
/* safariでボタンを押した際に出てくる青枠を消す */
/* クリップパス ジェネレーター： https://bennettfeely.com/clippy/。 */
/*----------------------------------------------------
グラデーション
----------------------------------------------------*/
/* 交互に斜めを入れる。rgba(0,0,0,0)で透過させることもできる */
/*----------------------------------------------------
======================================================
mixin-font
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
======================================================
mixin-疑似要素
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
======================================================
mixin-テキストホバー
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
テキストホバーで線を表示する

//html例：<p>テキスト<a href="" class="link_text"><span>こちら</span></a>テキス</p>
spanタグにhoverしたときに線画出るようにしている。

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
======================================================
mixin-ボタン
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 右矢印付き 「▶︎」*/
/* ボタン矢印あり 「 ---\ 」*/
/* ボタン 「く」の字型*/
/* '+' ありボタン */
/* hoverするとブワッとかわる */
/*----------------------------------------------------
======================================================
mixin-アニメーション
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
/*----------------------------------------------------
上下左右に消える
----------------------------------------------------*/
/* 下にスッと消える*/
/* 上にスッと消える*/
/*----------------------------------------------------
上下左右から表示
----------------------------------------------------*/
/* 下から上にフワッと出てくる */
/* 上から下にフワッと出てくる */
/* 左から右にスッと出てくる*/
/* 右から左にスッと出てくる*/
/*----------------------------------------------------
コンテンツを覆っているカバーが徐々に取れる (左右) 覆いたい対象にクラス名を付ければOK
ターゲットとなる要素にはあらかじめ、下記のプロパティを設定しておく
position: relative;
overflow: hidden;
----------------------------------------------------*/
/* 左から右に動かしたい場合は、0％ → 100%。 右から左は 0% ⇨ -100% */
/*----------------------------------------------------
コンテンツを覆っているカバーが徐々に取れる (上下) 覆いたい対象にクラス名を付ければOK
ターゲットとなる要素にはあらかじめ、下記のプロパティを設定しておく
position: relative;
overflow: hidden;
----------------------------------------------------*/
/*----------------------------------------------------
文字間を徐々につめるアニメーション
----------------------------------------------------*/
/*----------------------------------------------------
ボヤーと出てくる
----------------------------------------------------*/
/*----------------------------------------------------
ふわふわ 動き続ける
----------------------------------------------------*/
/* 上下にふわふわ */
/* ホバーすると上にテキストが透明になって、下から出てくる */
@-webkit-keyframes textMove {
  0% {
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(1em);
            transform: translateY(1em);
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes textMove {
  0% {
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(1em);
            transform: translateY(1em);
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* くるくる回り続ける */
@-webkit-keyframes fadeUpAnimeCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes fadeUpAnimeCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*----------------------------------------------------
bgが左右から流れ、その後、テキストが表示される。

.bg_fromLeft_toRight {
 @include bg_fromLeft_toRight;
}

html構成
<div class=" target">
  <span>
    <img src="<?php echo get_template_directory_uri(); ?>/assets/images/top/introduction/catch.png" alt="写真も、動画も。無限の可能性を撮る">
  </span>
</div>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
.inner {
  /* -750 */
}
#tab_conts {
  overflow: hidden;
}

.tab_box {
  padding: 90px 0 88px;
}
.tab_box.is_2 .tab_buttons li {
  width: 50%;
  font-size: 17px;
}

.tab_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: white;
  max-width: 800px;
  margin: 0 auto;
}
.tab_buttons li {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border: 1px solid #27232F;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  /* 751- */
}
.tab_buttons li:first-child {
  border-radius: 6px 0px 0px 6px;
}
.tab_buttons li:last-child {
  border-radius: 0px 6px 6px 0px;
}
.tab_buttons li::before {
  content: "";
  position: absolute;
  display: block;
  background: #27232F;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: -10px;
  opacity: 0;
  z-index: -1;
}
.tab_buttons li.is_active {
  background-color: #27232F;
}
.tab_buttons li.is_active span {
  color: white;
}
.tab_buttons li.is_active::before {
  opacity: 1;
}
.tab_buttons li span {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #27232F;
}
@media all and (min-width: 751px) {
  .tab_buttons li:first-child {
    border-radius: 3px 0px 0px 3px;
  }
  .tab_buttons li:last-child {
    border-radius: 0px 3px 3px 0px;
  }
  .tab_buttons li:hover {
    cursor: pointer;
    background-color: #27232F;
  }
  .tab_buttons li:hover span {
    color: white;
  }
}

.tab_contents {
  /* 751- */
}
@media all and (min-width: 751px) {
  .tab_contents {
    max-width: 800px;
    margin: 0px auto;
  }
}
.tab_contents > li {
  display: none;
}
.tab_contents > li.is_active {
  display: block;
}

/*----------------------------------------------------
社員募集要項
----------------------------------------------------*/
#requirements {
  padding-top: 60px;
  /* 751- */
  /* テーブル */
  /* ページ上部の背景 */
  /* ページ下部の背景 */
}
@media all and (min-width: 751px) {
  #requirements {
    padding-top: 85px;
  }
}
#requirements .data_contents .box {
  margin-bottom: 1em;
}
#requirements .data_contents .box:last-child {
  margin-bottom: 0em;
}
#requirements .data_contents .data_list {
  position: relative;
  background-color: #fff;
  /* 751- */
}
#requirements .data_contents .data_list .bold {
  font-weight: bold;
}
#requirements .data_contents .data_list li {
  border-bottom: 1px solid #F3F3F3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
}
#requirements .data_contents .data_list li:first-child {
  border-top: 1px solid #F3F3F3;
}
#requirements .data_contents .data_list li h3 {
  width: 100px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0em;
  line-height: 1.923;
  /* 751- */
}
@media all and (min-width: 751px) {
  #requirements .data_contents .data_list li h3 {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.923;
  }
}
#requirements .data_contents .data_list li .conts {
  /* -750 */
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 1.923;
  /* 751- */
}
@media all and (max-width: 751px) {
  #requirements .data_contents .data_list li .conts {
    width: 80%;
  }
}
@media all and (min-width: 751px) {
  #requirements .data_contents .data_list li .conts {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.923;
  }
}
@media all and (min-width: 751px) {
  #requirements .data_contents .data_list li {
    padding: 27px 0 30px 50px;
  }
  #requirements .data_contents .data_list li h3 {
    width: 200px;
  }
}
#requirements .tab_content {
  position: relative;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #requirements .tab_content::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/requirements/sp_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
    top: -40px;
    left: -20px;
  }
  #requirements .tab_content::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/requirements/sp_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 173px;
    height: 241px;
    right: -40px;
    top: 45px;
    z-index: -1;
  }
}
@media all and (min-width: 751px) {
  #requirements .tab_content::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/requirements/pc_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 343px;
    height: 308px;
    top: 80px;
    left: 0px;
    -webkit-transform: translateX(calc(-100% - 106px));
            transform: translateX(calc(-100% - 106px));
  }
  #requirements .tab_content::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/requirements/pc_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 179px;
    height: 179px;
    right: 0px;
    -webkit-transform: translateX(calc(100% + 222px));
            transform: translateX(calc(100% + 222px));
    top: 261px;
    z-index: -1;
  }
}
#requirements .data_contents {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #requirements .data_contents::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/requirements/sp_img3.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 126px;
    height: 500px;
    bottom: -15px;
    left: -60px;
  }
  #requirements .data_contents::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/requirements/sp_img4.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 115px;
    height: 117px;
    right: -20px;
    bottom: -85px;
    z-index: -1;
  }
}
@media all and (min-width: 751px) {
  #requirements .data_contents::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/requirements/pc_img3.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 305px;
    height: 396px;
    bottom: 410px;
    right: 0px;
    -webkit-transform: translateX(calc(100% + 43px));
            transform: translateX(calc(100% + 43px));
  }
  #requirements .data_contents::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/requirements/pc_img4.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 358px;
    height: 348px;
    left: 0px;
    -webkit-transform: translateX(calc(-100% - 77px));
            transform: translateX(calc(-100% - 77px));
    bottom: 67px;
    z-index: -1;
  }
}

/*----------------------------------------------------
選考フロー
----------------------------------------------------*/
#flow {
  padding-top: 58px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow {
    padding-top: 139px;
  }
}
#flow .intro {
  margin-bottom: 95px;
  position: relative;
  /* 751- */
}
#flow .intro::before {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #flow .intro::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_intro/sp_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
    top: 25px;
    left: -60px;
  }
}
@media all and (min-width: 751px) {
  #flow .intro::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_intro/pc_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 343px;
    height: 308px;
    top: 25px;
    left: -450px;
  }
}
#flow .intro::after {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #flow .intro::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_intro/sp_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 173px;
    height: 241px;
    top: 160px;
    right: -70px;
  }
}
@media all and (min-width: 751px) {
  #flow .intro::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_intro/pc_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 359px;
    height: 772px;
    top: 220px;
    right: -410px;
  }
}
@media all and (min-width: 751px) {
  #flow .intro {
    margin-bottom: 150px;
  }
}
#flow .intro .wrap {
  position: relative;
  /* 751- */
}
#flow .intro .wrap::before {
  content: "";
  position: absolute;
  background: url("../images/recruit/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -55px;
}
@media all and (min-width: 751px) {
  #flow .intro .wrap::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 37px;
    bottom: -90px;
  }
}
#flow .intro .text {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 2;
  margin-bottom: 42px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .intro .text {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 2;
    margin-bottom: 53px;
  }
}
#flow .intro .entry {
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-weight: bold;
  background-color: #F3F3F3;
  text-align: center;
  max-width: 200px;
  padding: 17px 0 16px;
  margin: 0 auto;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .intro .entry {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1.6667;
    max-width: 800px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 110px;
    padding: 33px 0 33px;
  }
}
#flow .box {
  position: relative;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #flow .box {
    margin: 0 -20px 95px;
  }
}
@media all and (min-width: 751px) {
  #flow .box {
    margin-bottom: 170px;
  }
}
#flow .box.one {
  /* -750 */
}
@media all and (max-width: 751px) {
  #flow .box.one::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step1/sp_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 179px;
    top: 450px;
    left: -40px;
    z-index: -1;
  }
  #flow .box.one::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step1/sp_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 90px;
    height: 90px;
    bottom: 100px;
    right: -20px;
    z-index: -1;
  }
}
#flow .box.two {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #flow .box.two::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step2/sp_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 90px;
    height: 90px;
    top: 150px;
    left: -20px;
    z-index: -1;
  }
  #flow .box.two::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step2/sp_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 128px;
    height: 670px;
    right: -40px;
    top: -40px;
    z-index: -1;
  }
}
@media all and (min-width: 751px) {
  #flow .box.two::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step2/pc_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 358px;
    height: 348px;
    top: 0px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: -253px;
  }
  #flow .box.two::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step2/pc_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 298px;
    height: 330px;
    bottom: -140px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    right: -200px;
  }
}
#flow .box.three {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #flow .box.three::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step3/sp_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 201px;
    height: 245px;
    top: -30px;
    left: -60px;
    z-index: -1;
  }
  #flow .box.three::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step3/sppc_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 174px;
    height: 238px;
    right: -40px;
    bottom: -20px;
    z-index: -1;
  }
}
@media all and (min-width: 751px) {
  #flow .box.three::before {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step3/pc_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 252px;
    height: 258px;
    top: 137px;
    -webkit-transform: translateX(calc(-100% - 123px));
            transform: translateX(calc(-100% - 123px));
  }
  #flow .box.three::after {
    content: "";
    position: absolute;
    background: url("../images/recruit/flow/bg_step3/sppc_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 348px;
    height: 477px;
    right: 0;
    -webkit-transform: translateX(calc(100% + 151px));
            transform: translateX(calc(100% + 151px));
    bottom: -110px;
    z-index: -1;
  }
}
#flow .box .arrow {
  position: absolute;
  width: 100px;
  height: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -60px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .arrow {
    width: 150px;
    height: 37px;
    bottom: -110px;
  }
}
#flow .box .wrap {
  position: relative;
  padding: 30px 25px 60px;
  /* 751- */
  /* */
}
@media all and (min-width: 751px) {
  #flow .box .wrap {
    padding: 70px 39px 136px;
  }
}
@media all and (min-width: 1401px) {
  #flow .box .wrap {
    padding: 70px 39px 136px;
  }
}
#flow .box:nth-of-type(even) .wrap {
  background: url("../images/recruit/flow/bg1_sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box:nth-of-type(even) .wrap {
    background: url("../images/recruit/flow/bg1_pc.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#flow .box:nth-of-type(odd) .wrap {
  background: url("../images/recruit/flow/bg2_sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box:nth-of-type(odd) .wrap {
    background: url("../images/recruit/flow/bg2_pc.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#flow .box .titleArea {
  text-align: center;
  margin-bottom: 30px;
  /* 751- */
}
#flow .box .titleArea .step {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.6667;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .titleArea .step {
    font-size: 70px;
    letter-spacing: 0.1em;
    line-height: 1.6667;
  }
}
#flow .box .titleArea .jp {
  font-size: 35px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .titleArea .jp {
    font-size: 50px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
#flow .box .titleArea .en {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  /* 751- */
}
#flow .box .titleArea .en span {
  position: relative;
}
#flow .box .titleArea .en span::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 8px;
  background-color: #27232F;
  top: 9px;
  left: -12px;
}
#flow .box .titleArea .en span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 8px;
  background-color: #27232F;
  top: 9px;
  right: -12px;
}
@media all and (min-width: 751px) {
  #flow .box .titleArea .en {
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  #flow .box .titleArea .en span {
    position: relative;
  }
  #flow .box .titleArea .en span::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 8px;
    background-color: #27232F;
    top: 18px;
    left: -12px;
  }
  #flow .box .titleArea .en span::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 8px;
    background-color: #27232F;
    top: 18px;
    right: -12px;
  }
}
#flow .box .titleArea .text {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 1.923;
  font-weight: bold;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .titleArea .text {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.923;
  }
}
#flow .box .titleArea .theme {
  margin-bottom: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .titleArea .theme {
    margin-bottom: 25px;
  }
}
#flow .box .imageAreaStep1 {
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .imageAreaStep1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #flow .box .imageAreaStep1 .area {
    width: 48%;
  }
}
#flow .box .imageAreaStep1 .area:first-child {
  margin-bottom: 40px;
}
#flow .box .imageAreaStep1 .image {
  margin-bottom: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .imageAreaStep1 .image {
    margin-bottom: 30px;
  }
}
#flow .box .imageAreaStep1 h3 {
  margin-bottom: 10px;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #flow .box .imageAreaStep1 h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media all and (min-width: 751px) {
  #flow .box .imageAreaStep1 h3 {
    margin-bottom: 22px;
  }
  #flow .box .imageAreaStep1 h3 span {
    display: block;
    text-align: center;
  }
}
#flow .box .imageAreaStep1 h3 .en {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6667;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .imageAreaStep1 h3 .en {
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1.6667;
  }
}
#flow .box .imageAreaStep1 h3 .jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 1.6667;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .imageAreaStep1 h3 .jp {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.6667;
  }
}
#flow .box .imageAreaStep1 h3 .jpBig {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6667;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .imageAreaStep1 h3 .jpBig {
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1.6667;
  }
}
#flow .box .imageArea {
  max-width: 540px;
  margin: 0 auto;
}
#flow .box .imageArea .image {
  margin-bottom: 16px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .imageArea .image {
    margin-bottom: 25px;
  }
}
#flow .box .imageArea p, #flow .box .imageAreaStep1 p {
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .box .imageArea p, #flow .box .imageAreaStep1 p {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 2;
  }
}
#flow .naitei {
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-weight: bold;
  background-color: #F3F3F3;
  text-align: center;
  max-width: 200px;
  padding: 17px 0 16px;
  margin: 0 auto;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .naitei {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1.6667;
    max-width: 800px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 110px;
    padding: 33px 0 33px;
  }
}
/*# sourceMappingURL=recruit.css.map */