html {
  width: 100%;
  height: 100%;
  font-size: 1em;
}

body {
  width: 100%;
  height: 100%;
  color: #fff;
  margin: 0px;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
  background: linear-gradient(to bottom right, #7eb9fc, #657aff);
  position: fixed;
  overflow:hidden;
  overflow-y: scroll;
}

header {
  text-align: center;
  font-family: "OtsutomeFont";
}

h1 {
  font-size: 5rem;
  margin-block-end: 0.0;
  font-weight: 100;
}

h1 + p {
  font-size: 3rem;
  margin-block-start: 0.0;
}

.banner {
  width: 100%;
  background-color: #2756bb;
  display: flex;
  margin: 0 auto 40px;
  font-size: 28px;
  text-align: center;
  overflow: hidden;
}

.banner p {
  margin: 0;
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  line-height: 1em;
  animation: scrollSample01 60s linear infinite;
}

.banner span {
  margin-right: 4rem;
}

.container {
  margin: 0 10rem;
}

h2 {
  font-size: 3rem;
  margin-block-end: 0.0;
}

h2 + p {
  font-size: 2rem;
  margin-block-start: 0.0;
}

footer {
  width: 100%;
  text-align: center;
}
.wrap{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
}

/* mobile */
@media screen and (orientation: portrait) {
  html{
    font-size: 2vw;
  }
  .container {
    margin: 0 1rem;
  }
}

@keyframes scrollSample01 {
  0% {
    transform: translateX(0)
  }
  100% {
    transform: translateX(-100%)
  }
}

@font-face {
  font-family: 'OtsutomeFont';
  src: url('../fonts/OtsutomeFont_Ver3.ttf');
  font-weight: normal;
  font-style: normal;
}
