@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

table,
input,
textarea,
select,
option {
  line-height: 1.1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
  line-height: 1;
}

a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 1;
}

body {
  font-family: 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, メイリオ, Meiryo,
    ＭＳ ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, TakaoExGothic,
    MotoyaLCedar, Droid Sans Japanese, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #051a2b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #ece9da;
  --main-color: #c6bf93;
  --opac-color: 95, 175, 208;
}
/* Hide scrollbar but keep scroll */
 .event-popup{
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.event-popup::-webkit-scrollbar {
  display: none;
} 

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
    background-color: #e61928;
  }
}

html {
  scroll-behavior: smooth;
}

main {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  main {
  }
}

.sp-only,
.sp-flex {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block !important;
  }

  .sp-flex {
    display: flex !important;
  }
}
.is-disable-scroll {
  overflow: hidden;
  touch-action: none;
}
.font-din {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
}

.l-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.l-petals {
  height: 100vh;
  width: 100vw;
}

.l-petals > * {
  position: absolute;
}

.l-petals img:nth-child(1) {
  top: 8%;
  left: 16.47%;
}

.l-petals img:nth-child(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  top: 12%;
  left: 15%;
  width: 16.35%;
}

.l-petals img:nth-child(3) {
  left: 26%;
  bottom: 37%;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.l-petals img:nth-child(4) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  top: -5%;
  right: 8%;
  width: 17.42%;
}

.l-petals img:nth-child(5) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  top: 20%;
  right: 20%;
}

.l-petals img:nth-child(6) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  top: 19%;
  right: 14%;
}

.l-petals img:nth-child(7) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  top: 35%;
  right: 0;
  width: 17.33%;
}

.l-petals img:nth-child(8) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  bottom: 42%;
  right: 4%;
}

.petal {
  -webkit-animation: sway 8s infinite ease-in-out alternate;
  animation: sway 8s infinite ease-in-out alternate;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes sway {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0) rotate(0);
  }

  25% {
    -webkit-transform: translate(-8px, 8px) rotate(6deg);
    transform: translate(-8px, 8px) rotate(6deg);
  }

  50% {
    -webkit-transform: translate(4px, 4px) rotate(0deg);
    transform: translate(4px, 4px) rotate(0);
  }

  75% {
    -webkit-transform: translate(8px, 8px) rotate(-6deg);
    transform: translate(8px, 8px) rotate(-6deg);
  }

  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0) rotate(0);
  }
}

@keyframes sway {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0) rotate(0);
  }

  25% {
    -webkit-transform: translate(-8px, 8px) rotate(6deg);
    transform: translate(-8px, 8px) rotate(6deg);
  }

  50% {
    -webkit-transform: translate(4px, 4px) rotate(0deg);
    transform: translate(4px, 4px) rotate(0);
  }

  75% {
    -webkit-transform: translate(8px, 8px) rotate(-6deg);
    transform: translate(8px, 8px) rotate(-6deg);
  }

  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0) rotate(0);
  }
}

.l-petals1 {
  position: absolute;
  height: calc(100% - 865px);
  width: 100%;
  top: inherit;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.l-petals1 > * {
  position: absolute;
}

.l-petals1 img:nth-child(1) {
  top: 220px;
  right: 5.2%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(1) {
    width: 20px;
    top: 110px;
  }
}

.l-petals1 img:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  top: 400px;
  left: 9.3333333333%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(2) {
    width: 23px;
    top: 200px;
  }
}

.l-petals1 img:nth-child(3) {
  top: 800px;
  left: 0;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(3) {
    width: 45px;
    top: 375px;
  }
}

.l-petals1 img:nth-child(4) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  top: 780px;
  right: -10%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(4) {
    width: 159px;
    top: 350px;
  }
}

.l-petals1 img:nth-child(5) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  top: 25.4%;
  right: 3%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(5) {
    width: 23px;
    top: 23%;
  }
}

.l-petals1 img:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  top: 26.5%;
  left: -1%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(6) {
    width: 45px;
    top: 24.6%;
  }
}

