*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1;
}
html, body {
  height: 100%;
}
body {
  font-size: 1.5em;
  margin: 0;
  color: #fff;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 0;
  font-weight: 500;
}
ul, li, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
figure {
  padding: 0;
  margin: 0;
}
.sp_block {
  display: none;
}
.pc_block {
  display: block;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.inner {
  width: 100%;
  max-width: 900px;
  padding: 0 15px;
  margin: 0 auto;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  max-height: 100%;
}
a {
  color: #e94709;
  text-decoration: none;
}
a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #BC3400;
}
#particles {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #161E35;
}
#wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.openbtn {
  display: none;
  position: fixed;
  /* [disabled]top: 10px; */
  /* [disabled]right: 10px; */
  z-index: 999;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #1a1a1a;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 12px;
}
.openbtn span:nth-of-type(2) {
  top: 20px;
}
.openbtn span:nth-of-type(3) {
  top: 28px;
}
.openbtn.active span:nth-of-type(1) {
  top: 12px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 24px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn::after {
  content: "MENU";
  color: #1a1a1a;
  font-size: 10px;
  margin: 0 auto;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 2px;
  letter-spacing: 2px;
  text-align: center;
}
.openbtn.active::after {
  content: "CLOSE";
}
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*ヘッダー*/
#header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
  color: #fff;
  text-align: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
}
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header .logo {
  position: absolute;
  left: 15px;
  width: 21%;
  z-index: 1;
  padding: 15px 10px;
  margin: 0;
  max-width: 300px;
}
#header.dnone {
  opacity: 0;
}
#header.dnone.panelactive {
  opacity: 1;
}
#navi ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#navi ul li a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  padding: 15px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 16px;
  line-height: 1.3;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
#navi ul li a span {
  color: #777777;
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0px;
  transition: .3s ease-in-out;
}
#navi ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(38, 139, 218, 1);
  width: 100%;
  height: 0;
  transition: .3s ease-in-out;
}
#navi ul li a:hover:before {
  height: 100%;
  background-color: rgba(38, 139, 218, 1);
}
#navi ul li a:hover span {
  color: #fff;
}
#navi ul li {
  text-align: center;
}
#navi ul li.twitter a::before, #navi ul li.insta a::before, #navi ul li.youtube a::before {
  display: none;
}
#navi ul li.twitter a, #navi ul li.insta a {
  margin: 0 auto;
  width: 50px;
  padding: 10px;
  background-image: none;
}
#navi ul li.youtube a {
  margin: 0 auto;
  width: 55px;
  padding: 10px;
  background-image: none;
}
#navi ul li.current a, #navi ul li a:hover {
  color: #F5E227;
}
#header.dnone #navi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: all 0.4s;
}
#header.dnone.panelactive #navi {
  opacity: 1;
  z-index: 3;
  background-color: hsla(214, 62%, 32%, 0.95);
}
#header.dnone.panelactive #navi ul {
  display: block;
  width: 100%;
}
#header.dnone.panelactive #navi li {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.20);
  width: 100%;
  display: block;
}
#header.dnone.panelactive #navi li:last-child {
  border-bottom: 0;
}
#header.dnone.panelactive #navi li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  font-size: 2rem;
}
#header.dnone.panelactive #navi ul li.twitter a {
  margin: 0 auto;
  width: 80px;
}
/*footer*/
#pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  z-index: 3;
  padding: 20px 10px 10px;
  font-weight: 800;
}
#pagetop:hover {
  opacity: 0.6;
  transform: translateY(-5px);
  transition: all 0.2s;
}
#pagetop:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  border: 4px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  position: absolute;
  left: 0px;
  top: 0px;
  margin: auto;
  right: 0px;
}
footer {
  border-top: 1px solid #343D5B;
  padding: 30px 0;
  text-align: center;
}
footer a {
    color: #fff;
    text-decoration: underline;
}
footer a:hover {
    text-decoration: none;
    color: #536088;
}
footer .logo {
  margin: 0 auto 40px;
  max-width: 290px;
}
footer .foot_nav li {
  display: inline-block;
}
footer .foot_nav li a {
  font-size: 14px;
  padding: 5px 10px 5px 0;
  display: block;
  position: relative;
  color: #1a1a1a;
  font-weight: 400;
}
footer .foot_nav li a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 3px;
  margin-bottom: 2px;
}
footer .foot_nav li a:hover {
  opacity: 0.7;
}
footer .copyright {
  font-size: 12px;
  font-weight: 400;
  display: block;
}
section {
  padding: 60px 0;
}
section .inner, fotter .inner {
  background-color: hsla(225, 41%, 15%, 0.80);
  padding: 20px 0;
  color: #fff;
  max-width: 700px;
}
section h2 {
  text-align: center;
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #DFFF25;
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgappearTrigger, .bgLRextendTrigger {
  opacity: 0;
}
#top {}
#top h1 {
  padding: 0;
  margin: 0;
}
#top img {
  width: 100%;
  max-width: 100%;
}
.lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
}
.lead span {
  background: linear-gradient(transparent 50%, rgb(0 255 250 / 39%) 50%);
}

