@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>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
main {
  overflow: hidden;
}

.fv {
  padding-bottom: 90px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .fv {
    padding-bottom: 160px;
  }
}

/*----------------------------------------------------
jobIntro
----------------------------------------------------*/
.jobIntro {
  margin-bottom: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro {
    margin-bottom: 120px;
  }
}
.jobIntro .inner {
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .inner {
    position: relative;
  }
  .jobIntro .inner::before {
    content: "";
    position: absolute;
    background: url("../images/job/intro/bg_img_l.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 358px;
    height: 495px;
    top: -74px;
    left: -110px;
    z-index: -1;
  }
  .jobIntro .inner::after {
    content: "";
    position: absolute;
    background: url("../images/job/intro/bg_img_r.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 273px;
    height: 348px;
    top: -56px;
    right: -31px;
    z-index: -1;
  }
}
.jobIntro .bgwhite {
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .bgwhite {
    margin: 0 auto;
    max-width: 650px;
    padding: 20px 20px 0;
  }
}
.jobIntro .title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  margin-bottom: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .title {
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 30px;
  }
}
.jobIntro .text {
  text-align: center;
  font-size: 13px;
  letter-spacing: -0.025em;
  line-height: 2.3;
  margin-bottom: 90px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .text {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.14;
    margin-bottom: 30px;
    margin-bottom: 123px;
  }
}
.jobIntro .short_inner {
  /* -750 */
}
@media all and (max-width: 751px) {
  .jobIntro .short_inner {
    display: contents;
  }
}
.jobIntro .sectionLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 751px) and (max-width: 1300px) {
  .jobIntro .sectionLink {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
.jobIntro .sectionLink li {
  width: calc((100% - 10px) / 3);
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li {
    width: calc((100% - 26px) / 3);
  }
}
@media screen and (min-width: 751px) and (max-width: 1300px) {
  .jobIntro .sectionLink li {
    width: 45%;
  }
}
.jobIntro .sectionLink li a {
  position: relative;
  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;
  background-color: #ffffff;
  border: 1px solid #EDC537;
  border-radius: 3px;
  height: 100px;
  /* 751- */
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    height: 116px;
    padding-left: 58px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
}
.jobIntro .sectionLink li a::before {
  content: "";
  position: absolute;
  background: url("../images/job/intro/ptn_yellow_sp.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 15px;
  background-size: cover;
  top: -1px;
  left: 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li a::before {
    background-image: url(../images/job/intro/ptn_yellow_pc.png);
    top: 0;
    width: 35px;
    height: 100%;
  }
}
.jobIntro .sectionLink li a::after {
  content: "";
  position: absolute;
  background: url("../images/common/icon/arrow_yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  .jobIntro .sectionLink li a::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 10px;
  }
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li a::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 25px;
    height: 25px;
    right: 28px;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .jobIntro .sectionLink li a::after {
    right: 15px;
  }
}
.jobIntro .sectionLink li a .wrap {
  /* -750 */
}
@media all and (max-width: 751px) {
  .jobIntro .sectionLink li a .wrap {
    margin-top: -10px;
  }
}
.jobIntro .sectionLink li a .wrap span {
  display: block;
  text-align: center;
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li a .wrap span {
    text-align: left;
  }
}
.jobIntro .sectionLink li a .wrap .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 3px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li a .wrap .en {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  .jobIntro .sectionLink li a .wrap .en {
    font-size: 20px;
  }
}
.jobIntro .sectionLink li a .wrap .jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li a .wrap .jp {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li a:hover {
    background-color: #EDC537;
    color: white;
  }
  .jobIntro .sectionLink li a:hover::before {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .jobIntro .sectionLink li a:hover::after {
    background-image: url(../images/common/icon/arrow_white_yellow.svg);
  }
  .jobIntro .sectionLink li a:hover .wrap {
    color: #ffffff;
  }
}
.jobIntro .sectionLink li:nth-child(2) a {
  border: 1px solid #7BC7B8;
  /* 751- */
}
.jobIntro .sectionLink li:nth-child(2) a::before {
  background-image: url(../images/job/intro/ptn_green_sp.png);
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li:nth-child(2) a::before {
    background-image: url(../images/job/intro/ptn_green_pc.png);
  }
}
.jobIntro .sectionLink li:nth-child(2) a::after {
  background-image: url(../images/common/icon/arrow_green.svg);
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li:nth-child(2) a:hover {
    background-color: #7BC7B8;
  }
  .jobIntro .sectionLink li:nth-child(2) a:hover::after {
    background-image: url(../images/common/icon/arrow_white_green.svg);
  }
}
.jobIntro .sectionLink li:nth-child(3) a {
  border: 1px solid #8E89F4;
  /* 751- */
}
.jobIntro .sectionLink li:nth-child(3) a::before {
  background-image: url(../images/job/intro/ptn_purple_sp.png);
  /* 751- */
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li:nth-child(3) a::before {
    background-image: url(../images/job/intro/ptn_purple_pc.png);
  }
}
.jobIntro .sectionLink li:nth-child(3) a::after {
  background-image: url(../images/common/icon/arrow_purple.svg);
}
@media all and (min-width: 751px) {
  .jobIntro .sectionLink li:nth-child(3) a:hover {
    background-color: #8E89F4;
  }
  .jobIntro .sectionLink li:nth-child(3) a:hover::after {
    background-image: url(../images/common/icon/arrow_white_purple.svg);
  }
}

/*----------------------------------------------------
共通
----------------------------------------------------*/
section {
  padding: 45px 0 75px;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section {
    padding: 132px 0 136px;
    margin-bottom: 60px;
  }
}
section .inner {
  position: relative;
}
section .inner::before, section .inner::after {
  position: absolute;
  content: "";
  left: 20px;
  right: 20px;
  height: 15px;
  background-image: url(../images/job/line_yellow.svg);
  background-size: contain;
}
@media screen and (min-width: 800px) and (max-width: 1400px) {
  section .inner::before, section .inner::after {
    left: 100px;
    right: 100px;
  }
}
@media all and (min-width: 1401px) {
  section .inner::before, section .inner::after {
    left: 0;
    right: 0;
    background-repeat: repeat;
    height: 18px;
  }
}
section .inner::before {
  top: -45px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .inner::before {
    top: -132px;
  }
}
section .inner::after {
  bottom: -75px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .inner::after {
    bottom: -136px;
  }
}
section .secTitle_underlayer {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .secTitle_underlayer {
    margin-bottom: 22px;
  }
}
section .secTitle_underlayer::before {
  content: "";
  position: absolute;
  background: url("../images/job/minsa_yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 74px;
  height: 71px;
  top: 4px;
  left: -24px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: -1;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .secTitle_underlayer::before {
    width: 147px;
    height: 142px;
    top: 0;
    left: -51px;
  }
}
section .secTitle_underlayer .en {
  line-height: 1;
  letter-spacing: 0.1em;
}
section .secTitle_underlayer .jp {
  font-size: 20px;
  margin-top: 10px;
}
section .conts {
  margin-bottom: 60px;
}
@media all and (min-width: 1050px) {
  section .conts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
  }
  section .conts .imageArea {
    width: 40%;
  }
  section .conts .textArea {
    width: 50%;
  }
}
@media all and (max-width: 1049px) {
  section .imageArea {
    margin-bottom: 30px;
  }
}
section .imageArea picture {
  position: relative;
  display: block;
}
section .imageArea picture::before {
  content: "";
  position: absolute;
  background: url("../images/job/dot_yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 61px;
  height: 61px;
  right: -11px;
  z-index: -1;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  section .imageArea picture::before {
    bottom: -12px;
  }
}
@media all and (min-width: 751px) {
  section .imageArea picture::before {
    width: 122px;
    height: 122px;
    top: -39px;
    right: -57px;
  }
}
section .imageArea picture::after {
  /* 751- */
}
@media all and (min-width: 751px) {
  section .imageArea picture::after {
    content: "";
    position: absolute;
    background: url("../images/job/minsa_yellow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 168px;
    height: 173px;
    bottom: -51px;
    left: -33px;
    z-index: -1;
  }
}
section .textArea .text {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 1.92;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.42;
  }
}
section .textArea .main_job {
  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;
  gap: 33px;
  border: 1px solid #EDC537;
  border-radius: 3px;
  padding: 23px;
  margin-bottom: 10px;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  section .textArea .main_job {
    margin: 0 calc(50% - 50vw + 20px) 10px;
  }
}
@media all and (min-width: 751px) {
  section .textArea .main_job {
    gap: 43px;
    padding: 25px;
  }
}
section .textArea .main_job .title {
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .main_job .title {
    font-size: 18px;
  }
}
section .textArea .main_job ul li {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.77;
  font-size: 13px;
  padding-left: 1.5em;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .main_job ul li {
    font-size: 16px;
  }
}
section .textArea .main_job ul li:not(:last-child) {
  margin-bottom: 7px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .main_job ul li:not(:last-child) {
    margin-bottom: 6px;
  }
}
section .textArea .main_job ul li::before {
  position: absolute;
  content: "●";
  top: 0.5em;
  left: 0;
  font-size: 0.5em;
  color: #EDC537;
}
section .textArea .suitable_person {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #EDC537;
  border-radius: 3px;
  padding: 25px;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  section .textArea .suitable_person {
    margin: 0 calc(50% - 50vw + 20px);
  }
}
@media all and (min-width: 751px) {
  section .textArea .suitable_person {
    gap: 43px;
    padding: 30px 25px;
  }
}
section .textArea .suitable_person::before {
  content: "";
  position: absolute;
  background: url("../images/job/dot_yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
  bottom: -22px;
  left: -24px;
  z-index: -1;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .suitable_person::before {
    width: 88px;
    height: 88px;
    bottom: -70px;
    left: -34px;
  }
}
section .textArea .suitable_person .title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 15px;
  margin-bottom: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .suitable_person .title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
section .textArea .suitable_person ol {
  counter-reset: number 0;
}
section .textArea .suitable_person ol li {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
  line-height: 1.5;
  padding-left: 3em;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .suitable_person ol li {
    font-size: 16px;
  }
}
section .textArea .suitable_person ol li:not(:last-child) {
  margin-bottom: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .suitable_person ol li:not(:last-child) {
    margin-bottom: 12px;
  }
}
section .textArea .suitable_person ol li::before {
  position: absolute;
  content: "";
  counter-increment: number 1;
  content: counter(number);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  line-height: 29px;
  font-size: 18px;
  color: #ffffff;
  background-color: #EDC537;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .textArea .suitable_person ol li::before {
    top: 0.1em;
    -webkit-transform: unset;
            transform: unset;
    width: 25px;
    height: 25px;
    font-size: 16px;
    line-height: 25px;
  }
}
section .interview h3 {
  text-align: center;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .interview h3 {
    margin-bottom: 40px;
  }
}
section .interview h3 .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-right: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .interview h3 .en {
    font-size: 34px;
    margin-right: 13px;
  }
}
section .interview h3 .jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  section .interview h3 .jp {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
section .interview ul {
  /* -750 */
}
@media all and (max-width: 751px) {
  section .interview ul {
    position: relative;
  }
  section .interview ul::before {
    content: "";
    position: absolute;
    background: url("../images/job/minsa_yellow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 68px;
    height: 70px;
    bottom: -18px;
    right: -36px;
    z-index: -1;
  }
}
section .interview ul li {
  background-color: #ffffff;
  border: 1px solid #27232F;
  border-radius: 3px;
}
section .interview ul li:not(:last-child) {
  margin-bottom: 10px;
}
section .interview ul li a {
  display: block;
  padding: 10px 10px 16px;
}
section .interview ul li a .img_block {
  position: relative;
  margin-bottom: 10px;
}
section .interview ul li a .img_block .name_box {
  position: absolute;
  bottom: -10px;
  left: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  background-color: #ffffff;
  border-radius: 0 3px;
  padding: 11px 21px 12px 6px;
}
section .interview ul li a .img_block .name_box .position {
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
section .interview ul li a .img_block .name_box .name {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
}
section .interview ul li a .message {
  position: relative;
}
section .interview ul li a .message::before {
  content: "";
  position: absolute;
  background: url("../images/common/icon/arrow_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section .interview ul li a .message p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.56;
}
@media all and (min-width: 1050px) {
  section .interview ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  section .interview ul li {
    max-width: 420px;
    width: 100%;
    border-radius: 6px;
  }
  section .interview ul li:not(:last-child) {
    margin-bottom: 0;
  }
  section .interview ul li a {
    padding: 11px 11px 24px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
  section .interview ul li a .img_block {
    margin-bottom: 22px;
  }
  section .interview ul li a .img_block .img_wrap {
    overflow: hidden;
  }
  section .interview ul li a .img_block .img_wrap img {
    -webkit-transition: -webkit-transform 0.7s ease;
    transition: -webkit-transform 0.7s ease;
    transition: transform 0.7s ease;
    transition: transform 0.7s ease, -webkit-transform 0.7s ease;
  }
  section .interview ul li a .img_block .name_box {
    bottom: -18px;
    border-radius: 0 3px;
    padding: 13px 27px 15px 10px;
  }
  section .interview ul li a .img_block .name_box .position {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 10px;
  }
  section .interview ul li a .img_block .name_box .name {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  section .interview ul li a .message::before {
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
  section .interview ul li a .message p {
    display: inline;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    border-bottom: 1px solid #ffffff;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
  section .interview ul li a:hover .img_block .img_wrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  section .interview ul li a:hover .message::before {
    background-image: url(../images/common/icon/arrow_white_line.svg);
  }
  section .interview ul li a:hover .message p {
    border-bottom: 1px solid #27232F;
  }
}

/*----------------------------------------------------
HELPER
---------------------------------------------------

/*----------------------------------------------------
COUNSELOR
----------------------------------------------------*/
#counselor .inner::before, #counselor .inner::after {
  background-image: url(../images/job/line_green.svg);
}
#counselor .secTitle_underlayer::before {
  background-image: url(../images/job/minsa_green.svg);
  /* 751- */
}
@media all and (min-width: 751px) {
  #counselor .secTitle_underlayer::before {
    width: 115px;
    height: 110px;
    top: 50px;
    left: -34px;
  }
}
#counselor .conts {
  margin-bottom: 0;
}
#counselor .imageArea {
  /* -750 */
}
@media all and (max-width: 751px) {
  #counselor .imageArea {
    margin-bottom: 30px;
  }
}
#counselor .imageArea picture::before {
  background-image: url(../images/job/dot_green.svg);
}
#counselor .imageArea picture::after {
  /* 751- */
}
@media all and (min-width: 751px) {
  #counselor .imageArea picture::after {
    background-image: url(../images/job/minsa_green.svg);
    bottom: -25px;
    left: -32px;
  }
}
#counselor .textArea .main_job {
  border-color: #7BC7B8;
  /* -750 */
}
#counselor .textArea .main_job ul li::before {
  color: #7BC7B8;
}
@media all and (max-width: 751px) {
  #counselor .textArea .main_job {
    display: block;
    padding: 23px 45px;
  }
  #counselor .textArea .main_job .title {
    text-align: center;
    margin-bottom: 15px;
  }
}
#counselor .textArea .suitable_person {
  border-color: #7BC7B8;
}
#counselor .textArea .suitable_person::before {
  background-image: url(../images/job/dot_green.svg);
}
#counselor .textArea .suitable_person ol li::before {
  background-color: #7BC7B8;
}

