@charset "UTF-8";
/*ヘッダー設定*/
/*pc基本設定*/
/*sp基本設定*/
/*背景*/
/*ボーダー*/
/*ボタン*/
/*svg(#なしで記述)*/
/*aigis--*/
/*
---
name: アイコンフォント一覧
category:
  - iconfont
---

cssで直接追加する場合は  
```
content: $icon_アイコン名;  
@include iconFont();  
```

```html
<ul class="aigis-glyph js-aigis-hidden">
  <li>
    <div class="f-icon _arrow"></div>
    <div class="name">arrow</div>
    <div class="codepoint">EA01</div>
  </li>
  <li>
    <div class="f-icon _ex"></div>
    <div class="name">ex</div>
    <div class="codepoint">EA02</div>
  </li>
  <li>
    <div class="f-icon _beginner"></div>
    <div class="name">beginner</div>
    <div class="codepoint">EA03</div>
  </li>
  <li>
    <div class="f-icon _voice"></div>
    <div class="name">voice</div>
    <div class="codepoint">EA04</div>
  </li>
</ul>
```

```html 
<span class="f-icon _arrow" aria-hidden="true"></span>
<span class="f-icon _ex" aria-hidden="true"></span>
<span class="f-icon _beginner" aria-hidden="true"></span>
<span class="f-icon _voice" aria-hidden="true"></span>

``` 

*/
/*--aigis*/
@font-face {
  font-family: "icons";
  src: url("fonts/icons.eot");
  src: url("fonts/icons.eot?#iefix") format("eot"), url("fonts/icons.woff") format("woff"), url("fonts/icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.f-icon:before {
  display: inline-block;
  font-family: "icons";
  font-style: inherit;
  font-weight: inherit;
  font-variant: inherit;
  text-transform: none;
  vertical-align: middle;
  height: 1em;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.f-icon._arrow:before {
  content: "\EA01";
}

.f-icon._ex:before {
  content: "\EA02";
}

.f-icon._beginner:before {
  content: "\EA03";
}

.f-icon._voice:before {
  content: "\EA04";
}

.mv_wrapp {
  position: relative;
  width: 100%;
  height: 1100px;
}

@media only screen and (max-width: 768px) {
  .mv_wrapp {
    height: auto;
  }
}

.mv_wrapp .scroll_down {
  pointer-events: none;
  position: absolute;
  top: 75px;
  right: 60px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #f9c945;
  mix-blend-mode: difference;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  .mv_wrapp .scroll_down {
    display: none;
  }
}

.mv_wrapp .scroll_down span {
  display: block;
  width: 100%;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.mv_wrapp .scroll_down span:after {
  content: "";
  position: absolute;
  background: #f9c945;
  bottom: -78px;
  left: 9px;
  width: 2px;
  height: 59px;
}

.mv_wrapp .scroll_down span:before {
  content: "";
  position: absolute;
  display: block;
  bottom: -78px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #f9c945;
  border-right: 2px solid #f9c945;
  transform: rotate(45deg);
}

.mv_wrapp::after {
  content: "";
  display: block;
  position: absolute;
  width: 1080px;
  height: 1080px;
  top: 110px;
  right: -22%;
  z-index: -1;
  background-image: url(../images/top/mv_bg.svg);
  background-repeat: no-repeat;
  animation: 8s linear infinite rotato;
}

@keyframes rotato {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 768px) {
  .mv_wrapp::after {
    width: 700px;
    height: 700px;
    right: -300px;
  }
}

.mv_wrapp .mv {
  width: 100%;
  max-width: calc(100% - 60px);
  height: 125vh;
  max-height: 1000px;
  min-height: calc(690px + 100px);
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 100px;
  padding-top: 320px;
}

@media only screen and (max-width: 768px) {
  .mv_wrapp .mv {
    min-width: 320px;
    max-width: unset;
    height: 100vh;
    max-height: unset;
    min-height: 380px;
    position: relative;
    margin-top: 60px;
    padding-top: 200px;
  }
}

.mv_wrapp .mv_inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  position: relative;
  top: 12px;
  z-index: 1;
}

.slider_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .slider_wrap {
    left: -20px;
  }
}

.slider_wrap .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider_wrap .slider .bg {
  height: 800px;
  min-height: 590px;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover !important;
  overflow: hidden;
  clip-path: polygon(0rem 0px, calc(100% - 4rem) 0px, 100% 4rem, 100% calc(100% - 0rem), calc(100% - 0rem) 100%, 0rem 100%, 0px calc(100% - 0rem), 0px 0rem);
}

.slider_wrap .slider .bg.n01 {
  background-image: url(../images/top/mv1.webp);
}

.video_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video_wrap .mv_video video {
  position: relative;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.video_wrap .mv_video video.pc_video {
  display: block;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.video_wrap .mv_video video.sp_video {
  display: none;
}

@media only screen and (max-width: 768px) {
  .video_wrap .mv_video video.pc_video {
    display: none;
  }
  .video_wrap .mv_video video.sp_video {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .video_wrap .mv_video video {
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.mv_text {
  width: calc(100% - 80px);
  max-width: 800px;
  height: auto;
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 2;
  display: flex;
  justify-content: left;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .mv_text {
    width: 100%;
    top: 60px;
    left: 20px;
  }
}

.mv_text_container {
  width: auto;
  height: auto;
  text-align: left;
}

.mv_text_container .mv_h2 {
  margin-bottom: 5%;
}

.mv_text_container .mv_h2 span {
  display: inline;
  color: #222222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 80px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0em;
  margin-top: -20px;
}

@media only screen and (max-width: 768px) {
  .mv_text_container .mv_h2 span {
    font-size: 34px;
    margin-top: auto;
  }
}

.mv_text_container .mv_caption span {
  display: inline-block;
  color: #222222;
  font-size: 16px;
  font-weight: bold;
  height: 32px;
  line-height: 32px;
  letter-spacing: 0.1em;
  border: 1px solid #222222;
  margin-left: 10px;
  padding: 0 10px;
  background-color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .mv_text_container .mv_caption span {
    font-size: 12px;
  }
}

/*スライド左右矢印*/
.mv .slick-prev,
.mv .slick-next {
  display: block;
  height: 100%;
  width: 40px;
  background: none;
  line-height: 0px;
  font-size: 0px;
  padding: 0;
  border: none;
  outline: none;
  color: #dddddd;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 3;
  cursor: pointer;
  transition: 0.5s;
  /*矢印*/
}

.mv .slick-prev:hover, .mv .slick-prev:focus,
.mv .slick-next:hover,
.mv .slick-next:focus {
  outline: none;
}

.mv .slick-prev:hover:before, .mv .slick-prev:focus:before,
.mv .slick-next:hover:before,
.mv .slick-next:focus:before {
  transition: 0.5s;
  opacity: 0.6;
}

.mv .slick-prev.slick-disabled:before,
.mv .slick-next.slick-disabled:before {
  opacity: 0.6;
}

.mv .slick-prev:before,
.mv .slick-next:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  transition: 0.5s;
}

.mv .slick-prev {
  left: 0;
}

[dir="rtl"] .mv .slick-prev {
  left: auto;
  right: 0;
}

.mv .slick-next {
  right: 0;
}

[dir="rtl"] .mv .slick-next {
  left: 0;
  right: auto;
}

/*スライドカウント*/
/*スライダーのドット*/
.mv .slider_dot {
  display: block;
  width: 10px;
  height: auto;
  max-width: 1000px;
  position: absolute;
  right: 40px;
  top: 350px;
  z-index: 4;
}

@media only screen and (max-width: 768px) {
  .mv .slider_dot {
    display: block;
    width: 100px;
    top: auto;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
  }
}

.mv .slider_dot .slick-dots {
  width: 10px;
  display: block;
}

@media only screen and (max-width: 768px) {
  .mv .slider_dot .slick-dots {
    width: 100px;
  }
}

.mv .slider_dot .slick-dots li {
  width: 10px;
  display: inline-block;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .mv .slider_dot .slick-dots li {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.mv .slider_dot .slick-dots li:last-child {
  margin-right: 0;
}

.mv .slider_dot .slick-dots li button {
  display: block;
  border: 0;
  opacity: 1;
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
  outline: none;
  position: relative;
}

.mv .slider_dot .slick-dots li button:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #0636BA;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.mv .slider_dot .slick-dots li.slick-active button:before {
  width: 100%;
  background: #0636BA;
}

.slick-num {
  display: none;
}

/*スクロールダウン*/
/*topページnewsセクション*/

/*# sourceMappingURL=_maps/top.css.map */
