@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  box-sizing: border-box;
}

body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  color: #333;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
a {
  color: inherit;
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.inner {
  max-width: 1000px;
  margin-inline: auto;
  width: auto;
}
@media (max-width: 768px) {
  .inner {
    padding-inline: 0;
  }
}

.sec {
  padding-block: 90px;
}
@media (max-width: 768px) {
  .sec {
    padding-block: 50px;
  }
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ed1c24;
  width: 420px;
  color: #fff;
  border-radius: 10px;
  padding: 0.6em;
  font-size: 24px;
  border: 1px solid #ed1c24;
  box-shadow: 4px 4px 0px #ccc;
  transition: 0.3s;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .btn {
    width: 315px;
    font-size: 18px;
  }
}
.btn::after {
  clip-path: polygon(70% 50%, 0 0, 0 100%);
  content: "";
  position: absolute;
  width: 16px;
  height: 20px;
  background-color: #fff;
  right: 0.5em;
}
@media (max-width: 768px) {
  .btn::after {
    width: 12px;
    height: 10px;
  }
}
.btn:hover {
  color: #ed1c24;
  background-color: #fff;
}
.btn:hover::after {
  background-color: #ed1c24;
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
.header {
  padding-inline: 10px;
}

.header_grid {
  display: flex;
  justify-content: space-between;
  padding-block: 1em;
  align-items: center;
}

.header_logo {
  width: clamp(6.25rem, 1.806rem + 9.26vw, 8.75rem);
}

/*------------------------------------
  MV
------------------------------------*/
.mv {
  position: relative;
  padding-bottom: 2em;
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fddd4c;
  clip-path: ellipse(100% 80% at 50% 20%);
}

.mv_bg {
  position: relative;
  width: 100%;
  min-height: 450px;
  background-image: url("../images/mv-bg.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 768px) {
  .mv_bg {
    background-image: url("../images/mv-bg_sp.webp");
    background-size: 100% auto;
  }
}

.mv_textHeading {
  padding-block: 40px 20px;
  text-align: center;
  opacity: 0;
}
.mv_textHeading img {
  width: 900px;
}
.mv_textHeading.loaded {
  animation: scaleIn 0.8s ease-out forwards, gentleFloat 3s ease-in-out infinite 1s;
}

.mv_desc {
  font-size: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .mv_desc {
    font-size: 16px;
    line-height: 2;
  }
}
.mv_desc span {
  color: #ed1c24;
  font-weight: bold;
}

.mv_item {
  margin-top: 1em;
  text-align: center;
}
.mv_item img {
  width: 480px;
}
@media (max-width: 768px) {
  .mv_item img {
    width: 200px;
  }
}

.curved {
  position: relative;
  padding-bottom: 3em;
}
@media (max-width: 768px) {
  .curved {
    margin-bottom: 2em;
  }
}
@media (max-width: 400px) {
  .curved {
    margin-top: -2em;
  }
}
@media (max-width: 375px) {
  .curved {
    margin-top: -3em;
  }
}

/*------------------------------------
  Loading Spinner
------------------------------------*/
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fddd4c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.loading-spinner.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-spinner::after {
  content: "Loading...";
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 3px;
  opacity: 0.8;
}

.spinner {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffe066 0%, #ffd700 100%);
  border-radius: 8px;
  animation: giftRotate 2s ease-in-out infinite;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.spinner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, #5dbcd2 0%, #4fa8c5 100%);
  border-radius: 2px;
}
.spinner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #5dbcd2 0%, #4fa8c5 100%);
  border-radius: 2px;
}

@keyframes giftRotate {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
}
@keyframes ribbonScale {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes gentleFloat {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-8px);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PC版メインタイトル(coming soon) */
.mv_textBody {
  opacity: 0;
}
@media (max-width: 768px) {
  .mv_textBody {
    animation: scaleIn 1s ease-out forwards 0.3s;
  }
}
@media (min-width: 769px) {
  .mv_textBody.loaded {
    animation: scaleIn 0.8s ease-out forwards 0.3s, gentleFloat 3s ease-in-out infinite 1.3s;
  }
}

/* チケット画像 */
.mv_item {
  opacity: 0;
}
@media (max-width: 768px) {
  .mv_item {
    animation: scaleIn 1s ease-out forwards 0.5s;
  }
}
@media (min-width: 769px) {
  .mv_item.loaded {
    animation: scaleIn 0.8s ease-out forwards 0.3s, gentleFloat 3.5s ease-in-out infinite 1.1s;
  }
}

/*------------------------------------
  Scroll Fade In Animation
------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-fade {
  opacity: 0;
}
.scroll-fade.is-visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

/*------------------------------------
  prize
------------------------------------*/
.prize .inner {
  max-width: 1560px;
}

.prize_heading {
  text-align: center;
  position: relative;
}
.prize_heading img {
  width: 435px;
}
@media (max-width: 768px) {
  .prize_heading img {
    width: auto;
  }
}
.prize_heading::before {
  content: "";
  position: absolute;
  background-image: url("../images/img-prize-deco.webp");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .prize_heading::before {
    display: none;
  }
}

.prize_slider {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .prize_slider {
    padding-inline: 15px;
  }
}

.prize_slider .sliderWrap {
  max-width: 1000px;
  margin-inline: auto;
}
.prize_slider .sliderWrap li {
  margin-right: 1em;
}
.prize_slider .sliderWrap img {
  width: auto;
  height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .prize_slider .sliderWrap img {
    height: 125px;
  }
}

/*------------------------------------
  countdown
------------------------------------*/
.countdown {
  background-image: repeating-linear-gradient(135deg, #fff1c9, #fff1c9 20px, #fff8d4 20px, #fff8d4 50px);
}

.countdown_heading {
  text-align: center;
}
.countdown_heading img {
  width: 540px;
}
@media (max-width: 768px) {
  .countdown_heading img {
    width: 100%;
    max-width: 332px;
  }
}

.countdown_itemWrap {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 710px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .countdown_itemWrap {
    max-width: 350px;
  }
}

.countdown_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .countdown_item {
    gap: 0;
  }
}

.countdown_itemBox {
  background-color: #ed1c24;
  color: #fff;
  font-size: 70px;
  display: grid;
  place-content: center;
  width: 70px;
  border-radius: 10px;
  aspect-ratio: 7/10;
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 768px) {
  .countdown_itemBox {
    width: 35px;
    font-size: 35px;
    border-radius: 5px;
  }
}

.countdown_itemNum {
  display: flex;
  gap: 5px;
}
@media (max-width: 768px) {
  .countdown_itemNum {
    gap: 3px;
  }
}

.countdown_itemUnit {
  color: #ed1c24;
  font-size: 30px;
}
@media (max-width: 768px) {
  .countdown_itemUnit {
    font-size: 20px;
  }
}

.countdown_date {
  font-size: 30px;
  text-align: center;
  margin-top: 2em;
}
@media (max-width: 768px) {
  .countdown_date {
    margin-top: 1em;
    font-size: 20px;
  }
}

.countdown_btnWrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 2em;
  gap: 2em;
}
@media (max-width: 768px) {
  .countdown_btnWrap {
    flex-direction: column;
    padding-inline: 1em;
    gap: 1em;
  }
}

.countdown_btn {
  padding: 0.6em 2.5em;
  width: 100%;
}
.countdown_btn::before {
  content: "";
  position: absolute;
  background-image: url("../images/icon-calendar.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  left: 1em;
}
.countdown_btn:hover::before {
  filter: brightness(0) saturate(100%) invert(11%) sepia(100%) saturate(7462%) hue-rotate(3deg) brightness(95%) contrast(108%);
}

.countdown_list {
  margin-top: 1em;
  max-width: calc(50% - 1em);
  margin-left: auto;
}
@media (max-width: 768px) {
  .countdown_list {
    padding-inline: 1em;
    max-width: 100%;
  }
}

.countdown_listItem {
  display: flex;
  gap: 0.5em;
  font-size: 11px;
}
@media (max-width: 768px) {
  .countdown_listItem {
    line-height: 1.4;
    margin-top: 0.5em;
  }
}

/*------------------------------------
  action
------------------------------------*/
.action {
  background-color: #fddd4c;
}

.action_heading {
  text-align: center;
}
.action_heading img {
  width: 630px;
}
@media (max-width: 768px) {
  .action_heading img {
    width: 345px;
  }
}

.action_desc {
  margin-top: 1em;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .action_desc {
    font-size: 16px;
  }
}

.action_btnWrap {
  margin-top: 2em;
}
.action_btnWrap p + p {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .action_btnWrap p + p {
    margin-top: 2em;
  }
}

.action_btn {
  width: 500px;
}
@media (max-width: 768px) {
  .action_btn {
    width: 315px;
  }
}

.action_link {
  color: #ed1c24;
  text-align: center;
}

.action_note {
  margin-top: 1em;
  margin-inline: auto;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.6;
  max-width: 315px;
}

.action_message {
  margin-top: 2em;
  font-size: 30px;
  background-color: #fff;
  background-image: repeating-linear-gradient(90deg, #ed1c24, #ed1c24 7px, transparent 7px, transparent 14px), repeating-linear-gradient(180deg, #ed1c24, #ed1c24 7px, transparent 7px, transparent 14px), repeating-linear-gradient(90deg, #ed1c24, #ed1c24 7px, transparent 7px, transparent 14px), repeating-linear-gradient(180deg, #ed1c24, #ed1c24 7px, transparent 7px, transparent 14px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
  padding-block: 0.5em;
  display: grid;
  place-content: center;
  max-width: 630px;
  margin-inline: auto;
  text-align: center;
  color: #ed1c24;
}
@media (max-width: 768px) {
  .action_message {
    font-size: 20px;
    max-width: 315px;
  }
}

.action_flowWrap {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .action_flowWrap {
    max-width: 320px;
  }
}

.action_flowR img {
  width: 230px;
}
@media (max-width: 768px) {
  .action_flowR img {
    width: 120px;
  }
}

.action_flowL {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
}
@media (max-width: 768px) {
  .action_flowL {
    gap: 0.5em;
  }
}

.action_flowIcon img {
  width: 65px;
}
@media (max-width: 768px) {
  .action_flowIcon img {
    width: 40px;
  }
}

.action_flowTxt {
  font-size: 20px;
}
@media (max-width: 768px) {
  .action_flowTxt {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */