@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>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
/*----------------------------------------------------
service
----------------------------------------------------*/
#service {
  padding: 100px 0 108px;
}
#service .secTitle_underlayer {
  margin-bottom: 19px;
}
#service .secTitle_underlayer .en {
  letter-spacing: 0.1em;
}
#service .secTitle_underlayer .jp {
  letter-spacing: 0.15em;
}
@media all and (min-width: 1001px) {
  #service .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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
  #service .conts .textArea {
    width: 38.333%;
  }
  #service .conts .image {
    max-width: 563px;
    width: 46.916%;
  }
}
@media all and (min-width: 1300px) {
  #service .conts .textArea {
    width: 560px;
  }
  #service .conts .image {
    width: 46.916%;
  }
}
#service .image {
  margin: 0px -40px 23px -25px;
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  #service .image {
    margin: 0 auto;
    max-width: 500px;
  }
}
@media all and (min-width: 1001px) {
  #service .image {
    margin-top: -50px;
  }
}
#service .textArea {
  position: relative;
  z-index: 1;
}
@media all and (min-width: 1150px) {
  #service .textArea {
    padding-left: 50px;
  }
}
@media all and (min-width: 1300px) {
  #service .textArea {
    padding-left: 100px;
  }
}
#service .textArea .wrap {
  background-color: #fff;
  position: relative;
  /* 751- */
}
#service .textArea .wrap::before {
  content: "";
  position: absolute;
  background: url("../images/company/service/bg_text.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 126px;
  height: 126px;
  bottom: -40px;
  left: -50px;
  z-index: -1;
}
@media all and (min-width: 751px) {
  #service .textArea .wrap::before {
    content: "";
    position: absolute;
    background: url("../images/company/service/bg_text.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -200px;
    z-index: -1;
  }
}
#service .textArea h3 {
  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) {
  #service .textArea h3 {
    font-size: 26px;
    letter-spacing: 0.05em;
    line-height: 1.875;
    margin-bottom: 60px;
  }
}
#service .textArea p {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 2.307;
  /* 751- */
}
@media all and (min-width: 751px) {
  #service .textArea p {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 2.571;
  }
}

/*----------------------------------------------------
mission
----------------------------------------------------*/
#mission {
  padding-bottom: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mission {
    padding-bottom: 120px;
  }
}
#mission .wrap {
  background: url("../images/company/mission/bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 20px 45px;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #mission .wrap {
    margin: 0 -20px;
  }
}
@media all and (min-width: 751px) {
  #mission .wrap {
    padding: 50px 50px;
  }
}
@media all and (min-width: 1101px) {
  #mission .wrap {
    padding: 72px 30px 72px 30px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 62px 40%;
    grid-template-columns: 1fr 40%;
    -webkit-column-gap: 62px;
       -moz-column-gap: 62px;
            column-gap: 62px;
  }
  #mission .wrap .image {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
@media all and (min-width: 1250px) {
  #mission .wrap .image {
    margin-right: -50px;
  }
}
@media all and (min-width: 1300px) {
  #mission .wrap {
    -ms-grid-columns: 552px 540px;
    grid-template-columns: 552px 540px;
    padding: 72px 0px 72px 96px;
  }
}
#mission .image {
  margin-top: 29px;
  /* 751- */
}
#mission .image img {
  border-radius: 12px;
}
@media all and (min-width: 751px) {
  #mission .image {
    max-width: 540px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1100px) {
  #mission .image {
    margin: 30px 0 0;
  }
}
#mission .secTitle_underlayer .en {
  letter-spacing: 0.075em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mission .secTitle_underlayer .en {
    letter-spacing: 0.1em;
    line-height: 1;
  }
}
#mission .secTitle_underlayer .jp {
  letter-spacing: 0.05em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mission .secTitle_underlayer .jp {
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media all and (min-width: 1101px) {
  #mission .secTitle_underlayer {
    margin-bottom: 30px;
  }
}
#mission .textArea {
  margin-top: 30px;
}
#mission .textArea .bigText {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.6667;
  margin-bottom: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mission .textArea .bigText {
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
    margin-bottom: 20px;
  }
}
#mission .textArea p {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mission .textArea p {
    font-size: 16px;
    letter-spacing: 0.025em;
    line-height: 2.125;
  }
}

/*----------------------------------------------------
vision
----------------------------------------------------*/
#vision .wrap {
  background: url("../images/company/vision/bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 20px 45px;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #vision .wrap {
    margin: 0 -20px;
  }
}
@media all and (min-width: 751px) {
  #vision .wrap {
    padding: 50px 50px;
  }
}
@media all and (min-width: 1101px) {
  #vision .wrap {
    padding: 72px 30px 72px 30px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 62px 1fr;
    grid-template-columns: 40% 1fr;
    -webkit-column-gap: 62px;
       -moz-column-gap: 62px;
            column-gap: 62px;
  }
  #vision .wrap .image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
