@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
.sns-twitter::before {
  content: "\e61b";
}

.sns-instagram::before {
  content: "\f16d";
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@font-face {
  font-family: myfont;
  src: url("font-family: 'Oswald', sans-serif;");
}
h1 {
  color: #fff;
  border-radius: 10px;
  font-weight: bolder;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  background-size: cover;
  text-align: center;
}

h2 {
  color: #fff;
  border-radius: 10px;
  font-weight: bolder;
  font-family: "Oswald", sans-serif;
  background-size: cover;
  text-align: center;
  margin: 0 auto;
  font-weight: 800;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 35px;
    padding: 50px;
  }
}

h3 {
  color: #fff;
  border-radius: 10px;
  font-weight: bolder;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  background-size: cover;
  margin: 0 auto;
  font-weight: 800;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #151427;
  background-image: url("../img/stars.png");
  animation: bgScroll 60s linear infinite;
  background-repeat: repeat;
}
@media only screen and (max-width: 767px) {
  body {
    background-size: contain;
  }
}

@keyframes bgScroll {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 0px -1080px;
  }
}
.wrap {
  margin: 0;
  padding: 0 0 50px 0;
  font-family: "Noto Sans JP", sans-serif;
  background-image: url("../img/stars2.png");
  animation: bgScroll 110s linear infinite;
  background-repeat: repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .wrap {
    background-size: contain;
  }
}

.top {
  position: relative;
  width: 100%;
  background: white;
  padding: 50px 0;
  margin-bottom: 50px;
}
.top__hero {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .top__hero img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .main {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  .main {
    padding: 10px;
    margin: 0 auto;
  }
}
.main__date {
  background-color: rgba(255, 255, 255, 0.1882352941);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  color: #fff;
  font-weight: bolder;
}
@media only screen and (min-width: 768px) {
  .main__date {
    margin: 0 auto;
    text-align: center;
  }
  .main__date p {
    margin: 0;
    font-size: 1.5em;
    padding: 0 0 50px;
  }
  .main__date h2 {
    margin: 0 auto;
    font-size: 50px;
    line-height: normal;
  }
}
@media only screen and (max-width: 767px) {
  .main__date {
    padding: 10px;
  }
  .main__date h2 {
    text-align: center;
    font-size: 25px;
    line-height: normal;
  }
  .main__date p {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .middle {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .middle {
    padding: 10px;
    margin: 50px auto 0;
  }
}
.middle__content {
  min-height: 1000px;
  background-color: rgba(255, 255, 255, 0.1882352941);
  backdrop-filter: blur(5px);
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .middle__content {
    text-align: center;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  .middle__content {
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto 0;
    padding: 10px 25px;
  }
}

.sns {
  background-color: rgba(255, 255, 255, 0.1882352941);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}
@media only screen and (min-width: 768px) {
  .sns {
    text-align: center;
    width: 100%;
    margin: 0 auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  .sns {
    padding: 10px;
    margin: 50px auto 0;
  }
}
.sns__text {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .sns__box {
    padding: 0 0 50px;
  }
}
.sns__item {
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
  background-color: #d62c2d;
  backdrop-filter: blur(5px);
  margin: 0 auto 50px;
}
@media only screen and (max-width: 767px) {
  .sns__item {
    width: 90%;
    padding: 20px 20px 20px 90px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item {
    width: 550px;
    padding: 35px 35px 35px 120px;
    transition: 0.2s;
    cursor: pointer;
  }
  .sns__item:hover {
    background-color: rgba(214, 44, 44, 0.368627451);
  }
  .sns__item:hover .text::before {
    right: 55px;
  }
  .sns__item:hover .text::after {
    right: 33px;
  }
}
.sns__item.sns-twitter::before, .sns__item.sns-instagram::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .sns__item.sns-twitter::before, .sns__item.sns-instagram::before {
    font-size: 2rem;
    left: 27px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item.sns-twitter::before, .sns__item.sns-instagram::before {
    font-size: 2.6rem;
    left: 40px;
  }
}
.sns__item.sns-twitter::before {
  content: "\e61b";
}
.sns__item.sns-instagram::before {
  content: "\f16d";
}
@media only screen and (min-width: 768px) {
  .sns__item .text {
    text-align: left;
  }
}
.sns__item .text::before {
  content: "";
  border-top: solid 2px #ccc;
  border-right: solid 2px #ccc;
  transform: rotate(45deg);
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .sns__item .text::before {
    width: 8px;
    height: 8px;
    top: 48px;
    right: 43px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item .text::before {
    width: 12px;
    height: 12px;
    top: 54.5px;
    right: 62px;
    transition: 0.2s;
  }
}
.sns__item .text::after {
  content: "";
  border: 1px solid #ccc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .sns__item .text::after {
    width: 38px;
    height: 38px;
    right: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item .text::after {
    width: 50px;
    height: 50px;
    right: 40px;
    transition: 0.2s;
  }
}
.sns__item .text p {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .sns__item .text p {
    font-size: 0.95rem;
    line-height: 1.3rem;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item .text p {
    font-size: 1.2rem;
    line-height: 100%;
    margin: 0 0 10px;
  }
}
.sns__item .text a {
  color: #ccc;
}
@media only screen and (max-width: 767px) {
  .sns__item .text a {
    font-size: 0.9rem;
    text-align: left;
  }
}
.sns__item .text a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.spin {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
}
.spin__spinner {
  z-index: 10;
  position: absolute;
  left: 42.5%;
  top: 200px;
  height: 60px;
  width: 60px;
  margin: 0px auto;
  animation: rotation 0.6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, 0.15);
  border-right: 6px solid rgba(0, 174, 239, 0.15);
  border-bottom: 6px solid rgba(0, 174, 239, 0.15);
  border-top: 6px solid rgba(0, 174, 239, 0.8);
  border-radius: 100%;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.spin__overlay {
  position: relative;
  background-color: #e5e5e7;
  border-radius: 10px;
}

.global_head {
  margin: 0;
}/*# sourceMappingURL=stylev2.css.map */