/*----------------------------------------------------
OFFICE WORKER
----------------------------------------------------*/
#officeWorker {
  margin-bottom: 60px;
}
#officeWorker .inner::before, #officeWorker .inner::after {
  background-image: url(../images/job/line_purple.svg);
}
#officeWorker .secTitle_underlayer::before {
  background-image: url(../images/job/minsa_purple.svg);
  /* 751- */
}
@media all and (min-width: 751px) {
  #officeWorker .secTitle_underlayer::before {
    width: 102px;
    height: 104px;
    top: -10px;
    left: -74px;
  }
}
#officeWorker .imageArea {
  /* -750 */
}
@media all and (max-width: 751px) {
  #officeWorker .imageArea {
    margin-bottom: 30px;
  }
}
#officeWorker .imageArea picture::before {
  background-image: url(../images/job/dot_purple.svg);
}
#officeWorker .imageArea picture::after {
  display: none;
}
#officeWorker .textArea .main_job {
  border-color: #8E89F4;
  /* -750 */
}
#officeWorker .textArea .main_job ul li::before {
  color: #8E89F4;
}
@media all and (max-width: 751px) {
  #officeWorker .textArea .main_job {
    display: block;
    padding: 23px 45px;
  }
  #officeWorker .textArea .main_job .title {
    text-align: center;
    margin-bottom: 15px;
  }
}
#officeWorker .textArea .suitable_person {
  border-color: #8E89F4;
}
#officeWorker .textArea .suitable_person::before {
  background-image: url(../images/job/dot_purple.svg);
}
#officeWorker .textArea .suitable_person ol li::before {
  background-color: #8E89F4;
}
#officeWorker .interview ul {
  /* -750 */
}
@media all and (max-width: 751px) {
  #officeWorker .interview ul::before {
    background-image: url(../images/job/minsa_purple.svg);
  }
}
/*# sourceMappingURL=job.css.map */