/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	background:#fff;
	color: #444;
	font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	font-size: 13px;
}
a {
	color: #004077;
	transition: 0.5s;
}
a:hover, a:active, a:focus {
	color: #999;
	outline: none;
	text-decoration: none;
}
p {
	padding: 0;
	margin: 0 0 30px 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}
img {
	max-width: 100%;
	height: auto;
}
/* Back to top button */

.back-to-top {
	position: fixed;
	display: none;
	background: #ddd;
	color: #004077;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 16px;
	border-radius: 50%;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
}
.back-to-top i {
	padding-top: 12px;
	color: #004077;
}
/* Prelaoder */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}
#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
	border-top: 6px solid #007bff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}
 @-webkit-keyframes animate-preloader {
	 0% {
	 -webkit-transform: rotate(0deg);
	 transform: rotate(0deg);
	}
	 100% {
	 -webkit-transform: rotate(360deg);
	 transform: rotate(360deg);
	}
	}
	 @keyframes animate-preloader {
	 0% {
	 -webkit-transform: rotate(0deg);
	 transform: rotate(0deg);
	}
	 100% {
	 -webkit-transform: rotate(360deg);
	 transform: rotate(360deg);
	}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	height: 80px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	padding: 20px 0;
}

#header.header-scrolled, #header.header-pages {
	background: #fff;
}
#header .logo h1 {
	font-size: 36px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
	color: #00366f;
	text-decoration: none;
}

#header .logo {
	max-width: 180px;
}

#header .logo img {
	max-width: 100%;
	padding: 0;
}
.main-pages {
	margin-top: 60px;
}
.nav-container {
	width: 100%;
	padding: 0 3%;
}


@media screen and (max-width:767px) {
	#header .logo img {
		max-width: 80%;
		padding:3px 0 0;
	}
}




/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
	width: 100%;
	position: relative;
	background-image: url(../img/top-background.png);
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

#intro h1,
#intro h2 {
	color: #004077;
}

#intro h1 {
	font-weight: 700;
	font-size: 50px;
}

@media screen and (max-width:767px) {
	#intro {
		padding: 60px 0 0 0;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
/* Drop Down */
  /* Deep Drop Down */
}
.main-nav, .main-nav * {
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}
.main-nav a {
	display: block;
	position: relative;
	color: #004077;
	padding: 10px 0;
	transition: 0.3s;
	font-size: 14px;
	font-weight: 500;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #5C97C9;
	text-decoration: none;
}
.main-nav .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.main-nav .drop-down li {
	min-width: 180px;
	position: relative;
}
.main-nav .drop-down ul a {
	padding: 10px 20px;
	font-size: 13px;
	color: #004289;
}
.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
	color: #007bff;
}
.main-nav .drop-down > a:after {
	content: "\f107";
	font-family: FontAwesome;
	padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.main-nav .drop-down .drop-down > a {
	padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
	content: "\f105";
	position: absolute;
	right: 15px;
}
/* Mobile Navigation */

.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: rgba(0, 64, 119, 0.8);
	transition: 0.4s;
}
.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #ddd;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\f078";
	font-family: FontAwesome;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\f077";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #004077;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(255, 255, 255, 0.5);
	overflow: hidden;
	display: none;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #004077;
}

.s-bnr-wrap p {
	margin-bottom: 10px !important;
}

@media screen and (max-width:991px) {
	.pc-view,
	.nav-pc,
	.pc-sub-nav,
	.logo-md {
		display: none;
	}
}

@media screen and (min-width:992px) {
	.sp-view,
	.nav-sp,
	.logo-md {
		display: none;
	}
	.pc-sub-nav {
		position: absolute;
		right: 3%;
		top: 0;
	}
	.pc-sub-nav ul li {
		list-style: none;
		display: inline-block;
		margin: 0;
		padding: 0;
	}
	
}

@media screen and (min-width:992px) and ( max-width:1130px) {
	#header .logo {
		display: none;
	}
	#header .logo-md {
		display: inherit;
	}
	#header .logo-md {
		max-width: 10vw;
	}
	.nav-pc li {
		max-width: 20vw;
	}
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
	font-size: 36px;
	color: #283d50;
	text-align: center;
	font-weight: 500;
	position: relative;
}
.section-header p {
	text-align: center;
	margin: auto;
	font-size: 15px;
	padding-bottom: 60px;
	color: #556877;
	width: 50%;
}
/* Section with background
--------------------------------*/

.section-bg {
	background: #ecf5ff;
}
/* About Us Section
--------------------------------*/

#about {
	background: #fff;
	padding: 60px 0;
}
#about .about-container .background {
	margin: 20px 0;
}
#about .about-container .content {
	background: #fff;
}
#about .about-container .title {
	color: #333;
	font-weight: 700;
	font-size: 32px;
}
#about .about-container p {
	line-height: 26px;
}
#about .about-container p:last-child {
	margin-bottom: 0;
}
#about .about-container .icon-box {
	background: #fff;
	background-size: cover;
	padding: 0 0 30px 0;
}
#about .about-container .icon-box .icon {
	float: left;
	background: #fff;
	width: 64px;
	height: 64px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	border-radius: 50%;
	border: 2px solid #007bff;
	transition: all 0.3s ease-in-out;
}
#about .about-container .icon-box .icon i {
	color: #007bff;
	font-size: 24px;
}
#about .about-container .icon-box:hover .icon {
	background: #007bff;
}
#about .about-container .icon-box:hover .icon i {
	color: #fff;
}
#about .about-container .icon-box .title {
	margin-left: 80px;
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 18px;
}
#about .about-container .icon-box .title a {
	color: #283d50;
}
#about .about-container .icon-box .description {
	margin-left: 80px;
	line-height: 24px;
	font-size: 14px;
}
#about .about-extra {
	padding-top: 60px;
}
#about .about-extra h4 {
	font-weight: 600;
	font-size: 24px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
	background: #f1f1f1;
	padding: 30px 0;
	color: #666;
	text-align: center;
}
.footer-top {
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 30px;
}
.footer-top img {
	max-width: 20%;
}

#footer p {
	margin-bottom: 10px;
}

#footer p.footer-cap {
	border-top: 1px dotted #bbb;
	padding-top: 10px;
}

#footer ul {
	margin: 0;
	padding: 0;
}

#footer ul li {
	list-style: none;
	padding-bottom: 5px;
}

#footer ul li a {
	color: #666;
}

#footer ul li a:hover {
	color: #004077;
}

@media screen and (max-width:991px) {
	#footer small {
		padding-top: 15px;
		display: block;
	}
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
	#testimonials .testimonial-item p {
		width: 80%;
	}
}

@media (max-width: 991px) {
	#header {
		height: 60px;
		padding: 10px 0;
	}
	#header .logo h1 {
		font-size: 28px;
		padding: 8px 0;
	}
	#intro {
		padding: 0;
	}
	#intro .intro-img {
		width: 80%;
		float: none;
		margin: 0 auto 25px auto;
	}
	#intro .intro-info {
		width: 80%;
		float: none;
		margin: auto;
		text-align: center;
	}
	#why-us .card {
		margin: 0;
	}
}

@media (max-width: 768px) {
	.back-to-top {
		bottom: 15px;
	}
}

@media (max-width: 767px) {
	.section-header p {
		width: 100%;
	}
}

@media (max-width: 574px) {

}


h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #222;
}
h2 span {
	font-size: 14px;
	margin-left: 20px;
}

@media (max-width: 574px) {
	h2 {
		text-align: center;
	}
	h2 span {
		display: block;
		padding-top: 10px;
	}
}


#top-land {
	position: relative;
	margin-bottom: 30px;
}

#top-land-inner {
	background-color: #fafafa;
	border: #e1e1e1 1px solid;
	position: relative;
	padding: 0 15px 20px;
}

#top-land-inner p {
	margin-top: 20px;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

.top-land-img {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}

#top-land-nav ul {
	width: 100%;
	overflow: hidden;
	border: #e1e1e1 1px solid;
	margin: 0;
	padding: 0;
	border-top: none;
}

#top-land-nav li {
	width: 33.33%;
	float: left;
	border-right: #e1e1e1 1px solid;
	list-style: none;
}
#top-land-nav li:last-child {
	border-right: none;
}
#top-land-nav li img {
	width: 100%;
}

#top-skip-bnr img {
	width: 100%;
}

.information h3 {
	border-top: #e1e1e1 2px solid;
	border-bottom: #e1e1e1 1px solid;
	padding: 15px 0;
	font-size: 20px;
	font-weight: 600;
	color: #222;
}

.information h4 {
	font-size: 16px;
	color:#e50012;
	font-weight: 600;
	margin-bottom: 0;
	padding-bottom: 10px;
}


.information p {
	font-size: 12px;
	margin-bottom: 15px;
}

.information p a {
	display: inline-block;
	background: #444;
	padding: 3px 10px;
	color: #f1f1f1;
	font-size: 10px;
}
.information p a:hover {
	background: #e50012;
}

.information dl dt {
	font-weight: normal;
}

.information dl dd {
	padding: 10px 0;
	border-bottom: dotted 1px #ccc;
}




