@charset "UTF-8";
/* RS CSS (home.css) */
.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: -0.6px;
}

.shadow {
  -moz-box-shadow: 0px 0px 28px -10px rgba(0, 0, 0, 0.69);
  -webkit-box-shadow: 0px 0px 28px -10px rgba(0, 0, 0, 0.69);
  -ms-box-shadow: 0px 0px 28px -10px rgba(0, 0, 0, 0.69);
  box-shadow: 0px 0px 28px -10px rgba(0, 0, 0, 0.69);
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/* ============================================
 slider
============================================ */
#main_slick {
  padding-bottom: 30px;
}
#main_slick .wrapper {
  width: 100%;
  padding: 0;
}

.slick-slide {
  position: relative;
  margin: 20px 10px;
  width: 240px;
}
.slick-slide .youtube_inner {
  position: relative;
  width: 100%;
}
.slick-slide .youtube_inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.slick_wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.slick-dots {
  bottom: -10px;
}
.slick-dots li {
  width: 50px;
}

.slick-dotted.slick-slider {
  margin: 0;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "ー";
  width: 50px;
  height: 20px;
  font-family: "slick";
  font-size: 50px;
  line-height: 20px;
  text-align: center;
}

/* ============================================
 contents
============================================ */
#main_visual {
  position: relative;
  width: 100%;
  height: 100vh;
}

#section01_video-area {
  background: #000;
  position: fixed;
  z-index: -2;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video_section01 {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.777778vh;
  height: 62.25vw;
  min-height: 180%;
  min-width: 330%;
}

.video_mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg_mesh2.png") repeat;
  opacity: 0.7;
}

#intro h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
#intro h2 span {
  display: inline-block;
  writing-mode: vertical-rl;
  white-space: pre;
  width: auto;
  margin: 0 auto;
  height: auto;
  margin-bottom: 20px;
  line-height: 1.6;
  /* background-color: #acf2f4; */
  vertical-align: middle;
  text-align: left;
  font-size: 14px;
  font-size: 3.7333333333vw;
}
#intro p {
  font-size: 12px;
  font-size: 3.2vw;
  text-align: center;
}

.contents ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 0 -5% -5%;
}
.contents ul li {
  margin: 0 0 5% 5%;
  width: 45%;
  aspect-ratio: 1;
}
.contents ul li a, .contents ul li span {
  transform: scale(1);
  position: relative;
  overflow: hidden;
  color: #000;
  width: 100%;
  height: 100%;
  border: solid 2px #3f99d5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-size: 3.7333333333vw;
}
.contents ul li a:before, .contents ul li span:before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0px 40px 40px;
  border-color: transparent transparent #fff100 transparent;
}
.contents ul li a:after, .contents ul li span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  opacity: 0;
  background: #fff100;
  border-radius: 50%;
}
.contents ul li a:hover, .contents ul li span:hover {
  opacity: 1;
  border-color: #fff100;
}
.contents ul li a:hover:after, .contents ul li span:hover:after {
  animation: expansion-anim 0.3s linear forwards;
}
.contents ul li a p, .contents ul li span p {
  position: relative;
  font-weight: bold;
  height: auto;
  text-align: center;
  line-height: 1.1;
  z-index: 1;
}
.contents ul li a small, .contents ul li span small {
  font-weight: normal;
  font-size: 8px;
  font-size: 2.1333333333vw;
}

/* animation */
@keyframes expansion-anim {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(15);
    opacity: 1;
  }
}
.scroll {
  position: relative;
  margin: 30px auto;
  text-align: center;
}

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  top: 1px;
  right: 50%;
  margin-right: -20px;
  width: 40px;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    top: 1px;
  }
  50% {
    top: 5px;
  }
  100% {
    top: 1px;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

section {
  position: relative;
  margin: 0 auto;
  padding: 50px 36px 70px;
  max-width: 900px;
}
section h2 {
  text-align: center;
  line-height: 1;
  letter-spacing: 0.5px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 50px;
  font-size: 32px;
  font-size: 2.6666666667rem;
}
section h2 img {
  margin-top: 0;
  height: auto;
  width: 60%;
  margin-left: 0;
}
section .inner {
  position: relative;
  padding: 5px 0;
  margin-top: 10px;
}
section .more {
  margin: 50px 0 10px;
  text-align: right;
}
section .more p {
  display: inline-block;
  width: 35%;
  max-width: 150px;
  margin-right: 10px;
}
section .more a {
  position: relative;
  -webkit-transform: translateZ(0px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 auto;
  width: 100%;
  background: transparent;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  font-size: 1rem;
  color: #000;
  text-decoration: none !important;
  display: flex;
  align-items: center;
}
section .more a::before {
  content: "";
  height: 1px;
  width: 50px;
  background-color: #000;
  margin-right: 10px;
  margin-top: 1px;
  -webkit-transform: translateZ(0px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
section .more a:hover::before {
  content: "";
  height: 1px;
  width: 30px;
  background-color: #000;
  margin-right: 10px;
  margin-top: 1px;
}

.main_logo {
  width: 90%;
  margin: 5% auto;
  text-align: center;
}

.main_img {
  width: 100%;
}
.main_img img {
  width: 100%;
}

h1 {
  width: 56%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  text-align: center;
}
h1 img {
  max-width: 400px;
}

#loading {
  position: fixed;
  z-index: 1000000;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading svg {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70px;
}

/* ============================================
 Media Queries
============================================ */
@media screen and (min-width: 764px) {
  h1 {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -55%);
    text-align: center;
  }
  h1 img {
    max-width: 400px;
  }

  #main_visual {
    position: relative;
  }
  #main_visual .main_logo {
    top: 43%;
    right: 8%;
    position: absolute;
    width: 43%;
    margin: 0;
    text-align: center;
  }
  #main_visual .main_img {
    width: 100%;
  }
  #main_visual .main_img img {
    width: 100%;
  }

  #section01_video-area {
    position: fixed;
    z-index: -2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }

  #video_section01 {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    height: 56.25vw;
    /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    top: 50%;
    width: 177.77777778vh;
    /* 16:9 の幅なので 177.77% (= 16 ÷ 9) */
  }

  .video_mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg_mesh2.png") repeat;
    opacity: 0.5;
  }

  #intro h2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #intro h2 span {
    display: inline-block;
    writing-mode: vertical-rl;
    white-space: pre;
    width: auto;
    margin: 0 auto;
    height: auto;
    margin-bottom: 20px;
    line-height: 1.6;
    writing-mode: vertical-rl;
    /* background-color: #acf2f4; */
    vertical-align: middle;
    text-align: left;
    font-size: 22px;
    font-size: 1.8333333333rem;
  }
  #intro p {
    font-size: 16px;
    font-size: 1.3333333333rem;
    line-height: 1.9;
    text-align: center;
  }

  .contents ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0 -2% -2%;
  }
  .contents ul li {
    margin: 0 0 2% 2%;
    width: 23%;
    aspect-ratio: 1;
  }
  .contents ul li a {
    position: relative;
    color: #000;
    width: 100%;
    height: 100%;
    border: solid 3px #3f99d5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-size: 1.6666666667rem;
  }
  .contents ul li a:after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0px 40px 40px;
    border-color: transparent transparent #fff100 transparent;
  }
  .contents ul li a p {
    font-weight: bold;
    height: auto;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.2px;
  }
  .contents ul li a small {
    font-weight: normal;
    font-size: 12px;
    font-size: 1rem;
  }

  .scroll {
    position: relative;
    margin: 30px auto 90px;
    text-align: center;
  }

  /*=== 9-1-4 矢印が動いてスクロールを促す  ====*/
  /*スクロールダウン全体の場所*/
  .scrolldown4 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    top: 1px;
    right: 50%;
    margin-right: -35px;
    width: 70px;
    /*矢印の動き1秒かけて永遠にループ*/
    animation: arrowmove 1s ease-in-out infinite;
  }

  /* ============================================
   slider
  ============================================ */
  #main_slick {
    padding-bottom: 30px;
  }
  #main_slick .wrapper {
    width: 100%;
    padding: 0;
  }

  .slick-slide {
    margin: 20px 15px;
    width: 500px;
  }
  .slick_wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
  }

  .slick-dots {
    bottom: -30px;
  }
  .slick-dots li {
    margin: 0 5px;
    position: relative;
    display: inline-block;
    height: 40px;
    width: 110px;
  }

  .slick-dotted.slick-slider {
    margin: 0;
  }

  .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "ー";
    width: 110px;
    height: 60px;
    font-family: "slick";
    font-size: 110px;
    line-height: 50px;
    text-align: center;
  }

  #main {
    width: 100%;
  }

  section {
    position: relative;
    margin: 0 auto;
    padding: 60px 80px 60px 140px;
    max-width: none;
    max-width: 1000px;
  }
  section h2 {
    text-align: center;
    line-height: 1;
    letter-spacing: 0.5px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 50px;
    font-size: 32px;
    font-size: 2.6666666667rem;
  }
  section h2 img {
    margin-top: 0;
    height: auto;
    width: 40%;
    max-width: 340px;
    margin-left: 0;
  }
  section .inner {
    position: relative;
    padding: 5px 0;
    margin: 0 auto;
    max-width: 800px;
  }
  section .more {
    margin: 80px 0 10px;
    text-align: right;
  }
  section .more p {
    display: inline-block;
    width: 35%;
    max-width: 180px;
    margin-right: 10px;
  }
  section .more a {
    position: relative;
    -webkit-transform: translateZ(0px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin: 0 auto;
    width: 100%;
    background: transparent;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    font-size: 1rem;
    color: #000;
    text-decoration: none !important;
    display: flex;
    align-items: center;
  }
  section .more a::before {
    content: "";
    height: 1px;
    width: 50px;
    background-color: #000;
    margin-right: 10px;
    margin-top: 1px;
    -webkit-transform: translateZ(0px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  section .more a:hover::before {
    content: "";
    height: 1px;
    width: 30px;
    background-color: #000;
    margin-right: 10px;
    margin-top: 1px;
  }

  .main_logo {
    width: 90%;
    margin: 5% auto;
    text-align: center;
  }

  .main_img {
    width: 100%;
  }
  .main_img img {
    width: 100%;
  }

  /*-----------------------------------------------------------------
    news
  ------------------------------------------------------------------*/
  #news {
    background-size: auto auto;
    background-color: #020102;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 55px, #100e0e 55px, #100e0e 123px);
  }

  .news_list ul li {
    background-image: url("../images/keisen.png");
    background-size: contain;
    /* グラデーションの幅・高さを指定 */
    background-position: center bottom;
    /* 背景の開始位置を指定 */
    background-repeat: no-repeat;
    /* 横向きにのみ繰り返す */
    padding: 23px 15px 50px;
  }
  .news_list ul li a, .news_list ul li span {
    display: block;
    padding: 10px 0;
    -webkit-transform: translateZ(0px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .news_list ul li a:hover, .news_list ul li span:hover {
    text-decoration: none;
  }
  .news_list ul li .news_date {
    position: relative;
    margin-bottom: 10px;
    color: #b30000;
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  .news_list ul li .news_date .new {
    margin-left: 5px;
    color: #b30000;
  }
  .news_list ul li .news_tit {
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  .news_list ul li:first-child a {
    padding-top: 0;
  }

  /*-----------------------------------------------------------------
    video area
  ------------------------------------------------------------------*/
  #video_area {
    margin-top: 0;
    background: url("../images/bg_movie.jpg") no-repeat;
    background-size: cover;
    padding: 120px 0 130px;
  }
  #video_area .inner {
    padding: 0 30px;
  }
  #video_area .yt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
  }

  #video_slick {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .video_slide {
    margin: 0 10px;
  }

  #video_slick_next, #video_slick_preview {
    position: absolute;
    display: block;
    height: 25px;
    width: 25px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    margin-top: -6px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
  }

  #video_slick_next {
    right: -35px;
  }

  #video_slick_preview {
    left: -35px;
  }

  .video_tit {
    margin-top: 5px;
    text-align: center;
  }

  .video_btn {
    text-align: center;
    margin: 25px auto 0;
  }
  .video_btn img {
    max-width: 90px;
  }

  .video_slide_inner img {
    width: 100%;
    max-width: none;
  }
  .video_slide_inner a {
    display: block;
    position: relative;
  }
  .video_slide_inner p {
    margin-top: 5px;
    font-size: 15px;
    font-size: 1.25rem;
  }

  .video_fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(195, 11, 15, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  /*-----------------------------------------------------------------
    release
  ------------------------------------------------------------------*/
  #release {
    background-size: auto auto;
    background-color: #2c0e0e;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 64px, #250707 64px, #250707 119px);
  }
  #release .release_box {
    max-width: 600px;
    margin: 45px auto 0;
  }
  #release .release_jk {
    background: url(../images/release_wrap.png) no-repeat center;
    background-size: contain;
    padding: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #release .release_jk img {
    width: 115%;
    margin-left: -4%;
    margin-top: -5%;
    max-width: none;
    box-shadow: 0px 0px 13px 3px rgba(0, 0, 0, 0.57);
  }
  #release .release_detail {
    padding: 0% 3%;
  }
  #release .release_detail .date {
    margin-top: -3%;
    color: #ab8741;
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  #release .release_detail .tit {
    font-size: 24px;
    font-size: 2rem;
    margin-bottom: 5px;
  }
  #release .release_detail .tit small {
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  #release .release_detail .txt {
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  #release .release_detail .txt a {
    color: #4294b3;
    text-decoration: underline;
  }
  #release .more {
    margin: 80px 0 10px;
    text-align: right;
    margin-right: 16%;
  }
  /*-----------------------------------------------------------------
    link
  ------------------------------------------------------------------*/
  #link {
    background: url("../images/bg_footer.jpg") no-repeat;
    background-size: cover;
  }
  #link .link_list {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }
  #link .link_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0 -5% -7%;
  }
  #link .link_list ul li {
    margin: 0 0 5% 7%;
    width: 33%;
  }
  #link .link_list ul li:last-child {
    margin-bottom: 5%;
  }

  #loading {
    position: fixed;
    z-index: 1000000;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #loading svg {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 130px;
  }
}

/*# sourceMappingURL=home.css.map */
