@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>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
.secTitle_underlayer {
  margin-bottom: 33px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .secTitle_underlayer {
    margin-bottom: 82px;
  }
}
.secTitle_underlayer .en {
  letter-spacing: 0.029em;
  /* 751- */
}
@media all and (min-width: 751px) {
  .secTitle_underlayer .en {
    font-size: 65px;
    letter-spacing: 0.1em;
    line-height: 1.6667;
  }
}
.secTitle_underlayer .jp {
  letter-spacing: 0.15em;
}

.fv {
  padding-bottom: 90px;
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  .fv {
    padding-bottom: 174px;
  }
}
.fv .inner {
  position: relative;
}
.fv .textArea {
  position: absolute;
  bottom: 0;
  background-color: #fff;
  padding: 16px 40px 0px;
  font-size: 29px;
  letter-spacing: 0.15em;
  line-height: 1.448;
  font-weight: bold;
  /* 751- */
  /* */
}
@media all and (min-width: 751px) {
  .fv .textArea {
    font-size: 40px;
    letter-spacing: 0.15em;
    line-height: 1.545;
    padding: 24px 57px 24px 70px;
  }
}
@media all and (min-width: 1000px) {
  .fv .textArea {
    font-size: 44px;
    letter-spacing: 0.15em;
    line-height: 1.545;
    padding: 34px 67px 34px 80px;
  }
}
@media all and (min-width: 1401px) {
  .fv .textArea {
    padding: 34px 67px 34px 100px;
  }
}

/*----------------------------------------------------
top message 、 hr message 共通
----------------------------------------------------*/
#message, #hr_message {
  overflow: hidden;
}
#message .conts, #hr_message .conts {
  /* */
}
@media all and (min-width: 1050px) {
  #message .conts, #hr_message .conts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 57px;
       -moz-column-gap: 57px;
            column-gap: 57px;
  }
  #message .conts .textArea, #hr_message .conts .textArea {
    width: 38.333%;
  }
  #message .conts .imageArea, #hr_message .conts .imageArea {
    width: 50.666%;
  }
  #message .conts.reverse, #hr_message .conts.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media all and (min-width: 1401px) {
  #message .conts.reverse .imageArea, #hr_message .conts.reverse .imageArea {
    margin-right: -50px;
  }
}
@media all and (min-width: 1300px) {
  #message .conts.reverse, #hr_message .conts.reverse {
    padding-left: 90px;
  }
  #message .conts.reverse .imageArea, #hr_message .conts.reverse .imageArea {
    width: 608px;
  }
}
#message .conts .imageArea, #hr_message .conts .imageArea {
  position: relative;
  z-index: 3;
  /* -750 */
}
@media all and (max-width: 751px) {
  #message .conts .imageArea, #hr_message .conts .imageArea {
    margin: 0 -40px 37px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1049px) {
  #message .conts .imageArea, #hr_message .conts .imageArea {
    margin: 0 auto 50px;
    max-width: 600px;
  }
}
#message .conts .textArea, #hr_message .conts .textArea {
  position: relative;
}
#message .conts .wrap, #hr_message .conts .wrap {
  position: relative;
  z-index: 3;
  background-color: #fff;
}
#message .conts h3, #hr_message .conts h3 {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-weight: bold;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #message .conts h3, #hr_message .conts h3 {
    font-size: 26px;
    letter-spacing: 0.05em;
    line-height: 1.875;
    margin-bottom: 60px;
  }
}
#message .conts h4, #hr_message .conts h4 {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1.9411;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #message .conts h4, #hr_message .conts h4 {
    margin-bottom: 60px;
  }
}
#message .conts p, #hr_message .conts p {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 2.307;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #message .conts p, #hr_message .conts p {
    margin-bottom: 47px;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 2.571;
  }
}
#message .conts p.mgNone, #hr_message .conts p.mgNone {
  margin-bottom: 0;
}

