/* リセットスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    font-size: 62.5%;
    
   
}




body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000000;
    margin: 0;
    font-size: 12px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
    font-feature-settings: "palt";
}

font-size: 1rem; /* 16px */

@media (max-width: 1280px) {
  font-size: min(1.56vw,16px);
}

@media (max-width: 960px) {
  font-size: min(2.19vw,15px);
}

@media (max-width: 640px) {
  font-size: .875rem; /* 14px */
}



ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #ffffff;
    text-align: center;
    
  }
  #loading_text .progressbar-text {
    font-size: 76px !important;
    font-weight: 700;

  }


  /*モーダルを開くボタン*/
.modal-open{

}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,90%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #000000;
  text-align: left;
  padding: 30px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  border: 1px solid #838383;
}


  .section {
    color: #ffffff;
    font-size: 76px;
    font-weight: 700;
  }


  .wrapper {
    --_base-height: 95svh;
    --_note-height: 1lh;
    min-height: var(--_base-height);
  }
  
  .container {
    min-height: calc(var(--_base-height) - var(--_note-height));
    padding-top: var(--_note-height);
    display: grid;
    place-content: center;
    text-align: center;
    width: 100%;
  }
  
  .text_g {
    font-size: max(20px, 5vw);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
    margin: -100px 0 0 0;
  }

  .text_g2 {
    font-size: max(20px, 5vw);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
    margin: -100px 0 0 0;
  }
  
  .note {
    text-align: right;
  }
  
  .alternative {
    position: fixed !important;
    inset: 0 !important;
    display: block !important;
    inline-size: 4px !important;
    block-size: 4px !important;
    contain: strict !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
  
  /* アニメーション前 */
  [data-text-animation="fadeIn"] span {
    opacity: 0;
    transition: opacity 1s;
   

  }
  
  /* アニメーション後 */
  [data-text-animation="fadeIn"] span.is-active {
    opacity: 1;
   
  }


  @media (max-width: 1023px) {
    #loading_text .progressbar-text {
      font-size: 5.0rem !important;
    }
  }




  /***** CSS全画面を覆う背景 *****/
  .mask {
    position: fixed; /*固定表示*/
    z-index: 999; /*最前面へ*/
    top: 0;
    left: 0;
    width: 100vw; /*画面幅*/
    height: 100vh; /*画面の高さ*/
    background:#ffffff; /*好きな色*/
    animation: fadeOut 1s forwards; /*フェードアウト*/
    animation-delay: 1.6s; /*円のアニメーション＋遅延時間*/
  }
  
  /*フェードアウトアニメーション*/
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  /***** 広がる円 *****/
  .circle {
    position: absolute; /*固定表示*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; /*中央配置*/
    width: 0;
    height: 0;
    background:rgb(0, 0, 0); /*ページ全体の背景色*/
    animation: circle-open 1s linear forwards;
    animation-delay: 0.9s; /*任意の遅延時間*/
  }
  
  /*円が拡大するアニメーション*/
  @keyframes circle-open {
    0% {
      width: 0;
      height: 0;
      border-radius: 50%;
    }
    10%,
    80% {
      /*少し拡大して止まる*/
      width: 0px;
      height: 0px;
      border-radius: 50%;
    }
    99% {
      /*ぎりぎりまで正円*/
      width: 99vw;
      height: 99vw;
      border-radius: 50%;
    }
    100% {
      /*全画面*/
      width: 100vw;
      height: 100vh;
      border-radius: 0;
    }
  }


  .nav {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding: 20px 1%;
}

.logo {
    width: 30%;
    float: left;
    max-width: 220px;
    margin: -12px 0 0 0;
}

.contact_h {
    width: 40%;
    float: right;
    text-align: right;
    padding: 0 10px 0 0px ;
}

.r_con {
  width: 50%;
  float: right;
}

.lang2{
width: 40%;
float: right;
  color: #fff;
  font-size: 16px;
  text-align: right;
  margin: 5px 0 0 0;

}

