@charset "UTF-8";

article {
  width: 100%;
}

.contents-width {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

section {
  margin-top: 64px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(90deg, #2196f3 0%, #9721f3 100%);
  box-shadow: 0px 0px 16px #3b3a9e, 0px 3px 1px -2px rgb(0 0 0 / 20%),
    0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
  font-weight: bold;
  height: 48px;
  border-radius: 24px;
  border: none;
  font-size: 12px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.link {
  color: #fff;
  text-decoration: underline;
}

.privacy {
  display: flex;
  align-items: end;
  width: auto;
  font-size: 14px;
  margin-bottom: 16px;
}

.join {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.about-bg {
  padding: 32px 16px 48px 16px;
  border: 3px solid #fff;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 64px;
  font-style: italic;
}

.about-title {
  text-shadow: -1px 0px 0px #FA09C8, 1px 0px 0px #48FAFF;
  font-weight: bold;
}

.strong {
  color: #2196f3;
}

.qr-base {
  background-color: #fff;
  width: 128px;
  height: 128px;
  margin: 16px auto;
}

.screen-bg {
  background: linear-gradient(180deg, #000000 0%, #000000 75.0%, #272727 75.01%, #000000 90%, #000000 100%);
}

.screen-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
}

.screen-item {
  width: 40%;
}

.screen-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.caption {
  font-size: 10px;
  opacity: 0.7;
  margin-top: 16px;
  margin-left: 16px;
  margin-right: 16px;
}

.service-overview-bg {
  padding: 0;
}

.target-products-title {
  width: 50%;
  max-width: 250px;
  margin: 0 auto 32px auto;
}

.target-products-bg {
  background: linear-gradient(180deg, #000000 0%, #000000 70.0%, #272727 70.01%, #000000 85%, #000000 100%);
}

.target-products-img-wrapper {
  padding: 0 64px;
}

footer {
  padding: 64px 16px 16px 16px;
  text-align: center;
}

.copyright {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 32px;
}

.up-block {
  opacity: 0;
  transform: translateY(48px);
  transition: all .5s ease-in;
}

.up-block.blockIn {
  opacity: 1;
  transform: translateY(0);
}

.right-block {
  opacity: 0;
  transform: translateX(100px);
  transition: all .5s ease-in;
}

.right-block.blockIn {
  opacity: 1;
  transform: translateX(0);
}

.left-block {
  opacity: 0;
  transform: translateX(-100px);
  transition: all .5s ease-in;
}

.left-block.blockIn {
  opacity: 1;
  transform: translateX(0);
}

.full-width {
  width: 100%;
  box-sizing: border-box;
}

.sp-block {
  display: block;
}
.sp-inline {
  display: inline;
}
.pc-block,
.pc-inline {
  display: none;
}

.expired-text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 16px 0;
  background: #e91e63;
  margin-bottom: 8px;
}

.note-text {
  font-size: 12px;
  font-family: sans-serif;
  line-height: 1.6;
}

@media only screen and (min-width: 300px) {
  .btn-primary {
    font-size: 14px;
    padding: 0 16px;
  }
}

@media only screen and (min-width: 400px) {
  .btn-primary {
    font-size: 15px;
    padding: 0 16px;
  }
  .expired-text {
    font-size: 20px;
  }
}

@media only screen and (min-width: 600px) {
  .btn-primary {
    font-size: 16px;
    padding: 0 32px;
  }
  .sp-block,
  .sp-inline {
    display: none;
  }
  .pc-block {
    display: block;
  }
  .pc-inline {
    display: inline;
  }
  .expired-text {
    font-size: 24px;
  }
}

@media only screen and (min-width: 800px) {
  .service-overview-bg {
    padding: 0 64px;
  }

  .target-products-img-wrapper {
    padding: 0 150px;
  }
}