@media all and (min-width: 1300px) {
  #vision .wrap {
    -ms-grid-columns: 540px 1fr;
    grid-template-columns: 540px 1fr;
    padding: 72px 0px 72px 0px;
  }
}
#vision .secTitle_underlayer .en {
  letter-spacing: 0.1em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #vision .secTitle_underlayer .en {
    letter-spacing: 0.1em;
    line-height: 1;
  }
}
#vision .secTitle_underlayer .jp {
  letter-spacing: 0.05em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #vision .secTitle_underlayer .jp {
    letter-spacing: 0.15em;
  }
}
@media all and (min-width: 1001px) {
  #vision .secTitle_underlayer {
    margin-top: -20px;
  }
}
#vision .image {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #vision .image {
    margin-top: 29px;
  }
}
#vision .image img {
  border-radius: 12px;
}
@media all and (min-width: 751px) {
  #vision .image {
    max-width: 540px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1100px) {
  #vision .image {
    margin: 30px 0 0;
  }
}
#vision .textArea {
  margin-top: 30px;
}
#vision .textArea .bigText {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.6667;
  margin-bottom: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #vision .textArea .bigText {
    font-size: 26px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
    margin-bottom: 20px;
  }
}
#vision .textArea p {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  #vision .textArea p {
    font-size: 16px;
    letter-spacing: 0.025em;
    line-height: 2.125;
  }
}

/*----------------------------------------------------
CREDO
----------------------------------------------------*/
#credo {
  position: relative;
  overflow: hidden;
  padding: 148px 0 223px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #credo {
    padding: 180px 0 189px;
  }
}
#credo .secTitle_underlayer {
  margin-bottom: 43px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #credo .secTitle_underlayer {
    max-width: 410px;
    margin: 0 auto 43px;
  }
}
#credo .secTitle_underlayer .en {
  letter-spacing: 0.1em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #credo .secTitle_underlayer .en {
    letter-spacing: 0.1em;
  }
}
#credo .secTitle_underlayer .jp {
  letter-spacing: 0.05em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #credo .secTitle_underlayer .jp {
    letter-spacing: 0.15em;
  }
}
#credo .lt {
  counter-reset: number 0;
  margin-left: 0;
  position: relative;
  z-index: 1;
  /* -750 */
  /* 751- */
}
#credo .lt.first {
  padding: 0px 0 223px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #credo .lt.first {
    padding: 0px 0 229px;
  }
}
#credo .lt.second {
  counter-reset: number 5;
}
@media all and (max-width: 751px) {
  #credo .lt {
    margin: 0 auto;
    max-width: 400px;
  }
}
#credo .lt li {
  position: relative;
  z-index: 10;
  background-color: #ececec;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2;
}
#credo .lt li::before {
  counter-increment: number 1;
  content: counter(number);
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  position: absolute;
  z-index: 1;
  left: 25px;
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.6667;
  /* -750 */
}
@media all and (max-width: 751px) {
  #credo .lt li::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
#credo .lt li:last-child {
  margin-bottom: 0px;
}
#credo .lt li:nth-of-type(1) .wrap::before {
  content: "";
  position: absolute;
  background: url("../images/company/credo/sp/one_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 172px;
  height: 171px;
  top: -25px;
  left: -50px;
  z-index: -1;
}
#credo .lt li:nth-of-type(1) .wrap::after {
  content: "";
  position: absolute;
  background: url("../images/company/credo/sp/one_bg2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 155px;
  height: 119px;
  top: -10px;
  right: -30px;
  z-index: -1;
}
#credo .lt li:nth-of-type(2) .wrap::before {
  content: "";
  position: absolute;
  background: url("../images/company/credo/sp/two_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 226px;
  height: 243px;
  bottom: -190px;
  right: -190px;
}
#credo .lt li:nth-of-type(5) .wrap::before {
  content: "";
  position: absolute;
  background: url("../images/company/credo/sp/five_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 186px;
  height: 248px;
  bottom: -130px;
  left: -50px;
}
#credo .lt li:nth-of-type(5) .wrap::after {
  content: "";
  position: absolute;
  background: url("../images/company/credo/sp/five_bg2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 183px;
  height: 183px;
  top: 20px;
  right: -50px;
}
#credo .lt .wrap {
  background: white;
  height: 100%;
  /* -750 */
  position: relative;
}
@media all and (max-width: 751px) {
  #credo .lt .wrap {
    padding: 20px 20px 20px 78px;
  }
}
#credo .lt .wrap::before, #credo .lt .wrap::after {
  z-index: -1;
}
@media all and (min-width: 751px) {
  #credo .lt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 52px;
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  #credo .lt li {
    position: relative;
    text-align: center;
    z-index: 10;
    min-width: 280px;
    height: 240px;
    width: 30.833%;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
  #credo .lt li .wrap {
    padding-top: 90px;
  }
  #credo .lt li::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 15px;
  }
  #credo .lt li:last-child {
    margin-bottom: 0px;
  }
  #credo .lt li:nth-of-type(1) .wrap::before {
    content: "";
    position: absolute;
    background: url("../images/company/credo/one_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 202px;
    height: 207px;
    top: -75px;
    left: -100px;
  }
  #credo .lt li:nth-of-type(2) .wrap::after {
    bottom: -100px;
    left: -35px;
    content: "";
    position: absolute;
    background: url("../images/company/credo/two_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 144px;
    height: 147px;
  }
  #credo .lt li:nth-of-type(2) .wrap::before {
    content: "";
    position: absolute;
    background: url("../images/company/credo/two_bg2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 127px;
    height: 127px;
    top: -20px;
    right: -40px;
  }
  #credo .lt li:nth-of-type(3) .wrap::before {
    content: "";
    position: absolute;
    background: url("../images/company/credo/three_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 261px;
    height: 261px;
    top: 0;
    right: 130px;
  }
  #credo .lt li:nth-of-type(4) .wrap::after {
    bottom: -70px;
    right: -25px;
    content: "";
    position: absolute;
    background: url("../images/company/credo/four_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 94px;
    height: 94px;
  }
  #credo .lt li:nth-of-type(4) .wrap::before {
    content: "";
    position: absolute;
    background: url("../images/company/credo/four_bg_middle.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 131px;
    height: 131px;
    bottom: -80px;
    left: -80px;
  }
}
@media all and (min-width: 751px) and (min-width: 1300px) {
  #credo .lt li:nth-of-type(4) .wrap::before {
    content: "";
    position: absolute;
    background: url("../images/company/credo/four_bg2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 276px;
    height: 221px;
    bottom: -80px;
    left: -200px;
  }
}
@media all and (min-width: 751px) {
  #credo .lt li:nth-of-type(5) .wrap::after {
    top: 15px;
    right: -97px;
    content: "";
    position: absolute;
    background: url("../images/company/credo/five_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 252px;
    height: 258px;
  }
  #credo .lt li:nth-of-type(5) .wrap::before {
    content: "";
    position: absolute;
    background: url("../images/company/credo/five_bg2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 179px;
    height: 179px;
    top: 15px;
    left: -50px;
  }
}

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