.lang2 a {
  color: #fff;
}


.btn5 a {
  display: block;
  width: 180px;
  padding: 8px 0;
  background-color: #2761f0;
  background-image: url(../img/arrow.jpg);
  background-position:right 10px top 10px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  text-align:center;
  float: right;
  
    
  }

  .pc {
    display: block;
}
.sp {
    display: none;
}

@media screen and (max-width: 716px) {
  .contact_h {
    width: 100% !important;
    float: right;
    text-align: right;
    padding: 0 10px 0 0px ;
}

.r_con {
  width: 100%;
  float: right;
}

.lang2{
width: 80% !important;
float: right;
  color: #fff;
  font-size: 14px;
  text-align: right;
  margin: 5px 15px 0 0 !important;

}

.lang2 a {
  color: #fff;
}


.btn5 a {
  display: block;
  width: 180px;
  padding: 8px 0;
  background-color: #2761f0;
  background-image: url(../img/arrow.jpg);
  background-position:right 10px top 10px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  text-align:center;
  float: right;
  
    
  }
}

.btn_p {
  margin: 180px 0 0 0;
}

  @media screen and (max-width: 980px) {
    .btn_p {
      margin: 160px 0 0 0 !important;
    }
    .contact_h {
      width: 30%;
      float: right;
      text-align: right;
      padding: 0 10px 0 0px ;
  }
  
  .r_con {
    width: 70%;
    float: right;
  }
  
  .lang2{
  width: 20%;
  float: right;
    color: #fff;
    font-size: 14px;
    text-align: right;
    margin: 5px 0 0 0;
  
  }
  
  .lang2 a {
    color: #fff;
  }
  
  
  .btn5 a {
      display: block;
      max-width: 150px;
      padding: 8px 20px;
      background-color: #2761f0;
      background-image: url(../img/arrow.jpg);
      background-position:right 10px top 11px;
    background-repeat: no-repeat;
    background-size: 10px 10px;
      border-radius: 8px;
      color: #fff;
      text-decoration: none;
      text-align:center;
      float: right;
      
    }

    .pc {
        display: none;
    }
    .sp {
        display: block;
    }

    .swiper {
      padding: 0px 0 0 0 !important;
      margin: -200px 0 0 0 !important;
    }

    .scroll_contents {
      height: 100%;
      width: 100vw;
      margin: -100px 0 0 0 !important;
      z-index: 99999 !important;
    }
    .tooltip .box{
      position: relative;
      margin:0;
      left: 20px !important;
      width: 40px !important;
      height: 40px !important;
    }

    .tooltip2 .box{
      position: relative;
      margin:0;
      left: 20px !important;
      width: 40px !important;
      height: 40px !important;
    }

    .tooltip3 .box{
      position: relative;
      margin:0;
      left: 20px !important;
      width: 40px !important;
      height: 40px !important;
    }

    .s_step {
      font-size: max(26px, 5vw) !important;
      color: #006eff;
      font-weight: 600 !important;;
      margin: 0 !important;
    }
    
    .s_text {
      font-size: max(30px, 5vw) !important;
      color: #a1a1a1;
      font-weight: 600 !important;;
      margin: 0 !important;;
      line-height: 90%;
    
    }
    
    .s_txt2 {
      font-size: max(20px, 1.7vw) !important;
      color: #ffffff;
      font-weight: 600 !important;;
      margin: 20px 0% 60px 0 !important;
  }

  .text_g {
    font-size: max(54px, 5vw) !important;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    margin: -100px 0 0 0;
  }

  .text_g2 {
    font-size: max(16px, 3vw) !important;
    font-weight: 700;
 
 
    text-align: center;
    margin: 0px 0 0 0;
  }



  .logo {
    width: 20% !important;
    float: left;
    max-width: 220px;
    margin: -12px 0 0 10px;
}

.video-section {

  color: #fff;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.l-hero {
  overflow: hidden;
  position: relative;
  margin: 0 !important;
}

.section {
  color: #ffffff;
  font-size: 76px;
  font-weight: 700;
  margin: -200px 0 0 0 !important;
}

.slider_a {
  margin: -600px 0 0 0;
}

.wrapper2 {
  padding: 200px 0 200px 0 !important;
}
}

