@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: 140px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1035px) {
  .fv .pageTitle .title {
    display: block;
  }
  .fv .pageTitle .title span {
    display: block;
  }
}

/*----------------------------------------------------
共通
----------------------------------------------------*/
@media all and (max-width: 1049px) {
  section .secTitle_underlayer {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1049px) and (min-width: 751px) and (max-width: 1049px) {
  section .secTitle_underlayer .en {
    line-height: 1;
  }
}
@media all and (max-width: 1049px) {
  section ul li {
    background-color: #ffffff;
    border: 1px solid #27232F;
    border-radius: 3px;
  }
  section ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  section ul li a {
    display: block;
    padding: 10px 10px 16px;
  }
  section ul li a .img_block {
    position: relative;
    margin-bottom: 10px;
  }
  section 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 ul li a .img_block .name_box .position {
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 6px;
  }
  section ul li a .img_block .name_box .position span {
    font-size: 10px;
    margin-left: 6px;
  }
  section ul li a .img_block .name_box .name {
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  section ul li a .message {
    position: relative;
  }
  section 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 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 .secTitle_underlayer {
    margin-bottom: 20px;
  }
  section ul li {
    background-color: #ffffff;
    border: 1px solid #27232F;
    border-radius: 6px;
  }
  section ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  section ul li a {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.9fr 40px 1fr;
    grid-template-columns: 0.9fr 1fr;
    -ms-grid-rows: 1fr 0.9fr;
    grid-template-rows: 1fr 0.9fr;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
        grid-template-areas: "area01 area02" "area01 area03";
    padding: 20px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
  section ul li a .img_block {
    display: contents;
  }
  section ul li a .img_wrap {
    grid-area: area01;
    overflow: hidden;
  }
  section ul li a .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 ul li a .message {
    grid-area: area02;
    margin-top: auto;
  }
  section ul li a .message p {
    display: inline;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    border-bottom: 1px solid #ffffff;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
}
@media screen and (min-width: 1050px) and (min-width: 1050px) and (max-width: 1300px) {
  section ul li a .message p {
    font-size: 20px;
  }
}
@media all and (min-width: 1050px) {
  section ul li a .name_box {
    grid-area: area03;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    margin-top: 40px;
  }
  section ul li a .name_box .position {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 10px;
  }
  section ul li a .name_box .position span {
    font-size: 12px;
    margin-left: 12px;
  }
  section ul li a .name_box .name {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
@media all and (min-width: 1050px){
  section ul li a .img_wrap {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  section ul li a .message {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  section ul li a .name_box {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}
@media all and (min-width: 1050px) {
  section ul li a:hover .img_wrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  section ul li a:hover .message p {
    border-bottom: 1px solid #27232F;
  }
}

/*----------------------------------------------------
HELPER
----------------------------------------------------*/
#i_helper {
  margin-bottom: 60px;
}
#i_helper ul {
  position: relative;
}
#i_helper ul::before {
  content: "";
  position: absolute;
  background: url("../images/interview/bg01_sp.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 76px;
  height: 368px;
  top: -20px;
  right: -35px;
  z-index: -1;
}
#i_helper ul::after {
  content: "";
  position: absolute;
  background: url("../images/interview/bg02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 71px;
  height: 72px;
  left: -87px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media all and (min-width: 1050px) {
  #i_helper {
    margin-bottom: 120px;
  }
  #i_helper ul::before {
    content: "";
    position: absolute;
    background: url("../images/interview/bg01_pc.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 190px;
    height: 434px;
    top: -46px;
    right: -118px;
  }
  #i_helper ul::after {
    content: "";
    position: absolute;
    background: url("../images/interview/bg02.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 142px;
    height: 145px;
    top: 65%;
    left: -100px;
  }
}

/*----------------------------------------------------
OFFICE WORKER
----------------------------------------------------*/
#i_officeWorker {
  margin-bottom: 120px;
}
#i_officeWorker ul {
  position: relative;
}
#i_officeWorker ul::before {
  content: "";
  position: absolute;
  background: url("../images/interview/bg03_sp.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 126px;
  height: 142px;
  top: -65px;
  right: -66px;
  z-index: -1;
}
#i_officeWorker ul::after {
  content: "";
  position: absolute;
  background: url("../images/interview/bg04.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
  bottom: -92px;
  right: -23px;
  z-index: -1;
}
@media all and (min-width: 1050px) {
  #i_officeWorker {
    margin-bottom: 120px;
  }
  #i_officeWorker ul::before {
    content: "";
    position: absolute;
    background: url("../images/interview/bg03_pc.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 308px;
    height: 311px;
    top: -176px;
    right: -170px;
  }
  #i_officeWorker ul::after {
    content: "";
    position: absolute;
    background: url("../images/interview/bg04.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 88px;
    height: 88px;
    top: -164px;
    left: -155px;
  }
}
/*# sourceMappingURL=interview.css.map */