/*--------------------------------------------------*/
/* .page-header */
/*--------------------------------------------------*/

.lower-page .page-header {
	overflow: hidden;
	position: relative;
	padding-bottom: 70px;
}
.lower-page .page-header .bg-img {
	position: absolute;
	left: calc(50% + 200px);
	bottom: 0;
}
@media (max-width: 991px) {
	.lower-page .page-header .bg-img {
		width: 400px;
	}
}
@media (max-width: 767px) {
	.lower-page .page-header {
    padding-bottom: 20px;
	}
	.lower-page .page-header .bg-img {
		bottom: -22px;
		left: 55%;
		width: 225px;
	}
}

/*--------------------------------------------------*/
/* mv */
/*--------------------------------------------------*/

.lower-page .mv {
	background-position: top center;
	background-repeat: no-repeat;
}
.lower-page .mv .layer {
	background-position: bottom center;
	background-repeat: no-repeat;
}
.lower-page .mv .title-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
	height: 650px;
}
.lower-page .mv .title-wrapper dl {
	display: inline-block;
	margin: 0 auto;
	color: #ffffff;
}
.lower-page .mv .title-wrapper dl dt {
	border-bottom: 0.5px solid #ffffff;
	padding-bottom: 10px;
}
.lower-page .mv .title-wrapper dl dt .page-title {
	font-size: 38px;
	line-height: 1.4;
	margin: 0;
	color: #ffffff;
}
.lower-page .mv .title-wrapper dl dd {
	font-size: 22px;
	padding-top: 10px;
	letter-spacing: 0.05em;
}
@media (max-width: 991px) {
	.lower-page .mv {
    background-size: cover;
	}
	.lower-page .mv .title-wrapper {
    height: 550px;
	}
	.lower-page .mv .layer {
		background-size: 100%;
	}
}
@media (max-width: 767px) {
	.lower-page .mv .title-wrapper {
    height: 450px;
	}
	.lower-page .mv .title-wrapper dl dt .page-title {
		font-size: 24px;
	}
	.lower-page .mv .title-wrapper dl dd {
		font-size: 16px;
	}
}
@media (max-width: 575px) {
	.lower-page .mv .title-wrapper {
    height: 350px;
	}
}

/* アニメーション */
.lower-page .mv .title-wrapper .page-title {
	opacity: 0;
	animation: fadeIn_01 1s ease 0.5s 1 normal forwards;
}
@keyframes fadeIn_01 {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.lower-page .mv .title-wrapper dl dd {
	opacity: 0;
	animation: fadeIn_02 1s ease 0.5s 1 normal forwards;
}
@keyframes fadeIn_02 {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 2;
		transform: translateY(0);
	}
}

/*--------------------------------------------------*/
/* local-nav */
/*--------------------------------------------------*/

.lower-page .local-nav {
	position: relative;
	margin-top: -120px;
	line-height: 1.6;
}
.lower-page .local-nav:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(50% - 540px);
	min-width: 40px;
	height: 100%;
	background-color: #214e9c;
}
.lower-page .local-nav .nav-wrapper {
	position: relative;
	max-width: 470px;
	background-color: #214e9c;
	border-radius: 0 10px 10px 0;
	padding: 40px 0 30px 0;
	z-index: 1;
}
.lower-page .local-nav .nav-wrapper ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.lower-page .local-nav .nav-wrapper ul li {
	width: 50%;
	padding-right: 2em;
	margin-bottom: 10px;
}
.lower-page .local-nav .nav-wrapper ul li a {
	font-size: 18px;
	font-weight: bold;
	padding-left: 30px;
	color: #ffffff;
}
.lower-page .local-nav .nav-wrapper ul li a:hover,
.lower-page .local-nav .nav-wrapper ul li a.current {
	background-image: url(../img/lowerpage/arrow-localnav.png);
	background-repeat: no-repeat;
	background-position: left center;
	text-decoration: underline;
}
@media (max-width: 767px) {
	.lower-page .local-nav {
		display: none;
	}
}

/*--------------------------------------------------*/
/* scroll-area */
/*--------------------------------------------------*/

