.kv {
  padding: 45px 25px;
  background: url("../images/kv-bg-xs.jpg") top left no-repeat ;
  background-size: cover;
  color: #fff;
  text-align: center;
  position: relative;
}
@media (min-width: 996px) {
  .kv {
    margin-bottom: 60px;
    background: url("../images/kv-bg-lg.jpg") top left no-repeat ;
    background-size: cover;
  }
}
.kv__info {
  width: 70%;
  margin: 0 auto;
  max-width: auto;
}
@media (min-width: 996px) {
  .kv__info {
    position: absolute;
    right: 10vw;
    width: calc(50% - 10vw);
    text-align: right;
  }
  .kv__info img {
    width: 60%;
  }
}
.kv-title {
  font-family: var(--font1);
  font-weight: 300;
  text-transform: uppercase;
  padding: 25px 0;
  font-size: 10vw;
  letter-spacing: 0.5vw;
  line-height: 1;
  animation: 2s light infinite ease-in;
}
@media (min-width: 996px) {
  .kv-title {
    position: absolute;
    right: 10vw;
    width: calc(53% - 10vw);
    text-align: right;
    font-size: 3.2vw;
    letter-spacing: 2px;
    top: 35%;
    font-style: italic;
  }
}
.kv__pd {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
}
.kv__pd1 {
  position: relative;
  z-index: 1;
}
.kv__pd2 {
  position: absolute;
  z-index: 0;
  inset: 0;
}
@media (min-width: 996px) {
  .kv__pd {
    max-width: none;
    margin-left: 5vw;
    margin-top: 80px;
    margin-bottom: 40px;
    width: 40%;
  }
}
.kv__badge {
  width: 30%;
  margin: 0 auto;
  max-width: 250px;
}
@media (min-width: 996px) {
  .kv__badge {
    position: absolute;
    top: 30px;
    left: 30px;
    max-width: 200px;
  }
}
.kv__text {
  font-size: 18px;
  padding: 25px 0;
}
@media (min-width: 996px) {
  .kv__text {
    position: absolute;
    right: 10vw;
    width: calc(53% - 10vw);
    text-align: right;
    font-size: 1.1vw;
    line-height: 1.6;
    top: 45%;
  }
}
.kv__note {
  font-size: 14px;
  color: #ccc;
}
@media (min-width: 996px) {
  .kv__note {
    position: absolute;
    left: 8vw;
    bottom: 5%;
  }
}

