@charset "UTF-8";

.disappear {
    opacity: 0;
}
body.fixed {
    position: fixed;
    width: 100%;
    z-index: -1;
}
.spMenu__btn {
	margin: 0 0 0 20px;
	width: 35px;
	height: 35px;
	min-width: 35px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: none;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	display: none;
	cursor: pointer;
}

.spMenu__btn.active .spMenu__btn--line:nth-child(1) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 8px;
}

.spMenu__btn.active .spMenu__btn--line:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.spMenu__btn.active .spMenu__btn--line:nth-child(3) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: -8px;
}

.spMenu__btn--line {
	margin: 3px 0;
	width: 22px;
	height: 2px;
	display: block;
	background: #334B81;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 3px;
	position: relative;
	top: 0;
}

nav.gNav {
	width: 100%;
	height: 50px;
	position: fixed;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	top: 75px;
	z-index: 151;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	padding: 0 15px;
}
nav.gNav ul li {
	list-style: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
/*	float: left;*/
}

nav.gNav .no-link > a {
  cursor: default;
}

nav.gNav ul li + li a {
	background: url(../img/header/bdr_solid.png) left center no-repeat;
}
nav.gNav ul li:first-child a {
	background-image: none;
}
nav.gNav:after {
	content: '';
	width: 100%;
	height: 6px;
	display: block;
	position: absolute;
	bottom: -6px;
	left: 0;
	right: 0;
	z-index: 2;
}

nav.gNav.fixed {
	position: fixed;
	top: 0;
}

nav .nav-menu__box {
	margin: 0 auto;
	max-width: 1120px;
	background: rgba(0,30,98,.8);
	border-radius: 3px;
}

nav .nav-menu__box.active {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

nav .nav-menu {
	margin: 0 auto;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

nav .nav-item {
	list-style: none;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
/*	border-right: 1px solid rgba(255, 255, 255, 0.15);*/
	position: relative;
}

nav .nav-item:first-child {
/*	border-left: 1px solid rgba(255, 255, 255, 0.15);*/
}

nav .nav-item > a {
	width: auto;
	height: 50px;
	line-height: 120%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
	font-size: 1em;
	background: none;
	color: #ffffff !important;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

nav .nav-item > a:after {
	content: '';
	width: 100%;
	height: 240%;
	display: block;
	background: rgba(255, 255, 255, 0.15);
	-webkit-transform: translateY(0);
	transform: translateY(0);
	position: absolute;
	bottom: -290%;
	left: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

nav .nav-item > a:hover:after {
	bottom: -60%;
}

nav .nav-item.current > a:before {
	content: '';
	width: 98%;
	height: 1px;
	display: block;
	background: rgba(255, 255, 255, 0.4);
	position: absolute;
	bottom: 3px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 1;
}

nav .nav-menu__sub {
	margin: 0;
	padding: 0;
	width: max-content;
	min-width: 200px;
	display: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 2;
}

nav .nav-item:last-child .nav-menu__sub {
	right: 0;
	left: auto;
}
nav.gNav ul li + li .nav-menu__sub a {
	background: none;
	}

nav .nav-menu__sub > .menu {
	margin: 0;
	padding: 0;
}

nav .nav-menu__sub .menu-content {
	padding: 0;
	background: rgba(0,30,98,.8);
	list-style: none;
	border-radius: 3px;
	margin-top: 2px;
}

nav .nav-menu__sub .menu-content > a {
	width: 100%;
	height: 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
/*	background: rgba(51, 75, 129,.7);*/
	font-size: 12px;
	font-size: 0.857em;
	color: #ffffff;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	padding: 0 20px;
}

nav .nav-menu__sub .menu-content > a:after {
	content: '';
	width: 100%;
	height: 240%;
	display: block;
	background: rgba(255, 255, 255, 0.15);
	-webkit-transform: translateY(0);
	transform: translateY(0);
	position: absolute;
	bottom: -300%;
	left: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

nav .nav-menu__sub .menu-content > a:hover:after {
	bottom: -70%;
}
/*.li-level-1 {
	width: 137.5px;
}*/

/*----------------------------------------
	footer
----------------------------------------*/
.footer_menuList {
    margin-bottom: 40px;
}

.footer_menuList li.menu-content.li-level-1::before {
    content: "\f105";
    display: inline-block;
    margin-right: 3px;
    color: #d1cac5;
    line-height: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.2rem;
}
.footer_menuList li.menu-content.li-level-2::before {
    content: "\f0da";
    display: inline-block;
    margin-right: 0px;
    color: #d1cac5;
    line-height: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1rem;
}
.footer_menuList ul.nav-menu.ul-level-0 {
    column-count: 3;
    column-gap: 40px;
    margin: 0;
    padding: 0;
}
.footer_menuList ul.nav-menu.ul-level-1 {
    padding-left: 0px;
}
.nav-item.menu-content.li-level-1.current {
    margin-top: 0px;
}
.footer_menuList ul.menu.ul-level-2 {
    padding-left: 0px;
}
.footer_menuList ul li {
    list-style: none;
    width: auto;
    margin: .75em 1em 0;
}
.footer_menuList ul li a {
    font-size: .857em;
    text-decoration: none;
}
.footer_menuList ul li a:hover {
	opacity: .7;
}

.footer_menuList .no-link > a {
	cursor: default;
}
.footer_menuList .no-link > a:hover {
	color: #5B6E9A;
	opacity: 1;
}

@media only screen and (max-width:991px) {
#header {
    z-index: 152;
}

.spMenu__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
nav.gNav {
	width: 100%;
	height: 100vh;
	display: none;
	background: rgba(255, 255, 255, 0.5) !important;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
nav.gNav:after {
	display: none;
}
nav.gNav ul li + li a {
	background: none;
}
nav .nav-menu__box {
	width: 400px;
	height: 100%;
	background:linear-gradient(0deg, rgba(0,30,98, 1), rgba(0,30,98, .8), rgba(0,30,98, 0.6));
	background:-webkit-linear-gradient(0deg, rgba(0,30,98, 1), rgba(0,30,98, .8), rgba(0,30,98, 0.6));
	background:-moz-linear-gradient(0deg, rgba(0,30,98, 1), rgba(0,30,98, .8), rgba(0,30,98, 0.6));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translate3d(400px, 0, 0);
	transform: translate3d(400px, 0, 0);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
	border-radius: 0;
}
nav .nav-menu {
	padding-bottom: 220px;
	width: 100%;
	display: block;
}
nav .nav-item {
	width: 100%;
	border-right: none;
}
nav .nav-item:first-child {
	border-left: none;
}
nav .nav-item > a {
	padding: 0 20px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	width: 100%;
	height: 48px;
}
nav .nav-item > a:after {
	display: none;
}
nav .nav-item.current > a:before {
	display: none;
}
nav .nav-menu__sub {
	top: 63px;
	width: 100%;
	display: block !important;
	position: static;
	border: none;
}
nav .nav-menu__sub .menu-content > a {
	padding: 0 20px 0 35px;
	height: 48px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	background: none;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
nav .nav-menu__sub .menu-content > a:after {
	display: none;
}
nav .nav-menu__sub .menu-content {
	padding: 0;
	background: none;
	list-style: none;
	border-radius: none;
	margin-top: 0px;
}
.footer_menuList ul.nav-menu.ul-level-0 {
    column-count: 2;
    column-gap: 40px;
    margin: 0;
    padding: 0;
}
}
@media only screen and (max-width:768px) {
nav .nav-menu__box {
	width: 260px;
}
.visible-sm {
    display: block !important;
}
.subinfo {
    display: none;
}
.mr1 {
    margin-right: 0px !important;
}
.header-nav .btn-primary,
.header-nav .btn-primary:hover {
    padding: 0;
	background: none;
	background-color: none;
	border: none;
}
.size {
    color: #334B81 !important;
    font-size: 1.2em;
}
}
@media only screen and (max-width:599px) {
.footer_menuList ul.nav-menu.ul-level-0 {
    column-count: 1;
    column-gap: 10px;
    margin: 0;
    padding: 0;
}
}