/*----------------------------------------------------
message
----------------------------------------------------*/
#message {
  padding-bottom: 214px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #message {
    padding-bottom: 411px;
  }
}
@media all and (max-width: 375px) {
  #message .secTitle_underlayer .en {
    font-size: 44px;
  }
}
#message .sp_bg {
  /* -750 */
}
@media all and (max-width: 751px) {
  #message .sp_bg {
    position: absolute;
    right: -20px;
    top: 130px;
    display: inline-block;
    width: 75px;
    height: 75px;
    background: url("../images/message/bg_message/sp_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
#message .sp_bg2 {
  /* -750 */
}
@media all and (max-width: 751px) {
  #message .sp_bg2 {
    position: absolute;
    left: -40px;
    top: 300px;
    display: inline-block;
    width: 126px;
    height: 129px;
    background: url("../images/message/bg_message/sp_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
#message .conts {
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  #message .conts::after {
    content: "";
    position: absolute;
    background: url("../images/message/bg_message/pc_img.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 252px;
    height: 258px;
    bottom: -100px;
    right: -50px;
  }
}
@media all and (min-width: 1050px) {
  #message .conts::after {
    content: "";
    position: absolute;
    background: url("../images/message/bg_message/pc_img.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 252px;
    height: 258px;
    bottom: 0px;
    right: 50px;
  }
}
@media all and (min-width: 1300px) {
  #message .conts::after {
    content: "";
    position: absolute;
    background: url("../images/message/bg_message/pc_img.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 252px;
    height: 258px;
    bottom: -200px;
    right: 80px;
  }
}
#message .textArea {
  position: relative;
  /* -750 */
}
@media all and (max-width: 751px) {
  #message .textArea::before {
    content: "";
    position: absolute;
    background: url("../images/message/bg_message/sp_img3.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 126px;
    height: 129px;
    bottom: -65px;
    left: -40px;
  }
  #message .textArea::after {
    content: "";
    position: absolute;
    background: url("../images/message/bg_message/sp_img4.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 194px;
    height: 527px;
    bottom: -20px;
    right: -40px;
  }
}

/*----------------------------------------------------
パララックス
----------------------------------------------------*/
/*固定する背景*/
.Parallax {
  height: 300px;
  background: url("../images/message/parallax_pc.jpg") no-repeat;
  background-size: cover;
  /* 751- */
}
@media all and (min-width: 751px) {
  .Parallax {
    height: 350px;
    background-position: center;
  }
}

/*----------------------------------------------------
hr_message
----------------------------------------------------*/
#hr_message {
  padding: 150px 0px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #hr_message {
    padding: 379px 0px 207px;
  }
  #hr_message::before {
    content: "";
    position: absolute;
    background: url("../images/message/bg_hrmessage/pc_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 120px;
    top: 350px;
    right: 50px;
  }
}
@media all and (min-width: 1300px) {
  #hr_message::before {
    top: 350px;
    right: calc(50% - 540px);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
#hr_message .secTitle_underlayer {
  display: block;
  margin-bottom: 10px;
  /* 751- */
  /* */
}
#hr_message .secTitle_underlayer span {
  display: block;
}
@media all and (min-width: 751px) {
  #hr_message .secTitle_underlayer {
    margin-bottom: 58px;
  }
}
@media all and (min-width: 1401px) {
  #hr_message .secTitle_underlayer {
    margin-left: 500px;
  }
}
@media all and (min-width: 1300px) {
  #hr_message .secTitle_underlayer {
    margin-left: 570px;
  }
}
#hr_message .textArea {
  position: relative;
  /* -750 */
}
@media all and (max-width: 751px) {
  #hr_message .textArea::before {
    content: "";
    position: absolute;
    background: url("../images/message/bg_hrmessage/sp_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 162px;
    height: 162px;
    z-index: 0;
    left: -20px;
    bottom: -40px;
  }
  #hr_message .textArea::after {
    content: "";
    position: absolute;
    background: url("../images/message/bg_hrmessage/sp_img3.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 162px;
    height: 363px;
    right: -40px;
    bottom: -70px;
  }
  #hr_message .textArea .sp_bg {
    position: absolute;
    right: -40px;
    top: 40px;
    display: inline-block;
    width: 107px;
    height: 110px;
    background: url("../images/message/bg_hrmessage/sp_img1.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
#hr_message .textArea .wrap {
  position: relative;
}
/*# sourceMappingURL=message.css.map */