/*----------------------------------------------------
outline
----------------------------------------------------*/
#outline {
  padding: 149px 0 120px;
  /* テーブル */
}
#outline .secTitle_underlayer {
  margin-bottom: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .secTitle_underlayer {
    margin-bottom: 76px;
  }
}
#outline .secTitle_underlayer .en {
  letter-spacing: 0.1em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .secTitle_underlayer .en {
    letter-spacing: 0.1em;
  }
}
#outline .secTitle_underlayer .jp {
  letter-spacing: 0.05em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .secTitle_underlayer .jp {
    letter-spacing: 0.15em;
  }
}
#outline .data_contents {
  margin-bottom: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .data_contents {
    max-width: 800px;
    margin: 0px auto 100px;
  }
}
#outline .data_contents .data_list {
  position: relative;
  /* 751- */
}
#outline .data_contents .data_list .bold {
  font-weight: bold;
}
#outline .data_contents .data_list li {
  border-bottom: 1px solid #F3F3F3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
}
#outline .data_contents .data_list li:first-child {
  border-top: 1px solid #F3F3F3;
}
#outline .data_contents .data_list li h3 {
  width: 90px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0em;
  line-height: 1.923;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .data_contents .data_list li h3 {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.923;
  }
}
#outline .data_contents .data_list li p {
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 1.923;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .data_contents .data_list li p {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.923;
  }
}
@media all and (min-width: 751px) {
  #outline .data_contents .data_list li {
    padding: 27px 0 30px 50px;
  }
  #outline .data_contents .data_list li h3 {
    width: 200px;
  }
  #outline .data_contents .data_list li p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
#outline .iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 280px;
  overflow: hidden;
  /* 751- */
}
#outline .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 751px) {
  #outline .iframe-wrapper {
    height: 607px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
/*# sourceMappingURL=company.css.map */