@charset "UTF-8";

.skin {
	width: 1340px;
	margin: 0 auto;
}

/* ---------------------------------
 Top
--------------------------------- */
#header {
	transition: 0.4s;
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 64px;
}
#header.onScroll { /* on scroll */
	background-color: #fff;
}
#siteId {
	flex: 0 0 370px;
	display: flex;
	align-items: center;
	height: 64px;
	padding: 0 0 0 25px;
}

/* ---------------------------------
 Logo
--------------------------------- */
.siteId__link {
	display: block;
	width: 297px;
	height: 30px;
	text-decoration: none;
}
.siteId__logo {
	position: relative;
	display: flex;
}
.siteId__logo--mark {
	position: relative;
	top: 2px;
	display: block;
	width: 40px;
	height: 30px;
	margin: 0 7px 0 0;
}
.siteId__logo--logo {
	position: relative;
	display: block;
	width: 250px;
	height: 30px;
}
.siteId__logo--logo .svg-instance {
	display: block;
	width: 250px;
	height: 30px;
}
#siteId .svg-logo {
	fill: #595656;
}

/* ---------------------------------
 Global Navi
--------------------------------- */
#gNavi a {
	text-decoration: none;
}
#gNavi ul {
	list-style-type: none;
}
#gNavi {
	flex: 1 1 calc( 100% - 370px );
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 64px;
	padding: 2px 0 0;
}
#gNavi__list {
	display: flex;
}
.gNavi__listItem {
	display: block;
	margin: 0 14px 0 0;
	font-size: 16px;
}
.gNavi__listItem a {
	color: #000;
}
#header.onScroll .gNavi__listItem a { /* on scroll */
	color: #000;
}
.gNavi__listItem::after {
	display: inline-block;
	content: "/";
	color: #000;
	margin: 0 0 0 14px;
}
#header.onScroll .gNavi__listItem::after { /* on scroll */
	color: #000;
}
.gNavi__listItem:last-child::after {
	content: "";
	margin: 0;
}

/* ---------------------------------
 Sub Navi
--------------------------------- */
#subNavi {
	/*flex: 0 0 550px;
	flex: 0 0 64px; */
	display: none;
	height: 64px;
}
#subNavi a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	height: 64px;
}
#subNavi ul {
	list-style-type: none;
}
#subNavi__list {
	/*display: flex;*/
	display: none;
}
#subNavi__list li {
	/*display: flex;*/
	display: none;
	align-items: center;
	justify-content: center;
	height: 64px;
}

#subNavi__list--recruit {
	display: none;
	flex: 0 0 150px;
	background-color: var(--water);
}
#subNavi__list--doc {
	display: none;
	flex: 0 0 150px;
	background-color: var(--turquoise);
}
#subNavi__list--tel {
	display: none;
	flex: 0 0 250px;
	background-color: var(--navy);
}
#subNavi__list--recruit a {
	width: 150px;
	color: var(--navy);
}
#subNavi__list--recruit span {
	display: block;
}
#subNavi__list--recruit span::before {
	content: "";
	display: inline-block;
	width: 26px;
	height: 35px;
	margin: 0 5px 0 0;
	background-image: url("../img/icon/person.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -11px;
}
#subNavi__list--doc span {
	position: relative;
	display: block;
}
#subNavi__list--doc span::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 26px;
	margin: 0 7px 0 0;
	background-image: url("../img/icon/document.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -6px;
}
#subNavi__list--doc a {
	width: 150px;
	color: #fff;
}
#subNavi__list--tel a {
	width: 250px;
	color: #fff;
}

#subNavi__list--tel .number {
	margin: 0 0 3px;
	line-height: 1;
	letter-spacing: 2.5px;
	font-size: 25px;
}
#subNavi__list--tel .number::before {
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 4px;
	background-image: url("../img/icon/telphone.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -1px;
}
#subNavi__list--tel .note {
	padding: 0 0 3px;
	text-indent: 2px;
	text-align: center;
	letter-spacing: 1.5px;
	font-weight: 400;
	font-size: 12px;
}
#subNavi__list li#menuButton__outer {
	display: none;
}

