@charset "UTF-8";
/*--------------------------
	CSSアニメーション
--------------------------*/
#mq_chanel2609 .fadeup {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 20px);
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transform: translate(0, 20px);
  transform-style: preserve-3d;
  -webkit-transition: all .8s ease 0s;
  -ms-transition: all .8s ease 0s;
  -moz-transition: all .8s ease 0s;
  transition: all .8s ease 0s;
}

#mq_chanel2609 .fadeup.is-active {
  -webkit-transform: translate(0, 0);
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translate(0, 0);
}


/*fadein*/
#mq_chanel2609 .fadein {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all .5s ease-in 0s;
  -ms-transition: all .5s ease-in 0s;
  -moz-transition: all .5s ease-in 0s;
  transition: all .5s ease-in 0s;
}

#mq_chanel2609 .fadein.is-active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=1);
  opacity: 1;
}


/* テキスト下から */
#mq_chanel2609 .item_number {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	line-height: 0.75;
  overflow: hidden;
  padding-top: 5px;
  margin-top: -5px;

}

#mq_chanel2609 .block .item_number .char {
  display: inline-block;
  transform: translateY(110%);
}

#mq_chanel2609 .block.is-animate .item_number .char {
  animation: numUp 0.7s cubic-bezier(.16, 1, .3, 1) forwards;
}

#mq_chanel2609 .block.is-animate .item_number .char:nth-child(1) {
  animation-delay: 0s;
}

#mq_chanel2609 .block.is-animate .item_number .char:nth-child(2) {
  animation-delay: 0.08s;
}

#mq_chanel2609 .block.is-animate .item_number .char:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes numUp {
  to {
    transform: translateY(0);
  }
}

/* 数字固定 */
#mq_chanel2609 .block04 .item_number,
#mq_chanel2609 .block08 .item_number {
  position: sticky;
	top: 100px;
  /* top: calc(50svh - 52px); */
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  opacity: 1;
  transition: opacity .25s ease;
}

#mq_chanel2609 .block04 .item_number.is-fixed,
#mq_chanel2609 .block08 .item_number.is-fixed {
  opacity: .2;
}

/* #mq_chanel2609 .block04 .item_number.is-scrolled,
#mq_chanel2609 .block08 .item_number.is-scrolled {
  opacity: .2;
} */

#mq_chanel2609 .block04 .item_wrapper,
#mq_chanel2609 .block08 .item_wrapper {
  position: relative;
  z-index: 2;
}

#mq_chanel2609 .block04 .item_number.is-hidden,
#mq_chanel2609 .block08 .item_number.is-hidden {
  opacity: 0 !important;
}

/* ぽよ */
#mq_chanel2609 .u-poyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

/* 画像ズーム */
#mq_chanel2609 .scroll-zoom {
  overflow: hidden;
}

#mq_chanel2609 .scroll-zoom_inner {
  clip-path: inset(40% 40% 40% 40%);
  transition: clip-path 2s cubic-bezier(.16,1,.3,1);
  will-change: clip-path;
}

#mq_chanel2609 .scroll-zoom_inner img {
  transform: scale(1.3);
  transition: transform 1.8s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

#mq_chanel2609 .scroll-zoom.is-animate .scroll-zoom_inner {
  clip-path: inset(0);
}

#mq_chanel2609 .scroll-zoom.is-animate .scroll-zoom_inner img {
  transform: scale(1);
}

#mq_chanel2609 .scroll-img {
  overflow: hidden;
}

#mq_chanel2609 .scroll-img img {
  width: 100%;
  display: block;
  transform-origin: center center;
  transform: scale(1.2);
  transition: transform 1.8s cubic-bezier(.16,1,.3,1);
}

#mq_chanel2609 .scroll-img.is-active img {
  transform: scale(1);
}


/* 画像スライドイン */
@keyframes phBgIn {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes phImageIn {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

/* あしらい線 */
@keyframes lineTop {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes lineRight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes lineLeft {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* テキスト帯 */
@keyframes txtBgIn {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes txtIn {
	from {
		clip-path: inset(0 100% 0 0);
	}
	to {
		clip-path: inset(0 0 0 0);
	}
}

/* フェードイン */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ボタンアニメーション */

#mq_chanel2609 .btn_list .btn.btn_detail,
#mq_chanel2609 .btn_black {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
}

#mq_chanel2609 .btn_list .btn.btn_detail::before,
#mq_chanel2609 .btn_list .btn.btn_detail::after,
#mq_chanel2609 .btn_black::before,
#mq_chanel2609 .btn_black::after {
  background-color: var(--color-black);
  display: block;
  position: absolute;
  content: '';
  transition: all .15s;
  z-index: 2;
}

#mq_chanel2609 .btn_list .btn.btn_detail::before,
#mq_chanel2609 .btn_black::before {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  transition-delay: .45s;
  clip-path: inset(0 0 0 100%);
}

#mq_chanel2609 .btn_list .btn.btn_detail::after,
#mq_chanel2609 .btn_black::after {
  height: 100%;
  width: 1px;
  left: 0;
  top: 0;
  clip-path: inset(0 0 100% 0);
}

#mq_chanel2609 .btn_black {
  /* background-color: var(--color-black); */
  transition-delay: .65s;
}

#mq_chanel2609  .btn_black.is-active {
  background-color: var(--color-black);
}

#mq_chanel2609 .btn_list .btn.btn_detail a {
  position: relative;
  z-index: 1;
}

#mq_chanel2609 .btn_black span,
#mq_chanel2609 .btn_list .btn.btn_detail a span {
  opacity: 0;
}

#mq_chanel2609 .btn_black.is-active span,
#mq_chanel2609 .btn_list.is-active .btn.btn_detail a span {
  animation: fadeIn .2s forwards .65s;
}

#mq_chanel2609 .btn_list .btn.btn_detail a::before,
#mq_chanel2609 .btn_list .btn.btn_detail a::after,
#mq_chanel2609 .btn_black a::before,
#mq_chanel2609 .btn_black a::after {
  background-color: var(--color-black);
  display: block;
  position: absolute;
  content: '';
  transition: all .15s;
  z-index: 2;
}

#mq_chanel2609 .btn_list .btn.btn_detail a::before,
#mq_chanel2609 .btn_black a::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  clip-path: inset(0 100% 0 0);
  transition-delay: .15s;
}

#mq_chanel2609 .btn_list .btn.btn_detail a::after,
#mq_chanel2609 .btn_black a::after {
  height: 100%;
  width: 1px;
  bottom: 0;
  right: 0;
  transition-delay: .3s;
  clip-path: inset(100% 0 0 0);
}

#mq_chanel2609 .btn_list.is-active .btn.btn_detail::before,
#mq_chanel2609 .btn_list.is-active .btn.btn_detail a::before,
#mq_chanel2609 .btn_black.is-active::before,
#mq_chanel2609 .btn_black.is-active a::before {
  clip-path: inset(0 0 0 0);
}

#mq_chanel2609 .btn_list.is-active .btn.btn_detail::after,
#mq_chanel2609 .btn_list.is-active .btn.btn_detail a::after,
#mq_chanel2609 .btn_black.is-active::after,
#mq_chanel2609 .btn_black.is-active a::after {
  clip-path: inset(0 0 0 0);
}