h3{
	font-size: 3.2rem
}

.youtube {
  margin: 30px auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 10px solid hsla(0, 0%, 100%, 0.25);
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.outline_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.outline_list dt {
  width: 30%;
  padding: 10px;
  background-color: hsla(225, 25%, 43%, 1.00);
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outline_list dd {
  width: 70%;
  padding: 10px;
  margin-bottom: 10px;
}
.outline_info {
  margin: 30px auto;
  border: 1px solid hsla(225, 25%, 43%, 0.50);
  padding: 10px;
  background: hsla(225, 25%, 43%, 0.10);
}
.outline_info h4 {
  margin: 0 0 10px;
  padding: 0 0 10px;
  font-size: 1.8rem;
  border-bottom: 1px dotted #fff;
}
.outline_info ul {
  padding-left: 20px;
}
.outline_info ul li {
  list-style: disc;
}
.btn_form a {
  display: block;
  text-align: center;
  background-color: #DC1B3D;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 500;
  -webkit-box-shadow: 0px 3px #BD1634;
  box-shadow: 0px 3px #BD1634;
}

.btn_form a:hover{
	 background:#9b3d4e;
	transition:0.2s;
}

.btn_form a.comingsoon {
  pointer-events: none;
  background-color: #545454;
  -webkit-box-shadow: 0px 3px #403F3F;
  box-shadow: 0px 3px #403F3F;
}
.btn_form a span {
  font-size: 1.4rem;
  display: block;
}

.btn_form_abema a{
  display: block;
  text-align: center;
  background-color:#171717;
  color: #FFFFFF;
  padding: 20px;
  border-radius: 5px;
  margin: 0 auto 50px;
  font-size: 2.2rem;
  font-weight: 600;
	border:1px solid #FFF;

}



@media screen and (max-width:1000px) {
  .openbtn {
    display: block;
    right: 5px;
    top: 3px;
  }
  #header .logo {
    width: 30%;
  }
  #header #navi {
    display: none;
  }
  #header.panelactive #navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s;
    opacity: 1;
    z-index: 3;
    background-color: hsla(0, 0%, 100%, 0.95);
  }
  #header.panelactive #navi li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    font-size: 1.8rem;
  }
  #header.panelactive #navi ul {
    display: block;
    width: 100%;
  }
  #header.panelactive #navi li {
    border-bottom: 1px solid #e6e6e6;
    width: 100%;
    display: block;
  }
  #header.panelactive #navi ul li.twitter, #header.panelactive #navi ul li.insta, #header.panelactive #navi ul li.youtube {
    display: inline-block;
    border: 0;
    width: auto;
  }
  #header.panelactive #navi ul li:last-child {
    border-bottom: 0;
  }
  #header {
    height: 60px;
  }
  #header.panelactive.dnone {
    display: flex;
  }
  #header.dnone {
    opacity: 1;
  }
  #header.panelactive, #navi ul {
    display: block;
  }
}
@media screen and (max-width:768px) {
  .inner {
    padding: 0 20px;
  }
  .sp_block {
    display: block;
  }
  .pc_block {
    display: none;
  }
  #header .logo {
    padding: 0;
    width: 50%;
  }
  footer .foot_nav {
    text-align: center;
  }
  footer .copyright {
    text-align: center;
  }
  section {
    padding: 30px;
  }
  section h2 {
    font-size: 6vw;
  }
  .lead {
    text-align: left;
    font-size: 1.6rem;
  }
}