html,
body {
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 0.2rem;
  -webkit-font-smoothing: antialiased;
  background: #fffff0;
}

.left {
  width: 100%;
  display: none;
  position: fixed;
  top: 50%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (min-width: 800px) {
  .left {
    display: block;
  }
}
.left .title {
  font-size: 20px;
  font-weight: bold;
}
.left img {
  width: 200px;
  margin: 30px auto;
}
.left .apply a {
  padding: 15px 30px;
  color: #fff;
  background: #06C755;
  border-radius: 15px;
  font-weight: bold;
}

.right {
  max-width: 800px;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 800px) {
  .right {
    width: 400px;
  }
}

.line {
  display: block;
  text-align: center;
  margin: 30px 0 0;
}
.line a {
  display: block;
  margin: 0 auto;
  width: 90%;
  padding: 15px;
  background: #f3965c;
  color: #fff;
  font-weight: bold;
  border-radius: 7px;
  -webkit-box-shadow: 2px 2px 3px #888888;
          box-shadow: 2px 2px 3px #888888;
}
.line a:hover {
  -webkit-box-shadow: 0px 0px 3px #888888;
          box-shadow: 0px 0px 3px #888888;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.header {
  width: 100%;
}
.header .container {
  width: 90%;
  margin: 0 auto;
  -webkit-box-shadow: 1px 1px 10px rgba(51, 51, 51, 0.3);
          box-shadow: 1px 1px 10px rgba(51, 51, 51, 0.3);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin-top: 20px;
}
.header .container .header-logo-img {
  width: 35px;
}
.header .container .header-logo-text {
  width: 100px;
  height: auto;
}

.top {
  pointer-events: none;
  margin-top: 20px;
}
.top .container {
  width: 90%;
  margin: 0 auto;
}
.top .container img {
  width: 100%;
  border-radius: 15px;
}

.top-text {
  margin: 100px 0 0;
  background-image: url(../img/top-bg.png);
  background-position: center center;
  background-size: cover;
}
.top-text .container .top {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0 auto;
}
.top-text .container .top .main {
  font-weight: bold;
  font-size: 30px;
  margin-left: 20px;
}
.top-text .container .top .sub {
  font-size: 12px;
}
.top-text .container .bottom {
  width: 80%;
  margin: 50px auto 0;
  font-weight: bold;
  line-height: 2;
  font-size: 18px;
}

article {
  overflow: hidden;
  color: #fc82e5;
  opacity: 0.5;
  margin-top: -170px;
}

.loop_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.loop_wrap div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-size: 100px;
  overflow: hidden;
  font-weight: bold;
}

.loop_wrap div:nth-child(odd) {
  -webkit-animation: loop 30s -15s linear infinite;
          animation: loop 30s -15s linear infinite;
}

.loop_wrap div:nth-child(even) {
  -webkit-animation: loop2 30s linear infinite;
          animation: loop2 30s linear infinite;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.why .container {
  width: 95%;
  margin: 100px auto;
}
.why .container img {
  width: 100%;
}

.features .container {
  width: 90%;
  margin: 0 auto;
}
.features .container .title .sub {
  font-size: 12px;
  letter-spacing: 0.01rem;
  font-weight: bold;
}
.features .container .title .main {
  font-size: 24px;
  font-weight: bold;
}
.features .container .contents {
  padding: 20px 0;
}
.features .container .contents img {
  width: 100%;
}
.features .container .contents img:not(:last-child) {
  margin-bottom: 10px;
}

.flow {
  padding-top: 100px;
}
.flow .container {
  width: 97%;
  margin: 0 auto;
}
.flow .container .flow-img {
  width: 100%;
}

.reward .container {
  width: 92%;
  margin: 0 auto;
}
.reward .container .flow-img {
  width: 100%;
}

.footer {
  margin-top: 100px;
  -webkit-box-shadow: 1px 1px 10px rgba(51, 51, 51, 0.3);
          box-shadow: 1px 1px 10px rgba(51, 51, 51, 0.3);
}
.footer .container {
  width: 90%;
  margin: 0 auto;
}
.footer .container .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  padding: 15px 0;
}
.footer .container .title .header-logo-img {
  width: 35px;
}
.footer .container .title .header-logo-text {
  width: 100px;
  height: auto;
}
.footer .container .doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  font-size: 10px;
}
.footer .container .copyright {
  padding: 10px 0;
  font-size: 10px;
  text-align: center;
}