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

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 {
	position:relative;
	background-color:#fff;
}

#mainMenu div a {
	color:#0b3f55;
	text-shadow:none;
}

#mainMenu div a:hover {
	color:#0c6390;
	text-shadow:none;
}

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

	100% {
		opacity:1;
	}
}

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

	100% {
		opacity:1;
	}
}

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

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

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

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

/**********************************************
	セクション
**********************************************/
.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;
}

.sectionTitle {
	position:relative;
	font-family:"Oswald";
	font-size:3rem;
	font-weight:300;
	color:#0b3f55;
}

.sectionTitle::before {
	position:absolute;
	content:"";
	width:4rem;
	height:0.5rem;
	left:0;
	top:-1rem;
	background-color:#8fc348;
	border-radius:5px;
}

.sectionSubTitle {
	margin-bottom:1rem;
	font-size:1.45rem;
	font-weight:400;
	color:#0b3f55;
}

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

	.sectionSubTitle {
		font-size:1.1rem;
	}

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