@charset "utf-8";

/* utility */
.font-shippori-mincho {
  font-family: 'Shippori Mincho', serif;
}

.btn.btn-primary:focus {
  opacity: .8;
}

.mt-4px {
  margin-top: 4px;
}

.mr-4px {
  margin-right: 4px;
}

.mb-4px {
  margin-bottom: 4px;
}

.ml-4px {
  margin-left: 4px;
}

.text-24px {
  font-size: 24px;
}

.text-gray {
  color: #686868;
}

.line-height-1 {
  line-height: 1;
}

.line-height-115 {
  line-height: 1.15;
}

.link-bg-black {
  color: #4dc4ff;
}

.link-bg-black:hover {
  color: #a6e1ff;
}

a:hover {
  text-decoration: underline;
}

.letter-spacing-015 {
  letter-spacing: .15em;
}

.letter-spacing-02 {
  letter-spacing: .2em;
}
.btn-black {
  background-color: #000;
}

.btn-black:hover,
.btn-black:focus {
  opacity: .8;
}

.yoshiki__apply-btn {
  padding: 14px 48px;
  min-width: 240px;
}

/* animation */
@-webkit-keyframes a-full-expansion {
  to {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

@keyframes a-full-expansion {
  to {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

@-webkit-keyframes gray-to-color {
  to {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
}

@keyframes gray-to-color {
  to {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
}

@-webkit-keyframes background-scale {
  to {
    background-size: 102%;
  }
}

@keyframes background-scale {
  to {
    background-size: 102%;
  }
}

@-webkit-keyframes fadein {
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein-to-085 {
  to {
    opacity: .85;
  }
}

@keyframes fadein-to-085 {
  to {
    opacity: .85;
  }
}

@-webkit-keyframes fadein-up {
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes fadein-up {
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@-webkit-keyframes lazy-show-up {
  from {
    margin-top: 0;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    margin-top: 0;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes lazy-show-up {
  from {
    margin-top: 0;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    margin-top: 0;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes square-slide-before {
  from {
    margin-right: -14px;
  }

  to {
    margin-right: -4px;
  }
}

@keyframes square-slide-before {
  from {
    margin-right: -14px;
  }

  to {
    margin-right: -4px;
  }
}

@-webkit-keyframes square-slide-after {
  from {
    margin-right: -14px;
  }

  to {
    margin-right: 8px;
  }
}

@keyframes square-slide-after {
  from {
    margin-right: -14px;
  }

  to {
    margin-right: 8px;
  }
}

@-webkit-keyframes scale-to-1 {
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes scale-to-1 {
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/* /animation */

.yoshiki__fv-kv {
  height: 563px;
  padding: 40px 0 120px;
  background: url('https://image.card.jp.rakuten-static.com/card_corp/lay2.0/card/yoshiki-design-card/product/bg-main.png') no-repeat center top/100%;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0;
  -webkit-animation: gray-to-color 3s .5s forwards ease-in-out, background-scale 2s .3s forwards ease,
    fadein 2s forwards ease;
  animation: gray-to-color 3s .5s forwards ease-in-out, background-scale 2s .3s forwards ease,
    fadein 2s forwards ease;
}

.yoshiki__fv-ttl {
  padding: 12px 0;
  gap: 20px;
  background-color: #000;
  opacity: 0;
  line-height: 48px;
  -webkit-animation: fadein-to-085 1s .3s forwards ease;
  animation: fadein-to-085 1s .3s forwards ease;
}

.yoshiki__fv-card {
  bottom: 120px;
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  opacity: 0;
  -webkit-filter: drop-shadow(2px 2px 8px rgba(255, 255, 255, 0.25));
  filter: drop-shadow(2px 2px 8px rgba(255, 255, 255, 0.25));
  -webkit-animation: fadein-up 1s .3s forwards ease-out;
  animation: fadein-up 1s .3s forwards ease-out;
}

.yoshiki__fv-prom {
  font-size: 26px;
}

.yoshiki__fv-main-collabo {
  margin-top: 72px;
}


.limited-bonus-inner {
  width: 710px;
}

#limited-bonus-event.js-lazy-show,
#limited-bonus-service.js-lazy-show {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  margin-top: 120px;
}

#limited-bonus-event.js-lazy-show.is-shown,
#limited-bonus-service.js-lazy-show.is-shown {
  -webkit-animation: lazy-show-up .5s forwards ease;
  animation: lazy-show-up .5s forwards ease;
}

/* limited-bonus-corner */
.limited-bonus-corner {
  height: 104px;
}

.limited-bonus-corner span::before {
  content: "";
  display: block;
  opacity: 0;
}

.limited-bonus-corner.is-shown span::before {
  -webkit-animation: a-full-expansion forwards cubic-bezier(0, .85, .83, .97);
  animation: a-full-expansion forwards cubic-bezier(0, .85, .83, .97);
}

.limited-bonus-corner span:first-child {
  top: 4px;
  left: 4px;
  width: 83px;
  height: 13px;
}

.limited-bonus-corner span:first-child::before {
  width: 0;
  height: 100%;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.limited-bonus-corner span:first-child::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  right: 8px;
  width: 3px;
  height: 1px;
  background-color: #000;
}

.limited-bonus-corner.is-shown span:first-child::before {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.limited-bonus-corner span:nth-child(2) {
  top: 4px;
  left: 4px;
  width: 13px;
  height: 83px;
}

.limited-bonus-corner span:nth-child(2)::before {
  width: 100%;
  height: 0;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}

.limited-bonus-corner span:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: calc(100% - 1px);
  width: 1px;
  height: 3px;
  background-color: #000;
}

.limited-bonus-corner.is-shown span:nth-child(2)::before {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.limited-bonus-corner span:nth-child(3) {
  top: 8px;
  left: 8px;
  width: 27px;
  height: 27px;
}

.limited-bonus-corner span:nth-child(3)::before {
  width: 0;
  height: 0;
  border: 1px solid #fff;
}

.limited-bonus-corner.is-shown span:nth-child(3)::before {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
}

.limited-bonus-corner span:nth-child(4) {
  top: 13px;
  left: 13px;
  width: 80px;
  height: 80px;
}

.limited-bonus-corner span:nth-child(4)::before {
  width: 0;
  height: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.limited-bonus-corner.is-shown span:nth-child(4)::before {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.limited-bonus-corner span:nth-child(5) {
  top: 26px;
  left: 26px;
  width: 24px;
  height: 24px;
}

.limited-bonus-corner span:nth-child(5)::before {
  width: 0;
  height: 0;
  border: 1px solid #fff;
}

.limited-bonus-corner.is-shown span:nth-child(5)::before {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.limited-bonus-corner span:nth-child(6) {
  top: 29px;
  left: 29px;
  width: 10px;
  height: 10px;
}

.limited-bonus-corner span:nth-child(6)::before {
  width: 0;
  height: 0;
  background-color: #fff;
}

.limited-bonus-corner.is-shown span:nth-child(6)::before {
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.limited-bonus-corner span:nth-child(7) {
  top: 31px;
  left: 31px;
  width: 14px;
  height: 14px;
}

.limited-bonus-corner span:nth-child(7)::before {
  width: 0;
  height: 0;
  border: 1px solid #fff;
}

.limited-bonus-corner.is-shown span:nth-child(7)::before {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.coner-top-right {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.coner-bottom-left {
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

.coner-bottom-right {
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

/* /limited-bonus-corner */

.limited-bonus-ttl-square::before,
.limited-bonus-ttl-square::after {
  content: "";
  border: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.limited-bonus-ttl-square::before {
  width: 10px;
  height: 10px;
}

.limited-bonus-ttl-square::after {
  width: 8px;
  height: 8px;
}

.limited-bonus-ttl-square.square-left::before,
.limited-bonus-ttl-square.square-right::before {
  margin-right: -14px;
  opacity: 0;
}

.limited-bonus-ttl-square.square-left::after,
.limited-bonus-ttl-square.square-right::after {
  margin-right: -14px;
  opacity: 0;
}

.limited-bonus-ttl-square.square-right {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.limited-bonus-ttl.is-shown .limited-bonus-ttl-square.square-left::before,
.limited-bonus-ttl.is-shown .limited-bonus-ttl-square.square-right::before {
  -webkit-animation: fadein .5s .1s forwards ease, square-slide-before .5s .1s forwards ease;
  animation: fadein .5s .1s forwards ease, square-slide-before .5s .1s forwards ease;
}

.limited-bonus-ttl.is-shown .limited-bonus-ttl-square.square-left::after,
.limited-bonus-ttl.is-shown .limited-bonus-ttl-square.square-right::after {
  -webkit-animation: fadein .3s forwards ease, square-slide-after .3s forwards ease;
  animation: fadein .3s forwards ease, square-slide-after .3s forwards ease;
}

.content-divider {
  width: 80px;
  height: 1px;
  margin: 56px auto;
  background-color: #fff;
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
}

.content-divider.is-shown {
  -webkit-animation: scale-to-1 .5s .3s forwards cubic-bezier(0, .85, .83, .97);
  animation: scale-to-1 .5s .3s forwards cubic-bezier(0, .85, .83, .97);
}

#yoshiki__cpn {
  width: 844px;
}

.yoshiki__cpn-total,
#yoshiki__limited-bonus {
  background-color: #000;
}


.yoshiki__cpn-icon {
  font-size: 40px;
}

.yoshiki__cpn-total-point {
  font-size: 48px;
}

.yoshiki__cpn-point {
  font-size: 42px;
}

.yoshiki__cpn-plus {
  width: 4px;
  height: 206px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.yoshiki__cpn-apply,
.yoshiki__cpn-use {
  width: 320px;
}

.yoshiki__cpn-plus-icon {
  color: #fff;
  width: 52px;
  height: 52px;
  background: #000;
  border-radius: 50%;
  border: 4px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.yoshiki__cpn-plus-icon::before,
.yoshiki__cpn-plus-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.yoshiki__cpn-plus-icon::before {
  width: 4px;
  height: 32px;
}

.yoshiki__cpn-plus-icon::after {
  width: 32px;
  height: 4px;
}

#yoshiki__info {
  padding: 56px 0;
  background-color: #fafafa;
}

.table td,
.table th {
  border: none;
}

.table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.yoshiki__info-table {
  width: 1080px;
}

.yoshiki__info-table-left {
  margin-right: 30px;
}

#yoshiki__info .table td,
.table th {
  padding: 24px 16px;
  vertical-align: middle;
}

#yoshiki__info .table td.yoshiki__info-brand {
  padding: 18px 16px;
}

#yoshiki__info .table td.yoshiki__info-func {
  padding: 20px 16px;
}

.yoshiki__info-func-rpoint {
  margin-right: 109px;
}

#yoshiki__info .table td.yoshiki__info-other .d-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.yoshiki__info-detail {
  margin-top: 54px;
  width: 1080px;
}

.yoshiki__info-detail ul {
  counter-reset: number 0;
  list-style: none;
}

.yoshiki__info-detail li {
  position: relative;
  padding-left: calc(2em + 8px);
}

.yoshiki__info-detail li.list-sequential::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number 1;
  content: "※"counter(number);
}

#yoshiki__card {
  width: 1080px;
}