@charset "UTF-8";

* {
  box-sizing: border-box;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  background-color: #dcdcdc;
}

body {
  max-width: 440px;
  min-height: 100vh;
  margin: 0 auto;
  background-color: #fff;
  color: #222;
}

#content {
  padding: 25px;
}

#content #header_img_area {
  text-align: center;
  margin-block-end: 1em;
}

.banner-horizontal {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 1em;
  overflow: hidden;
  border-radius: 14px;
  line-height: 0;
}

.banner-horizontal img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.youtube-vertical {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
}

.youtube-vertical #player,
.youtube-vertical #player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#content #text_area {
  overflow-wrap: break-word;
}

#content #text_area p {
  margin: 1em auto;
}

#content #text_area .text-center {
  text-align: center;
}

#content #text_area .w700 {
  font-weight: 700;
}

#content .w500 {
  font-weight: 500;
}

#content .w200 {
  font-weight: 200;
}

#content .em08 {
  font-size: 0.8em;
}

#content #text_area .f18 {
  font-size: 18px;
}

#content #text_area .campaign-title {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.8em;
}

.product-select-wrap {
  width: 90%;
  margin: 1.2em auto 1.5em;
}

#content .buttons {
  margin-top: 0.5em;
}

.product-select-label {
  display: block;
  margin-bottom: 0.5em;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
}

.product-select {
  display: block;
  width: 100%;
  padding: 0.75em 1em;
  border: 1px solid #999;
  border-radius: 8px;
  background-color: #fff;
  color: #222;
  font-size: 0.95em;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23222' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
}

.product-select:disabled {
  background-color: #eee;
  color: #888;
  cursor: not-allowed;
}

#button {
  display: flex;
  justify-content: flex-end;
}

#content .buttons a.button {
  display: block;
  border-radius: 22px;
  width: 90%;
  margin: 0 auto 10px auto;
  padding: 0.8em 0.5em;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition-duration: 0.2s;
  transition-property: background-color, color;
  font-size: 0.9em;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#content .buttons.disable {
  pointer-events: none;
}

#content #detail_area {
  border: 1px dashed #1da1f2;
  border-radius: 18px;
  padding: 0 5%;
  margin-top: 1em;
}

#content #detail_area .buttons a.button {
  width: 100%;
}

@media (prefers-color-scheme: dark) {
  html {
    background-color: #dcdcdc;
  }

  body {
    background-color: #fff;
    color: #222;
  }
}

.button--disabled {
  background-color: #cccccc;
  border: solid 1px #cccccc;
  color: #eaeaea;
  cursor: not-allowed;
}

.button--enabled {
  background-color: rgb(0, 0, 0);
  border: solid 1px #000000;
  color: #ffffff;
  cursor: pointer;
}

#thumbnail {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #000;
  z-index: 10;
}

.copyright {
  font-size: 0.7em;
  text-align: center;
  margin-top: 100px;
}

@media (prefers-color-scheme: dark) {
  html {
    color: #222;
    background-color: #dcdcdc;
  }

  body {
    background-color: #fff;
    color: #222;
  }

  #content {
    background-color: #444;
    color: #ccc;
  }

  #content #detail_area {
    border: 1px dashed #4b8ec6;
    /* ダークモード用の色 */
  }

  #content .buttons a.button {
    background-color: #555;
    color: #ccc;
  }

  .button--disabled {
    background-color: #444;
    border: solid 1px #555;
    color: #666;
  }

  .button--enabled {
    background-color: #ffffff !important;
    border: solid 1px #ffffff !important;
    color: #000000 !important;
  }

  #thumbnail {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #000;
    z-index: 10;
  }

  .copyright {
    font-size: 0.7em;
    text-align: center;
    margin-top: 100px;
  }
}

/*# sourceMappingURL=style.css.map */