.j-init{
  display: none !important;
}

.jaljal header{
  position: sticky;
  top:0;
}

.jaljal .j-init{
  display: flex !important
}

.jaljal-switch {
  position: absolute;
  right: 270px;
  top: 28px;
  margin-right: 0;
  z-index: 10000;
  align-items: center;
  display: none;
  gap:5px;
}

.jaljal-switch:hover{
  opacity: 1;
}

.jaljal-ready .jaljal-switch {
  display: flex;
}

@media screen and (max-width: 1570px) {
  .jaljal-ready header .header_system_menu {
    right: 20px;
    gap:10px;
  }

  .jaljal-switch {
    right: 230px;
  }

}
@media screen and (max-width: 1500px) {
  .jaljal-switch {
    right: 190px;
  }

  .jaljal-ready header .header_system_menu {
    right: 10px;
    gap:3px;
  }
  
  .jaljal-ready header .header_menu {
    display: flex;
    gap: 10px;
    padding-right: 220px;
  }

  .jaljal-ready header{
    justify-content: flex-start;
  }
  .jaljal-ready header .header_menu {
    display: flex;
    gap: 16px;
    padding-right: 220px;
  }

}

@media screen and (max-width: 1300px) {
  .jaljal-ready header .header_menu a {
    font-size:clamp(0.9rem, 0.9vw, 1rem);
    white-space: nowrap;
  }

  .jaljal-ready header .header_system_menu a{
    font-size: 0.9rem;
  }
}

.switch-label em{
	display:block;
	font-size:1.35rem;
	font-style:normal;
	line-height:1;
  letter-spacing: 0.1em;
}

.switch-label small{
	display:block;
  font-size:1rem; 
	line-height:1;
}

.switch-ui{
	position:relative;
	width:43px;
	height:21px;
	border-radius:999px;
	background:#ccc;
  padding-right: 30px;
}

.switch-knob {
  position: absolute;
  top: 12%;
  right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.switch-text {
  position: absolute;
  left: 0;
  top: 56%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  padding-left: 5px;
}

.jaljal-switch.active .switch-ui{
  background:#FF8891;
}

.jaljal-switch.active .switch-knob{
  right:25px;
}

.jaljal-switch.active .switch-text{
  left:15px;
}


.jaljal .emergence{
  margin-top: 10px;
}

#fs_Top.jaljal .fs-l-page {
  padding-top: 0px;
  overflow: clip;
}

.jaljal-logo{
  width: 100%;
  text-align: center;
}

.jaljal-logo>span{
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

/* 初期状態はすべて非表示 */
.jaljal-logo .logo1,
.jaljal-logo .logo2,
.jaljal-logo .logo3 {
  display: none;
}

/* vol1 のとき */
.jaljal-logo.vol1 .logo1 {
  display: block;
}

/* vol2 のとき */
.jaljal-logo.vol2 .logo2 {
  display: block;
}

/* vol3 のとき */
.jaljal-logo.vol3 .logo3 {
  display: block;
}

.jaljal-line-bnr{
  display: none;
}

.jaljal .jaljal-line-bnr{
  position: fixed;
  width: 20%;
  max-width: 250px;
  min-width: 150px;
  left:150px;
  bottom:30px;
  z-index: 1000;
  display: flex;
}

.jaljal .jaljal-line-bnr .close {
  position: absolute;
  width: 35px;
  right: -18px;
  top: -7px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  z-index: 100;
  cursor: pointer;
}

.jaljal .jaljal-line-bnr .close::before,
.jaljal .jaljal-line-bnr .close::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 3px;
  background: #fff;
  transform-origin: center;
  border-radius: 3px;
}

.jaljal .jaljal-line-bnr .close::before{
  transform: translate(-50%, -50%) rotate(45deg);
}

.jaljal .jaljal-line-bnr .close::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}

.jaljal .jaljal-line-bnr .close:hover{
  background: #333;
}


.jaljal .jaljal-countdown {
  position: relative;
  padding: 15px 0 45px;
}

.jaljal .jaljal-countdown .img {
  position: absolute;
  width: 100px;
  left: 208px;
  top: -23px;
}

.jaljal #samday-countdown img{
  display: none;
}

.side-anime{
  position: fixed;
  top: 80px;
  left: 10px;
  width: 150px;
  height: calc(100vh - 80px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.side-anime.right{
  left: auto;
  right:10px;
}

.side-anime.is-show{
  opacity: 1;
  visibility: visible;
}

.side-anime .jamp{
  transform-origin: bottom center;
  animation: none;
  opacity: 0;
}

.side-anime .jamp.play {
  animation: jump 0.8s cubic-bezier(0.5, 0.4, 0.8, 1) forwards;
}

.side-anime.right .jamp.play {
  animation: jump 0.8s cubic-bezier(0.5, 0.4, 0.8, 1) forwards 0.2s;
}

@keyframes jump {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1) scaleY(1);
  }

  1% {
    opacity: 1;
  }

  /* しゃがむ */
  8% {
    opacity: 1;
    transform: translateY(15%) scaleX(1.08) scaleY(0.92);
  }

  /* ジャンプ */
  100% {
    opacity: 1;
    transform: translateY(-120vh) scale(1);
  }
}