.l-petals1 img:nth-child(7) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  top: 28.7%;
  left: 16%;
  rotate: 40deg;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(7) {
    width: 20px;
    top: 26.6%;
    left: 7%;
  }
}

.l-petals1 img:nth-child(8) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  top: 30.5%;
  right: 2%;
  rotate: 60deg;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(8) {
    width: 35px;
    top: 28.8%;
  }
}

.l-petals1 img:nth-child(9) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  top: 36%;
  right: 5%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(9) {
    width: 26px;
    right: 0;
    top: 34%;
  }
}

.l-petals1 img:nth-child(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  top: 37%;
  left: 5%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(10) {
    width: 26px;
    left: 0;
    top: 34.2%;
  }
}

.l-petals1 img:nth-child(11) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  top: 41%;
  left: 0;
  rotate: 50deg;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(11) {
    width: 35px;
    top: 39.5%;
  }
}

.l-petals1 img:nth-child(12) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  top: 49.6%;
  left: 5%;
  rotate: 185deg;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(12) {
    width: 26px;
    left: 0;
    top: 47.1%;
  }
}

.l-petals1 img:nth-child(13) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  bottom: 45%;
  left: 0;
  rotate: 60deg;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(13) {
    width: 45px;
    bottom: 47.5%;
  }
}

.l-petals1 img:nth-child(14) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  bottom: 40%;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(14) {
    width: 45px;
    bottom: 42%;
  }
}

.l-petals1 img:nth-child(15) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  bottom: 33%;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(15) {
    width: 171px;
    bottom: 35.5%;
  }
}

.l-petals1 img:nth-child(16) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  bottom: 2100px;
  right: 1%;
  rotate: 60deg;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(16) {
    width: 45px;
    bottom: 1050px;
  }
}

.l-petals1 img:nth-child(17) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  bottom: 1350px;
  left: -14%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(17) {
    width: 157px;
    bottom: 1020px;
  }
}

.l-petals1 img:nth-child(18) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  bottom: 100px;
  left: -20%;
  z-index: 9;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(18) {
    width: 171px;
    bottom: 475px;
  }
}

.l-petals1 img:nth-child(19) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  bottom: -55px;
  right: -14%;
}

@media only screen and (max-width: 767px) {
  .l-petals1 img:nth-child(19) {
    width: 145px;
    bottom: 330px;
  }
}

@media only screen and (max-width: 767px) {
  .l-petals1 {
    height: calc(100% - 525px);
    overflow: hidden;
  }
}

.l-bg {
  position: relative;
  text-align: center;
  padding: 50px 0 0;
}

.l-bg > * {
  position: relative;
  z-index: 1;
}

.l-bg::after,
.l-bg::before {
  content: "";
  position: absolute;
  background-size: contain;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.l-bg:after {
  background-image: url(../img/new/bg.jpg);
  background-position: center -145px;
  z-index: 0;
  /* opacity: 0.25; */
}

.l-bg::before {
  /* background-image: url(../img/top/bg-blur.png); */
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .l-bg {
    padding: 20px 0;
  }
}

.bokeh-layer {
  position: fixed;
  /* match your desired default size */
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: transparent;

  pointer-events: none;
}
.bokeh-container4,
.bokeh-container3,
.bokeh-container2,
.bokeh-container1{
  position: relative;
}
.bokeh-layer3{
  position: absolute;
  height: 100%;
  top: 0px;
  left: 0px;
}
.bokeh-layer2{
  position: relative;
}
.bokeh-layer canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  transform: translateZ(0);   
  will-change: transform, opacity;
}



