@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* ボーダーボックスの変更*/
/* ボーダーボックスの変更*/
/* 反転*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/* Light/Medium */
/* Regular/Medium */
/* 游明朝体 Regular/Medium */
/* 游明朝体 Demibold */
/* 游明朝体 extrabold */
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
背景
----------------------------------------------------*/
/*----------------------------------------------------
親要素よりも幅を超えて表示
----------------------------------------------------*/
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
擬似要素
----------------------------------------------------*/
/*----------------------------------------------------
テキスト内リンク
//html例：
<p>テキスト<a href="" class="link_text">こちら</a>テキス</p>
----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 初期：bg塗りあり、枠線塗りあり ⇨ hoverで反転 */
/* 初期：bg塗りなし、枠線塗りあり ⇨ hoverで反転 */
/* ボタン矢印あり 「 ---\ 」*/
.scroll_inner {
  width: 100%;
}

/*----------------------------------------------------
メインビジュアル
----------------------------------------------------*/
#mv {
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv {
    margin-top: 80px;
  }
}
#mv .mv_main {
  /* 751- */
  /* CT⇨センターの意味*/
}
#mv .mv_main img {
  /* -750 */
}
@media all and (max-width: 751px) {
  #mv .mv_main img {
    height: 87vh;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
}
@media all and (min-width: 751px) {
  #mv .mv_main img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
    max-height: 687px;
  }
}
/*----------------------------------------------------
メインビジュアル アニメーション
----------------------------------------------------*/
/*========= 画面遷移のためのCSS ===============*/
body.appear {
  /*bodyにappearクラスがついたら出現*/
}
body.appear .splashbg1, body.appear .splashbg2 {
  content: "";
  position: fixed;
  top: 0;
  display: block;
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 9;
  width: 100%;
  height: 100vh;
  background-color: white;
}
body.appear .splashbg1 {
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  left: 50%;
  -webkit-transform: scaleX(1) skewX(-15deg);
          transform: scaleX(1) skewX(-15deg);
}
body.appear .splashbg2 {
  -webkit-animation-name: PageAnime2;
          animation-name: PageAnime2;
  right: 50%;
  -webkit-transform: scaleX(1) skewX(-15deg);
          transform: scaleX(1) skewX(-15deg);
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*右に消えるエリア*/
@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1) skewX(-15deg);
            transform: scaleX(1) skewX(-15deg);
    opacity: 1;
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0.5) skewX(-15deg);
            transform: scaleX(0.5) skewX(-15deg);
    opacity: 0;
  }
}
@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1) skewX(-15deg);
            transform: scaleX(1) skewX(-15deg);
    opacity: 1;
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0.5) skewX(-15deg);
            transform: scaleX(0.5) skewX(-15deg);
    opacity: 0;
  }
}
/*左に消えるエリア*/
@-webkit-keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1) skewX(-15deg);
            transform: scaleX(1) skewX(-15deg);
    opacity: 1;
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0.5) skewX(-15deg);
            transform: scaleX(0.5) skewX(-15deg);
    opacity: 0;
  }
}
@keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1) skewX(-15deg);
            transform: scaleX(1) skewX(-15deg);
    opacity: 1;
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0.5) skewX(-15deg);
            transform: scaleX(0.5) skewX(-15deg);
    opacity: 0;
  }
}
/*----------------------------------------------------
お知らせ
----------------------------------------------------*/
#top_info {
  padding-top: 0px;
  /*padding-top: 45px;*/
  padding-bottom: 103px;
  background-color: #000;
  /* 751- */
  /* 751- */
}
@media all and (min-width: 751px) {
  #top_info {
    padding-top: 138px;
    padding-bottom: 106px;
  }
}
#top_info .comingTaro {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #top_info .comingTaro {
    display: block;
    text-align: center;
    margin-bottom: 50px;
  }
  #top_info .comingTaro img {
    width: 627px;
  }
}
#top_info .intro {
  padding: 20px 0 25px;
  position: relative;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  margin-bottom: 57px;
  text-align: center;
  color: white;
  /* 751- */
}
#top_info .intro::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: white;
  left: 0;
  top: -5px;
}
#top_info .intro::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: white;
  left: 0;
  bottom: -5px;
}
@media all and (min-width: 751px) {
  #top_info .intro {
    padding: 30px 0 36px;
    margin-bottom: 140px;
  }
}
#top_info .bigText {
  margin: 0 0 15px;
  font-size: 20px;
  letter-spacing: 0em;
  line-height: 1.5;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
  /* 751- */
}
@media all and (min-width: 751px) {
  #top_info .bigText {
    margin: 0 0 20px;
    font-size: 40px;
    letter-spacing: 0em;
    line-height: 1.6;
  }
}
#top_info .miniText {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.2;
  /* 751- */
}
@media all and (min-width: 751px) {
  #top_info .miniText {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
  }
}
#top_info .secTitle {
  text-align: center;
  margin-bottom: 40px;
  /* 751- */
}
#top_info .secTitle img {
  width: 135px;
}
@media all and (min-width: 751px) {
  #top_info .secTitle {
    margin-bottom: 100px;
  }
  #top_info .secTitle img {
    width: 271px;
  }
}
#top_info .col .box {
  padding: 22px 3.3333%;
  background-color: #fff;
  /* 751- */
}
@media all and (min-width: 751px) {
  #top_info .col .box {
    padding: 40px 20px 38px 40px;
  }
}
#top_info .col:first-child .box {
  /* -750 */
}
@media all and (max-width: 751px) {
  #top_info .col:first-child .box {
    margin: 0 0 55px;
  }
}
#top_info .titleInfo {
  text-align: center;
  margin-bottom: 20px;
  /* 751- */
}
#top_info .titleInfo.news img {
  width: 76px;
}
#top_info .titleInfo.twitter img {
  width: 76px;
}
@media all and (min-width: 751px) {
  #top_info .titleInfo {
    margin-bottom: 41px;
  }
  #top_info .titleInfo.news img {
    width: 132px;
  }
  #top_info .titleInfo.twitter img {
    width: 140px;
  }
}
@media all and (min-width: 751px) {
  #top_info .cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #top_info .cols .col {
    width: 46%;
    margin-top: 0;
  }
  #top_info .scrollWrap,
#top_info .twitter_timeline {
    height: 296px;
  }
}
#top_info .cols {
  margin-bottom: 170px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #top_info .cols {
    margin-bottom: 140px;
  }
}

#news .n_date {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.714;
  /* 751- */
}
@media all and (min-width: 751px) {
  #news .n_date {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.714;
  }
}
#news .n_text {
  word-break: break-all;
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.714;
  /* 751- */
}
@media all and (min-width: 751px) {
  #news .n_text {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.714;
  }
}
#news .n_text.red {
  color: #E83828;
}
#news li {
  padding: 0px 0 30px;
  border-top: 1px solid #D20E19;
  /* 751- */
}
#news li:first-child {
  padding-top: 0;
  border-top: none;
}
@media all and (min-width: 751px) {
  #news li {
    padding: 0px 0 20px;
  }
}

.outline {
  text-align: center;
  position: relative;
}
.outline .titleBg_sp {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  .outline .titleBg_sp {
    position: absolute;
    top: -105px;
    z-index: 1;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
@media all and (min-width: 751px) {
  .outline .titleBg_sp {
    display: none;
  }
}
.outline .outline_title {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  /* 751- */
}
.outline .outline_title span {
  background-color: #D20E19;
  color: white;
  font-size: 17px;
  letter-spacing: 0em;
  line-height: 1.142;
  display: inline-block;
  padding: 17px 10px 18px;
}
@media all and (min-width: 751px) {
  .outline .outline_title {
    margin-bottom: 40px;
  }
  .outline .outline_title span {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.6;
    padding: 14px 20px 17px;
  }
}
.outline .outline_text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.6;
  /* 751- */
}
@media all and (min-width: 751px) {
  .outline .outline_text {
    text-align: left;
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 2.2;
  }
}

/*----------------------------------------------------
お知らせ scroll bar
----------------------------------------------------*/
.scrollWrap {
  height: 295px;
  overflow-y: scroll;
  /* 751- */
}
@media all and (min-width: 751px) {
  .scrollWrap {
    height: 100px;
    width: 100%;
    padding-right: 30px;
  }
}

.twitter_timeline {
  height: 295px;
}

.twitter_timeline {
  overflow-y: hidden;
}

.scroll_y {
  overflow-y: scroll;
}

.mCSB_inside > .mCSB_container {
  margin-right: 20px;
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000000;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000000;
  width: 8px;
  border-radius: 0;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000000;
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000000;
}

/*----------------------------------------------------

----------------------------------------------------*/
#Top_imageArea .pc_w490_spw1000 {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #Top_imageArea .pc_w490_spw1000 a {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 751px) {
  #Top_imageArea .pc_w490_spw1000 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #Top_imageArea .pc_w490_spw1000 a {
    width: 49%;
  }
}
#Top_imageArea .pc_w320_spw480 {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 751px) {
  #Top_imageArea .pc_w320_spw480 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #Top_imageArea .pc_w320_spw480 a {
    margin-bottom: 10px;
    width: 49%;
  }
}
@media all and (min-width: 751px) {
  #Top_imageArea .pc_w320_spw480 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #Top_imageArea .pc_w320_spw480::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
  #Top_imageArea .pc_w320_spw480 a {
    margin-bottom: 10px;
    width: 32%;
  }
}
#Top_imageArea .pc_w320_spw480 .ban.pc_center {
  /* 751- */
  /* CT⇨センターの意味*/
}
@media all and (min-width: 751px) {
  #Top_imageArea .pc_w320_spw480 .ban.pc_center {
    margin: 0 13px 0 auto;
  }
}
@media all and (min-width: 1000px) {
  #Top_imageArea .pc_w320_spw480 .ban.pc_center {
    margin: 0 17px 0 auto;
  }
}
@media all and (min-width: 1001px) {
  #Top_imageArea .pc_w320_spw480 .ban.pc_center {
    margin: 0 20px 0 auto;
  }
}

/*----------------------------------------------------
ムービー
----------------------------------------------------*/
#movie {
  position: relative;
  padding: 0 20px;
  /* -750 */
  /* 751- */
  /*ドットナビゲーションの設定*/
}
@media all and (max-width: 751px) {
  #movie {
    margin-top: -97px;
  }
}
@media all and (min-width: 751px) {
  #movie {
    padding: 0 70px;
  }
}
#movie .bg_triangle {
  position: absolute;
  left: -18px;
  top: 90px;
  z-index: 1;
  /* 751- */
}
#movie .bg_triangle img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (min-width: 751px) {
  #movie .bg_triangle {
    top: 0px;
  }
}
#movie .movieWrap {
  position: relative;
  z-index: 2;
  background-color: #D20E19;
  padding: 50px 0 97px;
  margin: 0 auto;
  max-width: 1400px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #movie .movieWrap {
    padding: 100px 0 250px;
  }
}
@media all and (min-width: 1000px) {
  #movie .movieWrap .inner {
    padding: 0 50px;
  }
}
@media all and (min-width: 1200px) {
  #movie .movieWrap .inner {
    padding: 0 0px;
  }
}
#movie .secTitle {
  text-align: center;
  margin-bottom: 40px;
  /* 751- */
}
#movie .secTitle img {
  width: 139px;
}
@media all and (min-width: 751px) {
  #movie .secTitle {
    margin-bottom: 50px;
  }
  #movie .secTitle img {
    width: 267px;
  }
}
#movie .iframeWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#movie .iframeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#movie .slick-dots {
  text-align: center;
  margin-bottom: -20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #movie .slick-dots {
    margin-bottom: -40px;
  }
}
#movie .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
#movie .slick-dots li button {
  /*ドットボタンのサイズ*/
  width: 1px;
  height: 1px;
  color: transparent;
  outline: none;
  display: block;
  background: initial;
  border: 1px solid white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#movie .slick-dots li button::before {
  /* デフォルトで表示される縁を消す */
  content: "";
}
#movie .slick-dots li:hover button {
  background-color: white;
}
#movie .slick-dots li.slick-active button {
  /*ドットボタンの現在地表示の色*/
}
#movie .slick-dots li.slick-active button::before {
  content: "";
  width: 11px;
  height: 11px;
  background-color: white;
  opacity: 1;
}

/*----------------------------------------------------
透過背景エリア
----------------------------------------------------*/
#opacityBg {
  padding: 50px 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  #opacityBg {
    padding: 140px 0;
  }
}
#opacityBg #Top_imageArea {
  margin-bottom: 50px;
}

/*----------------------------------------------------
赤背景 ボタン
----------------------------------------------------*/
#blackBg {
  background-color: black;
  padding: 50px 0 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #blackBg {
    padding: 80px 0 120px;
  }
}

/*----------------------------------------------------
赤背景 ボタン
----------------------------------------------------*/
#redBg_btnArea {
  background-color: #D20E19;
  padding: 20px 0 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #redBg_btnArea {
    padding: 70px 0 100px;
  }
}
#redBg_btnArea .btnSection {
  padding: 0;
}
/*# sourceMappingURL=home.css.map */