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

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;
}

/**********************************************
	ヘッダー
**********************************************/
#header {
	background-color:#00244c;
}

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

	100% {
		opacity:1;
	}
}

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

	100% {
		opacity:1;
	}
}

/**********************************************
	ページタイトル
**********************************************/
#pageTitleBlock {
	z-index:999;
	position:relative;
	padding:14rem 0 6rem 0;
}

#pageTitle {
	text-align:center;
	font-weight:700;
	font-size:3.6rem;
	color:#00244c;
}

@media (orientation:portrait) {
	#pageTitleBlock {
		margin-top:64px;
		padding:4rem 0;
	}

	#pageTitle {
		font-size:2.2rem;
	}
}

/**********************************************
	セクション
**********************************************/
.sectionBlock {
	background-color:#fff;
}

.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;
}

.sectionTitle {
	margin:2rem auto;
	line-height:1;
	font-size:2rem;
	font-weight:700;
}

.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;
	}

	.sectionTitle {
		font-size:1.6rem;
	}

	.sectionTitle br {
		display:block;
	}
}

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

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

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