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



/****************************************************************************************************
contents
****************************************************************************************************/
#contents {
	overflow: hidden;
	background-image: linear-gradient(90deg, rgb(18,67,124), rgb(12,21,50));
}



/****************************************************************************************************
main
****************************************************************************************************/
#main {
	position: relative;
}
#main figure {
	position: relative;
}
#main figure figcaption {
	position: absolute;
	right: 0.8em;
	bottom: 0.8em;
	color: #FFF;
	font-size: 0.733rem;
	font-weight: bold;
}
#main figure img {
	width: 100%;
}



/****************************************************************************************************
point
****************************************************************************************************/
#point {
	padding: 30px 0;
	background: url(../img/top/point-bg.jpg) no-repeat center center;
	background-size: cover;
}
#point h3 {
	color: #FFF;
	font-size: 2rem;
	font-weight: normal;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
#point h3 .small {
	font-size: 1.333rem;
	vertical-align: 3px;
}



/****************************************************************************************************
information
****************************************************************************************************/
#information {
	padding: 100px 0 20px 0;
}
#request-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 1200px;
	margin: 0 auto 0 auto;
}
#request-box p {
	width: 100%;
	margin-top: 16px;
	color: #FFF;
	font-size: 1.333rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
}



/****************************************************************************************************
concept
****************************************************************************************************/
#concept {
	position: relative;
	padding: 140px 0 120px 0;
	background: url(../img/top/concept-bg.png) no-repeat center top;
	background-size: cover;
	color: #FFF;
}
#concept-ttl .eng {
	font-family: Garamond, "Times New Roman", serif;
	font-size: 2rem;
	letter-spacing: 0.1em;
	line-height: 1.4;
}
#concept-text {
	margin-top: 100px;
	text-shadow:
		0 0 20px #0F4396,
		0 0 20px #0F4396,
		0 0 20px #0F4396;
}
#concept-text h2 {
	font-size: 1.733rem;
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
#concept-text h3 {
	font-size: 3.066rem;
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.035em;
}
#concept-text h3 strong {
	font-family: Garamond, "Times New Roman", serif;
	font-size: 3.733rem;
	font-weight: normal;
	vertical-align: -2px;
} 
#concept-text p {
	margin-top: 30px;
	font-size: 1.333rem;
	line-height: 2.2;
	letter-spacing: 0.05em;
}
#concept-copy {
	margin-top: 60px;
}



/****************************************************************************************************
index
****************************************************************************************************/
#index {
	margin-top: 2px;
}
.index-block {
	overflow: hidden;
}
.index-block + .index-block {
	margin-top: 10px;
}
.index-block a {
	display: block;
	position: relative;
}
.index-block a figure {
	position: relative;
}
.index-block a figure img {
	object-fit: cover;
	width: 100%;
	height: 490px;
}
.index-block a figure figcaption {
	position: absolute;
	right: 0.8em;
	bottom: 0.8em;
	font-size: 0.866rem;
	line-height: 1.2;
}
.index-block a figure figcaption.white {
	color: #FFF;
	font-weight: bold;
	text-shadow:
		0 0 10px rgba(0,0,0,1),
		0 0 10px rgba(0,0,0,1),
		0 0 10px rgba(0,0,0,1);
}
.index-block .index-text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	color: #FFF;
	font-size: 1.733rem;
	line-height: 1.8;
	z-index: 10;
	text-align: left;
}
.index-block .index-text h3 {
	position: relative;
	font-family: Garamond, "Times New Roman", serif;
	font-size: 3.333rem;
	font-weight: normal;
	letter-spacing: 0.15em;
	line-height: 1.2;
}
.index-block .index-text h4 {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 1.866rem;
	font-weight: normal;
	letter-spacing: 0.15em;
	line-height: 1.2;
}
.index-block .index-text p {
	margin-top: 1em;
	font-size: 1.0rem;
	letter-spacing: 0.2em;
	line-height: 2.0;
}
.read-more {
	margin-top: 1.5em;
	font-family: Garamond, "Times New Roman", serif;
	font-size: 1.066rem;
	letter-spacing: 0.2em;
}
.index-block a::after {
	content: "";
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	right: 50%;
	top: 0;
	background: url(../img/top/contens-mark.png) no-repeat right center;
	background-size: cover;
	transition: all 500ms, transform 300ms ease-out;
}
.index-block a:hover::after {
	right: 46%;
}