.lower-page .scroll-area {
	position: relative;
	background-image: url(../img/lowerpage/bg-01.png);
	background-repeat: no-repeat;
	background-position: calc(50% + 400px) 0;
	height: 100px;
}
.lower-page .scroll-area .icon {
	content: "";
	width: 42px;
	height: 65px;
	margin: auto;
	text-align: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.lower-page .scroll-area .icon:before {
	content: "";
	width: 42px;
	height: 42px;
	margin: auto;
	background-color: rgba(0,124,192,0.2);
	border-radius: 100px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -21px;
}
.lower-page .scroll-area .line {
	display: inline-block;
	width: 1px;
	height: 65px;
	margin: 0 auto 0;
	animation: scrolldown 2.0s infinite;
	background-color: #007cc5;
	position: absolute;
	top: 0;
}
@keyframes scrolldown {
	0% {
		height: 0;
		top: 0;
	}
	50% {
		height: 100%;
		top: 0;
	}
	100% {
		height: 0;
		top: 100%;
	}
}
@media (max-width: 767px) {
	.lower-page .scroll-area {
		height: 70px;
	}
	.lower-page .scroll-area .icon {
		width: 18px;
		height: 28px;
	}
	.lower-page .scroll-area .icon:before {
		width: 18px;
		height: 18px;
		bottom: -8px;
	}
}


/*--------------------------------------------------*/
/* .page-content */
/*--------------------------------------------------*/

.lower-page .page-content {
	font-size: 18px;
}
@media (max-width: 767px) {
	.lower-page .page-content {
		font-size: 14px;
	}
}


/*--------------------------------------------------*/
/* line-title */
/*--------------------------------------------------*/

.lower-page .line-title dl {
	display: inline-block;
	background-position: top left;
	background-repeat: no-repeat;
	height: 160px;
	padding: 60px 15px 0 15px;
	position: relative;
	text-align: center;
}
.lower-page .line-title.line-blue dl {
	background-image: url(../img/lowerpage/title-line-blue.png);
}
.lower-page .line-title.line-white dl {
	background-image: url(../img/lowerpage/title-line-white.png);
}
.lower-page .line-title dl .en {
	font-size: 46px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	margin: 0;
}
.lower-page .line-title dl .ja {
	font-size: 16px;
	font-weight: normal;
	line-height: 1;
	letter-spacing: 0.1em;
	margin: 5px 0 0 0;
}
@media (max-width: 767px) {
	.lower-page .line-title dl {
		background-size: auto 100%;
		height: 110px;
		padding: 40px 15px 0;
	}
	.lower-page .line-title dl .en {
		font-size: 30px;
	}
	.lower-page .line-title dl .ja {
		padding-left: 0;
		font-size: 12px;
	}
}

/*--------------------------------------------------*/
/* last-elementnt */
/*--------------------------------------------------*/

.lower-page .last-element {
	padding-bottom: 300px;
}
@media (max-width: 767px) {
	.lower-page .last-element {
		padding-bottom: 150px;
	}
}

/*--------------------------------------------------*/
/* contact-form */
/*--------------------------------------------------*/

.lower-page section.contact-form {
	background: linear-gradient(#ECF4F6 80%, #93BDDA);
}
.lower-page section.contact-form .layer {
	background-image: url("../img/common/contact-bg.png");
}
@media (max-width: 767px) {
	
}

/*--------------------------------------------------*/
/* .pagination */
/*--------------------------------------------------*/

.lower-page .pagination {
	justify-content: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin-top: 100px;
}
.lower-page .pagination .page-item .page-link {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	line-height: 1;
	color: #2E4E95;
	background-color: #EEEEEE;
	border: none;
	padding: 0;
	margin: 0 5px 5px	;
	transition: 0.3s;
}
.lower-page .pagination .page-item:first-child .page-link,
.lower-page .pagination .page-item:last-child .page-link {
	border-radius: 50%;
	margin: 0 5px;
}
.lower-page .pagination .page-item .page-link:hover,
.lower-page .pagination .page-item.active .page-link {
	background-color: #2E4E95;
	color: #ffffff;
	border: none;
}
@media (max-width: 767px) {
	.lower-page .pagination {
		margin-top: 70px;
	}
}
