@charset "UTF-8";
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* slickのautoスライドの時などに、画面をタップするとスライドが動かなくなるのを防ぐため */
/* safariでボタンを押した際に出てくる青枠を消す */
/* その他 */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
グラデーション
----------------------------------------------------*/
/* 交互に斜めを入れる。rgba(0,0,0,0)で透過させることもできる */
/*----------------------------------------------------
よく使う疑似要素、小技
----------------------------------------------------*/
/* ボックス影 */
/* 反転*/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/* icon 横にぐるっと回転 */
/* 親要素よりも幅を超えて表示 */
/* 矢印 */
/*----------------------------------------------------
読み込み
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
adobe font
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
テキスト内リンク
//html例：
<p>テキスト<a href="" class="link_text">こちら</a>テキス</p>
----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
中央から下線 

//・HTML 基本、下記で統一
//<a class="link" href="><span>home</span></a>
----------------------------------------------------*/
/*----------------------------------------------------
左から下線 

//・HTML 基本、下記で統一
//<a class="link_L" href="><span>home</span></a>
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 右矢印付き 「▶︎」*/
/* ボタン矢印あり 「 ---\ 」*/
/* ボタン 「く」の字型*/
/* '+' ありボタン */
/* hoverするとブワッとかわる */
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* slickのautoスライドの時などに、画面をタップするとスライドが動かなくなるのを防ぐため */
/* safariでボタンを押した際に出てくる青枠を消す */
/* その他 */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
グラデーション
----------------------------------------------------*/
/* 交互に斜めを入れる。rgba(0,0,0,0)で透過させることもできる */
/*----------------------------------------------------
よく使う疑似要素、小技
----------------------------------------------------*/
/* ボックス影 */
/* 反転*/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/* icon 横にぐるっと回転 */
/* 親要素よりも幅を超えて表示 */
/* 矢印 */
/*----------------------------------------------------
読み込み
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
adobe font
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
テキスト内リンク
//html例：
<p>テキスト<a href="" class="link_text">こちら</a>テキス</p>
----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
中央から下線 

//・HTML 基本、下記で統一
//<a class="link" href="><span>home</span></a>
----------------------------------------------------*/
/*----------------------------------------------------
左から下線 

//・HTML 基本、下記で統一
//<a class="link_L" href="><span>home</span></a>
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 右矢印付き 「▶︎」*/
/* ボタン矢印あり 「 ---\ 」*/
/* ボタン 「く」の字型*/
/* '+' ありボタン */
/* hoverするとブワッとかわる */
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
/*----------------------------------------------------
上下左右に消える
----------------------------------------------------*/
/* 下にスッと消える*/
/* 上にスッと消える*/
/*----------------------------------------------------
上下左右から表示
----------------------------------------------------*/
/* 下から上にフワッと出てくる */
/* 上から下にフワッと出てくる */
/* 左から右にスッと出てくる*/
/* 右から左にスッと出てくる*/
/*----------------------------------------------------
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>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
/*----------------------------------------------------
ふわふわ 動き続ける
----------------------------------------------------*/
/* 上下にふわふわ */
/* ホバーすると上にテキストが透明になって、下から出てくる */
@-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);
  }
}
/*----------------------------------------------------
about
----------------------------------------------------*/
#about {
  margin-top: 24px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about {
    margin-top: 52px;
  }
}
#about .imgArea img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 880px;
}

