@charset "UTF-8";
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* ボーダーボックスの変更*/
/* ボーダーボックスの変更*/
/* 反転*/
/*----------------------------------------------------
文字幅が指定幅を超えたときに「...」を表示する
----------------------------------------------------*/
/*----------------------------------------------------
ホバーで画像拡大。下記例。li要素にの中に下記のように入れる
----------------------------------------------------*/
/* 
  <li>
    <a href="./about">
      <div class="imageArea">
        <img src="asset/images/home/contents_about_sp.jpg" alt="" class="change">
      </div>                
    </a>
  </li>
*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
icon回転
----------------------------------------------------*/
/*----------------------------------------------------
親要素よりも幅を超えて表示
----------------------------------------------------*/
/*----------------------------------------------------
背景
----------------------------------------------------*/
/*----------------------------------------------------
グラデーション
----------------------------------------------------*/
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
テキスト内リンク
//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>
----------------------------------------------------*/
/*----------------------------------------------------
読み込み
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/* Light/Medium */
/* Regular/Medium */
/* 游明朝体 Regular/Medium */
/* 游明朝体 Demibold */
/* 游明朝体 extrabold */
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 右矢印付き 「▶︎」*/
/* ボタン矢印あり 「 ---\ 」*/
/* ボタン 「く」の字型*/
/* '+' ありボタン */
/* hoverするとブワッとかわる */
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* ボーダーボックスの変更*/
/* ボーダーボックスの変更*/
/* 反転*/
/*----------------------------------------------------
文字幅が指定幅を超えたときに「...」を表示する
----------------------------------------------------*/
/*----------------------------------------------------
ホバーで画像拡大。下記例。li要素にの中に下記のように入れる
----------------------------------------------------*/
/* 
  <li>
    <a href="./about">
      <div class="imageArea">
        <img src="asset/images/home/contents_about_sp.jpg" alt="" class="change">
      </div>                
    </a>
  </li>
*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
icon回転
----------------------------------------------------*/
/*----------------------------------------------------
親要素よりも幅を超えて表示
----------------------------------------------------*/
/*----------------------------------------------------
背景
----------------------------------------------------*/
/*----------------------------------------------------
グラデーション
----------------------------------------------------*/
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
テキスト内リンク
//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>
----------------------------------------------------*/
/*----------------------------------------------------
読み込み
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/* Light/Medium */
/* Regular/Medium */
/* 游明朝体 Regular/Medium */
/* 游明朝体 Demibold */
/* 游明朝体 extrabold */
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本の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>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
/*----------------------------------------------------
ふわふわ 動き続ける
----------------------------------------------------*/
/* 上下にふわふわ */
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: white;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------------------------------------------------
メインビジュアル
----------------------------------------------------*/
.mv_text_sp {
  display: block;
  margin-top: 0px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mv_text_sp {
    display: none;
  }
}
.mv_text_sp .arrow {
  margin-top: 40px;
  margin-bottom: 52px;
  text-align: center;
}
.mv_text_sp .arrow img {
  width: 11px;
}

