@charset "UTF-8";

/* --------------------------------------------------

	ローディング

-------------------------------------------------- */

#splash {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: #fff;
	text-align: center;
	color: #000;
}

#splash_text {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#splash_text > svg {
	height: 1px !important;
}

#loading-logo svg polygon {
	animation-name: loading-animation;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	opacity: 0;
}

.cls-1 { fill:#375382; animation-delay: 0s;}
.cls-2 { fill:#e95513; animation-delay: 60ms;}
.cls-3 { fill:#c11856; animation-delay: 120ms;}
.cls-4 { fill:#eeae4c; animation-delay: 180ms;}
.cls-5 { fill:#f0d630; animation-delay: 240ms;}
.cls-6 { fill:#0dac67; animation-delay: 300ms;}
.cls-7 { fill:#009844; animation-delay: 360ms;}
.cls-8 { fill:#71c6d3; animation-delay: 420ms;}

@keyframes loading-animation {
	
	0% {
		opacity: 1;
		animation-timing-function: ease-out;
	}
	
	7% {
		animation-timing-function: linear;
	}
	
	30% {
		animation-timing-function: ease-in-out;
	}
	
	39%   {
		animation-timing-function: linear;
	}
	
	70% {
		opacity: 1;
		animation-timing-function: ease-out;
	}
	
	75%   {
		animation-timing-function: ease-out;
	}
	
	76% {
		opacity: 0;
	}
	
	100% {
		opacity: 0;
	}
}


/* --------------------------------------------------

	キービジュアル

-------------------------------------------------- */

.top-key {
	/*padding: 8.4rem 2rem 9rem;*/
	padding: 3.6rem 2rem 3.6rem;
}

.top-key__title {
	display: none;
}

.top-key__title:before,
.top-key__title:after {
	display: none;
}

@media screen and (max-width: 519px) {
    
    .top-key {
        padding: 2rem 1.2rem 4rem;
    }

    .top-key__title {
		display: block;
        margin: 0 0 2rem;
		padding: 0;
		border: none;
		font-size: 2rem;
		font-weight: 700;
		line-height: 1.4;
		text-align: center;
    }

}


.top-key__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 -25px;
}

.top-key__btn > p {
	max-width: 50%;
	margin: 0;
	padding: 0 25px;
}

@media screen and (max-width: 519px) {
	
	.top-key__btn {
		flex-direction: column;
		margin: 0;
	}
	
	.top-key__btn > p {
		max-width: 100%;
		padding: 0;
	}
	
	.top-key__btn > p + p {
		margin-top: 10px;
	}
	
}


.top-btn {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: block;
    max-width: 100%;
	width: 320px;
	padding: 20px 25px;
	background-color: #fff;
	border: 2px solid #dfdfdf;
	border-radius: 10rem;
	color: #444;
	line-height: 1;
	text-align: center;
	vertical-align: top;
	text-decoration: none;
	transition: .3s;
	letter-spacing: 0;
}

.top-btn:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #444;
	border: 2px solid transparent;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
	border-radius: 10rem;
}

.top-btn:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #239fb4;
	border-right: 1px solid #239fb4;
	transform: rotate(45deg) translateY(-50%);
}

.top-btn:hover {
	background-color: transparent;
	border-color: #444;
	color: #fff;
	text-decoration: none;
}

.top-btn:hover:before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

.top-btn:hover:after {
	border-top-color: #fff;
	border-right-color: #fff;
}



.top-key__logo {
	margin: 0;
	text-align: center;
}

.top-key__logo img {
	width: 360px;
	height: auto;
}

.top-key__nav {
	overflow: hidden;
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.top-key__nav ul {
	display: flex;
	align-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-key__nav li {
    display: flex;
    align-items: center;
    width: 33.33333333%;
}

.top-key__nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5rem 0;
    background-color: #fff;
	color: #333;
    font-size: 1.9rem;
    line-height: 1.5;
    text-align: center;
	text-decoration: none;
}

.top-key__nav li:nth-child(even) a {
    background-color: #efefef;
}

@media screen and (max-width: 519px) {
    
   .top-key__logo {
        margin: 0 0 6.4rem;
    }

    .top-key__logo img {
        width: 240px;
    }

    .top-key__nav a {
        padding: 3.6rem 0;
        font-size: 1.2rem;
    }

}


/* --------------------------------------------------

	OPT

-------------------------------------------------- */

.sitedesign-optblock-row {
    display: flex;
}

.sitedesign-optblock-row .siteblock-opt1,
.sitedesign-optblock-row .siteblock-opt2 {
	display: flex;
	justify-content: flex-end;
    width: 50%;
    padding: 5.2rem 3.2rem 7.2rem;
}

.sitedesign-optblock-row .siteblock-opt2 {
	justify-content: flex-start;
}

.sitedesign-optblock__body {
	max-width: 628px; 
}

@media screen and (max-width: 519px) {
    
    .sitedesign-optblock-row .siteblock-opt1 {
	    padding: 3.2rem 1.2rem;
	}

	.sitedesign-optblock-row .siteblock-opt2 {
    	padding: 3.2rem 1.2rem;
	}

}