/*----------------------------------------------------
our mission
----------------------------------------------------*/
#mission {
  background-color: #1D1D1D;
  padding: 45px 0 40px;
  position: relative;
  /* CT⇨センターの意味*/
}
@media all and (min-width: 1161px) {
  #mission {
    padding: 143px 0 70px;
  }
}
#mission .inner {
  position: relative;
}
#mission .title {
  font-family: oswald, sans-serif;
  font-weight: 700;
  text-align: right;
  padding-top: 200px;
  color: #2B2B2B;
  font-size: 74px;
  letter-spacing: -0.002em;
  line-height: 1;
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (min-width: 375px) {
  #mission .title {
    font-size: 94px;
    letter-spacing: -0.002em;
    line-height: 1;
  }
}
@media all and (min-width: 380px) {
  #mission .title {
    font-size: 100px;
    letter-spacing: -0.002em;
    line-height: 1;
    padding-top: 120px;
  }
}
@media all and (min-width: 751px) {
  #mission .title {
    font-size: 180px;
    letter-spacing: -0.002em;
    line-height: 1;
    color: #FFFFFF;
  }
}
@media all and (min-width: 1161px) {
  #mission .title {
    font-size: 202px;
    letter-spacing: -0.002em;
    line-height: 1;
  }
}
@media all and (min-width: 1300px) {
  #mission .title {
    padding-top: 50px;
    font-size: 250px;
    letter-spacing: -0.002em;
    line-height: 1;
  }
}
#mission .textArea {
  position: absolute;
  top: 0;
  /* -750 */
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (max-width: 751px) {
  #mission .textArea {
    width: 90%;
  }
}
#mission .textArea .text {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.005em;
  line-height: 2.5;
}
@media all and (min-width: 751px) {
  #mission .textArea .text {
    font-size: 16px;
    letter-spacing: 0.005em;
    line-height: 2.375;
  }
}
/*----------------------------------------------------
member
----------------------------------------------------*/
#member {
  overflow: hidden;
  margin-bottom: 83px;
}
#member .inner {
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .inner {
    max-width: 1440px;
  }
}
#member .title {
  color: white;
  margin-bottom: 19px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .title {
    margin-bottom: 26px;
  }
}
#member .title .en {
  font-size: 38px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-family: oswald, sans-serif;
  font-weight: 700;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .title .en {
    font-size: 50px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
#member .title .jp {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.6667;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .title .jp {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
    margin-left: 20px;
  }
}
#member .lt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 30px;
  /* 751- */
}
#member .lt .person {
  width: 48%;
}
#member .lt li:nth-of-type(1), #member .lt li:nth-of-type(3), #member .lt li:nth-of-type(5) {
  /* -750 */
}
@media all and (max-width: 751px) {
  #member .lt li:nth-of-type(1), #member .lt li:nth-of-type(3), #member .lt li:nth-of-type(5) {
    position: relative;
  }
  #member .lt li:nth-of-type(1)::before, #member .lt li:nth-of-type(3)::before, #member .lt li:nth-of-type(5)::before {
    position: absolute;
    bottom: 0px;
    left: -30px;
    content: "";
    position: absolute;
    height: 20px;
    width: 250%;
    background-color: #000000;
  }
}
#member .lt li:nth-of-type(1), #member .lt li:nth-of-type(4) {
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .lt li:nth-of-type(1), #member .lt li:nth-of-type(4) {
    position: relative;
  }
  #member .lt li:nth-of-type(1)::before, #member .lt li:nth-of-type(4)::before {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -80px;
    content: "";
    position: absolute;
    height: 30px;
    width: 1000%;
    background-color: #000000;
  }
}
@media all and (min-width: 1150px) {
  #member .lt li:nth-of-type(1)::before, #member .lt li:nth-of-type(4)::before {
    left: -150%;
  }
}
@media all and (min-width: 751px) {
  #member .lt .person {
    width: 32%;
  }
}
#member .person {
  min-height: 300px;
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .person {
    min-height: 330px;
  }
}
@media all and (min-width: 1150px) {
  #member .person {
    min-height: 360px;
  }
}
@media all and (min-width: 1300px) {
  #member .person {
    min-height: 400px;
  }
}
@media all and (min-width: 1400px) {
  #member .person {
    min-height: 410px;
  }
}
#member .person .textArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#member .person .imgArea {
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .person .imgArea:hover {
    -webkit-perspective: 300px;
    perspective: 300px;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-animation: fuwa 1.2s ease-in-out forwards;
            animation: fuwa 1.2s ease-in-out forwards;
  }
}
#member .person .imgArea.taoreru {
  -webkit-animation: taoreru 2.5s ease-in-out forwards;
          animation: taoreru 2.5s ease-in-out forwards;
}
@-webkit-keyframes fuwa {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: rotateX(0deg) scale(1);
            transform: rotateX(0deg) scale(1);
  }
}
@keyframes fuwa {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: rotateX(0deg) scale(1);
            transform: rotateX(0deg) scale(1);
  }
}
@-webkit-keyframes taoreru {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  30% {
    -webkit-transform: rotateX(90deg) scale(1.3);
            transform: rotateX(90deg) scale(1.3);
  }
  100% {
    -webkit-transform: rotateX(90deg) scale(1.3);
            transform: rotateX(90deg) scale(1.3);
  }
}
@keyframes taoreru {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  30% {
    -webkit-transform: rotateX(90deg) scale(1.3);
            transform: rotateX(90deg) scale(1.3);
  }
  100% {
    -webkit-transform: rotateX(90deg) scale(1.3);
            transform: rotateX(90deg) scale(1.3);
  }
}
#member .person .position, #member .person .name, #member .person .text {
  color: #535353;
}
#member .person .position {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 30px;
  letter-spacing: -0.004em;
  line-height: 1.6667;
  font-family: oswald, sans-serif;
  font-weight: 700;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .person .position {
    font-size: 4.8vw;
    line-height: 1;
  }
}
@media all and (min-width: 1601px) {
  #member .person .position {
    font-size: 80px;
  }
}
#member .person .name {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-family: oswald, sans-serif;
  font-weight: 700;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .person .name {
    line-height: 1.8;
    font-size: 1.8vw;
  }
}
@media all and (min-width: 1601px) {
  #member .person .name {
    font-size: 24px;
  }
}
#member .person .text {
  font-size: 11px;
  letter-spacing: -0.005em;
  line-height: 1.6667;
  /* 751- */
}
#member .person .text.mizText {
  font-size: 22px;
  letter-spacing: 0em;
  line-height: 1.3;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .person .text.mizText {
    font-size: 30px;
    letter-spacing: 0em;
    line-height: 1;
  }
}
@media all and (min-width: 751px) {
  #member .person .text {
    width: 150px;
    height: 100px;
  }
}
@media all and (min-width: 1000px) {
  #member .person .text {
    width: 180px;
  }
}
@media all and (min-width: 1150px) {
  #member .person .text {
    width: 230px;
    height: 100px;
  }
}
@media all and (min-width: 300px) {
  #member .imgArea .okada img {
    width: 165px;
  }
}
@media all and (min-width: 450px) {
  #member .imgArea .okada img {
    width: 200px;
  }
}
@media all and (min-width: 1000px) {
  #member .imgArea .okada img {
    width: 210px;
  }
}
@media all and (min-width: 1150px) {
  #member .imgArea .okada img {
    width: 280px;
  }
}
@media all and (min-width: 1300px) {
  #member .imgArea .okada img {
    width: 300px;
  }
}
@media all and (min-width: 1400px) {
  #member .imgArea .okada img {
    width: 330px;
  }
}
#member .imgArea .onizuka {
  /* 751- */
}
@media all and (min-width: 300px) {
  #member .imgArea .onizuka {
    margin-left: -40px;
  }
  #member .imgArea .onizuka img {
    width: 220px;
  }
}
@media all and (min-width: 450px) {
  #member .imgArea .onizuka img {
    width: 250px;
  }
}
@media all and (min-width: 751px) {
  #member .imgArea .onizuka img {
    width: 270px;
  }
}
@media all and (min-width: 1000px) {
  #member .imgArea .onizuka img {
    width: 280px;
  }
}
@media all and (min-width: 1150px) {
  #member .imgArea .onizuka {
    margin-left: -60px;
  }
  #member .imgArea .onizuka img {
    width: 380px;
  }
}
@media all and (min-width: 1300px) {
  #member .imgArea .onizuka img {
    width: 380px;
  }
}
@media all and (min-width: 1400px) {
  #member .imgArea .onizuka img {
    width: 420px;
  }
}
@media all and (min-width: 300px) {
  #member .imgArea .ito img {
    width: 151px;
  }
}
@media all and (min-width: 450px) {
  #member .imgArea .ito img {
    width: 200px;
  }
}
@media all and (min-width: 1000px) {
  #member .imgArea .ito img {
    width: 210px;
  }
}
@media all and (min-width: 1150px) {
  #member .imgArea .ito img {
    width: 280px;
  }
}
@media all and (min-width: 1300px) {
  #member .imgArea .ito img {
    width: 300px;
  }
}
@media all and (min-width: 1400px) {
  #member .imgArea .ito img {
    width: 330px;
  }
}
@media all and (min-width: 300px) {
  #member .imgArea .mizuno {
    margin-left: -30px;
  }
  #member .imgArea .mizuno img {
    width: 200px;
  }
}
@media all and (min-width: 450px) {
  #member .imgArea .mizuno img {
    width: 271px;
  }
}
@media all and (min-width: 1000px) {
  #member .imgArea .mizuno img {
    width: 300px;
  }
}
@media all and (min-width: 1150px) {
  #member .imgArea .mizuno img {
    width: 350px;
  }
}
@media all and (min-width: 1300px) {
  #member .imgArea .mizuno img {
    width: 380px;
  }
}
@media all and (min-width: 300px) {
  #member .imgArea .iwaya {
    position: relative;
    top: 0px;
  }
  #member .imgArea .iwaya img {
    width: 160px;
  }
}
@media all and (min-width: 450px) {
  #member .imgArea .iwaya img {
    width: 201px;
  }
}
@media all and (min-width: 1000px) {
  #member .imgArea .iwaya img {
    width: 210px;
  }
}
@media all and (min-width: 1150px) {
  #member .imgArea .iwaya img {
    width: 260px;
  }
}
@media all and (min-width: 1300px) {
  #member .imgArea .iwaya img {
    width: 290px;
  }
}
@media all and (min-width: 300px) {
  #member .imgArea .toba {
    position: relative;
  }
  #member .imgArea .toba img {
    width: 160px;
  }
}
@media all and (min-width: 450px) {
  #member .imgArea .toba img {
    width: 201px;
  }
}
@media all and (min-width: 1000px) {
  #member .imgArea .toba img {
    width: 210px;
  }
}
@media all and (min-width: 1150px) {
  #member .imgArea .toba img {
    width: 260px;
  }
}
@media all and (min-width: 1300px) {
  #member .imgArea .toba img {
    width: 290px;
  }
}