#mainVisual {
  padding: 110px 0 0;
  position: relative;
  overflow: hidden;
  background: url(../images/mv/sp_bg.png);
  background-size: 502px 342px;
  background-repeat: no-repeat;
  background-position: center top 70px;
  padding-bottom: 40px;
  /* 751- */
  /* CT⇨センターの意味*/
  /*戻る、次へ矢印の位置*/
}
@media all and (min-width: 376px) {
  #mainVisual {
    background: url(../images/mv/sp_bg.png);
    background-size: 532px 372px;
    background-repeat: no-repeat;
    background-position: center top 70px;
    padding-bottom: 55px;
  }
}
@media all and (min-width: 751px) {
  #mainVisual {
    background: url(../images/mv/curve_pc.png);
    background-repeat: no-repeat;
    background-size: 1267px 760px;
    background-position: center top 50px;
    min-height: 900px;
  }
}
@media all and (min-width: 1041px) {
  #mainVisual {
    background: url(../images/mv/curve_pc.png);
    background-repeat: no-repeat;
    background-size: 1667px 1160px;
    background-position: center top 0px;
    min-height: 1200px;
  }
}
#mainVisual .wrap {
  position: relative;
}
#mainVisual .mv_inner {
  position: relative;
  left: 70px;
  max-width: 1040px;
  margin: 0 auto;
}
#mainVisual .mv_inner .arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -250px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mainVisual .mv_inner .arrow {
    left: calc(50% - 60px);
  }
}
@media all and (min-width: 1000px) {
  #mainVisual .mv_inner .arrow {
    left: calc(50% - 50px);
  }
}
@media all and (min-width: 1440px) {
  #mainVisual .mv_inner .arrow {
    bottom: -320px;
  }
}
#mainVisual .mv_text {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mainVisual .mv_text {
    position: absolute;
    z-index: 2;
    bottom: -150px;
    display: block;
  }
  #mainVisual .mv_text img {
    max-width: 680px;
  }
}
@media all and (min-width: 1000px) {
  #mainVisual .mv_text img {
    max-width: 831px;
  }
}
@media all and (min-width: 1440px) {
  #mainVisual .mv_text {
    bottom: -220px;
    left: -60px;
  }
}
#mainVisual .slider {
  position: relative;
  z-index: 2;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #mainVisual .slider {
    top: -10px;
  }
}
@media all and (min-width: 751px) {
  #mainVisual .slider {
    top: 30px;
  }
}
@media all and (min-width: 1440px) {
  #mainVisual .slider {
    top: 100px;
  }
}
#mainVisual .slider .item {
  margin-right: -20px;
  margin-left: -20px;
  padding-bottom: 15px;
  /* 751- */
}
#mainVisual .slider .item img {
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.16);
}
@media all and (min-width: 751px) {
  #mainVisual .slider .item {
    margin-right: -80px;
    margin-left: -80px;
  }
}
@media all and (min-width: 1440px) {
  #mainVisual .slider .item {
    margin-right: -50px;
    margin-left: -50px;
  }
}
#mainVisual .slider .item:hover img {
  transform: scale(1, 1);
}
#mainVisual .slick-slide {
  /*スライド左右の余白調整*/
  /*真ん中は等倍。その他はサイズ小さくする*/
  transform: scale(0.6);
  transition: all 0.8s;
  opacity: 0.7;
  z-index: 1;
}
#mainVisual .slick-slide.slick-center {
  transform: scale(1);
  z-index: 5;
  opacity: 1;
}
@media all and (min-width: 1440px) {
  #mainVisual .slick-slide {
    width: 1040px;
  }
}
#mainVisual .slick-track > li:nth-of-type(9).zoom {
  transform: scale(1);
  opacity: 1;
}
#mainVisual .slick-prev,
#mainVisual .slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer;
  /*クリックをしたら出てくる枠線を消す*/
  outline: none;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  height: 15px;
  width: 15px;
}
#mainVisual .slick-prev {
  left: 5%;
  transform: rotate(-135deg);
  z-index: 6;
}
#mainVisual .slick-next {
  right: 5%;
  transform: rotate(45deg);
}
#mainVisual .slick-prev::before,
#mainVisual .slick-next::before {
  font-size: 0;
}
#mainVisual .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
  bottom: -170px;
  left: -240px;
  /* CT⇨センターの意味*/
}
@media all and (min-width: 1041px) {
  #mainVisual .slick-dots {
    bottom: -160px;
    left: -350px;
  }
}
@media all and (min-width: 1440px) {
  #mainVisual .slick-dots {
    left: -410px;
  }
}
#mainVisual .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
#mainVisual .slick-dots li button {
  /*ドットボタンのサイズ*/
  width: 1px;
  height: 1px;
  color: transparent;
  outline: none;
  display: block;
  border-radius: 50%;
  /*ドットボタンの色*/
  background: initial;
  border: 1px solid #00B7C9;
}
#mainVisual .slick-dots li button::before {
  top: -3px;
  left: -4px;
  color: none;
  font-size: 11px;
  opacity: 0;
  transition: all 0.5s;
}
#mainVisual .slick-dots li:hover {
  color: #265DAA;
}
#mainVisual .slick-dots li:hover button:before {
  color: #00B7C9;
  opacity: 1;
}
#mainVisual .slick-dots li.slick-active {
  transform: scale(1.5);
}
#mainVisual .slick-dots li.slick-active button {
  /*ドットボタンの現在地表示の色*/
}
#mainVisual .slick-dots li.slick-active button::before {
  top: -3px;
  left: -4px;
  font-size: 10px;
  transform: scale(0.7);
  color: #00B7C9;
  opacity: 1;
}

