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

body {
	position:relative;
	margin:0;
	padding:0;
	width:calc(100% - 11rem);
	-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:#fff;
}

@media screen and (max-width:1023px) {
	body {
		width:100%;
	}
}

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

	100% {
		opacity:1;
	}
}

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

	100% {
		opacity:1;
	}
}

/**********************************************
	ヘッダー上書き
**********************************************/
#contactHeaderBlock {
	text-align:center;
	color:#00425d;
	text-shadow:1px 1px 1px rgba(255,255,255,1);
}

#naviToggle {
	background-color:transparent;
}

/**********************************************
	ページタイトル
**********************************************/
#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) {
	#pageTitle {
		letter-spacing:0;
		font-size:2rem;
	}

	#pageTitle br {
		display:block;
	}
}

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

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

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

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

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

.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:200;
	color:#0b3f55;
}

.sectionSubTitle {
	position:absolute;
	z-index:99;
	margin-left:4rem;
	font-family:"Noto Sans JP";
	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 {
		display:none;
	}
}

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