@charset "UTF-8";
/* ------------------------------------------------------------- */
/* layout / parts                                                */
/* ------------------------------------------------------------- */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #000;
}

body {
  isolation: isolate;
}
@supports (background: url(../../assets/img/test_webp.webp)) {
  body {
    background: url('../../assets/img/thumbnail.png') no-repeat center/contain;
  }
}
body {
  background: url('../../assets/img/thumbnail.webp') no-repeat center/contain;
}

.main-contents {
  position: relative;
  left: 0;
  z-index: 10;
}

.bg_video::-webkit-media-controls {
  display: none !important;
}

.bg_video::-webkit-media-controls-enclosure {
  display: none !important;
}

.bg_video::-webkit-media-controls-panel {
  display: none !important;
}

.bg_video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.mv_image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.footer {
  position: relative;
  z-index: 10;
}

.frame_left,
.frame_right {
  height: 1000px;
  aspect-ratio: 180/1000;
  position: fixed;
  z-index: 8;
  filter: saturate(0.5);
}
@media (max-width: 768px) {
  .frame_left,
  .frame_right {
    height: 300px;
  }
}

.frame_left {
  bottom: 0;
  left: -20px;
}
@supports (background: url(../../assets/img/test_webp.webp)) {
  .frame_left {
    background: url('../../assets/img/frame2.webp') no-repeat center/contain;
  }
}
.frame_left {
  background: url('../../assets/img/frame2.png') no-repeat center/contain;
}

.frame_right {
  top: 0;
  right: -20px;
}
@supports (background: url(../../assets/img/test_webp.webp)) {
  .frame_right {
    background: url('../../assets/img/frame1.webp') no-repeat center/contain;
  }
}
.frame_right {
  background: url('../../assets/img/frame1.png') no-repeat center/contain;
}

.btm-castle {
  display: block;
  width: 100%;
  height: 1030px;
  mix-blend-mode: lighten;
  position: absolute;
  bottom: -3%;
  opacity: 0.4;
}
@supports (background: url(../../assets/img/test_webp.webp)) {
  .btm-castle {
    background: url('../../assets/img/btm_castle.webp') no-repeat bottom/contain;
  }
}
.btm-castle {
  background: url('../../assets/img/btm_castle.png') no-repeat bottom/contain;
}
@media (max-width: 599px) {
  .btm-castle {
    bottom: 1%;
    height: 50vw;
  }
  @supports (background: url(../../assets/img/test_webp.webp)) {
    .btm-castle {
      background: url('../../assets/img/btm_castle_sp.webp') no-repeat center bottom/contain;
    }
  }
  .btm-castle {
    background: url('../../assets/img/btm_castle_sp.png') no-repeat center bottom/cover;
  }
}

body {
  position: relative;
  font-feature-settings: 'palt';
  font-size: 16px;
  font-weight: 400;
  background-color: #000;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: 0;
  line-height: 1.2;
  outline: none;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

html.lock {
  overflow-y: hidden;
}

input,
textarea {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
}

.inner {
  margin: 0 auto;
}

.padding-100 {
  padding: 100px 0;
}

.m-center {
  display: block;
  margin: 0 auto;
}

.m-left-auto {
  margin-left: auto;
}

.m-right-auto {
  margin-right: auto;
}

.reverse {
  flex-direction: row-reverse;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.black {
  font-weight: 900;
}

.white {
  color: #fff;
}

.red {
  color: #ff0014;
}

.yellow {
  color: #e0b755;
}

.noto {
  font-family: 'Noto Sans JP', sans-serif;
}

.u-border {
  border-bottom: solid 1px #e0b755;
  padding-bottom: 1px;
}

/*-----------------画像--------------------*/
img.fit-cover {
  object-fit: cover;
  font-family: 'object-fit:cover;';
}

img.fit-contain {
  object-fit: contain;
  font-family: 'object-fit:contain;';
}

figure img {
  width: 100%;
}

img {
  vertical-align: top;
}

/*-----------------flex--------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.right {
  justify-content: flex-end;
}

.flex.center {
  justify-content: center;
}

.flex.left {
  justify-content: flex-start;
}

.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.flex.al-center {
  align-items: center;
}

.flex.al-top {
  align-items: flex-start;
}

.flex.al-bottom {
  align-items: flex-end;
}

.v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-----------------Link--------------------*/
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a {
  color: inherit;
}

a:hover {
  cursor: pointer;
  opacity: 0.7;
}

/*----------------text---------------------*/
.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-r {
  text-align: right;
}

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

@media (min-width: 1201px) {
  .inner {
    width: 1200px;
  }
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media (max-width: 599px) {
  body {
    min-width: auto;
    font-size: 4.5vw;
  }
  .inner {
    width: 90%;
  }
  a:hover {
    opacity: 1;
  }
  .reverse {
    flex-wrap: wrap;
  }
}
/*----------------------------------------*/
/*----------------------------------------*/
/*----------------------------------------*/
.ttl {
  font-size: 40px;
  letter-spacing: 0.02em;
  font-weight: 900;
  margin-bottom: 3rem;
  color: #f1b751;
  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 599px) {
  .ttl {
    font-size: 6vw;
    margin-bottom: 1.5rem;
  }
}

.btn {
  display: block;
  position: relative;
  text-align: center;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  padding: 20px 80px;
  color: rgb(42, 42, 42);
  font-size: 19px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  box-shadow:
    2px 2px 1px 0px rgba(255, 255, 255, 0.5) inset,
    -1px -2px 1px 0px rgba(0, 0, 0, 0.6) inset;
}
@media (max-width: 599px) {
  .btn {
    display: block;
    font-size: 16px;
    width: 90%;
    padding: 25px 0;
    margin: 0 auto;
  }
}
.btn.black {
  color: #ffe08c;
  background-color: rgb(42, 42, 42);
  border: solid 3px #e0b755;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  padding: 30px 80px;
}
@media (max-width: 599px) {
  .btn.black {
    display: block;
    font-size: 16px;
    width: 90%;
    padding: 25px 0;
    margin: 0 auto;
  }
}
.btn.black::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 10px;
  border-color: transparent transparent transparent #e0b755;
  top: 50%;
  right: 4%;
  transform: translate(-50%, -50%);
}
.btn.gold {
  background: rgb(231, 194, 123);
  background: linear-gradient(45deg, rgb(231, 194, 123) 0%, rgb(255, 220, 154) 50%, rgb(231, 194, 123) 100%);
}
.btn.silver {
  background: rgb(0, 75, 138);
  background: linear-gradient(45deg, rgb(227, 234, 238) 0%, rgb(234, 237, 242) 50%, rgb(227, 234, 238) 100%);
}
.btn::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 10px;
  border-color: transparent transparent transparent #2a2a2a;
  top: 50%;
  right: 4%;
  transform: translate(-80%, -50%);
  transition: transform 0.3s ease-in-out;
}
.btn:hover {
  opacity: 1;
  filter: brightness(70%);
}
.btn:hover::after {
  transform: translate(-30%, -50%);
}

/* ------------------------------------------------------------- */
/* MV                                                            */
/* ------------------------------------------------------------- */
.mv__img {
  display: block;
  width: min(1200px, 100%);
  aspect-ratio: 1200/675;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .mv__img {
    aspect-ratio: 1/1;
    width: 100%;
  }
}

/* ------------------------------------------------------------- */
/* msg-movie                                                     */
/* ------------------------------------------------------------- */
.msg-movie {
  padding: 80px 0;
}
@media (max-width: 599px) {
  .msg-movie {
    padding: 30px 0;
  }
}
.msg-movie__flex {
  gap: 20px;
}
.msg-movie__movie-wrap {
  position: relative;
  width: min(100%, 800px);
  margin: 0px auto 0px;
  aspect-ratio: 16/9;
  text-align: center;
  z-index: 10;
}
.msg-movie__movie-wrap::after {
  position: absolute;
  inset: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(239, 244, 255, 0.5);
  filter: blur(20px);
  z-index: -1;
}
@media (max-width: 1024px) {
  .msg-movie__movie-wrap {
    width: 90%;
  }
}
.msg-movie__movie {
  width: 100%;
  height: 100%;
}
@supports (background: url(../../assets/img/test_webp.webp)) {
  .msg-movie__movie {
    background:
      url(../../assets/img/mv_bg.webp) no-repeat center/contain,
      black;
  }
}
.msg-movie__movie {
  background:
    url(../../assets/img/mv_bg.png) no-repeat center/contain,
    black;
}
.msg-movie__movie.disabled {
  position: relative;
  pointer-events: none;
}
.msg-movie__movie.disabled::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.msg-movie__movie.disabled .comingSoonTxt {
  width: 100%;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  opacity: 1;
}

/* ------------------------------------------------------------- */
/* countdownArea                                                 */
/* ------------------------------------------------------------- */
.countdownArea {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 30px 0;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}
@media (max-width: 649px) {
  .countdownArea {
    padding: 20px 0;
  }
}
.countdownArea .countdownArea-wrap {
  margin: 0 auto;
  padding: 25px 0 38px;
}
@media (max-width: 649px) {
  .countdownArea .countdownArea-wrap {
    width: 100%;
    padding: 4vw 0 7vw;
  }
}
.countdownArea .countdownArea-wrap p {
  font-size: 2rem;
  margin-bottom: 0px;
}
@media (max-width: 649px) {
  .countdownArea .countdownArea-wrap p {
    font-size: 5vw;
    margin-bottom: 2px;
  }
}
.countdownArea .countdown {
  text-align: center;
  font-size: 75px;
  background: linear-gradient(0deg, #ffc83c 7%, #9b7105 38%, #ffffff 39%, #ffd876 70%);
  background: -webkit-linear-gradient(90deg, #ffc83c 7%, #9b7105 38%, #ffffff 39%, #ffd876 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: middle;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
@media (max-width: 649px) {
  .countdownArea .countdown {
    font-size: 9vw;
  }
}
.countdownArea .countdown-el {
  position: relative;
  display: inline-block;
  font-size: 80px;
  background: linear-gradient(0deg, #ffc83c 7%, #9b7105 38%, #ffffff 39%, #ffd876 70%);
  background: -webkit-linear-gradient(90deg, #ffc83c 7%, #9b7105 38%, #ffffff 39%, #ffd876 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: -11%;
}
@media (max-width: 649px) {
  .countdownArea .countdown-el {
    width: 14vw;
    font-size: 10vw;
  }
}
.countdownArea .countdown-el::after {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-weight: 900;
}
@media (max-width: 649px) {
  .countdownArea .countdown-el::after {
    font-size: 3vw;
  }
}
.countdownArea .countdown-el.day::after {
  content: 'DAYS';
}
.countdownArea .countdown-el.hour::after {
  content: 'HOURS';
}
.countdownArea .countdown-el.min::after {
  content: 'MINUTES';
}
.countdownArea .countdown-el.sec::after {
  content: 'SECONDS';
}

.message {
  padding: 80px 0 50px;
}
@media (max-width: 599px) {
  .message {
    padding: 50px 0 30px;
  }
}
.message__handwritten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: min(1000px, 100%);
  margin: 0 auto;
  gap: 50px 20px;
}
@media (max-width: 599px) {
  .message__handwritten {
    flex-direction: column;
    gap: 8vw;
  }
}
.message__handwritten-img-wrap {
  width: 30.3333333333%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 599px) {
  .message__handwritten-img-wrap {
    width: 90%;
    margin: 0 auto;
  }
}
.message__handwritten-img-wrap .ttl {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .message__handwritten-img-wrap .ttl {
    font-size: 4.5vw;
    margin-bottom: 5vw;
  }
}
.message__handwritten-img-wrap img {
  display: block;
  margin-top: auto;
  width: 100%;
  box-shadow: 0px 0px 10px 8px rgb(255, 255, 255);
}
@media (max-width: 599px) {
  .message__handwritten-img-wrap img {
    box-shadow: 0px 0px 5px 3px rgb(255, 255, 255);
  }
}
.message__handwritten-flex-box {
  width: 65%;
}
@media (max-width: 599px) {
  .message__handwritten-flex-box {
    width: 90%;
    margin: 0 auto;
  }
}
.message__handwritten-flex-box .ttl {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .message__handwritten-flex-box .ttl {
    font-size: 4.5vw;
    margin-bottom: 5vw;
  }
}
.message__handwritten-inner-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 599px) {
  .message__handwritten-inner-flex {
    flex-direction: column;
    gap: 30px;
  }
}
.message__handwritten-inner-flex img {
  width: calc(50% - 20px);
  box-shadow: 0px 0px 10px 8px rgb(255, 255, 255);
}
@media (max-width: 599px) {
  .message__handwritten-inner-flex img {
    width: 100%;
    box-shadow: 0px 0px 5px 3px rgb(255, 255, 255);
  }
}
.message__handwritten-movie-wrap .ttl {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .message__handwritten-movie-wrap .ttl {
    font-size: 4.5vw;
    margin-bottom: 5vw;
  }
}
.message__handwritten-movie-wrap iframe {
  width: 560px;
  max-width: 100%;
  aspect-ratio: 16/9;
}

/* ------------------------------------------------------------- */
/* voice                                                         */
/* ------------------------------------------------------------- */
.voice {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 599px) {
  .voice {
    padding: 30px 0;
  }
}
.voice .inner {
  width: min(850px, 90%);
}
.voice__ctr {
  display: none;
  position: relative;
  width: min(800px, 100%);
  padding: 20px 30px;
  color: #fff;
  border: #e0b755 solid 2px;
  border-radius: 10px;
  line-height: 1.7;
  background-color: #000;
  margin-right: auto;
  padding: 30px 60px 30px 30px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .voice__ctr {
    margin-bottom: 1rem;
    font-size: 3.3vw;
    padding: 20px 14vw 20px 6vw;
  }
}
.voice__ctr img {
  position: absolute;
  top: -10%;
  right: 0;
  transform: translateX(50%);
}
@media (max-width: 599px) {
  .voice__ctr img {
    width: 11vw;
    top: -5%;
    transform: translateX(0%);
  }
}
.voice__ctr:nth-child(even) {
  margin-left: auto;
  padding: 30px 30px 30px 60px;
}
@media (max-width: 599px) {
  .voice__ctr:nth-child(even) {
    padding: 20px 6vw 20px 14vw;
  }
}
.voice__ctr:nth-child(even) img {
  left: 0;
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .voice__ctr:nth-child(even) img {
    transform: translateX(0%);
  }
}
.voice__btn {
  background-color: unset;
  border: 0;
  color: #fff;
  font-size: 20px;
  background-color: #000;
  border: #e0b755 solid 2px;
  padding: 10px 20px;
  margin-top: 1em;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 599px) {
  .voice__btn {
    font-size: 3.8vw;
  }
}
.voice__btn:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------- */
/* CTA                                                           */
/* ------------------------------------------------------------- */
.cta {
  padding: 50px 0 100px;
}
@media (max-width: 599px) {
  .cta {
    padding: 17px 0 100px;
  }
}
.cta .frame {
  position: relative;
  margin: 0 auto;
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
@media (max-width: 599px) {
  .cta .frame {
    padding: 30px;
  }
}
.cta .frame::before {
  position: absolute;
  inset: 0;
  content: '';
  z-index: -1;
  background:
    radial-gradient(circle at top left, transparent 20px, #e0b755 20px, #e0b755 23px, transparent 23px) left top/23px 23px no-repeat,
    radial-gradient(circle at top right, transparent 20px, #e0b755 20px, #e0b755 23px, transparent 23px) right top/23px 23px no-repeat,
    radial-gradient(circle at bottom left, transparent 20px, #e0b755 20px, #e0b755 23px, transparent 23px) left bottom/23px 23px no-repeat,
    radial-gradient(circle at bottom right, transparent 20px, #e0b755 20px, #e0b755 23px, transparent 23px) right bottom/23px 23px no-repeat,
    linear-gradient(90deg, transparent 20px, #e0b755 23px) left top/51% 3px no-repeat,
    linear-gradient(-90deg, transparent 20px, #e0b755 23px) right top/51% 3px no-repeat,
    linear-gradient(90deg, transparent 20px, #e0b755 23px) left bottom/51% 3px no-repeat,
    linear-gradient(-90deg, transparent 20px, #e0b755 23px) right bottom/51% 3px no-repeat,
    linear-gradient(180deg, transparent 20px, #e0b755 23px) left top/3px 51% no-repeat,
    linear-gradient(0deg, transparent 20px, #e0b755 23px) left bottom/3px 51% no-repeat,
    linear-gradient(180deg, transparent 20px, #e0b755 23px) right top/3px 51% no-repeat,
    linear-gradient(0deg, transparent 20px, #e0b755 23px) right bottom/3px 51% no-repeat;
}
.cta .frame::after {
  position: absolute;
  inset: 10px;
  content: '';
  box-shadow: 0 0 0 1px #e0b755;
  z-index: -1;
}
.cta__deco.up {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .cta__deco.up {
    margin-bottom: 40px;
  }
}
.cta__deco.btm {
  margin-top: 50px;
  transform: rotate(180deg);
}
@media (max-width: 599px) {
  .cta__deco.btm {
    margin-top: 40px;
  }
}
.cta__ttl {
  color: #e0b755;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.5;
  word-break: keep-all;
}
@media (max-width: 1180px) {
  .cta__ttl {
    word-break: break-all;
  }
}
@media (max-width: 765px) {
  .cta__ttl {
    font-size: 24px;
  }
}
@media (max-width: 599px) {
  .cta__ttl {
    font-size: 3.8vw;
  }
}
.cta__ippan {
  line-height: 1.7;
  margin-top: 30px;
  font-size: 27px;
}
@media (max-width: 599px) {
  .cta__ippan {
    font-size: 4vw;
    line-height: 1.3;
  }
}
.cta__ippan-flex {
  gap: 10px;
  margin-top: 3px;
}
.cta__ippan-flex *:nth-child(2) {
  font-size: 22px;
  line-height: 1.4;
}
@media (max-width: 599px) {
  .cta__ippan-flex *:nth-child(2) {
    font-size: 4vw;
    line-height: 1.3;
  }
}
.cta__ippan-flex *:nth-child(2) span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
}
@media (max-width: 599px) {
  .cta__ippan-flex *:nth-child(2) span {
    font-size: 3vw;
  }
}
.cta__ippan-flex *:nth-child(4) {
  font-size: 18px;
}
@media (max-width: 599px) {
  .cta__ippan-flex *:nth-child(4) {
    font-size: 3vw;
  }
}
.cta__btn-flex {
  position: relative;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 599px) {
  .cta__btn-flex {
    margin-top: 20px;
    gap: 20px;
  }
}
.cta__btn-wrap {
  width: calc(33% - 10px);
}
@media (max-width: 1200px) {
  .cta__btn-wrap {
    width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .cta__btn-wrap {
    width: 100%;
  }
}
.cta__txt {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .cta__txt {
    font-size: 1.5vw;
  }
}
@media (max-width: 768px) {
  .cta__txt {
    font-size: 13px;
  }
}
@media (max-width: 599px) {
  .cta__txt {
    font-size: 3vw;
  }
}
.cta__txt.btm {
  margin-top: 8px;
}
.cta .btn {
  width: 100%;
  padding: 30px 0;
}
@media (max-width: 599px) {
  .cta .btn {
    padding: 26px 0;
    width: 100%;
  }
}
.cta a[disabled] {
  position: relative;
  pointer-events: none;
}
.cta a[disabled]::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.cta a[disabled] .comingSoonTxt {
  width: 100%;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  opacity: 1;
}
.cta .soldout {
  line-height: 1.3;
  margin-top: 60px;
}
@media (max-width: 599px) {
  .cta .soldout {
    margin-top: 40px;
    line-height: 1.6;
  }
}
.cta .soldout span:first-child {
  background: #e0b755;
  color: #000;
  font-weight: 600;
  padding: 3px 13px;
  font-size: 28px;
}
@media (max-width: 599px) {
  .cta .soldout span:first-child {
    font-size: 5vw;
  }
}
.cta .soldout span:last-child {
  font-size: 16px;
}
@media (max-width: 599px) {
  .cta .soldout span:last-child {
    font-size: 3.5vw;
  }
}

/* ------------------------------------------------------------- */
/* jump-btn                                                      */
/* ------------------------------------------------------------- */
.jump {
  position: fixed;
  display: flex;
  writing-mode: vertical-lr;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  width: 65px;
  height: auto;
  padding: 15px;
  border-radius: 10px 0 0 10px;
  background: rgb(231, 194, 123);
  background: linear-gradient(45deg, rgb(231, 194, 123) 0%, rgb(255, 220, 154) 50%, rgb(231, 194, 123) 100%);
  right: 0%;
  bottom: 30px;
  z-index: 30;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 599px) {
  .jump {
    font-size: 11px;
    width: 50px;
    bottom: 27px;
  }
}
.jump p {
  margin: 0 auto;
}

/* ------------------------------------------------------------- */
/* footer                                                        */
/* ------------------------------------------------------------- */
.footer {
  color: #fff;
  background-color: #0d0d0d;
  padding: 20px 0;
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .footer {
    font-size: 2.5vw;
  }
}

/* ------------------------------------------------------------- */
/* animation                                                     */
/* ------------------------------------------------------------- */
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeInTrigger.scroll-in {
  animation: fadeInAnime 1s forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUpTrigger.scroll-in {
  animation: fadeUpAnime 1s forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style.css?transform-only.map */
