@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%;
}

.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-of-type(1) {
  -webkit-animation-duration: 50s, 5s;
  animation-duration: 50s, 5s;
  top: 2%;
  left: 30%;
}

.fall__elem:nth-of-type(2) {
  -webkit-animation-duration: 70s, 10s;
  animation-duration: 70s, 10s;
  top: 6%;
  left: 10%;
}

.fall__elem:nth-of-type(3) {
  -webkit-animation-duration: 60s, 3s;
  animation-duration: 60s, 3s;
  top: 12%;
  left: 80%;
}

.fall__elem:nth-of-type(4) {
  -webkit-animation-duration: 75s, 2s;
  animation-duration: 75s, 2s;
  top: 10%;
  left: 30%;
}

.fall__elem:nth-of-type(5) {
  -webkit-animation-duration: 85s, 4s;
  animation-duration: 85s, 4s;
  top: 4%;
  left: 60%;
}

.fall__elem:nth-of-type(6) {
  -webkit-animation-duration: 60s, 7s;
  animation-duration: 60s, 7s;
  top: 82%;
  left: 18%;
}

.fall__elem:nth-of-type(7) {
  -webkit-animation-duration: 80s, 6s;
  animation-duration: 80s, 6s;
  top: 16%;
  left: 31%;
}

.fall__elem:nth-of-type(8) {
  -webkit-animation-duration: 50s, 5s;
  animation-duration: 50s, 5s;
  top: 11%;
  left: 52%;
}

.fall__elem:nth-of-type(9) {
  -webkit-animation-duration: 60s, 2s;
  animation-duration: 60s, 2s;
  top: 13%;
  left: 71%;
}

.fall__elem:nth-of-type(10) {
  -webkit-animation-duration: 70s, 8s;
  animation-duration: 70s, 8s;
  top: 15%;
  left: 2%;
}

.fall__elem:nth-of-type(11) {
  -webkit-animation-duration: 50s, 11s;
  animation-duration: 50s, 11s;
  top: 42%;
  left: 1%;
}

.fall__elem:nth-of-type(12) {
  -webkit-animation-duration: 70s, 1.5s;
  animation-duration: 70s, 1.5s;
  top: 16%;
  left: 37%;
}

.fall__elem:nth-of-type(13) {
  -webkit-animation-duration: 60s, 6s;
  animation-duration: 60s, 6s;
  top: 22%;
  left: 11%;
}

.fall__elem:nth-of-type(14) {
  -webkit-animation-duration: 75s, 4s;
  animation-duration: 75s, 4s;
  top: 45%;
  left: 62%;
}

.fall__elem:nth-of-type(15) {
  -webkit-animation-duration: 85s, 5s;
  animation-duration: 85s, 5s;
  top: 48%;
  left: 50%;
}

.fall__elem:nth-of-type(16) {
  -webkit-animation-duration: 60s, 8s;
  animation-duration: 60s, 8s;
  top: 62%;
  left: 24%;
}

.fall__elem:nth-of-type(17) {
  -webkit-animation-duration: 80s, 2s;
  animation-duration: 80s, 2s;
  top: 32%;
  left: 72%;
}

.fall__elem:nth-of-type(18) {
  -webkit-animation-duration: 50s, 3s;
  animation-duration: 50s, 3s;
  top: 24%;
  left: 66%;
}

.fall__elem:nth-of-type(19) {
  -webkit-animation-duration: 60s, 4s;
  animation-duration: 60s, 4s;
  top: 42%;
  left: 30%;
}

.fall__elem:nth-of-type(20) {
  -webkit-animation-duration: 70s, 9s;
  animation-duration: 70s, 9s;
  top: 72%;
  left: 42%;
}

.fall__elem:nth-of-type(21) {
  -webkit-animation-duration: 50s, 5s;
  animation-duration: 50s, 5s;
  top: 26%;
  left: 88%;
}

.fall__elem:nth-of-type(22) {
  -webkit-animation-duration: 70s, 4s;
  animation-duration: 70s, 4s;
  top: 17%;
  left: 90%;
}

.fall__elem:nth-of-type(23) {
  -webkit-animation-duration: 60s, 2s;
  animation-duration: 60s, 2s;
  top: 52%;
  left: 10%;
}

.fall__elem:nth-of-type(24) {
  -webkit-animation-duration: 75s, 3s;
  animation-duration: 75s, 3s;
  top: 28%;
  left: 49%;
}


/* 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)));
}

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

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

#lp_contents .simple-bar_wrap ul{
  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;
}