@charset 'UTF-8';

/*------------------------------------------------
cnt-block
------------------------------------------------*/

.cnt-block {
	position: relative;
}
.cnt-block__in {
	max-width: 1500px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 50px;
	padding-left: 50px;
}

/*------------------------------------------------
animation
------------------------------------------------*/

/*------------ scr-effect01 ------------*/

.scr-effect01 {
	position: relative;
	display: inline-block;
	overflow: hidden;
}
.scr-effect01::before {
	content: '';
	position: absolute;
	z-index: 5;
	top: 0;
	right: 100%;
	display: block;
	width: 100%;
	height: 100%;
	background-image: #0e192d;
	background-image: -webkit-linear-gradient(top right, #0e192d 0%, #0e192d 100%);
	background-image:      -o-linear-gradient(top right, #0e192d 0%, #0e192d 100%);
	background-image:         linear-gradient(to bottom left, #0e192d 0%, #0e192d 100%);
}
.scr-effect01__in {
	display: block;
	opacity: 0;
}
.scr_active .scr-effect01__in {
	animation: anim02 1s cubic-bezier(.6,0,.3,1) forwards;
}
.scr_active .scr-effect01::before {
	animation: anim01 1s cubic-bezier(.6,0,.3,1) forwards;
}
@keyframes anim01 {
	0% {
		right: 100%;
	}
	50% {
		right: 0;
	}
	100% {
		right: -100%;
	}
}
@keyframes anim02 {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes anim03 {
	0% {
		left: 100%;
	}
	50% {
		left: 0;
	}
	100% {
		left: -100%;
	}
}

/*------------ scr-effect02 ------------*/

.scr-effect02 {
	position: relative;
	overflow: hidden;
}
.scr-effect02::before {
	content: '';
	position: absolute;
	z-index: 5;
	top: 0;
	right: 100%;
	display: block;
	width: 100%;
	height: 100%;
	background-image: -webkit-linear-gradient(top right, #0e192d 0%, #0e192d 100%);
	background-image:      -o-linear-gradient(top right, #0e192d 0%, #0e192d 100%);
	background-image:         linear-gradient(to bottom left, #0e192d 0%, #0e192d 100%);
}
/* option ------------*/
.scr-effect02--r::before {
	right: auto;
	left: 100%;
}
/* /option -----------*/
.scr-effect02__in {
	display: block;
	opacity: 0;
}
.scr-effect02.scr_active .scr-effect02__in {
	animation: anim02 1s cubic-bezier(.6,0,.3,1) forwards;
}
.scr-effect02.scr_active::before {
	animation: anim01 1s cubic-bezier(.6,0,.3,1) forwards;
}
.scr-effect02--r.scr_active::before {
	animation: anim03 1s cubic-bezier(.6,0,.3,1) forwards;
}

/*------------------------------------------------
linkbtn01
------------------------------------------------*/

.linkbtn01 {
	font-size: 15px;
	font-weight: bold;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	width: 280px;
	height: 50px;
	padding-left: 30px;
	cursor: pointer;
	transition: .3s;
	letter-spacing: .05em;
	color: #0e192d;
	border-radius: 50px;
	background-image: -webkit-linear-gradient(top right, #0e192d 0%, #0e192d 100%);
	background-image:      -o-linear-gradient(top right, #0e192d 0%, #0e192d 100%);
	background-image:         linear-gradient(to bottom left, #0e192d 0%, #0e192d 100%);
}
.linkbtn01::before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: block;
	width: 274px;
	height: 44px;
	margin: auto;
	transition: .3s;
	border-radius: 50px;
	background-color: #fff;
}
.linkbtn01::after {
	content: '\f105';
	font-family: fontawesome;
	font-size: 20px;
	line-height: 1;
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	right: 25px;
	display: block;
	height: 1em;
	margin: auto;
	transition: .3s;
}
.linkbtn01__in {
	position: relative;
	z-index: 2;
}
@media screen and (min-width: 768px) {
	.linkbtn01:hover {
		color: #fff;
	}
	.linkbtn01:hover::before {
		opacity: 0;
	}
	.linkbtn01:hover::after {
		right: 22px;
	}
}

/*------------------------------------------------
è¦‹å‡ºã—
------------------------------------------------*/

.cnt-ttl__wrap {
	text-align: center;
}
.cnt-ttl__in {
	line-height: 1;
	display: inline-block;
	overflow: hidden;
	text-align: center;
}
.cnt-ttl {
	font-size: 14px;
	font-weight: bold;
	transition: 1.3s cubic-bezier(.165, .84, .44, 1);
	transition-delay: .5s;
	letter-spacing: .15em;
	opacity: 0;
	color: #636363;
}
.cnt-ttl-en {
	font-size: 50px;
	font-weight: bold;
	margin-top: 5px;
	letter-spacing: .1em;
}
.cnt-ttl-en span {
	display: inline-block;
	transition: .8s cubic-bezier(.165, .84, .44, 1);
	transform: translateY(10px);
	opacity: 0;
	color: #333;
}
.cnt-ttl-en span:nth-child(odd) {
	transform: translateY(-10px);
}

.cnt-ttl-en span:nth-of-type(1) {
	color: #333;
}
.cnt-ttl-en span:nth-of-type(2) {
	transition-delay: .05s;
}
.cnt-ttl-en span:nth-of-type(3) {
	transition-delay: .1s;
}
.cnt-ttl-en span:nth-of-type(4) {
	transition-delay: .15s;
}
.cnt-ttl-en span:nth-of-type(5) {
	transition-delay: .2s;
}
.cnt-ttl-en span:nth-of-type(6) {
	transition-delay: .25s;
}
.cnt-ttl-en span:nth-of-type(7) {
	transition-delay: .3s;
}
.cnt-ttl-en span:nth-of-type(8) {
	transition-delay: .35s;
}
.cnt-ttl-en span:nth-of-type(9) {
	transition-delay: .4s;
}
.cnt-ttl-en span:nth-of-type(10) {
	transition-delay: .45s;
}
.cnt-ttl-en span:nth-of-type(11) {
	transition-delay: .5s;
}
.cnt-ttl-en span:nth-of-type(12) {
	transition-delay: .55s;
}
.cnt-ttl__txt {
	font-size: 17px;
	margin-top: 10px;
	/*font-weight: bold;*/
	letter-spacing: .05em;
}

/* animation ------------*/

.cnt-ttl__wrap.scr_active .cnt-ttl-en span {
	transform: translateY(0px);
	opacity: 1;
}
.cnt-ttl__wrap.scr_active .cnt-ttl {
	opacity: 1;
}

/* /animation -----------*/



/* ---------------------------------------------------------------- SP ---- */

@media screen and (max-width: 767px) {
	/*------------------------------------------------
	cnt-block
	------------------------------------------------*/

	.cnt-block {
	}
	.cnt-block__in {
		max-width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}

	/*------------------------------------------------
	linkbtn01
	------------------------------------------------*/

	.linkbtn01 {
		font-size: 12px;
		width: 250px;
		height: 45px;
		padding-left: 20px;
	}
	.linkbtn01::before {
		width: 246px;
		height: 41px;
	}
	.linkbtn01::after {
		font-size: 18px;
		right: 20px;
	}

	/*------------------------------------------------
	è¦‹å‡ºã—
	------------------------------------------------*/

	.cnt-ttl {
		font-size: 12px;
	}
	.cnt-ttl-en {
		font-size: 30px;
		margin-top: 5px;
	}
	.cnt-ttl-en span {
		transform: translateY(5px);
	}
	.cnt-ttl-en span:nth-child(odd) {
		transform: translateY(-5px);
	}
	.cnt-ttl__txt{
		text-align: left;
		line-height: 1.6;
		font-size: 13px;
	}

}