.wrapper2 {
  padding: 400px 0 450px 0;
}

.video-section {
  height: 250vh;
  color: #fff;
  width: 100%;
  padding: 0 0 100px 0;
}

#scrolly-video {
  width: 100% !important;
}

.text-section {
  height: 100vh;
  display: grid;
  place-content: center;
  background-color: #000000;
  text-align: center;
  line-height: 1.5;
}

#scrolly-video video {
  width: 100% !important;
}

#scrolly-video2 video {
  width: 95% !important;
  margin: auto;
}

.text_g{
  color: #000000;
  font-weight: bold;
  display: inline-block;
  background-image: linear-gradient(45deg, #ffffff 0%, #2BD2FF 52%, #2b75ff 90%);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-name: gradationTextAnimation;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.text_g2{
  color: #000000;
  font-weight: bold;
  background-image: linear-gradient(45deg, #ffffff 0%, #ffed9c 52%, #ffa3a7 90%);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-name: gradationTextAnimation;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes gradationTextAnimation{
  0%{
      background-position: 0 0;
  }
  50%{
      background-position: 100% 0;
  }
  100%{
      background-position: 0 0;
  }
}


/* 横スクロール */


.container {
  padding: 5rem;
}

.scroll_container {
  height: 400vh;
}

.horizontal_scroll {
  position: absolute;
  top: 0;
  height: 100%;
  width: 400vw;
  will-change: transform;
  display: flex;
  justify-content: space-between;
}

.scroll_contents {
  height: 100%;
  width: 100vw;
}

.sticky_wrap {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
}

.red {
  background-color: #000000;
}

.yellow {
  background-color: #000000;
}

.green {
  background-color: #000000;
}

.blue {
  background-color: #000000;
}

h2 {
  font-size: 2rem;
  color: #f7f7f7;
}

.left {
  margin-top: 5vh;
  margin-left: 5vw;
}

.right {
  text-align: right;
  margin-top: 85vh;
  margin-right: 5vw;
}

.s_left {
  width: 28%;
  padding: 0 1%;
  float: left;
  margin: 0px 0 0 0;
}


.s_right {
  width: 70%;
  float: right;
  margin: 0px 0 0 0;
}

.s_step {
  font-size: 3vw;
  color: #006eff;
  font-weight: 600;
  margin: 40% 0% 0% 13%;
}

.s_text {
  font-size: 5vw;
  color: #a1a1a1;
  font-weight: 600;
  margin: 0% 0% 0% 13%;
  line-height: 90%;

}

.s_txt2 {
  font-size: 1.5vw;
  color: #ffffff;
  font-weight: 600;
  margin: 20px 0% 50% 13%;
}

.text_c22 {
  position: absolute;
  top: 45%;
  text-align: center;
  width: 100%;
  font-size: 46px;
  font-size: 45px;
  color: #fff;
  font-weight: 600;

  
}

@media (max-width: 980px) {

  .text_c22 {
    position: absolute;
    top: 27%;
    text-align: center;
    width: 100%;
 
    
    color: #fff;
    font-weight: 600;
  
    
  }

  .fukidashi {
    display: none;
    position: absolute;
    padding: 10px;
    font-size: 12px;
    line-height: 1.6em;
    color: #000000;
    border-radius: 20px;
    background: #ebebeb;
    border: 10px solid #000000;
    width: auto;
    margin: 60px 0 0 0;
    z-index: 99999 !important;
    
  }

  .fukidashi img {
    max-width: 320px !important;
    width: auto;
  }

 
  .s_left {
    width: 100%;
    padding: 0 1%;
    float: none;
    margin: 0px 0 0 0;
  }

  .step2 {
    margin: -60px 0 0 0 !important;
    padding: 0 0 0px 0;
  }

  .step3 {
    margin: -80px 0 0 0 !important;
    padding: 0 0 0px 0;
  }
  
  
  
  .s_right {
    width: 100%;
    float: none;
    margin: 00px 0 0px 0;
  }


  .l-hero .l-hero-panel {
    text-align: center;
  }

  .text_c {
    font-size: 24px;
  }


  .btn_box{
    position: static;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 100px 0 0 50% !important;
  }

  .btn{
    color: #fff;
    font-size: 14px !important;
    font-weight: bold;
    text-align: center;
    line-height: 30px !important;
    letter-spacing: 3px;
    width: 200px;
    height: 30px !important;
    background: #001fe6;
    margin: auto;
  
    border-radius: 100px;
    position: relative;
  }

  .tooltip3:hover .fukidashi{
    display: inline-block;
    top: -160px !important;
    right: -72px !important;
    
  }

  .tooltip:hover .fukidashi{
    display: inline-block;
    top: -160px !important;
    left: -7px !important;
    
  }

  .tooltip2:hover .fukidashi{
    display: inline-block;
    top: -160px !important;
    left: -7px !important;
   
  }
}


/* 下から上に移動しながらフェードイン */
.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
/* 上から下に移動しながらフェードイン */
.fadeInDown {
  opacity: 0;
  transform: translateY(-100px);
}
/* 右から左に移動しながらフェードイン */
.fadeInLeft {
  opacity: 0;
  transform:  translate(-100px, 0);
}
/* 左から右に移動しながらフェードイン */
.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
/* フェードインアニメーション */
@keyframes fadeIn {
  0% {
  }
  100% {
      opacity: 1;
      transform: translate(0);
  }
}
/* フェードインさせるクラス */
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.tooltip2{
  position: absolute;
  cursor: pointer;
  margin:0px 0;
  top: 32%;
  left:2%
}

.tooltip3{
  position: absolute;
  cursor: pointer;
  margin:0px 0;
  z-index: 9999;
  top: 12%;
  right:20%
}

.tooltip{
  position: absolute;
  cursor: pointer;
  margin:0px 0;
  top: 8%;
  left:2%
}
.tooltip .box{
  position: relative;
  margin:0;
  left: 60px;
  width: 80px;
  height: 80px;



  
}
.fukidashi {
  display: none;
  position: absolute;
  padding: 10px;
  line-height: 1.6em;
  color: #ffffff;
  border-radius: 20px;
  background: #000000;
  border: 10px solid #000000;
  width: auto;
  margin: 60px 0 0 0;
  z-index: 99999 !important;
  font-size: 14px !important;
  
}

.fukidashi p {
  font-size: 14px !important;
  text-align: center;

}

.step_midashi {
  display: block;
  background-color: #fff;
  border-radius: 50px;
  padding: 5px 10px;
  color: #000;
  font-weight: 600 !important;
  text-align: center;
}

.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  border: 10px solid transparent;
  z-index: 9999 !important;
 

}
.tooltip:hover .fukidashi{
  display: inline-block;
  top: -60px;
  left: 20px;
}

.fukidashi img {
  max-width: 1024px;
  width: auto;
}

.fukidashi p {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
}




.tooltip3 .box{
  position: relative;
  margin:0;
  left: 60px;
  width: 80px;
  height: 80px;
}

.tooltip3:hover .fukidashi{
  display: inline-block;
  top: 0px;
  right: -60px;
}


.tooltip2 .box{
  position: relative;
  margin:0;
  left: 60px;
  width: 80px;
  height: 80px;
}
.fukidashi2 {
  display: none;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #000000;
  border-radius: 20px;
  background: #ebebeb;
  border: 10px solid #000000;
  width: auto;
  margin: 60px 0 0 0;
  
}
.fukidashi2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  border: 10px solid transparent;
 

}
.tooltip2:hover .fukidashi{
  display: inline-block;
  top: -60px;
  left: 20px;
}