@keyframes light {
  0%, 100% {
    text-shadow: #fff 0 0 0px;
  }
  50% {
    text-shadow: #fff 1px 1px 10px;
  }
}
.gift img {
  width: 100%;
}
.gift__box {
  position: relative;
}
.gift__free {
  position: absolute;
  z-index: 10;
  left: 0.5%;
  top: 0.5%;
  width: 25%;
}
@media (min-width: 996px) {
  .gift__free {
    max-width: 150px;
    top: 4%;
    left: 2.5%;
  }
}
.gift__inner {
  position: relative;
  z-index: 0;
  background: url("../images/gift-inner.png") top left repeat-y;
  background-size: 100% auto;
  color: #fff;
  text-align: center;
  padding: 10% 25px 5%;
}
@media (min-width: 996px) {
  .gift__inner {
    padding: 40px 0 40px;
  }
}
.gift__inner .summary {
  width: 80%;
  margin: 0 auto;
  max-width: auto;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 20px;
}
.gift__note {
  padding-top: 25px;
}
.gift__gameBox {
  width: 90%;
  margin: 0 auto;
  max-width: auto;
}
@media (min-width: 996px) {
  .gift__gameBox {
    display: flex;
    width: 85%;
  }
}
@media (min-width: 996px) {
  .gift__gameItem {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    flex: 1;
  }
  .gift__gameItem:last-child {
    margin-left: 10px;
  }
}
.gift__game__note {
  font-size: 14px;
  color: #ccc;
}
.gift__game p {
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}
.gift__game p span {
  width: 80%;
  display: block;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .gift__game p {
    font-size: 17px;
    min-height: 80px;
  }
}
.gift__game a {
  display: block;
  background: linear-gradient(-45deg, #6b659b, #20194f, #484480);
  color: #fff;
  font-size: 16px;
  padding: 2px;
}
.gift__game a span {
  display: block;
  padding: 8px;
}
.gift__game a:hover span {
  background: #000;
}
@media (min-width: 996px) {
  .gift__game a span {
    padding: 15px;
  }
}
.gift__game figure {
  display: inline-block;
  vertical-align: top;
  position: relative;
  max-width: 46%;
  text-align: center;
  padding: 15px 10px;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .gift__game figure {
    max-width: calc(25% - 20px);
  }
}
.gift__game figure img {
  border: #fff 3px solid;
  vertical-align: bottom;
}
.gift__game .plus::after {
  content: "+";
  position: absolute;
  z-index: 2;
  top: 20%;
  left: calc(50% + 40px);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #fff;
  color: #f00;
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
  box-shadow: #000 0 0 10px;
}
@media (min-width: 768px) {
  .gift__game .plus::after {
    top: 30%;
    left: calc(100% - 20px);
  }
}
@media (min-width: 996px) {
  .gift__game .plus::after {
    top: 17%;
    left: calc(100% - 20px);
  }
}
.gift__game .or::before {
  content: "OR";
  display: block;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #fff;
  color: #f00;
  font-size: 16px;
  line-height: 40px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: #000 0 0 10px;
}
@media (min-width: 996px) {
  .gift__game .or::before {
    position: absolute;
    right: calc(100% - 20px);
    top: 17%;
  }
}
.gift__gameplus {
  display: flex;
  justify-content: space-between;
}

.pd {
  padding-bottom: 30px;
}
@media (min-width: 996px) {
  .pd {
    padding-bottom: 60px;
  }
}
.pd__box {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (min-width: 996px) {
  .pd__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.pd__imgbox {
  background: #fff;
  padding: 25px;
  outline: rgba(255, 255, 255, 0.5) 3px solid;
  border: #6b659b 3px solid;
  width: 60%;
  margin: 0 auto;
  max-width: auto;
}
@media (min-width: 996px) {
  .pd__imgbox {
    border-radius: 50px;
    flex: 0 0 35%;
  }
}
.pd__imgbox li {
  padding: 8px;
  border: #ccc 1px solid;
  text-align: center;
  margin-top: 8px;
  font-size: 16px;
}
.pd__imgbox li span {
  font-weight: bold;
  display: block;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(-45deg, #6b659b, #20194f, #484480);
  color: #fff;
}
@media (min-width: 996px) {
  .pd__imgbox li {
    display: flex;
    text-align: left;
    padding: 10px 0;
    border: none;
    border-bottom: #eee 1px solid;
    margin-top: 0;
    border-radius: 5px;
  }
  .pd__imgbox li span {
    flex: 0 0 40%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pd__imgbox li b {
    display: flex;
    align-items: center;
  }
}
.pd__img {
  width: 60%;
  margin: 0 auto;
  max-width: 200px;
}
.pd__plus {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #fff;
  text-align: center;
  font-size: 30px;
  line-height: 46px;
  margin: 15px auto;
}
@media (min-width: 996px) {
  .pd__plus {
    flex: 0 0 50px;
    margin: 20px;
  }
}
.pd__spec h3 {
  color: #fff;
  padding-bottom: 20px;
}
@media (min-width: 996px) {
  .pd__spec {
    flex: 0 0 calc(65% - 100px);
  }
}
.pd__table {
  display: table;
  border-collapse: collapse;
  width: 100%;
}
.pd__table-row {
  display: table-row;
}
.pd__table-th {
  display: table-cell;
  background: linear-gradient(-45deg, #6b659b, #20194f, #484480);
  color: #fff;
  text-align: center;
  vertical-align: middle;
  outline: rgba(255, 255, 255, 0.5) 3px solid;
  border: #6b659b 3px solid;
  padding: 15px 10px;
}
.pd__table-cell {
  display: table-cell;
  background: #fff;
  border: #6b659b 3px solid;
  outline: rgba(255, 255, 255, 0.5) 3px solid;
  text-align: center;
  padding: 5px;
  position: relative;
  font-size: 15px;
  padding: 10px;
}
.pd__table-cell::after {
  content: "+";
  position: absolute;
  z-index: 5;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background: linear-gradient(-45deg, #6b659b, #20194f, #484480);
  color: #fff;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.pd__table-cell:last-child::after {
  display: none;
}
.pd__table-cell:nth-child(3)::after {
  content: "=";
}

.wtb__flexbox {
  background: #fff;
  padding: 15px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.wtb__flexbox figure {
  margin: 10px;
  background: linear-gradient(-45deg, #010002, #6b659b, #20194f, #484480);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (min-width: 996px) {
  .wtb__flexbox {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    font-size: 30px;
  }
  .wtb__flexbox figure {
    max-width: 400px;
  }
}

:root {
  --font1: "klavika-web", sans-serif;
}

.project {
  position: relative;
  color: #222;
  font-size: 18px;
  background: linear-gradient(-45deg, #010002, #6b659b, #20194f, #484480);
  background-size: 400% 400%;
  animation: gradient-animation 15s ease infinite;
}
.project::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../images/dot.png") top left repeat;
}
.project img {
  max-width: 100%;
  vertical-align: bottom;
}
.project picture {
  display: block;
}
.project .wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  padding: 25px;
}

.common__container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  padding: 25px;
}
.common-title {
  text-align: center;
  margin: 25px 0;
  font-family: var(--font1);
  padding-top: 40px;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 5px;
  border: #ccc 1px solid;
  padding: 10px;
  background: linear-gradient(-45deg, #010002, #6b659b, #20194f, #484480);
  text-transform: uppercase;
}
@media (min-width: 996px) {
  .common-title {
    font-size: 40px;
  }
  .common-title--s {
    font-size: 20px;
    letter-spacing: 2px;
    background: #111;
    border-color: #6b659b;
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
