@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
main{
}
img{
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  /*background: linear-gradient(90deg, #21d4fd 15%, #b721ff 85%);*/
  background: #1d1d1d;
  text-align:center;
  color:#fff;
  top:0;
}

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

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

/* fadeUpをするアイコンの動き */
/*
.fadeUp{
animation-name: fadeUpAnime;
animation-duration: 2.5s;
animation-fill-mode:forwards;
opacity: 0;
}
*/
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


header {
  z-index: 320;
  position: fixed;
  background-color: #1E1E23;
  width: 100%;
  height: 120px; 
  top: 0;
}
.header_topimage {
  display: flex; 
  flex-flow: row nowrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
header img {
  height: 90px; 
  margin-right: 0;
  margin-top: 15px;
}
header img:hover {
  opacity: 1.0;
  height: 120px;
}
header a {
  font-size: 4.0rem;
  font-weight: 500;
}
header a span {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
 
  .header nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(-40deg, #182DFC 15%, #1E1E23 50%, #F400A1 85%);
    width: 100%;
    height: 100%;
    padding-top: 80px;
  }
  .header nav ul li {
    display: block;
    text-align: center;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    padding: 32px 0;
  }
  .header nav ul li a {
    line-height: 24px;
    width: 100%;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    padding: 30px 0;
    font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  } 
  .header nav ul li a:hover {
    color: #F400A1;
  } 
  
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn7{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  margin-top: 15px;
  margin-left: 0;
  width: 60px;
  height:  46px;
  border-radius: 0px;
  z-index: 10000;
}

/*ボタン内側*/

.openbtn7 .openbtn-area{
    transition: all .4s;
}

.openbtn7 span{
    display: inline-block;
    transition: all 1.0s;/*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 6px;
    border-radius: 1px;
    background: #fff;
    width: 100%;
  }


.openbtn7 span:nth-of-type(1) {
  top:0px; 
}

.openbtn7 span:nth-of-type(2) {
  top:20px;
}

.openbtn7 span:nth-of-type(3) {
  top:40px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.openbtn7.active .openbtn-area{
  transform: rotateY(-360deg);
}

.openbtn7.active span:nth-of-type(1) {
    top: 18px;
    left: 0;
    transform: translateY(6px) rotate(-135deg);
    width: 66%;
}

.openbtn7.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn7.active span:nth-of-type(3){
    top: 30px;
    left: 0;
    transform: translateY(-6px) rotate(135deg);
    width: 66%;
}
header.scroll-nav {
  background: rgba(255, 255, 255, 0.0);
}
/* footer */
footer {
  background: #101010;
}
.footer {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 50px 0 50px;
  color: #FFF;
  background: #101010;
  border-top: solid 1px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.footer img {
  width: 286px;
  margin-bottom: 0;
  margin-right: 80px;
}
.footer img:hover {
  opacity: 0.4;
}
.footer_menu ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 135px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer_menu ul li {
  margin-bottom: 20px;
  margin-right: 30px;
}
.footer_menu ul li a {
  font-size: 1.8rem;
  text-decoration: none;
  color: #fff;
  text-align: left;
  font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.footer_menu ul li a:hover {
    color: #F400A1;
}
.footer_ENJP {
  width: 100%;
  margin: 50px 0 0;
  max-width: 240px;
}
.footer_ENJP ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: space-around;
  margin-bottom: 30px;
}
.footer_ENJP ul li {
  position     : relative;
  width        : 30px;
  height       : 30px;
  background   : #fff;
  transform    : rotate(45deg);
}
.footer_ENJP ul li a {      /* 前面の文字エリア */
  position     : absolute;
  display      : inline-block;
  background   : rgba(255, 255, 255, 0);
  top          : 50%;
  left         : 50%;
  padding      : 3px;
  color        : #1d1d1d;
  transform    : translate(-50%,-50%) rotate(-45deg);
  font-size    : 1.4rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-decoration: none;
}
.footer_ENJP ul li a:hover {
    color: #F400A1;
}
.footer small {
  position: relative;
  font-size: 1.2rem;
}



  






@media (max-width: 1259px) {
header a {
  font-size: 3.0rem;
  font-weight: 500;
}
header a span {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.header_topimage {
  flex-direction: row;
}
 
  .header nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
  background: linear-gradient(-40deg, #182DFC 15%, #1E1E23 50%, #F400A1 85%);
    width: 100%;
    height: 100%;
    padding-top: 80px;
  }
  .header nav ul li {
    display: block;
    text-align: center;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    padding: 22px 0;
  }
  .header nav ul li a {
    line-height: 24px;
    width: 100%;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    padding: 20px 0;
    font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  } 
  
header {
  z-index: 320;
  position: fixed;
  background-color: #1E1E23;
  width: 100%;
  height: 70px;
}
header img {
  height: 50px; 
  margin-right: 30px;
  margin-top: 0;
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn7{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  margin-top: 24px;
  margin-left: 30px;
    width: 50px;
  height:  50px;
  border-radius: 0px;
  z-index: 10000;
}

/*ボタン内側*/

.openbtn7 .openbtn-area{
    transition: all .4s;
}

.openbtn7 span{
    display: inline-block;
    transition: all 1.0s;/*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 4px;
    border-radius: 1px;
    background: #fff;
    width: 80%;
  }


.openbtn7 span:nth-of-type(1) {
  top:0px; 
}

.openbtn7 span:nth-of-type(2) {
  top:12px;
}

.openbtn7 span:nth-of-type(3) {
  top:24px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.openbtn7.active .openbtn-area{
  transform: rotateY(-360deg);
}

.openbtn7.active span:nth-of-type(1) {
    top: 18px;
    left: 0;
    transform: translateY(6px) rotate(-135deg);
    width: 66%;
}

.openbtn7.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn7.active span:nth-of-type(3){
    top: 30px;
    left: 0;
    transform: translateY(-6px) rotate(135deg);
    width: 66%;
}
/* footer */
.footer {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 50px 0 20px;
  color: #FFF;
  background: #101010;
  border-top: solid 1px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer img {
  width: 240px;
  margin-bottom: 40px;
  margin-right: 0;
}
.footer_menu ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 800px;
  flex-wrap: nowrap;
}
.footer_menu ul li {
  margin-bottom: 20px;
}
.footer_menu ul li a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #fff;
  text-align: left;
  padding-bottom: 20px;
}
.footer_ENJP {
  width: 100%;
  margin: 30px auto 36px;
  max-width: 240px;
}
.footer_ENJP ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: space-around;
}
.footer_ENJP ul li {
  position     : relative;
  width        : 30px;
  height       : 30px;
  background   : #fff;
  transform    : rotate(45deg);
}
.footer_ENJP ul li a {      /* 前面の文字エリア */
  position     : absolute;
  display      : inline-block;
  background   : rgba(255, 255, 255, 0);
  top          : 50%;
  left         : 50%;
  padding      : 3px;
  color        : #1d1d1d;
  transform    : translate(-50%,-50%) rotate(-45deg);
  font-size    : 1.4rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-decoration: none;
}
.footer small {
  position: relative;
}
}











.atom-spinner, .atom-spinner * {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-sizing: border-box;
      z-index: 2;
    }

    .atom-spinner {
      height: 50vw;
      width: 50vw;
      overflow: hidden;
    }

    .atom-spinner .spinner-inner {
      position: relative;
      display: block;
      height: 100%;
      width: 100%;
    }

    .atom-spinner .spinner-circle {
      display: block;
      position: absolute;
      color: #8deeff;
      font-size: calc(50vw * 0.24);
    }

    .atom-spinner .spinner-line {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0%;
      left: 0%;
      border-radius: 50%;
      animation-duration: 1.5s;
      border-left-width: calc(50vw / 25);
      border-top-width: calc(50vw / 25);
      border-left-color: #8deeff;
      border-left-style: solid;
      border-top-style: solid;
      border-top-color: transparent;
    }
.spinner-line:nth-child(1){
      border-left-color: #182DFC;
}
.spinner-line:nth-child(2){
      border-left-color: #fff;
}
.spinner-line:nth-child(3){
      border-left-color: #F400A1;
}

    .atom-spinner .spinner-line:nth-child(1) {
      animation: atom-spinner-animation-1 1.5s linear infinite;
      transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
    }

    .atom-spinner .spinner-line:nth-child(2) {
      animation: atom-spinner-animation-2 1.5s linear infinite;
      transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
    }

    .atom-spinner .spinner-line:nth-child(3) {
      animation: atom-spinner-animation-3 1.5s linear infinite;
      transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
    }

    @keyframes atom-spinner-animation-1 {
      100% {
        transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
      }
    }

    @keyframes atom-spinner-animation-2 {
      100% {
        transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
      }
    }

    @keyframes atom-spinner-animation-3 {
      100% {
        transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
      }
    }