@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: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .fv {
    padding-bottom: 100px;
  }
}
.fv .image .text_block {
  padding: 20px 40px 0;
}
.fv .image .text_block .message {
  margin-bottom: 20px;
}
.fv .image .text_block .message p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.56;
}
.fv .image .text_block .name_box {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.fv .image .text_block .name_box .position {
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 5px;
}
.fv .image .text_block .name_box .position span {
  font-size: 10px;
  margin-left: 6px;
}
.fv .image .text_block .name_box .name {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media all and (min-width: 1050px) {
  .fv .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
}
@media all and (min-width: 1050px) and (min-width: 1600px) {
  .fv .image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media all and (min-width: 1050px) {
  .fv .image picture {
    max-width: 700px;
    width: 50%;
  }
}
@media all and (min-width: 1050px) {
  .fv .image .text_block {
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .fv .image .text_block::before {
    content: "";
    position: absolute;
    background: url("../images/interview/ptn01_pc.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 162px;
    height: 573px;
    top: -127px;
    right: -165px;
    z-index: 0;
  }
  .fv .image .text_block .message {
    margin-bottom: 60px;
  }
  .fv .image .text_block .message p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.05em;
    line-height: 1.7;
  }
  .fv .image .text_block .name_box {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
  }
  .fv .image .text_block .name_box .position {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 5px;
  }
  .fv .image .text_block .name_box .position span {
    font-size: 12px;
    margin-left: 10px;
  }
  .fv .image .text_block .name_box .name {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}

.inner:has(.profile) {
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner:has(.profile) {
    max-width: 1200px;
  }
}

/*----------------------------------------------------
プロフィール
----------------------------------------------------*/
.profile {
  background-image: url(../images/interview/bg_ptn_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 20px;
  margin-bottom: 35px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile {
    background-image: url(../images/interview/bg_ptn_pc.png);
    padding: 50px 135px;
    margin-bottom: 120px;
  }
}
.profile .bg_white {
  background-color: #ffffff;
  padding: 16px 22px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .bg_white {
    padding: 40px 64px 28px;
  }
}
.profile .bg_white .title {
  margin-bottom: 20px;
}
.profile .bg_white .title .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.27;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .bg_white .title .en {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.profile .bg_white .title .jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 2.08;
  margin-left: 15px;
}
.profile .bg_white .text {
  font-size: 13px;
  line-height: 2.3;
  /* 751- */
}
@media all and (min-width: 751px) {
  .profile .bg_white .text {
    font-size: 14px;
    line-height: 2.57;
  }
}

/*----------------------------------------------------
contents
----------------------------------------------------*/
.contents {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  .contents ul li {
    margin-bottom: 60px;
  }
  .contents ul li .img_wrap {
    position: relative;
    margin-bottom: 30px;
  }
  .contents ul li .img_wrap::before {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .contents ul li .img_wrap img {
    border-radius: 3px;
  }
  .contents ul li .text_block {
    position: relative;
  }
  .contents ul li .text_block::before, .contents ul li .text_block::after {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .contents ul li .text_block h3 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1.94;
    margin-bottom: 30px;
  }
  .contents ul li .text_block p {
    font-size: 13px;
    letter-spacing: 0.025em;
    line-height: 2.3;
  }
  .contents ul li:first-child .img_wrap::before {
    background-image: url(../images/interview/ptn01_sp.svg);
    width: 63px;
    height: 65px;
    top: -5px;
    right: -36px;
  }
  .contents ul li:first-child .text_block::before {
    background-image: url(../images/interview/ptn02_sp.svg);
    width: 61px;
    height: 61px;
    top: 205px;
    right: -80px;
  }
  .contents ul li:first-child .text_block::after {
    background-image: url(../images/interview/ptn03_sp.svg);
    width: 105px;
    height: 108px;
    bottom: 20px;
    left: -115px;
  }
  .contents ul li:nth-child(2) .img_wrap::before {
    background-image: url(../images/interview/ptn04_sp.svg);
    width: 74px;
    height: 74px;
    top: 2px;
    right: -20px;
  }
  .contents ul li:nth-child(2) .text_block::before {
    background-image: url(../images/interview/ptn05_sp.svg);
    width: 54px;
    height: 56px;
    bottom: 145px;
    right: -58px;
  }
  .contents ul li:nth-child(3) .text_block::before {
    background-image: url(../images/interview/ptn06_sp.svg);
    width: 126px;
    height: 485px;
    top: 40px;
    left: -110px;
  }
  .contents ul li:nth-child(3) .text_block::after {
    background-image: url(../images/interview/ptn07_sp.svg);
    width: 87px;
    height: 664px;
    top: 180px;
    right: -90px;
  }
  .contents ul li:nth-child(4) .text_block::before {
    background-image: url(../images/interview/ptn03_sp.svg);
    width: 105px;
    height: 108px;
    top: 150px;
    left: -115px;
  }
  .contents ul li:nth-child(4) .text_block::after {
    background-image: url(../images/interview/ptn08_sp.svg);
    width: 78px;
    height: 83px;
    bottom: 253px;
    right: -90px;
  }
  .contents picture {
    display: block;
    margin: 0 calc(50% - 50vw) 80px;
    width: 100vw;
  }
}
@media all and (min-width: 751px) {
  .contents ul li {
    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;
    margin-bottom: 80px;
  }
  .contents ul li .img_wrap {
    position: relative;
    margin-bottom: 0;
  }
  .contents ul li .img_wrap::before {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .contents ul li .img_wrap img {
    border-radius: 3px;
  }
  .contents ul li .text_block {
    width: 46%;
  }
  .contents ul li .text_block h3 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 2;
    margin-bottom: 30px;
  }
  .contents ul li .text_block p {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 2.3;
  }
  .contents ul li:first-child .img_wrap {
    width: 46%;
    margin-right: -40px;
  }
  .contents ul li:first-child .img_wrap::before {
    background-image: url(../images/interview/ptn02_pc.svg);
    width: 270px;
    height: 286px;
    top: 169px;
    right: -85px;
  }
  .contents ul li:nth-child(2) .img_wrap {
    width: 36%;
  }
  .contents ul li:nth-child(2) .img_wrap::before {
    background-image: url(../images/interview/ptn03_pc.svg);
    width: 520px;
    height: 302px;
    top: 83px;
    left: -125px;
  }
  .contents ul li:nth-child(2) .text_block {
    position: relative;
  }
  .contents ul li:nth-child(2) .text_block::before {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/interview/ptn06_pc.svg);
    width: 88px;
    height: 88px;
    bottom: -20px;
    left: -130px;
    z-index: -1;
  }
  .contents ul li:nth-child(3) .img_wrap {
    width: 46%;
    margin-right: -40px;
  }
  .contents ul li:nth-child(3) .img_wrap::before {
    background-image: url(../images/interview/ptn04_pc.svg);
    width: 426px;
    height: 370px;
    top: 213px;
    left: 95px;
  }
  .contents ul li:nth-child(4) .img_wrap {
    width: 36%;
  }
  .contents ul li:nth-child(4) .img_wrap::before {
    background-image: url(../images/interview/ptn05_pc.svg);
    width: 522px;
    height: 619px;
    top: 80px;
    left: -113px;
  }
  .contents ul li:nth-child(4) .text_block {
    position: relative;
  }
  .contents ul li:nth-child(4) .text_block::before {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/interview/ptn07_pc.svg);
    width: 252px;
    height: 258px;
    top: -100px;
    left: -330px;
    z-index: -1;
  }
  .contents picture {
    display: block;
    margin: 0 0 160px;
    width: 100%;
  }
}
.contents .Left_appear {
  position: relative;
  z-index: 2;
  -webkit-animation-name: Left_appear;
          animation-name: Left_appear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes Left_appear {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(0px);
            transform: translateX(-100px) translateY(0px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes Left_appear {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(0px);
            transform: translateX(-100px) translateY(0px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.contents .Left_appear_trigger {
  opacity: 0;
}

/*----------------------------------------------------
OTHER INTERVIEW
----------------------------------------------------*/
.interview {
  margin-bottom: 80px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .interview {
    margin-bottom: 123px;
  }
}
.interview h3 {
  text-align: center;
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .interview h3 {
    margin-bottom: 40px;
  }
}
.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) {
  .interview h3 .en {
    font-size: 34px;
    margin-right: 13px;
  }
}
.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) {
  .interview h3 .jp {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
.interview ul li {
  background-color: #ffffff;
  border: 1px solid #27232F;
  border-radius: 3px;
}
.interview ul li:not(:last-child) {
  margin-bottom: 10px;
}
.interview ul li a {
  display: block;
  padding: 10px 10px 16px;
}
.interview ul li a .img_block {
  position: relative;
  margin-bottom: 10px;
}
.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;
}
.interview ul li a .img_block .name_box .position {
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
.interview ul li a .img_block .name_box .name {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.interview ul li a .message {
  position: relative;
}
.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%);
}
.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) {
  .interview ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .interview ul li {
    max-width: 420px;
    width: 100%;
    border-radius: 6px;
  }
  .interview ul li:not(:last-child) {
    margin-bottom: 0;
  }
  .interview ul li a {
    padding: 11px 11px 24px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
  .interview ul li a .img_block {
    margin-bottom: 22px;
  }
  .interview ul li a .img_block .img_wrap {
    overflow: hidden;
  }
  .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;
  }
  .interview ul li a .img_block .name_box {
    bottom: -18px;
    border-radius: 0 3px;
    padding: 13px 27px 15px 10px;
  }
  .interview ul li a .img_block .name_box .position {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .interview ul li a .img_block .name_box .name {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .interview ul li a .message::before {
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
  .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;
  }
  .interview ul li a:hover .img_block .img_wrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .interview ul li a:hover .message::before {
    background-image: url(../images/common/icon/arrow_white_line.svg);
  }
  .interview ul li a:hover .message p {
    border-bottom: 1px solid #27232F;
  }
}
/*# sourceMappingURL=interview_under.css.map */