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

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

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  animation: gradient 30s ease infinite;
  background: radial-gradient(#002292, #1f85c9);
  background-size: 200% 200%;
  background-attachment: fixed;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
h1 {
  color: #000000;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

h3 {
  text-align: center;
}
h3 span {
  font-size: 0.8rem;
}

p {
  color: #000000;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 10px;
}

.top {
  text-align: center;
  max-width: 1000px;
  margin: 50px auto;
  padding: 25px;
  border-radius: 10px;
}

.wrap {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.431372549);
  background: rgb(233, 233, 233);
  border-radius: 30px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 25px;
  border-radius: 10px;
}

.imgbox {
  max-width: 975px;
  width: 90vw;
  height: 510px;
  border-radius: 5px;
  text-align: center;
  background: url(../img/bg2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.imgbox img {
  position: relative;
  z-index: 51;
  filter: drop-shadow(5px 5px 5px #222);
}
.imgbox:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/grid.png);
  z-index: 50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: breathe2 10s infinite;
}

@keyframes breathe2 {
  0%, 10%, 90%, 100% {
    opacity: 0.1;
  }
  45%, 55% {
    opacity: 0.5;
  }
}
.item__img {
  background-color: #cccccc;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}
.item__img img {
  width: 250px;
  margin: 25px auto;
}
.item__disc {
  padding-top: 25px;
}
.item__disc--ttl {
  text-align: center;
  margin: 10px auto;
}
.item__disc--ttl h2 {
  font-size: 35px;
  margin: 0;
}

.note {
  background-color: #cccccc;
  border-radius: 5px;
  padding-bottom: 25px;
}
.note h2 {
  padding: 25px 40px 0;
}

@media only screen and (min-width: 768px) {
  .global_foot {
    height: 284px;
  }
}

.effect-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.effect-block {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-radius: 5px;
  margin: 0 auto;
}
.effect-block .span {
  opacity: 0;
  animation: text-visible 0.0001s linear forwards;
  animation-delay: 1.5s;
}
.effect-block:after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 0%;
  height: 100%;
  background: #cccccc;
  animation: effect-block 2s cubic-bezier(0.19, 1, 0.22, 1);
  animation-delay: 1s;
}

#another {
  font-size: 50px;
}
#another .span {
  animation-delay: 3.7s;
}
#another.effect-block:after {
  background: #2b9dff;
  animation-delay: 3s;
}

#three .span {
  animation-delay: 2.5s;
}
#three.effect-block:after {
  background: #0e2a81;
  animation-delay: 1.4s;
}

#img.effect-block:after {
  background: #cccccc;
}
#img .span {
  animation-delay: 2s;
}

@keyframes effect-block {
  0% {
    left: 0;
    width: 0%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
@keyframes text-visible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.check {
  background: #cccccc;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .check {
    margin: 25px 0 0;
    padding: 25px 20px;
  }
}
@media only screen and (min-width: 768px) {
  .check {
    max-width: 800px;
    margin: 35px auto 0;
    padding: 28px 30px;
  }
}
.check p {
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .check p {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .check p {
    font-size: 1em;
  }
}
.check__box {
  text-align: center;
}
.check__box label {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .check__box label {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .check__box label {
    font-size: 1.05rem;
    cursor: pointer;
  }
}
.check__box input[type=checkbox] {
  transform: scale(1.3);
  margin: 0 10px 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .check__box input[type=checkbox] {
    top: 1px;
  }
}

.apply-btn {
  transition: 0.5s;
  background: #cccccc;
  text-align: center;
  font-weight: 600;
  position: relative;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .apply-btn {
    margin: 30px 0 0;
    height: 60px;
    line-height: 60px;
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 768px) {
  .apply-btn {
    margin: 40px auto 0;
    width: 700px;
    height: 75px;
    line-height: 75px;
    font-size: 1.2rem;
    transition: 0.3s;
  }
  .apply-btn:hover {
    background: #808080;
  }
}
.apply-btn::after {
  content: "";
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .apply-btn::after {
    width: 7px;
    height: 7px;
    right: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .apply-btn::after {
    width: 10px;
    height: 10px;
    right: 30px;
  }
}
.apply-btn a {
  display: block;
  width: 100%;
  color: #000000;
  text-decoration: none;
}
.apply-btn.is-inactive {
  background: #ccc;
  pointer-events: none;
}
.apply-btn.is-active {
  background: #104e70;
  pointer-events: auto;
}
.apply-btn.is-active:hover {
  background: #1e8bc5;
}

.msg {
  background: #ccc;
  text-align: center;
  font-weight: bold;
  height: 65px;
  line-height: 70px;
  position: relative;
  transition: 0.5s;
  text-decoration: none;
  letter-spacing: 0.1rem;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .msg {
    max-width: 500px;
    width: 100%;
    margin: 70px auto;
    border-radius: 5px;
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=style.css.map */