/*----------------------------------------------------
イントロダクション
----------------------------------------------------*/
#intro {
  margin: 35px 0 71px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #intro {
    margin: 81px 0 189px;
  }
}
#intro .bigText {
  font-size: 20px;
  letter-spacing: 0.11em;
  line-height: 1.45;
  font-weight: bold;
  margin-bottom: 22px;
  /* 751- */
}
#intro .bigText span {
  color: #00B8C8;
  font-size: 28px;
  letter-spacing: 0.11em;
  line-height: 1.45;
  margin-right: 16px;
}
@media all and (min-width: 751px) {
  #intro .bigText {
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }
  #intro .bigText span {
    font-size: 37px;
    letter-spacing: 0.1em;
    line-height: 1.45;
    margin-right: 0px;
  }
}
#intro .text {
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 2.461;
  /* 751- */
}
@media all and (min-width: 751px) {
  #intro .text {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 2.857;
  }
}
#intro .textArea {
  /* -750 */
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (max-width: 751px) {
  #intro .textArea {
    margin-bottom: 36px;
  }
}
@media all and (min-width: 751px) {
  #intro .textArea {
    width: 40.4807%;
  }
}
@media all and (min-width: 1041px) {
  #intro .textArea {
    width: 40.4807%;
    margin-right: 0px;
  }
}
#intro .imgArea {
  /* -750 */
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (max-width: 751px) {
  #intro .imgArea {
    position: relative;
    right: -40px;
  }
}
@media all and (min-width: 751px) {
  #intro .imgArea {
    width: 52.153%;
  }
}
@media all and (min-width: 1041px) {
  #intro .imgArea {
    width: 600px;
  }
}
#intro .introWrap {
  /* 751- */
}
@media all and (min-width: 751px) {
  #intro .introWrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

/*----------------------------------------------------
works
----------------------------------------------------*/
#works {
  margin-bottom: 80px;
  /* 751- */
  /* SPでモーダルを押した際の青枠を消す */
}
@media all and (min-width: 751px) {
  #works {
    margin-bottom: 170px;
  }
}
#works *:focus {
  /* -750 */
}
@media all and (max-width: 751px) {
  #works *:focus {
    outline: none;
  }
}
#works .title {
  position: relative;
  color: #00B7C9;
  margin-left: 12px;
  margin-bottom: 5px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: bold;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #works .title::before {
    content: "";
    position: absolute;
    display: block;
    background: #00B7C9;
    width: 5px;
    height: 100%;
    margin-left: -12px;
  }
}
@media all and (min-width: 751px) {
  #works .title {
    font-size: 21px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
  }
}
#works .lt_works {
  /* 751- */
}
#works .lt_works > li {
  margin-bottom: 28px;
}
#works .lt_works > li:last-child {
  margin-bottom: 0px;
}
@media all and (min-width: 751px) {
  #works .lt_works {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: all 0.5s;
  }
  #works .lt_works > li {
    margin-bottom: 90px;
    width: 41.463%;
    position: relative;
  }
  #works .lt_works > li:nth-of-type(2), #works .lt_works > li:nth-of-type(4) {
    top: 33px;
  }
  #works .lt_works > li:nth-of-type(3), #works .lt_works > li:nth-of-type(4) {
    left: 30px;
  }
  #works .lt_works > li:hover .imgArea img {
    transform: scale(1.2);
  }
  #works .lt_works > li:hover .btnText {
    transform: scale(1.2);
  }
}
@media all and (min-width: 1100px) {
  #works .lt_works > li:nth-of-type(3), #works .lt_works > li:nth-of-type(4) {
    left: 136px;
  }
}
#works .imgArea {
  position: relative;
  overflow: hidden;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}