.fukidashi2 img {
  max-width: 1200px;
  min-width: 320px;
}

.fukidashi2 p {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
}

/* ボタンのアニメーション */
@keyframes blinkBorder {
  0% {
    border: 6px solid #cc2200;
  }
  100% {
    border: 6px solid #efefef;
  }
}
.btn2 {
  animation: blinkBorder 1s ease infinite alternate;
}
/* テキストのアニメーション(透過率変更) */
@keyframes blinkOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.text-opacity {
  animation: blinkOpacity 1s ease-in-out infinite alternate;
}
/* テキストのアニメーション(色変更) */
@keyframes blinkColor {
  0% {
    color: #00bfff;
  }
  100% {
    color: #cc2200;
  }
}
.text-color {
  animation: blinkColor 1s ease-in-out infinite alternate;
}

.tools {
  position: relative;
  z-index: 3 !important;
}



.btn_box_e{
  position: static;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0 0 0 50%;
}





.btn_box{
  position: static;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0 0 0 50%;
}

.btn{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #001fe6;
  margin: auto;
  cursor: pointer;
  border-radius: 100px;
  position: relative;
}

.btn:before,.btn:after{
    position: absolute;
    content:'';
    width: 100%;
    height: 100%;
    border: inherit;
    top: 0;
    left: 0;
    z-index: -10;
    background: #0088ff;
    border-radius: inherit;
    animation: uyon 2s linear infinite;
}

