@charset "UTF-8";
.kv {
  position: relative;
  padding: 25px 25px 25px;
}
@media (min-width: 996px) {
  .kv {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.kv::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: url("../images/kv-top.png") top center repeat;
  animation: blur 10s infinite;
}
.kv-title {
  width: 90%;
  margin: 0 auto;
  max-width: 750px;
}
.kv-line {
  width: 100%;
  height: 20px;
  -webkit-mask: url("../images/kv-line.png") top center repeat-x;
  mask: url("../images/kv-line.png") top center repeat-x;
  -webkit-mask-size: cover;
  mask-size: cover;
  mask-size: auto 100%;
  background: linear-gradient(to right, #ffea88, #ac7a0f);
}

@keyframes blur {
  0% {
    transform: scale(1) translateZ(0) translate3d(0, 0, 0);
    filter: blur(0px);
    opacity: 0;
  }
  99% {
    transform: scale(1.1) translateZ(20px) translate3d(10px, 20px, 30px);
    filter: blur(2px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateZ(0) translate3d(0, 0, 0);
    filter: blur(0px);
    opacity: 0;
  }
}
.intro {
  position: relative;
  padding: 50px 25px;
  text-align: center;
}
@media (min-width: 996px) {
  .intro {
    padding: 80px 25px;
  }
}
.intro__box {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
}
.intro .date {
  padding-top: 40px;
  width: 70%;
  margin: 0 auto;
  max-width: auto;
}

.product {
  position: relative;
  text-align: center;
}
.product .bg-left {
  position: absolute;
  left: 0;
  top: 5%;
  width: 20%;
  height: 95%;
  pointer-events: none;
  background: url("../images/bg-left.png") top right repeat-y;
  background-size: 100% auto;
}
.product .bg-right {
  position: absolute;
  right: 0;
  top: 5%;
  width: 20%;
  height: 95%;
  pointer-events: none;
  background: url("../images/bg-right.png") top left repeat-y;
  background-size: 100% auto;
}
.product__box {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
.product__item-list {
  position: relative;
  margin-top: 10px;
  background: #fff;
  padding: 25px;
  text-align: left;
  color: #4d1516;
}
.product__item-list::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: #d1b476 3px solid;
}
.product__item-list li {
  padding: 5px;
  font-weight: bold;
}

.price {
  position: relative;
}
.price__box {
  width: 90%;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 50px;
}

.step__box {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 996px) {
  .step__box {
    padding-bottom: 40px;
    flex-direction: row;
  }
}
@media (min-width: 996px) {
  .step__item::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url("../images/arrow-2.png") center center no-repeat;
    background-size: contain;
  }
  .step__item:last-child::after {
    display: none;
  }
}

.redeem {
  position: relative;
}
.redeem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: url("../images/flower-left.png") center left no-repeat ;
  background-size: cover;
  background-size: contain;
}
.redeem::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  height: 100%;
  background: url("../images/flower-right.png") center right no-repeat ;
  background-size: cover;
  background-size: contain;
}
.redeem__btn {
  text-align: center;
}
.redeem__btn button {
  max-width: 250px;
}
.redeem__btn button:hover {
  filter: brightness(1.1);
}