@media screen and (max-width: 767px),
screen and (max-width: 960px) and (orientation: landscape) {
	.spLeft {
		text-align: left;
	}
	
	
	/****************************************************************************************************
	main
	****************************************************************************************************/
	#main {
	}
	#main figure figcaption {
		font-size: 0.533rem;
	}
	#main figure img {
		width: 120%;
		margin-left: -10%;
	}
	
	
	
	/****************************************************************************************************
	point
	****************************************************************************************************/
	#point {
		padding: 4vw 0;
	}
	#point h3 {
		font-size: 1.266rem;
		letter-spacing: 0;
		line-height: 1.6;
	}
	#point h3 .small {
		font-size: 0.6rem;
		vertical-align: 0.2em;
	}
	
	
	
	/****************************************************************************************************
	information
	****************************************************************************************************/
	#information {
		padding: 4vw 4vw 10vw 4vw;
	}
	#request-box {
		-webkit-box-lines: multiple;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 1vw;
		min-width: initial;
		min-width: auto;
	}
	#request-box > div {
		width: 100%;
	}
	#request-box > div img {
		width: 100%;
	}
	#request-box p {
		width: 100%;
		margin-top: 2vw;
		font-size: 1.0rem;
		text-align: left;
	}
	
	
	
	/****************************************************************************************************
	concept
	****************************************************************************************************/
	#concept {
		padding: 10vw 0 12vw 0;
	}
	#concept-ttl .eng {
		font-size: 1.333rem;
	}
	#concept-text {
		margin-top: 10vw;
		text-shadow:
			0 0 3vw #0F4396,
			0 0 3vw #0F4396,
			0 0 3vw #0F4396;
	}
	#concept-text h2 {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
	#concept-text h3 {
		font-size: 2.4rem;
		letter-spacing: 0;
	}
	#concept-text h3 strong {
		font-size: 2.8rem;
		vertical-align: 0;
	} 
	#concept-text p {
		margin-top: 6vw;
		font-size: 1.0rem;
		letter-spacing: 0;
	}
	#concept-copy {
		width: 80vw;
		margin: auto;
		margin-top: 8vw;
	}
	
	
	
	/****************************************************************************************************
	index
	****************************************************************************************************/
	#index {
		margin-top: 0.5vw;
	}
	.index-block + .index-block {
		margin-top: 2vw;
	}
	.index-block a figure img {
		width: 100%;
		height: 100vw;
		max-height: 100vh;
	}
	.index-block a figure figcaption {
		font-size: 0.533rem;
	}
	.index-block .index-text {
		left: 4vw;
		top: 4vw;
		transform: translate(0, 0);
		width: 92vw;
		font-size: 1.6rem;
	}
	.index-block .index-text h3 {
		font-size: 3.0rem;
	}
	.index-block .index-text h4 {
		position: static;
		transform: translate(0, 0);
		margin-top: 3vw;
		font-size: 1.6rem;
	}
	.index-block .index-text p {
		margin-top: 4vw;
		font-size: 1.0rem;
	}
	.read-more {
		margin-top: 6vw;
		font-size: 1.066rem;
	}
	.index-block a::after {
		height: 28%;
		width: 100%;
		right: 40%;
		top: 0;
		background: url(../img/top/contens-mark.png) no-repeat right center;
		background-size: cover;
	}
	.index-block a:hover::after {
		right: 30%;
	}
}

@media screen and (max-width: 960px) and (orientation: landscape) {
}