.btn:after {
    animation: uyon 2s linear infinite 1s;
}

.btn_e{
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 400px;
  height: 70px;
  background: #001fe6;
  margin: 100px auto 0 auto;
  cursor: pointer;
  border-radius: 100px;
  position: relative;
}

.btn_e:before,.btn_e:after{
  position: absolute;
  content:'';
  width: 100%;
  height: 100%;
  border: inherit;
  top: 0;
  left: 0;
  z-index: -10;
  background: #0088ff;
  border-radius: inherit;
  animation: uyon 2s linear infinite;
}

.btn_e:after {
  animation: uyon 2s linear infinite 1s;
}





.btn12{
  color: #fff;
  width: 70px;
  height: 70px;
  background-color: rgba(192, 138, 138, 0.6);
  margin: auto;
  position: relative;
  border-radius: 50px;
  z-index: 1 !important;
}

.btn12:before,.btn12:after{
    position: absolute;
    content:'';
    width: 100%;
    height: 100%;
    border: inherit;
    top: 0;
    left: 0;
    z-index: -10;
    background-color: rgba(192, 138, 138, 0.6);
    border-radius: inherit;
    animation: uyon2 2s linear infinite;
}

.btn12:after {
    animation: uyon2 2s linear infinite 1s;
    z-index: 1 !important;
}


/*アニメーション*/
.animation{
  animation: 0.2s ease-in-out;
}

@keyframes uyon{
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.6) scaleX(1.2);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.6) scaleX(1.2);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}

/*アニメーション*/
.animation12{
  animation: 0.2s ease-in-out;
}

@keyframes uyon2{
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.3) scaleX(1.3);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.3) scaleX(1.8);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}




.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
 
}

.swiper-slide:nth-child(3n + 1) {
  /*1、4、7、3n+1枚目の背景色 */

}

.swiper-slide:nth-child(3n + 2) {
  /*2、5、8、3n+2枚目の背景色 */
  
}

.swiper-slide:nth-child(3n + 3) {
  /*3、6、9、3n+3枚目の背景色 */
 
}

.l-hero {
  position: relative;
  overflow: hidden; /* 외부 스크롤 방지 */
  height: auto;
}

.l-hero-wrapper {
  position: relative;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.l-hero-panel {
  width: 100%;
  height: 100vh;
  position: relative;
}


.l-hero .l-hero-panel__contents {
  flex: 0 0 100%;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
}

.video-wrapper {
  width: 95%;
  margin: auto;
}

.video-wrapper video {
  margin: 80px 0 0 0;
  width: 100%;
}


.intro_b {
  background-color: #f5f7fd;
  padding: 60px 0 50px 0;
  margin: -50px 0 0 0;
  text-align: center;
}

.cp_hr01 {
	border-width: 2px 0 0 0;
	border-style: solid;
	border-color: #2761f0;
    width: 30px;
    margin: auto;
}

.intro_b h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

h1 {
  font-size:44px;
  padding:0px 0 20px 0;
  line-height:55px ;
  font-weight: 600;
}


.thanks {
  width: 100%;
  padding: 80px 0 0 0;
  background-color: #000000;
  text-align: center;
  color: #fff;
}

.thanks_box {
  width: 95%;
  max-width: 980px;
  margin: auto;
  padding: 0 0 200px 0;
}

.thanks_title {
  font-size: 30px;
  font-weight: 600;
  padding: 0px 0 40px 0;
 
}

.thanks_txt {
  width: 100%;
  max-width: 600px;
  text-align: left;
  padding: 0 0 40px 0;
  margin: auto;
  font-size: 16px;
}

.red2 {
  color: #ffffff;
}

a.btn_01 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 220px;
	margin: auto;
	padding: 1rem 4rem;
	border: 1px solid #ffffff;
	color: #ffffff;
	transition: 0.5s;
  font-weight: 200;
}
a.btn_01:hover {
	color: #000000;
	background: #ffffff;
}


/* フッター */
.footer {
  background-color: #ffffff;
  color: #242424;
  text-align: center;
  padding: 100px 0 40px 0;
}

.footer .container {
  width: 95%;
  max-width: 1600px;
  margin: auto;
  border-top: 1px solid #d1d1d1;
  padding: 20px 0 20px 0;
  font-size: 14px;
}

.footer_logo {
  width: 8%;
  float: left;
}

.footer_logo img {
  max-width: 156px;
}

.foter_menu {
  width: 80%;
  float: left;
  margin: 0.4% 0 0 2%;
 
}

.flexbox{
  display: flex;
}
.flexbox div{
  text-align: left;
  width: 20%;
}

.sns {
  margin: -8px 0 0 0;
}

a.f_btn {
  border: 1px solid #242424;
  width: 10%;
  float: right;
  margin: 0% 0 0 0;
  padding: 4px 0;
  border-radius: 5px;
  display: block;
  color: #020202;
}

@media (max-width: 980px) {
  .footer_logo {
      width: 100%;
      float: none;
      margin: auto;
  }

  h1 {
    font-size:26px;
    padding:0px 0 20px 0;
    line-height:55px ;
    font-weight: 600;
  }


  .btn_e{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 70px;
    letter-spacing: 3px;
    width: 300px !important;
    height: 70px;
    background: #001fe6;
    margin: 100px auto 0 auto;
    cursor: pointer;
    border-radius: 100px;
    position: relative;
  }
  
  .btn_e:before,.btn_e:after{
    position: absolute;
    content:'';
    width: 100%;
    height: 100%;
    border: inherit;
    top: 0;
    left: 0;
    z-index: -10;
    background: #0088ff;
    border-radius: inherit;
    animation: uyon 2s linear infinite;
  }
  
  .btn_e:after {
    animation: uyon 2s linear infinite 1s;
  }


  .tooltip2{
    position: absolute;
    cursor: pointer;
    margin:0px 0;
    top: 36% !important;
    left:2%
  }
  
  .tooltip3{
    position: absolute;
    cursor: pointer;
    margin:0px 0;
    z-index: 9999;
    top: 14% !important;
    right:20%
  }
  
  .tooltip{
    position: absolute;
    cursor: pointer;
    margin:0px 0;
    top: 10% !important;
    left:2%
  }

}
