/*-------------------------------------------------------------------------------------------loading----------*/

/*========= ローディング画面のためのCSS ===============*/
#splash{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	background: var(--page-bg);
	text-align:center;
	color:#fff;
}

#splash_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img{
	width: 290px;
}
#splash_logo .blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
	from {
		filter: blur(10px);
		transform: scale(1.02);
	}
	to {
		filter: blur(0);
		transform: scale(1);
	}
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
	display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
	display: block;
	content: "";
	position:fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	transform: scaleX(0);
	background: var(--color-yellow);/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:.8s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0%{
	transform-origin:right;
	transform:scaleX(0);
	}
	50%{
	transform-origin:right;
	transform:scaleX(1);
	}
	50.001%{
	transform-origin:left;
	}
	100%{
	transform-origin:left;
	transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

@media screen and (max-width:650px){
	#splash_logo img{
		width: 70vw;
		max-width: 250px;
	}
}

/*-------------------------------------------------------------------------------------------scrolldown----------*/

.scrolldown{
	position: absolute;
	bottom: 4lvh;
	right: 3vw;
	z-index: 5;
	width: 130px;
	height: 130px;
}
.scrolldown .arrow{
	position: absolute;
	right: 43%;
	top: 36%;
	width: 16px;
	height: 32px;
	transition: all .25s;
}
.scrolldown:hover .arrow{
	top: 40%;
}
.scrolldown .circle_anime img{
	animation: rotate-anime 20s linear infinite;
}
@keyframes rotate-anime{
	0% {transform: rotate(0);}
	100% {transform: rotate(360deg);}
}
.scrolldown img{
	width: 100%;
	height: auto;
}
@media screen and (max-width:1100px){
	.scrolldown{
	width: 100px;
	height: 100px;
	}
	.scrolldown .arrow{
	width: 14px;
	height: 28px;
	}
}
@media screen and (max-width:650px){
	.scrolldown{
	bottom: 16svh;
	right: 5vw;
	width: 80px;
	height: 80px;
	}
	.scrolldown .arrow{
	width: 10px;
	height: 24px;
	}
}


/*-------------------------------------------------------------------------------------------main_copy----------*/


#main_copy{
	position: relative;
	width: 100%;
}
#main_copy h2 img{
	width: 42svw;
	max-width: 800px;
	height: auto;
}
.svg_txt{
	position: relative;
	max-width: 320px;
	height: auto;
	margin: -26px auto 0 50%;
}
/* マスクのCSS */
.cls-1{
	fill:none;
	stroke:#fff;
	stroke-width:6;
	stroke-miterlimit:10;
}

@media screen and (max-width:1100px){
	
	#main_copy h2 img{
	width: 50svw;
	}
	.svg_txt{
	max-width: 300px;
	margin: -20px auto 0 50%;
	}
}

@media screen and (max-width:650px){
	
	#main_copy h2 img{
	width: 100%;
	max-width: inherit;
	min-width: inherit;
	}
	.svg_txt{
	width: 70%;
	max-width: 180px;
	margin: -6% 0 0 auto;
	}
}


/*-------------------------------------------------------------------------------------------loop_text----------*/


.loop{
	overflow: hidden;
	padding-top: 100px;
	mix-blend-mode: multiply;	/*乗算*/
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
.loop_text{
	display: flex;
	width: 100vw;
	height: 110px;
	overflow: hidden;
}
.loop_text img{
	flex: 0 0 auto;
	white-space: nowrap;
	object-fit: cover;
	width: auto;
	height: 100%;
}
.loop_text img:first-child{
	animation: loop 80s -40s linear infinite;
}
.loop_text img:last-child{
	animation: loop2 80s linear infinite;
}
@keyframes loop{
	0%{ transform: translateX(100%); }
	to{ transform: translateX(-100%); }
}
@keyframes loop2{
	0%{ transform: translateX(0); }
	to{ transform: translateX(-200%); }
}

@media screen and (max-width:1100px){
	
	.loop_text{
	height: 80px;
	}
}
@media screen and (max-width:650px){
	
	.loop_text{
	height: 66px;
	}
	.loop_text img:first-child{
		animation: loop 30s -15s linear infinite;
	}
	.loop_text img:last-child{
		animation: loop2 30s linear infinite;
	}
}


/*-------------------------------------------------------------------------------------------service----------*/


.service_item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.service_item li{
	position: relative;
	width: 100%;
}
.service_item li a{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 34px;
}
.service_item li a .icon{
	width: 80px;
}
.service_item li a .icon img{
	width: 80px;
	height: 80px;
}
.service_item li a .tit{
	width: calc(100% - 110px);
	font-size: 21px;
	letter-spacing: 0.2em;
	padding-bottom: 20px;
	background: linear-gradient(90deg, #2d3032 0 10px, transparent 10px 14px, #2d3032 0 500px);
	background-repeat: no-repeat;
	background-size: 100% 1px;
	background-position: bottom;
	text-decoration: none;
}
.service_item a .ico_arrow{
	top: 28%;
}

@media screen and (max-width:1100px){
	.service_item li a{
	margin-bottom: 5%;
	}
	.service_item li a .tit{
	font-size: 19px;
	}
}

@media screen and (max-width:650px){
	.service_item li a{
	margin-bottom: 8%;
	}
	.service_item li a .icon{
	width: 60px;
	}
	.service_item li a .icon img{
	width: 60px;
	height: 60px;
	}
	.service_item li a .tit{
	width: calc(100% - 72px);
	font-size: 15px;
	}
	.service_item li a .tit p{
	padding-left: 2%;
	}
}


/*-------------------------------------------------------------------------------------------other----------*/


.top_page .parallax_img{
	margin: -10px auto 0;
	width: 100%;
	height: auto;
}