/**********************************************
	サイト構成
**********************************************/
html {
	margin:0;
	padding:0;
	font-family:"Noto Serif JP", serif;
	font-weight:400;
	font-style:normal;
	color:#00425d;
}

body {
	position:relative;
	margin:0;
	padding:0;
	-webkit-animation:fadeIn 0.5s ease 0s 1 normal;
	animation:fadeIn 0.5s ease 0s 1 normal;
}

#wrapper {
	position:relative;
	margin:0;
	padding:0;
	text-align:left;
	background-color:#eefbff;
}

/**********************************************
	ページ設定
**********************************************/
@-webkit-keyframes fadeIn {
	0% {
		opacity:0;
	}

	100% {
		opacity:1;
	}
}

@keyframes fadeIn {
	0% {
		opacity:0;
	}

	100% {
		opacity:1;
	}
}

/**********************************************
	ページタイトル
**********************************************/
#pageTitleBlock {
	z-index:999;
	position:relative;
	padding:12rem 0 6rem 0;
	width:100%;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	background-image:url("../layout/pageHeader.jpg");
}

#pageTitle {
	text-align:center;
	letter-spacing:1.25rem;
	font-weight:700;
	font-size:3.2rem;
	color:#fff;
	text-shadow:2px 2px 8px rgba(0,0,0,1);
}

#pageTitle br {
	display:none;
}

@media (orientation:portrait) {
	#pageTitleBlock {
		padding:8rem 0 4rem 0;
	}

	#pageTitle {
		letter-spacing:0;
		font-size:2rem;
	}

	#pageTitle br {
		display:block;
	}
}

/**********************************************
	セクション
**********************************************/
.sectionBlock {
}

.sectionBlockInner {
	margin:0 auto;
	padding:4rem 1rem;
	max-width:1280px;
}

.sectionBlockInner1024 {
	margin:0 auto;
	padding:4rem 1rem;
	max-width:1024px;
}

.sectionBlockInner800 {
	margin:0 auto;
	padding:4rem 1rem;
	max-width:800px;
}

.sectionTitleBlock {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
	position:relative;
	height:12rem;
}

.sectionTitle {
	position:absolute;
	z-index:100;
	font-size:2.5rem;
	font-weight:600;
	color:#0b3f55;
}

.sectionSubTitle {
	position:absolute;
	z-index:99;
	margin-left:4rem;
	font-family:"Oswald";
	font-size:8rem;
	font-weight:300;
	color:#fff;
}

.sectionText {
	margin-bottom:2rem;
	font-size:1.1rem;
}

@media screen and (max-width:768px) {
	.sectionBlockInner {
		padding:2rem 1rem;
	}

	.sectionBlockInner1024 {
		padding:2rem 1rem;
	}

	.sectionBlockInner800 {
		padding:2rem 1rem;
	}

	.sectionTitleBlock {
		height:6rem;
	}

	.sectionTitle {
		font-size:1.8rem;
	}

	.sectionSubTitle {
		margin-left:6rem;
		font-size:4rem;
	}
}

/**********************************************
	分割セクション
**********************************************/
.sectionSepBlock {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:stretch;
	gap:2rem;
}

.sectionSepBlock > div {
	width:calc(50% - 1rem);
}

@media screen and (max-width:840px) {
	.sectionSepBlock > div {
		width:100%;
	}
}