#works .imgArea img {
  transition: all 0.3s;
}
#works .imgArea .btnText {
  position: absolute;
  background: linear-gradient(135deg, rgb(0, 183, 201) 0%, rgb(0, 203, 170) 100%);
  border-radius: 50%;
  width: 94px;
  height: 94px;
  right: -11px;
  bottom: -30px;
  display: block;
  /* 751- */
}
#works .imgArea .btnText::after {
  content: "";
  position: absolute;
  background: url("../images/common/text_tap.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 39px;
  height: 18px;
  left: 50%;
  transform: translateX(-50%);
  top: 33px;
}
@media all and (min-width: 751px) {
  #works .imgArea .btnText {
    width: 106px;
    height: 106px;
    right: -23px;
    bottom: -31px;
    transition: all 0.3s;
  }
  #works .imgArea .btnText::after {
    content: "";
    position: absolute;
    background: url("../images/common/text_click.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 25px;
    transition: all 0.3s;
    left: calc(50% - 5px);
    top: 35px;
  }
}

/*----------------------------------------------------
member
----------------------------------------------------*/
#member {
  /* SPでモーダルを押した際の青枠を消す */
  padding: 69px 0 79px;
  /* 751- */
}
#member *:focus {
  /* -750 */
}
@media all and (max-width: 751px) {
  #member *:focus {
    outline: none;
  }
}
@media all and (min-width: 751px) {
  #member {
    padding: 190px 0 170px;
  }
}
#member .secTitle {
  margin-bottom: 34px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .secTitle {
    margin-bottom: 154px;
  }
}
#member .member_lt {
  position: relative;
  /* 751- */
}
#member .member_lt > li {
  margin-bottom: 10px;
  /* -750 */
}
#member .member_lt > li:last-child {
  margin-bottom: 0px;
}
@media all and (min-width: 751px) {
  #member .member_lt {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 821px;
    margin: 0 auto;
  }
  #member .member_lt > li {
    width: 40.3055%;
  }
  #member .member_lt > li:nth-child(odd) {
    position: relative;
    top: 52px;
  }
  #member .member_lt > li:nth-of-type(1), #member .member_lt > li:nth-of-type(2) {
    position: relative;
    left: 30px;
  }
  #member .member_lt > li .imgArea {
    /* 751- */
  }
}
@media all and (min-width: 1100px) {
  #member .member_lt > li {
    max-width: 350px;
  }
  #member .member_lt > li:nth-of-type(1), #member .member_lt > li:nth-of-type(2) {
    position: relative;
    left: 115px;
  }
  #member .member_lt > li:nth-of-type(2) {
    margin-right: 52px;
  }
}
#member .memberBox {
  display: flex;
  padding: 0px;
  position: relative;
  overflow: hidden;
  /* -750 */
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #member .memberBox {
    overflow: initial;
    position: relative;
  }
  #member .memberBox::after {
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 70%;
    background: white;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
  }
}
#member .memberBox::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media all and (max-width: 751px) {
  #member .memberBox {
    height: 200px;
    max-width: 400px;
    margin: 0 auto;
    align-items: flex-end;
  }
  #member .memberBox.moriyama, #member .memberBox.nishioka {
    flex-direction: row-reverse;
  }
  #member .memberBox.moriyama .textArea, #member .memberBox.nishioka .textArea {
    margin: 0 10px 10px 0;
    text-align: right;
  }
  #member .memberBox.moriyama .title::before, #member .memberBox.nishioka .title::before {
    bottom: 0;
    right: 0px;
  }
}
#member .memberBox.fukuda {
  /* -750 */
}
@media all and (max-width: 751px) {
  #member .memberBox.fukuda::before {
    background: url(../images/member/fukuda_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
  }
}
#member .memberBox.taniguchi {
  /* -750 */
}
@media all and (max-width: 751px) {
  #member .memberBox.taniguchi::before {
    background: url(../images/member/taniguchi_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
  }
}
#member .memberBox.moriyama {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #member .memberBox.moriyama::before {
    background: url(../images/member/moriyama_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
  }
}
@media all and (min-width: 751px) {
  #member .memberBox.moriyama .imgArea img {
    width: calc(100% + 60px);
    margin: 0 -20px;
  }
}
#member .memberBox.nishioka {
  /* -750 */
}
@media all and (max-width: 751px) {
  #member .memberBox.nishioka::before {
    background: url(../images/member/nishioka_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
  }
}
#member .memberBox.yamada {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #member .memberBox.yamada::before {
    background: url(../images/member/yamada_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
  }
}
@media all and (min-width: 751px) {
  #member .memberBox.yamada .imgArea img {
    width: calc(100% + 90px);
    margin: 0 auto -60px -30px;
  }
}
@media all and (min-width: 751px) {
  #member .memberBox {
    display: flex;
    flex-direction: column;
  }
  #member .memberBox .imgArea img {
    transition: all 0.3s;
  }
  #member .memberBox.yamada {
    /* -750 */
  }
}
@media all and (min-width: 751px) and (max-width: 751px) {
  #member .memberBox.yamada::before {
    background: url(../images/member/yamada_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
  }
}
@media all and (min-width: 751px) {
  #member .memberBox:hover .imgArea img {
    transform: scale(1.15);
  }
  #member .memberBox:hover .btnText {
    transform: scale(1.2);
  }
}
#member .title {
  font-size: 15px;
  letter-spacing: 0.15em;
  line-height: 1.466;
  position: relative;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #member .title {
    padding-bottom: 15px;
    margin-bottom: 11px;
  }
  #member .title::before {
    bottom: 0;
    content: "";
    position: absolute;
    height: 1px;
    width: 232px;
    background-color: #00B7C9;
  }
}
@media all and (min-width: 751px) {
  #member .title {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.466;
    margin-bottom: 10px;
  }
}
#member .textArea {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #member .textArea {
    margin-left: 10px;
    margin-bottom: 10px;
  }
}
@media all and (min-width: 751px) {
  #member .textArea {
    margin-top: 10px;
    text-align: right;
    position: relative;
  }
  #member .textArea::after {
    content: "";
    position: absolute;
    top: -75px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.16);
  }
}
#member .nameArea {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #member .nameArea {
    position: relative;
  }
}
@media all and (min-width: 751px) {
  #member .nameArea {
    display: flex;
    justify-content: flex-end;
  }
  #member .nameArea .name_inner {
    margin-left: 1em;
  }
}
#member .position {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.416;
  margin-bottom: 5px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .position {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 1.416;
  }
}
#member .imgArea {
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .imgArea {
    position: relative;
    overflow: hidden;
  }
  #member .imgArea .btnText {
    position: absolute;
    background: linear-gradient(135deg, rgb(0, 183, 201) 0%, rgb(0, 203, 170) 100%);
    border-radius: 50%;
    width: 94px;
    height: 94px;
    right: -11px;
    bottom: -30px;
    display: block;
    /* 751- */
  }
  #member .imgArea .btnText::after {
    content: "";
    position: absolute;
    background: url("../images/common/text_tap.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 39px;
    height: 18px;
    left: 50%;
    transform: translateX(-50%);
    top: 33px;
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  #member .imgArea .btnText {
    width: 106px;
    height: 106px;
    right: -23px;
    bottom: -31px;
    transition: all 0.3s;
  }
  #member .imgArea .btnText::after {
    content: "";
    position: absolute;
    background: url("../images/common/text_click.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 25px;
    transition: all 0.3s;
    left: calc(50% - 5px);
    top: 35px;
  }
}
#member .name {
  color: #00B7C9;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  /* 751- */
}
@media all and (min-width: 751px) {
  #member .name {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

/*----------------------------------------------------
unique
----------------------------------------------------*/
#unique {
  padding: 40px 0 90px;
  background: linear-gradient(90deg, rgb(0, 183, 201) 0%, rgb(0, 203, 170) 100%), rgba(255, 255, 255, 0);
  background-size: 100% 57%, 100% 43%;
  background-repeat: no-repeat;
  /* 751- */
}
@media all and (min-width: 751px) {
  #unique {
    padding: 100px 0 163px;
  }
}
#unique .box {
  margin-bottom: 52px;
  /* 751- */
}
#unique .box:last-child {
  margin-bottom: 0px;
}
#unique .box .textArea {
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  #unique .box {
    margin-bottom: 77px;
  }
}
@media all and (min-width: 1020px) {
  #unique .box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  #unique .box .textArea {
    max-width: 430px;
    margin-bottom: 0;
  }
  #unique .box img {
    max-width: 373px;
  }
  #unique .box:nth-child(odd) {
    flex-direction: row-reverse;
  }
  #unique .box:nth-child(odd) img {
    max-width: 401px;
  }
}
#unique .title {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: bold;
  height: 70px;
  position: relative;
  /* 751- */
}
#unique .title span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#unique .title.one {
  background: url(../images/common/number/one.png);
  background-size: 72px;
  background-position: center left;
  background-repeat: no-repeat;
}
#unique .title.two {
  background: url(../images/common/number/two.png);
  background-size: 72px;
  background-position: center left;
  background-repeat: no-repeat;
}
#unique .title.three {
  background: url(../images/common/number/three.png);
  background-size: 72px;
  background-position: center left;
  background-repeat: no-repeat;
}
@media all and (min-width: 751px) {
  #unique .title {
    height: 115px;
    font-size: 23px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  #unique .title.one, #unique .title.two, #unique .title.three {
    background-size: 100px;
  }
}
#unique .text {
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 2.461;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #unique .text {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 751px) {
  #unique .text {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 2.461;
  }
}
#unique .contents {
  background-color: #fff;
  padding: 37px 20px 54px;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
  /* 751- */
}
@media all and (min-width: 751px) {
  #unique .contents {
    padding: 65px 89px 79px;
  }
}