/*----------------------------------------------------
member モーダル
----------------------------------------------------*/
.hide-area {
  display: none;
}

.modaal-wrapper {
  /* -750 */
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (max-width: 751px) {
  .modaal-wrapper {
    padding: 40px 0 0;
  }
}
@media all and (min-width: 751px) {
  .modaal-wrapper {
    padding: 100px 20px 0;
  }
}
@media all and (min-width: 1161px) {
  .modaal-wrapper {
    padding: 100px 0px 0;
  }
}

.modaal-container .modaal-close {
  display: block;
  z-index: 10;
  background-color: initial;
  width: 30px;
  height: 30px;
  top: 30px;
  right: 20px;
  /* -750 */
  /* 751- */
  /* CT⇨センターの意味*/
}
.modaal-container .modaal-close::before, .modaal-container .modaal-close::after {
  width: 2px;
  height: 30px;
  top: 0;
}
@media all and (max-width: 751px) {
  .modaal-container .modaal-close {
    position: fixed;
  }
}
@media all and (min-width: 751px) {
  .modaal-container .modaal-close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 20px;
    top: 65px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .modaal-container .modaal-close::before, .modaal-container .modaal-close::after {
    width: 2px;
    height: 40px;
    -webkit-transition: all 0.9s;
    transition: all 0.9s;
  }
  .modaal-container .modaal-close:hover::before {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
  }
  .modaal-container .modaal-close:hover::after {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg);
  }
}
@media all and (min-width: 1161px) {
  .modaal-container .modaal-close {
    right: -90px;
    top: 280px;
    width: 67px;
    height: 67px;
  }
  .modaal-container .modaal-close::before, .modaal-container .modaal-close::after {
    height: 67px;
  }
}

