@charset "utf-8";
/* CSS Document */
/*------------------------------------------------

    fade animation

------------------------------------------------*/
/* fade */
.fade {opacity: 0;}
.fade.isActive {
	animation: fadeAnime 2s forwards ease-out;
	animation-delay: .2s;
}
@keyframes fadeAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* .fade {
	opacity: 0;
	transition: opacity 1s,transform .7s;
}
.fade.isActive {opacity:1;} */
/* 右からスライドイン */
.fadeRight {opacity: 0;}
.fadeRight.isActive {
	animation: fadeRightAnime .8s forwards ease-out;
	animation-delay: .1s;
}
@keyframes fadeRightAnime {
	0% {
		opacity: 0;
		transform: translateX(30px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
/*----- 戻りの動きがfadeout -----*/
/* .fadeRight {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 1s,transform .7s;
}
.fadeRight.isActive {
	opacity: 1;
	transform: translateX(0);
} */
/* 左からスライドイン */
.fadeLeft {opacity: 0;}
.fadeLeft.isActive {
	animation: fadeLeftAnime .8s forwards ease-out;
	animation-delay: .1s;
}
@keyframes fadeLeftAnime {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
/*----- 戻りの動きがfadeout -----*/
/* .fadeLeft {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 1s,transform .7s;
}
.fadeLeft.isActive {
	opacity: 1;
	transform: translateX(0);
} */
/* 下からスライドイン */
.fadeUp {opacity: 0;}
.fadeUp.isActive {
	animation: fadeUpAnime .8s forwards ease-out;
	animation-delay: .2s;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*----- 戻りの動きがfadeout -----*/
/* .fadeUp {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1s,transform .7s;
}
.fadeUp.isActive {
	opacity: 1;
	transform: translateY(0);
} */
/* 上からスライドイン */
.fadeDown {opacity: 0;}
.fadeDown.isActive {
	animation: fadeDownAnime .8s forwards ease-out;
}
@keyframes fadeDownAnime {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*----- 戻りの動きがfadeout -----*/
/* .fadeDown {
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 1s,transform .7s;
}
.fadeDown.isActive {
	opacity: 1;
	transform: translateY(0);
} */
.js_trigger.delay1 {animation-delay: .4s;transition-delay: .2s;}
.js_trigger.delay2 {animation-delay: .6s;transition-delay: .4s;}
.js_trigger.delay3 {animation-delay: .8s;transition-delay: .6s;}
.js_trigger.delay4 {animation-delay: 1s;transition-delay: .8s;}
.js_trigger.delay5 {animation-delay: 1.2s;transition-delay: 1s;}
.js_trigger.delay6 {animation-delay: 1.4s;transition-delay: 1.2s;}
.js_trigger.delay7 {animation-delay: 1.6s;transition-delay: 1.4s;}
@media only screen and ( max-width : 1024px ) {
	#infographics ul li.js_trigger.animated,
	#infographics ul li.js_trigger.animated.delay1,
	#infographics ul li.js_trigger.animated.delay2,
	#infographics ul li.js_trigger.animated.delay3,
	#infographics ul li.js_trigger.animated.delay4,
	#infographics ul li.js_trigger.animated.delay5,
	#infographics ul li.js_trigger.animated.delay6,
	#infographics ul li.js_trigger.animated.delay7 {animation-delay: 0s;transition-delay: 0s;}
}
@media only screen and ( max-width : 500px ) {
	.js_trigger.animated,
	.js_trigger.animated.delay1,
	.js_trigger.animated.delay2,
	.js_trigger.animated.delay3,
	.js_trigger.animated.delay4,
	.js_trigger.animated.delay5,
	.js_trigger.animated.delay6,
	.js_trigger.animated.delay7 {animation-delay: 0s;transition-delay: 0s;}
}
/*------------------------------------------------

    text animation

------------------------------------------------*/
/* 一文字ずつ出てくる */
.eachTextAnime {opacity: 0;}
.eachTextAnime.appeartext {opacity: 1;}
.eachTextAnime span {opacity: 0;}
.eachTextAnime.appeartext span {opacity: 0;animation:text_anime_on 1s ease-out forwards;}
@keyframes text_anime_on {
  0% {
	opacity: 0;
}
  100% {
	opacity: 1;
}
}
/* 一文字ずつ出てくる*/
.visual {margin-bottom: 120px;}
.visual .letter {display: inline-block;opacity: 0;}
.visual .line {
	opacity: 0;
	margin-bottom: 30px;
	color: #fff;
	font-size: 2.2rem;
	line-height: 1.8;
	text-align: center;
}
.visual .line:last-child {margin-bottom: 0;}
.visual.is-visible .line {opacity: 1;}
.visual.is-visible .letter {animation: leftRight .5s forwards;}
@keyframes leftRight {
	0% {
		opacity: 0;
		transform: translate(0, 0) scale(2);
	}
	40% {
		opacity: .8;
	}
	100% {
		opacity: 1;
		transform: translate(0) scale(1);
	}
}
/* 一文字ずつ飛び跳ねながら出てくる */
.visual02 .letter02 {display: inline-block;}
.visual02 .line02,
.visual02 .letter02 {opacity: 0;}
.visual02.is-visible02.isActive .line02 {opacity: 1;}
.visual02.is-visible02.isActive .letter02 {animation: slideIn .8s cubic-bezier(0,1.2,.13,1.5) forwards;}
@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translate3d(-100px, 0, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
/* アニメーションで傾斜がついている文字列を水平に戻す　*/
.move_txt_content {display: block;overflow: hidden;}
.move_txt_content .movetxt {
	display: block;
	transition: .8s ease-in-out;
	transform: translate3d(0,100%,0) skewY(12deg);
	transform-origin: left;
	line-height: 1.7;
}
.move_txt_content .movetxt.isActive {transform: translate3d(0,0,0) skewY(0);}
/* 滑らかに文字が出現する */
.flowing {display: block;opacity: 0;overflow: hidden;}
.flowing.isActive {
	opacity: 1;
	white-space: nowrap;
	overflow: hidden;
	animation: flowing-anim 1s forwards linear;
}
@keyframes flowing-anim {
	0% {
		opacity: 0;
		width: 0%;
	}
	100% {
		opacity: 1;
		width: 100%;
	}
}
.flowing.delay1 {animation-delay: 2s;}
/* 上下のアニメーション*/
.UpAnime {
	display: inline-block;
	opacity: 0;
	overflow: hidden;
}
.UpAnime.isActive {
	display: block;
	opacity: 0;
	animation-name: slideTextY100;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
@keyframes slideTextY100 {
	from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.UpAnime span {line-height: 1.4;}
.UpAnime span.isActive {
	opacity: 0;
	display: inline-block;
	animation-name: slideTextY-100;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
@keyframes slideTextY-100 {
	from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 滑らか左から文字が出現する */
.leftAnime {
	display: inline-block;
	opacity: 0;
	overflow: hidden;
	position: relative;
}
.leftAnime.isActive {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes slideTextX100 {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
.leftAnime .leftAnime_in.isActive {
	opacity: 0;
	display: inline-block;
	position: relative;
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
}
@keyframes slideTextX-100 {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
/* ボーダーが下から上へ伸びる */
.upBorder {position: relative;margin-bottom: 10px;}
.upBorder::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 0;
	background: #E1E1E1;
	transition: all 2s;
}
.upBorder.isActive::before {display: inline-block;height: 100%;}
/* 文字上のボーダーが左から右へ伸びる */
.topBorder {position: relative;}
.topBorder::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #222;
	transition: all 3s;
}
.topBorder.isActive::before {display: inline-block;width: 100%;}
/* 文字下のボーダーが左から右へ伸びる */
.bottomBorder {position: relative;}
.bottomBorder::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #222;
	transition: all 1.5s;
}
.bottomBorder.isActive::before {display: inline-block;width: 100%;}
/* 文字下のボーダーが真ん中から伸横にびる */
.centerBorder {position: relative;text-align: center;}
.centerBorder::before {
	content: '';
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: -1;
	width: 0;
	height: 1px;
	background: #707070;
	transition: all 1s;
}
.centerBorder.isActive::before {display: inline-block;width: 100%;}
/* じわっと文字が出てくる */
.blur {opacity: 0;}
.blur.isActive {
	animation-name: blurAnime;
	animation-duration: 2.5s;
	animation-fill-mode: forwards;
}
@keyframes blurAnime {
	from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
	}
	to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}
/* 背景色が伸びたあとに文字が出現する */
/*全共通*/
.bgextend {
	display: inline-block;
	position: relative;
	overflow: hidden;
	opacity:0;
	animation-name: bgextendAnimeBase;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
@keyframes bgextendAnimeBase {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;  
	}
}
/*中の要素*/
.bgappear {
	display: inline-block;
	opacity: 0;
	padding: 5px 20px;
	background: #BE0202;
	color: #fff;
	font-weight: 700;
	font-size: calc(18px + 6 * ((100vw - 375px) / 1605));
	line-height: 1.4;
	animation-name: bgextendAnimeSecond;
	animation-duration: 1s;
	animation-delay: 0.6s;
	animation-fill-mode: forwards;
}
@keyframes bgextendAnimeSecond {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*右から左*/
.bgLRextend::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #111;
	animation-name: bgLRextendAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
@keyframes bgLRextendAnime {
	0% {
		transform-origin: left;
		transform: scaleX(0);
	}
	50% {
		transform-origin: left;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: right;
	}
	100% {
		transform-origin: right;
		transform: scaleX(0);
	}
}
.bgappearTrigger,
.bgLRextendTrigger {opacity: 0;}
/*------------------------------------------------

    画像に使える animation

------------------------------------------------*/
/* スライドイン表示後に画像にマスクがスライドアウト （グラデーションあり）*/
.smooth {
	position: relative;
	clip-path: inset(0 100% 0 0);
	transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
	transition-property: clip-path;
	height: 100%;
	margin-bottom: 25px;
	overflow: hidden;
}
.smooth.isActive {clip-path: inset(0);}
.smooth::after {
	content: '';
	opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 1;
    width: 100%;
    height: 100%;
	background-size: 200% auto;
	background-image: linear-gradient(to left, #003BFF 0%, #fff 51%, #003BFF 100%);
	transition: .3s;
}
.smooth:hover::after {background-position: right center;}
/* スライドイン表示後に画像にマスクがスライドアウト （グラデーションなし）*/
.imgcover {position:relative;overflow:hidden;}
.imgcover.isActive::after {  
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background-color: #341D14;
	animation: secondaryImageOverlayIn 0.6s 0s cubic-bezier(.77, 0, .175, 1.2),
			 secondaryImageOverlayOut 0.6s 0.6s cubic-bezier(.77, 0, .175, 1.2);
	animation-fill-mode: both;
}
@keyframes secondaryImageOverlayIn {
    0% {
      width: 0;
    }
    100% {
      width:  100%;
    }
}
@keyframes secondaryImageOverlayOut {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(102%);
    }
}
.imgcover img,
.imgcover figcaption {opacity: 0;}
.imgcover.isActive img,
.imgcover.isActive figcaption {
	animation:fadeIn 0.1s 0.5s; 
	animation-fill-mode: both;
}
@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}