.popup {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 25px;
  background: rgba(0, 0, 0, 0.7);
}
.popup__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  background: #fff;
  position: relative;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-bottom: 10px;
}
.popup-close {
  position: sticky;
  top: 0;
}
.popup-close:hover::before {
  background: rgba(255, 255, 255, 0.5);
}
.popup-close::before {
  font-family: "msi-icons" !important;
  content: "";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
@media (min-width: 996px) {
  .popup-close::before {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}
.popup__header {
  position: sticky;
  top: 0;
  background: linear-gradient(to bottom, #4f0e05, #5c0a0a, #280c02);
  padding: 10px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  text-shadow: #111 1px 1px 3px;
}
@media (min-width: 996px) {
  .popup__header {
    font-size: 30px;
  }
}
.popup__content {
  padding: 25px;
  height: 80vh;
  overflow-y: auto;
  margin: 10px 10px 30px;
}
.popup__content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popup__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.popup__content::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #4f0e05, #5c0a0a, #280c02);
  border-radius: 10px;
}
@media (min-width: 996px) {
  .popup__content {
    padding: 80px;
  }
}

#terms {
  font-size: 17px;
  line-height: 1.8;
}
#terms ul {
  margin-left: 20px;
}
#terms ul li {
  list-style: disc;
  padding: 5px 0;
}
#terms ol {
  margin-left: 25px;
}
#terms ol li {
  list-style: lower-roman;
}
#terms h4 {
  padding: 15px 0;
}
#terms table {
  width: 100%;
  border-collapse: collapse;
}
#terms table th {
  padding: 15px;
  text-align: center;
  color: #222;
  font-weight: bold;
  border-bottom: #300 2px solid;
}
#terms table td {
  border: #c62424 1px solid;
  padding: 5px 10px;
  text-align: center;
  font-size: 15px;
  font-family: var(--MSIBodyFont);
}
#terms a {
  color: #300;
}
#terms a:hover {
  text-decoration: underline;
}
#terms .title {
  margin: 20px 0 10px;
  position: relative;
}
#terms .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  background: linear-gradient(to right, #ffea88, #ac7a0f);
}
#terms .title span {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #fff;
  padding-right: 5px;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 0;
}
.slick-arrow.slick-prev {
  left: -40px;
  background: url("../images/arrow.png") center left no-repeat ;
  background-size: cover;
  width: 25px;
  height: 25px;
  transform: translateY(-50%) rotate(180deg);
}
.slick-arrow.slick-next {
  right: -40px;
  background: url("../images/arrow.png") center left no-repeat ;
  background-size: cover;
  width: 25px;
  height: 25px;
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  gap: 8px;
}
.slick-dots li {
  font-size: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: #fff 3px solid;
  background: linear-gradient(to bottom, #4f0e05, #5c0a0a, #280c02);
  box-shadow: #222 1px 1px 3px inset;
}
.slick-dots li.slick-active {
  background: linear-gradient(to bottom, #f81111, #f51414, #e51e1e);
}

:root {
  --font1: "Zen Antique", serif;
  --font2: "Zen Maru Gothic", serif;
}

.msiHeader, .msiFooter {
  background: #fff;
  position: relative;
  z-index: 2;
}

.project {
  position: relative;
  color: #111;
  font-size: 18px;
  background: linear-gradient(to bottom, #98130a, #8a0c0a);
  overflow: hidden;
}
.project::after {
  content: "";
  display: block;
  height: 50px;
  background: url("../images/bg-bottom.png") center bottom repeat-x;
  background-size: auto 100%;
}
@media (min-width: 996px) {
  .project::after {
    height: 100px;
  }
}
.project img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.project picture {
  display: block;
}
.project .bg {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
  background: url("../images/bg.png") top center repeat;
  opacity: 0.6;
}
.project .block-sp {
  padding: 50px 15px;
  text-align: center;
}

.common__container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 25px;
}
.common-title {
  text-align: center;
  margin: 0 25px 50px;
}
.common-title img {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 996px) {
  .common-title {
    margin: 35px auto 50px;
  }
}
.common-border {
  position: absolute;
  z-index: 1;
  --size: 10px;
  --wd: 40%;
  width: var(--wd);
}
@media (min-width: 996px) {
  .common-border {
    --size: 40px;
    --wd: 35%;
  }
}
.common-border.topLeft {
  top: var(--size);
  left: var(--size);
}
.common-border.topRight {
  top: var(--size);
  right: var(--size);
}
.common-border.bottomRight {
  bottom: var(--size);
  right: var(--size);
}
.common-border.bottomLeft {
  bottom: var(--size);
  left: var(--size);
}

.wtb .wtbw_selectors {
  padding: 15px 25px 0;
  text-shadow: #fff 1px 1px 3px;
  background: linear-gradient(to left, #8ca6d1, #4292e9);
  color: #fff;
}
@media (min-width: 996px) {
  .wtb {
    padding-bottom: 100px;
  }
}
