@charset "UTF-8";

/**
 * index.css
 *
 * #
 *
*/

/* ==========================================================================
   # loading
   ========================================================================== */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #0f2f6e;
	color:#fff;
	z-index: 9999;
}

#loading-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img { width: 271px; }

.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media screen and (max-width:500px) {
	#splash_logo img { width: 135px; }
}

/* ==========================================================================
   # mainimg
   ========================================================================== */
.l-mainimg {
	overflow: hidden;
	position: relative;
}

/* スライド */
.mainimg-img-wrap {
	overflow: hidden;
	position: relative;
	height: 800px;
	background-color: #0f2f6e;
}
.js-mainimg-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	transform: scale(1);
	transition:
		opacity 0.8s ease-out,
		transform 6.0s ease-in;
	background-size: cover;
	background-position: center;
	opacity: 0;
}
.js-mainimg-img:nth-child(1) { background-image: url("../images/top/bg04.jpg"); }
.js-mainimg-img:nth-child(2) { background-image: url("../images/top/bg01.jpg"); }
.js-mainimg-img:nth-child(3) { background-image: url("../images/top/bg02.jpg"); }
.js-mainimg-img:nth-child(4) { background-image: url("../images/top/bg03.jpg"); }
.js-mainimg-img.is-visible {
	opacity: 1;
	transform: scale(1.1);
}

/* 表示 */
#mainimg01{
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width:500px) {
	.mainimg-img-wrap {
		height: 480px;
	}
	#mainimg01 {
		width: 100px;
	}
}

/* ==========================================================================
   # concept
   ========================================================================== */
.l-concept {
	overflow: hidden;
	padding: 80px 8.3333333333% 60px 80px;
	background: url("../images/top/bg_concept.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}

.concept-img {
	float: right;
	width: 40.1960784314%;
	margin-left: 4.9019607843%;
}
.concept-img img { width: 100%; }

.concept-ttl {
	margin: 20px 0;
	color: #0c0c39;
	font-size: 68px;
	font-family: trajan-pro-3, serif;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
}

.concept-head {
	margin-bottom: 33px;
	font-size: 20px;
	font-family: source-han-serif-japanese, serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.12em;
}

.concept-txt {
	margin-bottom: 33px;
	font-size: 14px;
	line-height: 2;
}

.concept-btn {
	position: relative;
	display: block;
	width: 320px;
	padding: 24px 0;
	color: #333;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	border: 1px solid #333;
}
.concept-btn:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	width: 40px;
	height: 1px;
	background-color: #333;
	transition: background-color 0.8s;
}
.concept-btn:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	width: 5px;
	height: 1px;
	background-color: #333;
	transform-origin: top right;
	transform: rotate(45deg);
	transition: background-color 0.8s;
}
.concept-btn:hover {
	color: #fff;
	background-color: #333;
}
.concept-btn:hover:before { background-color: #fff; }
.concept-btn:hover:after { background-color: #fff; }

@media screen and (max-width:500px) {
	.l-concept {
		padding: 40px 15px 80px;
	}
	.concept-img {
		width: 140px;
		margin: -20px 0 0 ;
	}
	.concept-ttl {
		margin: 40px 0 10px;
		font-size: 32px;
	}
	.concept-head {
		font-size: 16px;
	}
	.concept-btn {
		width: 100%;
		background-color: #fff;
	}
}

/* ==========================================================================
   # company
   ========================================================================== */
.l-company {
	overflow: hidden;
	position: relative;
	padding: 120px 46.6666666667% 120px 40px;
}

.company-map {
	position: absolute;
	bottom: 0;
	right: 40px;
	width: 40%;
	max-width: 480px;
}
.company-map img { width: 100%; }

.company-ttl {
	margin-bottom: 40px;
	color: #0c0c39;
	font-size: 68px;
	font-family: trajan-pro-3, serif;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
}

.company-head {
	margin-bottom: 33px;
	font-size: 32px;
	font-family: source-han-serif-japanese, serif;
	font-weight: 400;
	line-height: 1;
}
.company-head .sub {
	display: block;
	margin-bottom: 15px;
	font-size: 24px;
	letter-spacing: 0.12em;
}

.company-txt {
	margin-bottom: 33px;
	font-size: 14px;
	line-height: 2;
}

.company-btn {
	position: relative;
	display: block;
	width: 320px;
	padding: 24px 0;
	color: #333;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	border: 1px solid #333;
}
.company-btn:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	width: 40px;
	height: 1px;
	background-color: #333;
	transition: background-color 0.8s;
}
.company-btn:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	width: 5px;
	height: 1px;
	background-color: #333;
	transform-origin: top right;
	transform: rotate(45deg);
	transition: background-color 0.8s;
}
.company-btn:hover {
	color: #fff;
	background-color: #333;
}
.company-btn:hover:before { background-color: #fff; }
.company-btn:hover:after { background-color: #fff; }

@media screen and (max-width:500px) {
	.l-company {
		padding: 40px 15px 80px;
	}
	.company-ttl {
		margin-bottom: 15px;
		font-size: 32px;
	}
	.company-head {
		margin-bottom: 15px;
		font-size: 24px;
	}
	.company-head .sub {
		margin-bottom: 10px;
		font-size: 14px;
	}
	.company-map {
		right: -100px;
		bottom: 144px;
		width: 240px;
	}
	.company-txt {
		padding-right: 110px;
		font-size: 13px;
		line-height: 1.8;
	}
	.company-btn {
		width: auto;
	}
}