.modaal-wrapper.tOkada .modaal-close::before, .modaal-wrapper.tOkada .modaal-close::after {
  background-color: #FD682F;
}
.modaal-wrapper.tOnizuka .modaal-close::before, .modaal-wrapper.tOnizuka .modaal-close::after {
  background-color: #C50632;
}
.modaal-wrapper.tIto .modaal-close::before, .modaal-wrapper.tIto .modaal-close::after {
  background-color: #a0a0a0;
}
.modaal-wrapper.tMizuno .modaal-close::before, .modaal-wrapper.tMizuno .modaal-close::after {
  background-color: #EFC823;
}
.modaal-wrapper.tIwaya .modaal-close::before, .modaal-wrapper.tIwaya .modaal-close::after {
  background-color: #2FA5E3;
}
.modaal-wrapper.tToba .modaal-close::before, .modaal-wrapper.tToba .modaal-close::after {
  background-color: #1FC5BD;
}

.modaal-container {
  max-width: 1000px;
  background: #000000;
}

.modaal-overlay {
  /* -750 */
}
@media all and (max-width: 751px) {
  .modaal-overlay {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.modaal-content-container {
  padding: 0;
  /* 751- */
}
.modalBlock {
  /* 751- */
}
@media all and (min-width: 751px) {
  .modalBlock {
    overflow: hidden;
    padding-top: 50px;
  }
}

.modalWrap {
  padding: 20px 20px 30px;
  position: relative;
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (min-width: 751px) {
  .modalWrap {
    padding: 80px 40px;
  }
}
@media all and (min-width: 1161px) {
  .modalWrap::before {
    top: -50px;
    left: -100px;
  }
}
@media all and (min-width: 1366px) {
  .modalWrap::after {
    font-size: 100px;
    letter-spacing: -0.04em;
    line-height: 1.6667;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    top: 80px;
    right: -230px;
  }
}
.modalWrap .imgIllust {
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 20px;
  width: 100px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* -750 */
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (max-width: 751px) {
  .modalWrap .imgIllust.animation {
    top: -80px;
  }
}
@media all and (min-width: 751px) {
  .modalWrap .imgIllust {
    z-index: 0;
    left: -400px;
    top: 25%;
    width: 200px;
    opacity: 0;
  }
  .modalWrap .imgIllust.animation {
    left: 0px;
    opacity: 1;
  }
}
@media all and (min-width: 1161px) {
  .modalWrap .imgIllust {
    width: 268px;
    top: 15%;
  }
}
.modalWrap.okada {
  border: 1px solid #FD682F;
}
.modalWrap.okada .title, .modalWrap.okada .gmap {
  color: #FD682F;
}
.modalWrap.okada .gmap::after {
  background: #FD682F;
}
.modalWrap.okada .feelKyoto {
  border-color: #FD682F;
}
.modalWrap.okada .number {
  background-color: #FD682F;
}
.modalWrap.okada .modaal-close::after, .modalWrap.okada .modaal-close::before {
  background-color: #FD682F;
}
.modalWrap.onizuka {
  border: 1px solid #C50632;
}
.modalWrap.onizuka .title, .modalWrap.onizuka .gmap {
  color: #C50632;
}
.modalWrap.onizuka .gmap::after {
  background: #C50632;
}
.modalWrap.onizuka .feelKyoto {
  border-color: #C50632;
}
.modalWrap.onizuka .number {
  background-color: #C50632;
}
.modalWrap.onizuka .modaal-close::after, .modalWrap.onizuka .modaal-close::before {
  background-color: #C50632;
}
.modalWrap.onizuka .imageArea {
  /* CT⇨センターの意味*/
}
@media all and (min-width: 1161px) {
  .modalWrap.onizuka .imageArea {
    left: -250px;
  }
}
.modalWrap.ito {
  border: 1px solid #a0a0a0;
}
.modalWrap.ito .title, .modalWrap.ito .gmap {
  color: #a0a0a0;
}
.modalWrap.ito .gmap::after {
  background: #a0a0a0;
}
.modalWrap.ito .feelKyoto {
  border-color: #a0a0a0;
}
.modalWrap.ito .number {
  background-color: #a0a0a0;
}
.modalWrap.ito .modaal-close::after, .modalWrap.ito .modaal-close::before {
  background-color: #a0a0a0;
}
.modalWrap.mizuno {
  border: 1px solid #EFC823;
}
.modalWrap.mizuno .title, .modalWrap.mizuno .gmap {
  color: #EFC823;
}
.modalWrap.mizuno .gmap::after {
  background: #EFC823;
}
.modalWrap.mizuno .feelKyoto {
  border-color: #EFC823;
}
.modalWrap.mizuno .number {
  background-color: #EFC823;
}
.modalWrap.mizuno .modaal-close::after, .modalWrap.mizuno .modaal-close::before {
  background-color: #EFC823;
}
.modalWrap.iwaya {
  border: 1px solid #2FA5E3;
}
.modalWrap.iwaya .title, .modalWrap.iwaya .gmap {
  color: #2FA5E3;
}
.modalWrap.iwaya .gmap::after {
  background: #2FA5E3;
}
.modalWrap.iwaya .feelKyoto {
  border-color: #2FA5E3;
}
.modalWrap.iwaya .number {
  background-color: #2FA5E3;
}
.modalWrap.iwaya .modaal-close::after, .modalWrap.iwaya .modaal-close::before {
  background-color: #2FA5E3;
}
.modalWrap.toba {
  border: 1px solid #1FC5BD;
}
.modalWrap.toba .title, .modalWrap.toba .gmap {
  color: #1FC5BD;
}
.modalWrap.toba .gmap::after {
  background: #1FC5BD;
}
.modalWrap.toba .feelKyoto {
  border-color: #1FC5BD;
}
.modalWrap.toba .number {
  background-color: #1FC5BD;
}
.modalWrap.toba .modaal-close::after, .modalWrap.toba .modaal-close::before {
  background-color: #1FC5BD;
}
.modalWrap .number {
  position: absolute;
  top: -1.92em;
  right: -1px;
  color: #000;
  padding: 5px 22px 5px 86px;
  font-family: oswald, sans-serif;
  font-weight: 700;
  background-color: #FD682F;
  /* 751- */
}
.modalWrap .number::before {
  content: "";
  width: 100px;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: linear-gradient(135deg, #000000 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 32%, #000000 32%, #000000 39%, rgba(0, 0, 0, 0) 39%, rgba(0, 0, 0, 0) 46%, #000000 46%, #000000 53%, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 60%, #000000 60%, #000000 67%, rgba(0, 0, 0, 0) 67%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 95%);
}
.modalWrap .number::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #1a1a1a transparent transparent;
  border-width: 10px;
  bottom: 0;
  top: -10px;
  right: 0;
}
@media all and (min-width: 751px) {
  .modalWrap .number {
    top: -1.87em;
  }
}
.modalWrap .feelKyoto {
  padding-bottom: 20px;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .modalWrap .feelKyoto {
    padding-bottom: 76px;
    margin-bottom: 38px;
  }
}
.modalWrap .textArea {
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (min-width: 751px) {
  .modalWrap .textArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 200px;
       -moz-column-gap: 200px;
            column-gap: 200px;
  }
}
@media all and (min-width: 1161px) {
  .modalWrap .textArea {
    -webkit-column-gap: 238px;
       -moz-column-gap: 238px;
            column-gap: 238px;
  }
}
.modalWrap .name {
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: white;
  /* -750 */
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (max-width: 751px) {
  .modalWrap .name {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 751px) {
  .modalWrap .name {
    color: #292929;
    opacity: 0;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}
@media all and (min-width: 1161px) {
  .modalWrap .name {
    font-size: 52px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}
.modalWrap .title {
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1.6667;
  margin-bottom: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .modalWrap .title {
    font-size: 26px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
.modalWrap .place {
  color: white;
  margin-bottom: 20px;
}
.modalWrap .place .gmap {
  pointer-events: auto;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  z-index: 100;
}
.modalWrap .gmap {
  font-family: oswald, sans-serif;
  font-weight: 400;
  position: relative;
  color: #BBBBBB;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* 751- */
  display: inline-block;
  margin-top: 1em;
}
.modalWrap .gmap::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #BBBBBB;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  .modalWrap .gmap:hover::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
.modalWrap .gmap::after {
  bottom: 2px;
}
.modalWrap .text {
  color: white;
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  .modalWrap .text {
    font-size: 15px;
    letter-spacing: 0.03em;
    line-height: 2;
  }
}
.modalWrap .text.iwaText {
  font-size: 22px;
  letter-spacing: 0em;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  .modalWrap .text.iwaText {
    font-size: 35px;
    letter-spacing: 0em;
    line-height: 2;
  }
}

/*----------------------------------------------------
outline
----------------------------------------------------*/
#outline {
  background-color: #1D1D1D;
  padding-bottom: 70px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline {
    padding-bottom: 126px;
  }
}
#outline .title {
  color: white;
  margin-bottom: 19px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .title {
    margin-bottom: 26px;
  }
}
#outline .title .en {
  font-size: 38px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-family: oswald, sans-serif;
  font-weight: 700;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .title .en {
    font-size: 50px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
#outline .title .jp {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.6667;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #outline .title .jp {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
    margin-left: 20px;
  }
}
#outline .box {
  /* CT⇨センターの意味*/
}
@media all and (min-width: 1161px) {
  #outline .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#outline .lt {
  border-top: 1px solid #C4C4C4;
  /* 751- */
  /* CT⇨センターの意味*/
}
#outline .lt:first-child {
  padding-bottom: 46px;
}
#outline .lt .gmap {
  font-family: oswald, sans-serif;
  font-weight: 400;
  position: relative;
  color: #BBBBBB;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* 751- */
  display: inline-block;
  margin-top: 1em;
  /* CT⇨センターの意味*/
}
#outline .lt .gmap::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #BBBBBB;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  #outline .lt .gmap:hover::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
#outline .lt .gmap::after {
  bottom: 2px;
}
#outline .lt .gmap.maLnone {
  margin-left: 0;
}
@media all and (min-width: 1161px) {
  #outline .lt .gmap {
    display: inline-block;
    margin-left: 20px;
  }
}
#outline .lt .tel {
  position: relative;
  color: #BBBBBB;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* 751- */
}
#outline .lt .tel::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #BBBBBB;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  #outline .lt .tel:hover::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
#outline .lt .tel::after {
  bottom: 2px;
}
#outline .lt > li {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.6667;
  padding: 32px 0 0;
}
#outline .lt > li h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1em;
  color: white;
}
#outline .lt > li:first-child {
  padding-top: 45px;
}
@media all and (min-width: 751px) {
  #outline .lt > li {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
    padding-top: 40px;
  }
}
@media all and (min-width: 1161px) {
  #outline .lt {
    width: 48.413%;
  }
  #outline .lt:first-child {
    padding-bottom: 0px;
  }
  #outline .lt > li {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #outline .lt > li h3 {
    width: 18.272%;
    margin-bottom: 0;
  }
  #outline .lt > li .contents {
    width: 88%;
  }
}
#outline .lt_busin {
  list-style: none;
  margin-left: 1.5em;
}
#outline .lt_busin > li {
  position: relative;
}
#outline .lt_busin > li::before {
  content: "■";
  position: absolute;
  left: -1.8em;
}
#outline .lt_busin li {
  margin-bottom: 1em;
}
#outline .lt_busin li::before {
  font-size: 10px;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  top: 2px;
}
/*# sourceMappingURL=about.css.map */