/*----------------------------------------------------
info
----------------------------------------------------*/
#info {
  padding: 0 0 70px;
  /* 751- */
  /* アコーディオン */
}
@media all and (min-width: 751px) {
  #info {
    padding: 0 0 200px;
  }
}
#info .title {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 9px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #info .title {
    margin-bottom: 21px;
    font-size: 21px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}
#info .box:first-child {
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #info .box:first-child {
    margin-bottom: 130px;
  }
}
#info .acBox {
  /* 751- */
}
#info .acBox > li {
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgb(0, 183, 201) 0%, rgb(0, 203, 170) 100%);
}
#info .acBox > li:last-child {
  margin-bottom: 0;
}
#info .acBox > li:nth-of-type(3), #info .acBox > li:nth-of-type(4) {
  background: linear-gradient(90deg, rgb(0, 203, 170) 0%, rgb(0, 215, 150) 100%);
}
#info .acBox > li.expand {
  padding-bottom: 10px;
}
@media all and (min-width: 751px) {
  #info .acBox > li {
    margin-bottom: 30px;
  }
  #info .acBox > li.expand {
    padding-bottom: 30px;
  }
}
#info .ac_title {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 13px 29px 16px 18px;
  height: 100%;
  font-weight: bold;
  color: white;
  position: relative;
  cursor: pointer;
  /* 751- */
}
#info .ac_title::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: solid 2px white;
  border-right: solid 2px white;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.5s;
  right: 11px;
}
#info .ac_title.open::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: solid 2px white;
  border-right: solid 2px white;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  #info .ac_title {
    padding: 42px 30px;
    font-size: 25px;
    letter-spacing: 0.15em;
    line-height: 1.44;
    text-align: center;
  }
  #info .ac_title::after {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    border-top: solid 4px white;
    border-right: solid 4px white;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    right: 50px;
  }
  #info .ac_title.open::after {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    border-top: solid 4px white;
    border-right: solid 4px white;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  #info .ac_title > span {
    position: relative;
  }
  #info .ac_title > span:after {
    transition: all 0.3s;
    content: "";
    position: absolute;
    height: 3px;
    width: 80%;
    background-color: white;
    bottom: -5px;
    left: 0%;
    transform: scale(0, 1); /* x軸方向に縮小で0にして消えてるように見せる */
  }
  #info .ac_title:hover span:after {
    width: 100%;
    transform: scale(1, 1);
  }
}
#info .ac_cont {
  display: none;
  background-color: #fff;
  margin: 0px 10px;
  padding: 30px 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #info .ac_cont {
    margin: 0px 30px;
    padding: 50px 45px 60px;
  }
}
#info .lt_item {
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
  /* 751- */
  /* CT⇨センターの意味*/
}
#info .lt_item::after {
  content: "";
  position: absolute;
  background: url("../images/info/border_dotted.png");
  background-repeat: repeat-x;
  background-size: contain;
  bottom: -2px;
  width: 100%;
  height: 2px;
}
#info .lt_item:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
#info .lt_item:last-child::after {
  background: initial;
}
@media all and (min-width: 751px) {
  #info .lt_item {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
@media all and (min-width: 1041px) {
  #info .lt_item {
    display: flex;
    align-items: flex-start;
  }
}
#info .lt_item .title_min {
  color: #00B7C9;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 2.153;
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (min-width: 751px) {
  #info .lt_item .title_min {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 2.142;
  }
}
@media all and (min-width: 1041px) {
  #info .lt_item .title_min {
    width: 120px;
  }
}
#info .lt_item .text {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.538;
  /* 751- */
  /* CT⇨センターの意味*/
}
#info .lt_item .text .red {
  display: inline-block;
  margin-top: 5px;
  color: #d60000;
}
@media all and (min-width: 751px) {
  #info .lt_item .text {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 2.142;
  }
}
@media all and (min-width: 1041px) {
  #info .lt_item .text {
    max-width: 740px;
  }
}
#info .lt_marker {
  list-style: none;
  margin-left: 1em;
}
#info .lt_marker > li {
  position: relative;
}
#info .lt_marker > li::before {
  content: "■";
  position: absolute;
  left: -1em;
}
#info .lt_listABC {
  list-style: none;
  margin-left: 1em;
}
#info .lt_listABC > li {
  position: relative;
  list-style-type: upper-alpha;
}
#info .lt_listABC > li::before {
  content: "";
  position: absolute;
  left: -3em;
}
#info .text_link {
  position: relative;
  color: #00D796;
  transition: all 0.5s;
  /* 751- */
}
#info .text_link::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #00D796;
  left: 0;
  bottom: -2px;
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  #info .text_link:hover {
    opacity: 0.8;
  }
  #info .text_link:hover::after {
    left: 0%;
    transform: scale(1, 0); /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
#info .mgB {
  margin-bottom: 21px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #info .mgB {
    margin-bottom: 45px;
  }
}/*# sourceMappingURL=home.css.map */