/* ====================================
	フォント
 ==================================== */


/* ====================================
	共通スタイル
 ==================================== */


/* カラー */
.bg-light-blue {
	/* background-color: #F2F9FC; */
	background-color: #F2F9FC;
}



#mainVisual {
	position: relative;
}



#mainVisual .main-title {
	position: absolute;
	right: 0;
	top: 95%;
	transform: translate(0, -50%);
	background-color: #008EC8;
	color: #fff;
	text-align: right;
}

#mainVisual .main-title .text::before {
	position: relative;
	top: -4px;
	left: 0;
	/* transform: translateY(-50%); */
	content: '';
	width: 20px;
	height: 1px;
	background-color: #fff;
	display: inline-block;
	margin-right: 1rem;
}

.page-navi-container {
	margin-top: 5rem;
}

.page-navi-container ul.list-page-navi {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	line-height: 2;
}


.page-navi-container ul li span {
	margin-right: 6rem;
	display: inline-block;
	position: relative;
}

.page-navi-container ul li span::after {
	content: '';
	position: absolute;
	top: 45%;
	right: -40px;
	width: 10px;
	height: 10px;
	display: inline-block;
	margin-right: 2rem;
	border-right: 1px solid #008EC8;
	border-bottom: 1px solid #008EC8;
	transform: translateY(-50%) rotate(45deg);

}

.sub-section .sub-ttl {
	font-weight: 300;
	letter-spacing: .1em;
}

#mainVisual .main-title .title {
	letter-spacing: .05em;
}

/* ====================================
	767px以下専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
	#mainVisual {
		padding-top: 90px;
	}

	#mainVisual .main-img {
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center center;
		padding-bottom: 210px;
	}

	#mainVisual .main-title {
		padding: .8rem 5% 1rem 0;
		width: 90%;
		max-width: 360px;
	}


	#mainVisual .main-title .title {
		font-size: 3rem;
		line-height: 1.2;
	}

	#mainVisual .main-title .text {
		font-size: 1.2rem;
	}

	.page-navi-container {
		padding-bottom: 4rem;
	}

	.page-navi-container ul.list-page-navi {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		line-height: 2.6;
		font-size: 1.2rem;
	}

	.sub-section {
		padding-bottom: 10rem;
	}


	.sub-section .sub-ttl {
		font-size: 2.2rem;
		margin-bottom: 3.4rem;
		padding-bottom: 1.4rem;
	}

	.sub-section .sub-ttl {
		color: #008EC8;
		position: relative;
		border-bottom: solid 1px #C2E3F2;
	}

	.sub-section .sub-ttl::after {
		content: '';
		position: absolute;
		content: " ";
		display: block;
		border-bottom: solid 1px #008EC8;
		bottom: -1px;
		left: 32px;
		transform: translate(-50%, 0);
		width: 65px;
	}

	.btn-wrap.yoyaku {
		margin-top: 6rem;
	}

}

/* ====================================
	768px以上印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 768px) {

	/* グローバルヘッダー */


	#mainVisual {
		padding-top: 120px;
	}

	/* #mainVisual .main-img {
		background-image: url(../../about/images/mv-about.jpg);
		background-size: 100%;
		background-repeat: no-repeat;
		padding-bottom: 20vw;
	} */

	#mainVisual .main-img {
		background-size: 100%;
		background-repeat: no-repeat;
		/* padding-bottom: 20vw; */
		width: 100%;
		height: 300px;
		/* margin-bottom: 14vw; */
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		/* background-attachment: fixed; */
		position: relative;
	}

	#mainVisual .main-title {
		padding: 2rem 14rem 2rem 14rem;
	}

	#mainVisual .main-title .title {
		font-size: 4rem;
		line-height: 1;
	}

	#mainVisual .main-title .text {
		font-size: 1.4rem;
	}

	.page-navi-container {
		padding-bottom: 14rem;
	}

	.sub-section {
		padding-bottom: 20rem;
	}

	.sub-section .sub-ttl {
		font-size: 3.6rem;
		margin-bottom: 10rem;
		padding-bottom: 2.5rem;
	}

	.sub-section .sub-ttl {
		text-align: center;
		color: #008EC8;
		position: relative;
		border-bottom: solid 1px #C2E3F2;
	}

	.sub-section .sub-ttl::after {
		content: '';
		position: absolute;
		content: " ";
		display: block;
		border-bottom: solid 1px #008EC8;
		bottom: -1px;
		left: 50%;
		transform: translate(-50%, 0);
		width: 140px;
	}
	 .btn-wrap.yoyaku {
		margin-top: 10rem;
	} 
}

/* ====================================
	768px以上1023px以下専用スタイル
===================================== */
@media only screen and (min-width: 768px) and (max-width: 1023px) {

	#mainVisual {
		padding-top: 120px;
	}

	#mainVisual .main-title {
		padding: .8rem 6rem .8rem 12rem;
		/* width: 60%; */
	}

	.sub-section {
		padding-bottom: 16rem;
	}
}


/* ====================================
	1024px以上1199px以下専用スタイル
===================================== */
@media print,
screen and (min-width: 1024px) and (max-width: 1199px) {}

/* ====================================
	1200px以上専用スタイル
===================================== */
@media screen and (min-width: 1200px) {
	/* #mainVisual .main-img {
		background-image: url(../../about/images/mv-about.jpg);
		background-size: 100%;
		background-repeat: no-repeat;
		padding-bottom: 30rem;
	} */

}

/* ====================================
	1500px以上専用スタイル
===================================== */
@media screen and (min-width: 1500px) {

	/* #mainVisual .main-img {
		background-image: url(../../about/images/mv-about.jpg);
		background-size: 100%;
		background-repeat: no-repeat;
		height: 300px;
		padding-bottom: 16vw;
	} */
}

/* ====================================
	IE
===================================== */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {}