@charset "UTF-8";
/*====================
common
====================*/
img {
  display: block;
  margin: 0 auto;
}
#GFoot {
  padding: 0 0 100px;
}
#GFoot ul.caution{
  width: 100%;
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 0 16px;
  line-height: 1.4;
  box-sizing: border-box;
  font-size: 11px;
}
#GFoot ul li{
  position: relative;
}
#contents section{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media all and (min-width: 601px){
  #GFoot {
    padding: 0 0 140px;
  }
  .notes{
    font-size: 14px;
    line-height: 1.4;
  }
  #section_second ul{
    width: 88%;
    display: block;
    margin: 17px auto 31px;
  }
  #section_second ul li{
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 889px){
  #GFoot .copyBlock {
      margin-top: 70px;
      font-size: 10px;
      font-size: 1rem;
  }
}
  @media only screen and (min-width: 890px), print {
  #GFoot .copyBlock {
      margin-top: 50px;
      font-size: 12px;
      font-size: 1.2rem;
  }
}
/*====================
scroll_header
====================*/
.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #000;
}
.header img {
  width: 65%;
  height: auto;
  display: block;
  margin: 13px auto 12px;
  max-width: 470px;
}
/*========================================*/
.box {
  position: relative;
} 
.content {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
}
.content::after {
  position: absolute;
  content: "";
  width: 2.5px;
  height: 100%;
  background-color: #111;
  top: 0;
  left: 0;
}
p {
  position: relative;
}
.box p img {
  width: 100%;
}
.mv p {
  margin-top: 15%;
}
.bottom_txt {
  background-color: #fff;
  max-width: 660px;
  margin: 0 auto;
}
/*====================
banner
====================*/
.banner_box {
  width: 100%;
  height: 120px;
  margin: 0 auto;
  background-color: #022042;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s 0.6s;
}

.banner_box.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s 0s;
}

.banner_box>a>img {
  display: block;
  width: auto;
  height: 120px;
  transition: none;
}

@media screen and (max-width: 767px) {
  .banner_box {
    height: 100px;
  }
  .banner_box>a>img {
    height: 100px;
  }
}


/*====================
neon
====================*/
.neon {
  position: absolute;
  top: 0;
  z-index: 2;
}
.neon_bottom {
  position: absolute;
  bottom: 0;
  z-index: 2;
}
.neon_top {
  position: absolute;
  top: 0;
  z-index: 2;
}

/*====================
neon_animation
====================*/
.brigth01 > img {
  animation: neon_ani05 5s infinite alternate;
}
.brigth02 > img {
  animation: neon_ani05 4.5s infinite alternate;
}
.brigth03 > img {
  animation: neon_ani05 4.1s infinite alternate;
}
.brigth04 > img {
  animation: neon_ani04 3.8s infinite alternate;
}
.brigth05 > img {
  animation: neon_ani04 3.2s infinite alternate;
}
.brigth06 > img {
  animation: neon_ani04 3s infinite alternate;
}
@keyframes neon_ani04 {
  0%, 100%, 19%, 21%, 23%, 25%, 54%, 56% {
      opacity: 1
  }
  20%, 24%, 55% {
      opacity: .8
  }
}
@keyframes neon_ani05 {
  0%, 100%, 19%, 21%, 23%, 25%, 54%, 56% {
      opacity: 1
  }
  20%, 24%, 55% {
      opacity: .7
  }
}

/*====================
character_animation
====================*/
.character_box {
  position: absolute;
  top:0;
  left: 0;
  right: 0;
}
.char_animation {
  position: relative;
}
.char_animation .frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.frame.a {
  animation: showA 1.5s linear infinite;
}
.frame.b {
  animation: showB 1.5s linear infinite;
}
@keyframes showA {
  0%, 49% {
      opacity: 1;
  }
  50%, 100% {
      opacity: 0;
  }
}
@keyframes showB {
  0%, 49% {
      opacity: 0;
  }
  50%, 100% {
      opacity: 1;
  }
}

.btn_box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/*====================
CLOSE
====================*/
.after_close {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #00000082;
  z-index: 99999;
}

.after_close img {
  width: 80%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: auto;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
}