@charset "UTF-8";
body {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  color: #555;
}

header {
  background: #777;
  padding: 10px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  header {
    padding: 16px;
    font-size: 24px;
    letter-spacing: 0.2em;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* 透明度20%の黒 */
  opacity: 0;
  /* 初期状態では透明 */
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  /* ふわっとフェードイン */
  display: none;
  /* 初期状態は非表示 */
  z-index: 1000;
}

/* リロード時のフェードインを防ぐ */
body.loaded #overlay {
  -webkit-transition: none;
  transition: none;
}

.sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-hidden {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

.coupon-button {
  margin-top: 10px;
  text-align: center;
}

.button-style {
  padding: 13px 50px;
  background: #f4a460;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 20px;
}

.coupon__inner {
  margin-block: 24px;
  text-align: center;
  margin-inline: auto;
  padding-inline: 28px;
}
@media screen and (min-width: 768px) {
  .coupon__inner {
    margin-block: 20px 120px;
    max-width: 700px;
  }
}
.coupon__title {
  margin-bottom: 20px;
}
.coupon__title span {
  display: block;
  line-height: 0.8;
}
.coupon__title span.en {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 76px;
  text-shadow: 1px 1px 0 #777, -1px -1px 0 #777, -1px 1px 0 #777, 1px -1px 0 #777, 1px 0 0 #777, -1px 0 0 #777, 0 1px 0 #777, 0 -1px 0 #777, 2px 2px 4px rgba(0, 0, 0, 0.15);
}
.coupon__title span.ja {
  margin-top: 15px;
  letter-spacing: 0.1em;
  font-size: 19px;
}
.coupon__img {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .coupon__img {
    margin-top: -100px;
  }
}
@media screen and (min-width: 768px) {
  .coupon__description {
    margin-top: 20px;
    font-size: 20px;
  }
}
.coupon__description.hosoku {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1;
}

/*== 文字が流れる */
article {
  margin-top: -10px;
  padding-bottom: 60px;
  overflow: hidden;
}
article.low {
  margin-top: -130px;
}

.loop_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 180px;
  padding-bottom: 10px;
}

.loop_wrap div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-size: 200px;
  padding-bottom: 10px;
}

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

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

.gray {
  font-family: "din-2014", sans-serif;
  color: #ccc;
}
.gray span {
  color: #fff;
  padding-inline: 10px;
  text-shadow: 1px 1px 0 #777, -1px -1px 0 #777, -1px 1px 0 #777, 1px -1px 0 #777, 1px 0 0 #777, -1px 0 0 #777, 0 1px 0 #777, 0 -1px 0 #777;
}

@-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%);
  }
}