/* ---------------------------------
 Floating Menu
--------------------------------- */
#floatingMenu__outer {
	z-index: 9998;
	overflow-y: auto;
	display: none;
	position: fixed;
	top: 64px;
	left: 0;
	width: 100%;
	padding: 0;
	background-color: #fff;
	box-shadow:
		 0px  3px 3px 1px rgba(0, 0, 0, 0.1);
}
#floatingMenu {
	max-width: 1000px;
	margin: auto;
}
#floatingMenu .menu-area h5 {
	display: none;
	margin: 0 0 5px;
	font-size: 17px;
}
#floatingMenu .menu-area h6 {
	color: var(--logo-gray);
}
#floatingMenu .menu-area h6::before {
	display: inline-block;
	content: "-";
	margin: 0 5px 0 0;	
}
#floatingMenu ul {
	list-style-type: none;
	margin: 0;
}
#floatingMenu .menu { /* ul */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#floatingMenu .menu .menu-item { /* li */
	flex: 0 0 calc( 100% / 3 - 10px );
}
#floatingMenu .menu::after {
	display: block;
	content: "";
	width: calc( 100% / 3 - 10px );
}
#floatingMenu a {
	transition: padding 0.4s ease;
	position: relative;
	display: block;
	padding: 0 23px 6px 8px;
	margin: 0 0 7px;
	text-decoration: none;
	border-bottom: 1px solid var(--light-sky);
	font-weight: 600;
	font-size: 15px;
	color: var(--bright-navy);
}
#floatingMenu a::after {
	transition: right 0.4s ease;
	position: absolute;
	content: "";
	top: calc( 50% - 8px );
	right: 3px;
	width: 6px;
	height: 10px;
	margin: 0 0 0 20px;
	background-color: var(--light-sky);
	mask: url("../img/icon/gt_white.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("../img/icon/gt_thinline.svg") no-repeat 50% 50% / contain;
}
#floatingMenu a:hover {
	padding: 0 23px 6px 3px;
}
#floatingMenu a:hover::after {
	right: 0;
}
#floatingMenu .menu-area {
	margin: 20px 0;
	padding: 0;
	border-bottom: 0;
}
#floatingMenu .menu-area__columns {
	padding: 0;
}
#floatingMenu .menu-area__column:nth-last-of-type(1) {
		margin: 0;
}
#floatingMenu .menu-area__column {
	margin: 0 0 10px;
	padding: 0;
}
#floatingMenu .column__cx-glossary {
	display: none;
}
#floatingMenu .column__fx-glossary {
	display: none;
}

/* Drawer Menu */
#drawerMenu__outer {
	transition: 0.4s;
	z-index: 999999;
	position: fixed;
	top: 64px;
	right: -400px;
	/*right: 0;*/
	width: 320px;
	height: 100vh;
	background-color: var(--dark-navy);
	color: #fff;
}
#drawerMenu__outer.showed {
	right: 0px;
}
.drawerMenu {
	transition: 0.4s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 7px 20px 10px;
	background-color: var(--dark-navy);
}
.drawerMenu h4 {
	text-align: center;
	font-size: 15px;
	color: var(--deep-water);
}
.drawerMenu h4 span::before {
	display: inline-block;
	content: "│";
	margin: 0 10px 0 0;
}
.drawerMenu h4 span::after {
	display: inline-block;
	content: "│";
	margin: 0 0 0 10px;
}

.drawerMenu.lay-2,
.drawerMenu.lay-3,
.drawerMenu.lay-4 {
	left: 400px;
}
.drawerMenu.lay-2.showed,
.drawerMenu.lay-3.showed,
.drawerMenu.lay-4.showed {
	left: 0;
}
.drawerMenu__lists {
	list-style-type: none;
	margin: 0 0 20px;
}
.drawerMenu__lists a {
	display: block;
	width: 100%;
	padding: 6px 0 5px;
	text-decoration: none;
	font-size: 15px;
	color: #fff;
}
.android .drawerMenu__lists a {
	padding: 8px 0 7px;
}
.drawerMenu__listItem {
	border-bottom: 1px dotted var(--dull-blue);
}
.close__outer {
	margin: 0 0 5px;
}
#close-drawerMenu,
.close {
	width: 100%;
	font-weight: 600;
	text-align: right;
	color: #fff;
}
#close-drawerMenu::after,
.close::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 10px;
	margin: 0 0 0 4px;
	background-color: #fff;
	mask: url("../img/icon/arrow_little_short_right_white.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("../img/icon/arrow_little_short_right_white.svg") no-repeat 50% 50% / contain;
	vertical-align: 0px;
}

/* --- end of css --- */