@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: 100px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .fv {
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1155px) {
  .fv .pageTitle .title {
    display: block;
  }
  .fv .pageTitle .title span {
    display: block;
  }
}
.fv .pageTitle .title .en {
  white-space: nowrap;
  /* -750 */
}
@media all and (max-width: 751px) {
  .fv .pageTitle .title .en {
    font-size: 48px;
  }
}

/*----------------------------------------------------
TRAINING
----------------------------------------------------*/
#training {
  margin-bottom: 100px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #training {
    margin-bottom: 240px;
  }
}
#training .secTitle_underlayer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #training .secTitle_underlayer {
    margin-bottom: 40px;
  }
}
#training .pre_text {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 2.3;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #training .pre_text {
    text-align: center;
    font-size: 14px;
    line-height: 2.57;
    letter-spacing: 0;
  }
}
#training .content {
  background-image: url(../images/workstyle/bgptn_minsa_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #training .content {
    background-image: url(../images/workstyle/bgptn_minsa_pc.png);
    padding: 53px 100px;
  }
}
#training .content:last-child {
  background-image: url(../images/workstyle/bgptn_dot_sp.png);
  margin-top: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #training .content:last-child {
    background-image: url(../images/workstyle/bgptn_dot_pc.png);
    margin-top: 20px;
  }
}
#training .content .bg_white {
  background-color: #ffffff;
  padding: 16px 22px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #training .content .bg_white {
    padding: 40px 64px 28px;
  }
}
#training .content .bg_white .title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 18px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #training .content .bg_white .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
#training .content .bg_white .text {
  font-size: 13px;
  line-height: 2.3;
  /* 751- */
}
@media all and (min-width: 751px) {
  #training .content .bg_white .text {
    font-size: 14px;
    line-height: 2.57;
  }
}

/*----------------------------------------------------
区切り写真
----------------------------------------------------*/
.dec_photo picture {
  display: block;
}

/*----------------------------------------------------
BENEFIT
----------------------------------------------------*/
#benefit {
  margin-top: 80px;
  margin-bottom: 80px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit {
    margin-top: 240px;
    margin-bottom: 120px;
  }
}
#benefit .secTitle_underlayer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit .secTitle_underlayer {
    margin-bottom: 40px;
  }
}
#benefit .pre_text {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 2.3;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit .pre_text {
    text-align: center;
    font-size: 14px;
    line-height: 2.57;
    letter-spacing: 0;
    margin-bottom: 80px;
  }
}
#benefit ul {
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  #benefit ul {
    padding: 0;
  }
}
#benefit ul li {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #8E89F4;
  border-radius: 3px;
  overflow: hidden;
  padding: 20px 20px 20px 32px;
}
@media screen and (min-width: 751px) and (max-width: 1150px) {
  #benefit ul li {
    width: calc((100% - 64px) / 2);
  }
}
@media all and (min-width: 1151px) {
  #benefit ul li {
    width: calc((100% - 64px) / 3);
    padding: 20px 30px 50px;
    margin: 0;
  }
}
#benefit ul li:not(:last-child) {
  margin-bottom: 10px;
}
#benefit ul li::before {
  content: "";
  position: absolute;
  background: url("../images/workstyle/ptn_purple_sp.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 100%;
  background-size: cover;
  top: 0;
  left: 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit ul li::before {
    background-image: url(../images/workstyle/ptn_purple_pc.svg);
    top: -1px;
    width: 100%;
    height: 20px;
  }
}
#benefit ul li:nth-of-type(4n + 2) {
  border: 1px solid #EDC537;
}
#benefit ul li:nth-of-type(4n + 2)::before {
  background-image: url(../images/workstyle/ptn_yellow_sp.svg);
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit ul li:nth-of-type(4n + 2)::before {
    background-image: url(../images/workstyle/ptn_yellow_pc.svg);
  }
}
#benefit ul li:nth-of-type(4n + 3) {
  border: 1px solid #7BC7B8;
}
#benefit ul li:nth-of-type(4n + 3)::before {
  background-image: url(../images/workstyle/ptn_green_sp.svg);
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit ul li:nth-of-type(4n + 3)::before {
    background-image: url(../images/workstyle/ptn_green_pc.svg);
  }
}
#benefit ul li:nth-of-type(4n + 4) {
  border: 1px solid #D193C8;
}
#benefit ul li:nth-of-type(4n + 4)::before {
  background-image: url(../images/workstyle/ptn_pink_sp.svg);
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit ul li:nth-of-type(4n + 4)::before {
    background-image: url(../images/workstyle/ptn_pink_pc.svg);
  }
}
#benefit ul li h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit ul li h3 {
    height: 130px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    line-height: 1.45;
    font-size: 24px;
    text-align: center;
  }
}
#benefit ul li p {
  font-size: 13px;
  line-height: 1.77;
  /* 751- */
}
@media all and (min-width: 751px) {
  #benefit ul li p {
    font-size: 14px;
    line-height: 2.14;
  }
}
/*# sourceMappingURL=workstyle.css.map */