.sparkle-column {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #e61928;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* --------------- Base sparkle ---------------- */
.sparkle {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0.3;
  animation-name: twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes twinkle {

  0%,
  90%,
  100% {
    opacity: 0.15;
    transform: scale(0.9) translate(-50%, -50%) rotate(var(--angle, 0deg));
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
  }

  50% {
    opacity: 1;
    transform: scale(1.3) translate(-50%, -50%) rotate(var(--angle, 0deg));
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
  }
}

/* --------------- 8-point sparkle ---------------- */
.sparkle.star8 {
  width: var(--size);
  height: var(--size);
}

.sparkle.star8::before,
.sparkle.star8::after,
.sparkle.star8 span::before,
.sparkle.star8 span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.sparkle.star8::before {
  width: 100%;
  height: 1.5px;
  transform: translate(-50%, -50%) rotate(0deg);
}

.sparkle.star8::after {
  width: 1.5px;
  height: 100%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.sparkle.star8 span::before {
  width: 100%;
  height: 1.5px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sparkle.star8 span::after {
  width: 1.5px;
  height: 100%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sparkle.star8::before,
.sparkle.star8::after,
.sparkle.star8 span::before,
.sparkle.star8 span::after {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.9));
}

/* --------------- Star shape ---------------- */
.sparkle.starShape {
  width: var(--size);
  height: var(--size);
  clip-path: polygon(50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%);
  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 255, 255, 0.6) 70%,
      rgba(255, 255, 255, 0) 100%);
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.7));
}

/* --------------- Circles — falling + twinkling ---------------- */
.circle {
  position: absolute;
  top: -10vh;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  animation: fallSnow var(--dur, 14s) linear infinite;
  animation-delay: var(--delay, 0s);
}
#story .circle {
  top: 450px;
  animation: fallSnow2 var(--dur, 14s) linear infinite;
}
.circle .dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0) 100%);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  animation: twinkleCircle var(--pulse, 8s) ease-in-out infinite;
  animation-delay: var(--pulseDelay, 0s);
}

@keyframes fallSnow {
  0% {
    transform: translate(-50%, -50%) translateY(-10vh);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.6;
    transform: translate(calc(-50% + var(--drift, 0px)), -50%) translateY(110vh);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--drift, 0px)), -50%) translateY(120vh);
  }
}

@keyframes fallSnow2 {
  0% {
    transform: translate(-50%, -50%) translateY(0px);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.6;
    transform: translate(calc(-50% + var(--drift, 0px)), -50%) translateY(1500px);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--drift, 0px)), -50%) translateY(1700px);
  }
}

@keyframes twinkleCircle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.sparkle-column .decaration1,
.sparkle-column .decaration2,
.sparkle-column .decaration3,
.sparkle-column .decaration4,
.sparkle-column .decaration5,
.sparkle-column .decaration6 {
  position: absolute;
  top: 0;
}
.sparkle-column .decaration1 {
  left: 45px;
  width: 36px;
}
.sparkle-column .decaration2 {
  left: 95px;
  width: 44px;
}
.sparkle-column .decaration3 {
  left: 150px;
  width: 32px;
}
.sparkle-column .decaration4 {
  right: 157px;
  width: 26px;
}

.sparkle-column .decaration5 {
  right: 95px;
  width: 44px;
}

.sparkle-column .decaration6 {
  right: 45px;
  width: 35px;
}

.sparkle-column .snowman {
  position: absolute;
  bottom: 20px;
  left: 40px;
  width: 80px;
}

.sparkle-column .unimo {
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .sparkle-column {
    /* display: none; */
  }
  .sparkle-column .decaration1,
  .sparkle-column .decaration2,
  .sparkle-column .decaration3,
  .sparkle-column .decaration4,
  .sparkle-column .decaration5,
  .sparkle-column .decaration6,
  .sparkle-column .snowman,
  .sparkle-column .unimo {
    display: none;
  }
}


.pc-main {
  max-width: 370px;
  height: 100%;
  position: absolute;
  left: 40%;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  /* animation: fadeIn 2s ease-in-out 8s forwards; */
}
.pc-main.loaded {
  animation: fadeIn 1s ease-in-out forwards;
}
.pc-main__subtitle {
  width: 200px;
  display: block;
  margin: 12px auto 0;
}
.pc-main__menu {
  margin-top: 20px;
}
.pc-main__menu .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.pc-main__menu .list:first-child {
  padding-right: 50px;
}
.pc-main__menu .list:last-child {
  margin-top: -15px;
  padding-left: 50px;
}
.pc-main__menu .item {
  transition: all 0.3s ease-in-out;
}
.pc-main__menu .item:hover {
  transform: rotate(3deg);
  animation: unset;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .pc-main {
    display: none;
  }
}


/* Top page */
.c-header {
  position: relative;
  z-index: 1;
}
.c-header__logo {
  padding: 10px;
  background-color: #e2c600;
}
.c-header__logo img {
  display: block;
  margin-inline: auto;
  max-width: 120px;
  width: 100%;
}
.p-top {
  position: relative;
  transform: translateX(45%);
  opacity: 0;
  pointer-events: none;
}
.p-top.loaded {
  animation: fadeIn 1.5s ease-in-out forwards;
}
.p-top::before {
  position: absolute;
  top: 0;
  right: 101%;
  content: "";
  width: 46px;
  height: 100%;
  background-image: url(../img/left_sparkle.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.p-top::after {
  position: absolute;
  top: 0;
  left: 101%;
  content: "";
  width: 46px;
  height: 100%;
  background-image: url(../img/left_sparkle.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
}
@media screen and (max-width: 1024px) {
  .p-top {
    transform: unset;
  }
}
@media screen and (max-width: 767px) {
  .p-top::before,
  .p-top::after {
    display: none;
  }
}

.p-top__mvInner {
  position: relative;
  overflow: hidden;
  padding-bottom: 35px;
}
.p-top__mvInner::after {
  position: absolute;
  bottom: -35px;
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 166;
  background-image: url(../img/greet_before.png);
  background-size: contain;
}
.p-top__mvInner .decaration1,
.p-top__mvInner .decaration2,
.p-top__mvInner .decaration3,
.p-top__mvInner .decaration4,
.p-top__mvInner .decaration5,
.p-top__mvInner .decaration6 {
  position: absolute;
  top: 0;
  z-index: 1;
}
.p-top__mvInner .decaration1 {
  left: 20px;
  width: 24px;
}
.p-top__mvInner .decaration2 {
  left: 60px;
  width: 28px;
}
.p-top__mvInner .decaration3 {
  left: 104px;
  width: 23px;
}

.p-top__mvInner .decaration4 {
  right: 104px;
  width: 24px;
}

.p-top__mvInner .decaration5 {
  right: 60px;
  width: 28px;
}

.p-top__mvInner .decaration6 {
  right: 20px;
  width: 23px;
}
#mvstar1 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 140px;
  height: 200px;
}
#mvstar2 {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 140px;
  height: 200px;
}
#mvstar3 {
  position: absolute;
  bottom: 60px;
  right: 0px;
  width: 140px;
  height: 60px;
}
#mvstar4 {
  position: absolute;
  bottom: 60px;
  left: 0px;
  width: 120px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .p-top__mvInner .decaration1 {
      left: 22px;
      width: 21px;
    }
  .p-top__mvInner .decaration2 {
    left: 54px;
    width: 27px;
  }
  .p-top__mvInner .decaration3 {
    left: 91px;
    width: 20px;
  }
  .p-top__mvInner .decaration4 {
    right: 89px;
    width: 16px;
  }
  .p-top__mvInner .decaration5 {
    right: 50px;
    width: 25px;
  }
  .p-top__mvInner .decaration6 {
    right: 17px;
    width: 21px;
  }
  #mvstar1 {
    width: 100px;
  }

  #mvstar2 {
    width: 100px;
  }

  #mvstar3 {
    width: 120px;
    bottom: 48px;
  }

  #mvstar4 {
    bottom: 48px;
    width: 91px;
    height: 74px;
  }
}

.decaration {
  transform-origin: top center;
  display: inline-block;
  will-change: transform, filter;
  animation: swingSoft 6s cubic-bezier(0.42, 0, 0.58, 1) infinite,
    glow 2.8s ease-in-out infinite;
}

.decaration:nth-child(1) {
  animation-duration: 6s, 2.8s;
  animation-delay: 0s, 0s;
}

.decaration:nth-child(2) {
  animation-duration: 6.8s, 3s;
  animation-delay: 0.6s, 0.3s;
}

.decaration:nth-child(3) {
  animation-duration: 7.2s, 3.2s;
  animation-delay: 1.2s, 0.6s;
}

.decaration:nth-child(4) {
  animation-duration: 6.5s, 2.9s;
  animation-delay: 0.3s, 0.2s;
}

.decaration:nth-child(5) {
  animation-duration: 7s, 3.1s;
  animation-delay: 1s, 0.5s;
}

.decaration:nth-child(6) {
  animation-duration: 6.4s, 2.7s;
  animation-delay: 1.8s, 0.8s;
}

@keyframes swing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(4deg);
  }

  25% {
    transform: rotate(-6deg);
  }

  40% {
    transform: rotate(3deg);
  }

  60% {
    transform: rotate(-6deg);
  }

  80% {
    transform: rotate(4deg);
  }
}

.decaration:nth-child(4) {
  animation-name: swing, glow;
}

@keyframes swingSoft {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(3deg);
  }

  25% {
    transform: rotate(-4deg);
  }

  40% {
    transform: rotate(2deg);
  }

  60% {
    transform: rotate(-2deg);
  }

  80% {
    transform: rotate(1deg);
  }
}

@keyframes glow {

  0%,
  100% {
    filter: drop-shadow(0 4px 6px rgba(255, 230, 0, 0.4)) brightness(1);
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 120, 0.9)) brightness(1.4);
  }
}


.p-top__greet {
  position: relative;
  background-color: #e2c600;
  padding-bottom: 140px;
  z-index: 1;
}
.p-top__greet__nav {
  padding: 5px 0;
  justify-content: center;
  background-color: #8a4200;
  position: fixed;
  bottom: 0;
  max-width: 450px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  display: flex;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.p-top__greet__nav a {
  padding: 8px 20px;
  display: flex;
  align-items: center;
}
.p-top__greet__nav a:not(:first-child) {
  border-left: 3px dotted #e2c600 ;
}
.p-top__greet__nav a:nth-child(1) img {
  width: calc(128px * 450 / 750);
}
.p-top__greet__nav a:nth-child(2) img {
  width: calc(80px * 450 / 750);
}
.p-top__greet__nav a:nth-child(3) img {
  width: calc(110px * 450 / 750);
}
.p-top__greet__nav a:nth-child(4) img {
  width: calc(120px * 450 / 750);
}
.p-top__greet__text {
  max-width: calc(442px * 450 / 750);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#greetstar1 {
  position: absolute;
  top: -40px;
  left: 20px;
  width: 120px;
  height: 120px;
}
#greetstar2 {
  position: absolute;
  top: -40px;
  right: 20px;
  width: 120px;
  height: 120px;
}
#greetstar3 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
}
#greetstar4 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .p-top__greet__nav.fixed {
    opacity: 1;
    pointer-events: unset;
  }
  .p-top__greet {
    padding-top: 30px;
  }
}
.p-top__noeltree {
  position: relative;
  padding: 0 0 100px;
  background-color: #df0723;
}
.p-top__noeltree::before {
  position: absolute;
  bottom: calc(100% - 50px);
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 166;
  background-image: url(../img/noeltree_before.png);
  background-size: contain;
  z-index: 1;
}
.p-top__noeltree__title {
  position: relative;
  z-index: 1;
}
.p-top__noeltree__title svg {
  max-width: calc(645px * 450/ 750);
  width: 100%;
  object-fit: cover;
  margin-inline: auto;
  display: block;
}
.p-top__noeltree__imgs {
  position: relative;
  margin-top: 40px;
}
.p-top__noeltree__imgs .tree {
  max-width: 370px;
  width: 100%;
  object-fit: cover;
  margin-inline: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.p-top__noeltree__imgs .ilust1 {
  position: absolute;
  top: -40px;
  left: 28px;
  width: 142px;
}
.p-top__noeltree__imgs .ilust2 {
  position: absolute;
  top: -55px;
  right: 5px;
  width: 157px;
}

.p-top__noeltree__text {
  margin-top: 35px;
}
.p-top__noeltree__text img {
  display: block;
  margin-inline: auto;
  max-width: 312px;
  width: 100%;
  object-fit: cover;
}

.p-top__noeltree__cols2 {
  margin-top: 40px;
  padding: 0 20px;
  display: flex;
  gap: 10px;
}
.p-top__noeltree__left {
  flex: 0 0 55%;
}
.p-top__noeltree__left img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-top__noeltree__right {
  flex: 0 0 45%;
}
.p-top__noeltree__right .bubble {
  padding: 10px 15px 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: swing 3s 1s infinite;
}
.p-top__noeltree__challenge {
  position: relative;
  margin-top: 50px;
  padding: 0 15px;
}
.p-top__noeltree__challenge .text img {
  width: 100%;
  object-fit: cover;
}
.p-top__noeltree__challenge .ilust {
  position: absolute;
  top: 0;
  left: 30px;
  width: 108px;
}


.p-top__studio {
  position: relative;
  padding-bottom: 60px;
  background-color: #02823a;
}
.p-top__studio::before {
  position: absolute;
  bottom: calc(100% - 50px);
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 166;
  background-image: url(../img/studio_before.png);
  background-size: contain;
}
.p-top__studio__title {
  position: relative;
  z-index: 1;
}
.p-top__studio__title svg {
  max-width: calc(645px * 450 / 750);
  width: 100%;
  object-fit: cover;
  margin-inline: auto;
  display: block;
}
.p-top__studio__list {
  margin-top: 12px;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-top__studio__card {
  /* animation: card 3s linear infinite; */
}
.p-top__studio__list img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-top__studio__list .bokeh-line {
  margin: 10px -20px;
}

.p-top__story {
  background-color: #e2c600;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-top__story__country {
  position: relative;
  z-index: 1;
}
.p-top__story__text {
  margin-top: 65px;
  position: relative;
  z-index: 1;
}
.p-top__story__text img {
  max-width: 340px;
  width: 100%;
  margin-inline: auto;
  display: block;
}

.p-top__story__1 {
  position: relative;
  padding: 130px 30px 0 20px;
  overflow: hidden;
  z-index: 1;
}
.p-top__story__1 .book {
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}
.p-top__story__1 .text1 {
  position: absolute;
  top: 70px;
  right: 159px;
  width: 57px;
}
.p-top__story__1 .ilust {
  position: absolute;
  top: 35px;
  right: 20px;
  width: 150px;
}
.p-top__story__1 .text2 {
  width: 230px;
  margin: 0 0 0 45px;
}

.p-top__story__2 {
  position: relative;
  padding: 120px 20px 0 50px;
  overflow: hidden;
  z-index: 1;
}
.p-top__story__2 .book {
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
  animation-delay: 1.5s;
}
.p-top__story__2 .text1 {
  position: absolute;
  top: 70px;
  left: 165px;
  width: 57px;
}
.p-top__story__2 .ilust {
  position: absolute;
  top: 35px;
  left: 50px;
  width: 105px;
}
.p-top__story__2 .text2 {
  width: 235px;
  margin: 15px auto 0;
  display: block;
}

.p-top__story__3 {
  position: relative;
  padding: 120px 40px 0 20px;
  overflow: hidden;
  z-index: 1;
}
.p-top__story__3 .book {
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
  animation-delay: 3.5s;
}
.p-top__story__3 .text1 {
  position: absolute;
  top: 76px;
  right: 148px;
  width: 100px;
}
.p-top__story__3 .ilust {
  position: absolute;
  top: 61px;
  right: 0;
  width: 170px;
  mix-blend-mode: normal;
  z-index: 2;
}
.p-top__story__3 .text2 {
  width: 145px;
  margin: 0px 0 0 45px;
  display: block;
}

.p-top__story__star {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.p-top__story__star .text {
  max-width: 330px;
  width: 100%;
  display: block;
  margin: 0 auto -32px;
}

.p-top__story__booklet {
  margin-top: 50px;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}
.p-top__story__booklet .ilust {
  margin-top: 10px;
}

.p-top__event {
  position: relative;
  padding-bottom: 165px;
  background-color: #02823a;
}
.p-top__event::before {
  position: absolute;
  bottom: calc(100% - 50px);
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 166;
  background-image: url(../img/studio_before.png);
  background-size: contain;
  z-index: 1;
}
.p-top__event__title {
  position: relative;
  z-index: 1;
}
.p-top__event__title svg {
  max-width: calc(630px * 450 / 750);
  width: 100%;
  object-fit: cover;
  margin-inline: auto;
  display: block;
}
.p-top__event__cols2 {
  margin-top: 20px;
  padding-inline: 25px 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.p-top__event__cols2 img:hover {
  cursor: pointer;
}
.event-popup {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-5%);
  max-width: 451px;
  width: 100%;
  height: 100vh;
  padding: 50px 0;
  overflow-y: scroll;
  background-color: #df0723;
  z-index: -99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.event-popup.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.event-popupInner {
  position: relative;
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
}
.popup-close {
  position: absolute;
  display: inline-block;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.popup-close::before,
.popup-close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #241916;
  transform-origin: center;
  transition: background-color 0.2s;
}

.popup-close::before {
  transform: rotate(45deg);
}

.popup-close::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  .event-popup {
    padding: 50px 20px 100px;
    transform: translateX(-50%);
  }
}

.c-footer {
  position: relative;
  background-color: #df0723;
  padding-bottom: 30px;
}
.c-footer::before {
  position: absolute;
  bottom: calc(100% - 10px);
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 166;
  background-image: url(../img/noeltree_before.png);
  background-size: contain;
}
.c-footer__title {
  position: relative;
  z-index: 1;
}
.c-footer__title {
  max-width: calc(430px * 450 / 750);
  object-fit: cover;
  margin-inline: auto;
  display: block;
}
.c-footer__cols2 {
  margin-top: 20px;
  padding-inline: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.c-footer__border {
  max-width: 380px;
  margin: 45px auto;
  padding: 0 20px;
}
.c-footer__logo {
  max-width: 120px;
  margin: 0 auto;
}
.c-footer__copyright {
  max-width: 280px;
  margin: 30px auto 0;
}
@media screen and (max-width: 1024px) {
  .c-footer {
    padding-bottom: 90px;
  }
}

/* Custom animation */
@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

@keyframes swing {
  4% {
    transform: rotate3d(0, 0, 1, 6deg);
  }
  8% {
    transform: rotate3d(0, 0, 1, -6deg);
  }
  12% {
    transform: rotate3d(0, 0, 1, 3deg);
  }
  16% {
    transform: rotate3d(0, 0, 1, -3deg);
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes card {
  0% {
    transform: rotate(3deg);
  }

  30% {
    transform: rotate(-2deg);
  }

  60% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    pointer-events: none;
  }

  100% {
    opacity: 1;
    pointer-events: unset;
  }
}

[data-aos="zoom-in-right-custom"] {
  transform: translate3d(-100px, 0, 0) scale(0);
  opacity: 0;
  transition: none;
}

[data-aos="zoom-in-right-custom"].aos-animate {
  animation: zoomInRightCustom 1.5s ease-out forwards;
  animation-delay: 1s;
}

@keyframes zoomInRightCustom {
  0% {
    transform: translate3d(-100px, 0, 0) scale(0);
    opacity: 0;
  }

  60% {
    transform: translate3d(0, 0, 0) scale(1.3);
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}


.main-wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #df0723;
}

.sparkle-column .content {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 9999;
  display: none;
  animation: fadeOut 1s ease-in-out 4s forwards;
}

.show-loader .sparkle-column .content {
  display: block;
}

.sparkle-column .loader-svg {
  width: 100%;
  max-width: 400px;
}