@charset "utf-8";
/*---------------------------------------------
Reset
---------------------------------------------*/

html {
  color: #000;
  overflow-y: scroll;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.5;
  background-image: linear-gradient(-60deg, #0d1d3a, #5f6267);
  max-width: 700px;
  width: 100%;
  margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

div,
dl,
dt,
dd,
form,
input,
ul,
ol,
li,
p,
select,
textarea,
span,
th,
td {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/*---------------------------------------------
Style
---------------------------------------------*/
body {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  font-size: 1.8rem;
  width: 100%;
}

.for_pc {
  display: block;
  margin: 0 auto;
}

.for_sp {
  display: none;
  margin: 0 auto;
}


/* sp */
@media screen and (max-width: 750px) {

  body {
    font-size: 1.5rem;
  }

  .for_pc {
    display: none;
    margin: 0 auto;
  }

  .for_sp {
    display: block;
    margin: 0 auto;
  }
}

/* =========================================================
ヘッダー
========================================================= */
header {
  background-color: #FFF;
  padding: 1rem;
  position: relative;
  z-index: 100;
  height: 80px;
}

header a {
  display: inline-block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  text-align: left;
}

header img {
  max-width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {

  header img {
    max-width: 50%;
    margin-left: auto;
  }
}

/* =========================================================
メインビジュアル
========================================================= */

main {
  position: relative;
  z-index: 100;
  background: #fff;
  padding-bottom: 4rem;
}

h1 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
}

h1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .9) 50%,
      rgba(255, 255, 255, 0) 100%);
  width: 40%;
  left: -75%;
  transform: skewX(-20deg);
  pointer-events: none;
  animation: shineFlash 6s ease 1;
}

h1 img {
  display: block;
  width: 100%;
  height: auto;
}



@keyframes shineFlash {
  0% {
    left: -75%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  20% {
    left: 125%;
    opacity: 0;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}

.btn {
  width: 100%;
  padding: 2rem 0;
}

.btn a {
  max-width:600px;
  display:block;
  background: #da0606;
  box-shadow: 0px 5px 0px #b61616;
  color: #fff;
  padding: 2rem;
  border-radius: 5rem;
  text-decoration: none;
  font-weight: bold;
  margin:0 auto;
}
.btn-y a {
    background-color: #FCEE21;
    box-shadow: 0px 3px 0px #D6CB29;
    color: #000;
}
.btn a:hover {
    opacity: 0.5;
}
.btn span{
    font-size: 12px;
}


/* ----PCサイド----------------- */


@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1000px) {
  .btn {
    width: 80%;
    margin: 2rem auto;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 750px) {}

/* =========================================================
内容
========================================================= */



/* =========================================================
ページトップ リンク
========================================================= */

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #75bc2a;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s;
  position: relative;
  z-index: 99999;
  border-radius: 5rem;
}

#page-top a:hover {
  animation: ptMove 1.2s linear;
}

@keyframes ptMove {
  0% {
    transform: translate(0);
  }

  25% {
    transform: translate(0, -2rem);
  }

  50% {
    transform: translate(0, 0);
  }

  75% {
    transform: translate(0, -3rem);
  }

  100% {
    transform: translate(0);
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
  z-index: 99999;
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
  bottom: 10px;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

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

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

@media screen and (max-width: 960px) {

  #page-top.UpMove {
    animation: UpAnime 0.5s forwards;
    bottom: 10px;
  }
}

@media screen and (max-width: 750px) {
  #page-top {
    position: fixed;
    right: 20px;
    bottom: 10px;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
  }
}


/*---------------------------------------------
フッター
---------------------------------------------*/

footer {
  width: 100%;
  padding: 20px 0;
  font: Arial, Helvetica, sans-serif;
  background: #2b2b2b;
  position: relative;
  z-index: 100;
}

footer a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

footer address {
  color: #fff;
}

/* sp */
@media screen and (max-width: 520px) {
  footer {
    padding: 10px 0;
  }

  #page-top a {
    margin: 0 -10px 0 0;
  }
}



#fireworksCanvas {
  background: #0d203c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0; 
  pointer-events: none;
}