@charset "UTF-8";

/*--------------------------------
            CSS Animation
 --------------------------------*/
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/* fall_flower
==================================*/
@-webkit-keyframes fall-ver1 {
  to {
    top: 120%;
  }
}

@keyframes fall-ver1 {
  to {
    top: 120%;
  }
}

@-webkit-keyframes fall-ver2 {
  to {
    top: 150%;
  }
}

@keyframes fall-ver2 {
  to {
    top: 150%;
  }
}

@-webkit-keyframes fall-ver3 {
  to {
    top: 100%;
  }
}

@keyframes fall-ver3 {
  to {
    top: 100%;
  }
}

@-webkit-keyframes sway-ver1 {
  from {
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(200px) rotate(-45deg);
    transform: translateX(200px) rotate(-45deg);
  }
}

@keyframes sway-ver1 {
  from {
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(200px) rotate(-45deg);
    transform: translateX(200px) rotate(-45deg);
  }
}

@-webkit-keyframes sway-ver2 {
  from {
    -webkit-transform: translateX(200px) rotate(-25deg);
    transform: translateX(200px) rotate(-25deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(15deg);
    transform: translateX(0px) rotate(15deg);
  }
}

@keyframes sway-ver2 {
  from {
    -webkit-transform: translateX(200px) rotate(-25deg);
    transform: translateX(200px) rotate(-25deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(15deg);
    transform: translateX(0px) rotate(15deg);
  }
}

@-webkit-keyframes sway-ver3 {
  from {
    -webkit-transform: translateX(150px) rotate(-35deg);
    transform: translateX(150px) rotate(-35deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(15deg);
    transform: translateX(0px) rotate(15deg);
  }
}

@keyframes sway-ver3 {
  from {
    -webkit-transform: translateX(150px) rotate(-35deg);
    transform: translateX(150px) rotate(-35deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(15deg);
    transform: translateX(0px) rotate(15deg);
  }
}

.fall-animation {
  position: relative;
  width: 100%;
  height: 100vh;
  position: fixed;
  pointer-events: none;
  top: 0;
}

.fall-animation .js-fall {
  pointer-events: none;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.fall-animation .js-fall.active .fall__elem--ptn01 {
  -webkit-animation-name: fall-ver1, sway-ver1;
  animation-name: fall-ver1, sway-ver1;
}

.fall-animation .js-fall.active .fall__elem--ptn02 {
  -webkit-animation-name: fall-ver2, sway-ver2;
  animation-name: fall-ver2, sway-ver2;
}

.fall-animation .js-fall.active .fall__elem--ptn03 {
  -webkit-animation-name: fall-ver3, sway-ver3;
  animation-name: fall-ver3, sway-ver3;
}

.fall__elem {
  position: absolute;
  z-index: 98;
  pointer-events: none;
  -webkit-animation-timing-function: linear, ease-in-out;
  animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  animation-iteration-count: infinite, infinite;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
  width: 3rem;
}

.fall__elem:nth-child(8n+1) {
  animation-duration: 7.5s, 2s;
  animation-delay: 0.5s;
}

.fall__elem:nth-child(8n+2) {
  animation-duration: 8s, 3s;
  animation-delay: 1s;
}

.fall__elem:nth-child(8n+3) {
  animation-duration: 7s, 2.5s;
  animation-delay: 1.5s;
}

.fall__elem:nth-child(8n+4) {
  animation-duration: 8.5s, 2s;
  animation-delay: 2s;
}

.fall__elem:nth-child(8n+5) {
  animation-duration: 8s, 3s;
  animation-delay: 2.5s;
}

.fall__elem:nth-child(8n+6) {
  animation-duration: 7s, 2.5s;
  animation-delay: 3s;
}

.fall__elem:nth-child(8n+7) {
  animation-duration: 7s, 2.5s;
  animation-delay: 3.5s;
}

.fall__elem:nth-child(8n) {
  animation-duration: 7.5s, 3s;
  animation-delay: 4s;
}

.fall__elem:nth-of-type(1) {
  top: 0%;
  left: 90%;
}

.fall__elem:nth-of-type(2) {
  top: -4%;
  left: 10%;
}

.fall__elem:nth-of-type(3) {
  top: -8%;
  left: 80%;
}

.fall__elem:nth-of-type(4) {
  top: -12%;
  left: 30%;
}

.fall__elem:nth-of-type(5) {
  top: -16%;
  left: 20%;
}

.fall__elem:nth-of-type(6) {
  top: -20%;
  left: 48%;
}

.fall__elem:nth-of-type(7) {
  top: -24%;
  left: 31%;
}

.fall__elem:nth-of-type(8) {
  top: -28%;
  left: 52%;
}

.fall__elem:nth-of-type(9) {
  top: -32%;
  left: 64%;
}

.fall__elem:nth-of-type(10) {
  top: -36%;
  left: 82%;
}

.fall__elem:nth-of-type(11) {
  top: -40%;
  left: 1%;
}

.fall__elem:nth-of-type(12) {
  top: -44%;
  left: 37%;
}


/* zoom
==================================*/
#lp_contents .zoom{
  overflow: hidden;
}
  
#lp_contents .zoom img{
  opacity: 0;
  transform: scale(1.1);
  transition: all 2s;
}

#lp_contents .zoom.is-show img {
  opacity: 1;
  transform: scale(1);
}


/* Fade In
==================================*/
#lp_contents .fadeIn {
  opacity: 0;
  transition: 2s;
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
}

#lp_contents .fadeInUp {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: 2s;
}

#lp_contents .fadeInUp.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

#lp_contents .delay1{
  transition-delay: 0.25s;
}
#lp_contents .delay2{
  transition-delay: 0.5s;
}
#lp_contents .delay3{
  transition-delay: 0.75s;
}
#lp_contents .delay4{
  transition-delay: 1s;
}


/* simplebar
==================================*/
#lp_contents .simple-bar_wrap *{
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

#lp_contents .simple-bar_wrap{
  overflow-x: scroll;
  padding-bottom: calc(25 * (var(--rate)));
  width: 100%;
}

#lp_contents .simple-bar_wrap::-webkit-scrollbar{
  display:none;
}

#lp_contents .simple-bar_wrap *::-webkit-scrollbar{
  display:none;
}

#lp_contents .simple-bar_wrap ul{
  display: flex;
  gap: calc(8 * (var(--rate)));
  padding: calc(8 * (var(--rate))) calc(15 * (var(--rate))) 0;
  width: fit-content;
}

#lp_contents .simplebar-track.simplebar-horizontal {
  height: calc(3 * (var(--rate)));
  width: calc(300 * (var(--rate)));
  background: rgba(0,0,0,0.1);
  margin: auto;
  border-radius: calc(1.5 * (var(--rate)));
}

#lp_contents .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
  top: 0;
  height: calc(3 * (var(--rate)));
  border-radius: calc(1.5 * (var(--rate)));
  background-color: var(--color-lp_primary);
}

#lp_contents .simplebar-scrollbar:before{
  background: var(--color-lp_primary);
}


/* accordion
==================================*/
#lp_contents .accordion{
  transition: all 0.5s;
}

#lp_contents .accordion.is-hide{
  position: relative;
  overflow: hidden;
  height: calc(230 * (var(--rate)));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

#lp_contents .trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(6 * (var(--rate)));
  margin: auto;
  font-family: var(--font-lp_gothic);
  font-size: calc(11 * (var(--rate)));
  line-height: 1;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: .2s ease;
  transition: 0.5s opacity;
}

#lp_contents .trigger.is-show{
  display: flex;
}

#lp_contents .trigger.is-show .arrow{
  rotate: -135deg;
}


/* modal
==================================*/
#lp_contents .modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
#lp_contents .modal__bg{
  position: absolute;
  width: 100%;
  height: 100vh;
  padding: calc(20 * (var(--rate)));
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}
#lp_contents .modal__content{
  background: var(--color-lp_bg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: calc(350 * (var(--rate)));
}
#lp_contents .modal_inner{
  overflow-y: scroll;
  padding: calc(40 * (var(--rate))) calc(20 * (var(--rate)));
  max-height: 90svh;
}
#lp_contents .close-btn {
  position: sticky;
  height: 0;
  z-index: 5;
}
#lp_contents .close-btn span {
  position: absolute;
  display: block;
  width: calc(20 * (var(--rate)));
  aspect-ratio: 1 / 1;
  top: calc(14 * (var(--rate)));
  right: calc(17 * (var(--rate)));
}
#lp_contents .close-btn span:before,
#lp_contents .close-btn span:after{
  content: '';
  width: calc(25 * (var(--rate)));
  height: 1px;
  background-color: var(--color-lp_font);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#lp_contents .close-btn span:after{
  transform: rotate(-45deg);
}


/* follow
==================================*/
#lp_contents .follow,
#lp_contents .follow_sp{
  position: fixed;
  bottom: 0;
  z-index: 100;
  transition: all 0.5s;
  opacity: 0;
}

#lp_contents .follow.fixed,
#lp_contents .follow_sp.fixed{
  opacity: 1;
}

#lp_contents .follow.none,
#lp_contents .follow_sp.none{
  opacity: 0;
}