/* ==================================================================

Setting

================================================================== */
/* Break Point
--------------------------------- */
/* Width
--------------------------------- */
/* Color
--------------------------------- */
/* Font
--------------------------------- */
/* Google Web Font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* ==================================================================

Mixin

================================================================== */
/* Break Point
--------------------------------- */
/* Clearfix
--------------------------------- */
/* ==================================================================

First View

================================================================== */
/* .l-header
--------------------------------- */
.l-header {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: l-header 0.5s 1s forwards;
          animation: l-header 0.5s 1s forwards;
}

@-webkit-keyframes l-header {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes l-header {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* .p-top-hero
--------------------------------- */
.p-top-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes p-top-hero {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes p-top-hero {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

/* .p-top-hero__copy
--------------------------------- */
.p-top-hero__copy {
  width: 100%;
}

.p-top-hero__copy > img {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-animation: p-top-hero__copy 1s 0.5s forwards;
          animation: p-top-hero__copy 1s 0.5s forwards;
}

.p-top-hero__copy > img + img {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes p-top-hero__copy {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes p-top-hero__copy {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* ==================================================================

Hero

================================================================== */
/* .p-top-hero
--------------------------------- */
.p-top-hero {
  position: relative;
  background: #72ddff;
}

/* .p-top-hero__copy
--------------------------------- */
.p-top-hero__copy > img {
  display: block;
}

/* ==================================================================

Contents

================================================================== */
/* .p-top-contents
--------------------------------- */
.p-top-contents {
  margin-top: 10vh;
}

.p-top-present {
  padding: 2em;
  color: #fff;
  background: #0051a1;
  width: 100%;
}

.p-top-present .p-top-present__in {
  max-width: 1200px;
  margin: 0 auto;
}

.p-top-present .p-top-present__in > :first-child {
  margin-top: 0;
}

.p-top-present + .p-top-contents {
  margin-top: 10vh;
}

@media screen and (max-width: 767px) {
  .p-top-present + .p-top-contents {
    margin-top: 5vh;
  }
}
