@charset "utf-8";

/* ============================================================ */
/* header */
/* ============================================================ */
.header {
	width: 100%;
	height: 110px;
	padding: 30px 30px 0;
	z-index: 2;
	position: fixed;
}

.noscript {
	padding: 5px 15px;
	background: var(--bg-gray);
	color: var(--black-text);
	text-align: center;
	font-size: 1.4rem;
}

.header-logo {
}

.header-logo__link {
	width: 84px;
	display: block;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-right {
	height: 86px;
}

.header-right__inner {
	display: flex;
	height: 86px;
	position: relative;
}


/* .header-tel
------------------------------------------------------------ */
.header-tel {
	background: var(--white);
	border-radius: 8px 0 0 8px;
}

.header-tel__link {
	display: flex;
	padding: 14px 30px 10px 30px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header-tel__link .__ico {
	font-size: 4.0rem;
	line-height: 1.0;
	margin: 0 0 5px;
	color: var(--blue);
}

.header-tel__link .__txt {
	color: var(--blue);
	font-size: 1.2rem;
	background: none;
}


/* .header-menu
------------------------------------------------------------ */
.header-menu {
	border-radius: 0 8px 8px 0;
	background: var(--blue);
	color: var(--white);
	display: flex;
	padding: 16px 22px 10px 22px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .3s;
}

.header-menu:hover {
	background: var(--bg-navy);
}

.header-menu._active_ {
	border-radius: 0 8px 0 0;
}

.header-menu .__txt {
	line-height: 1.0;
	font-size: 1.2rem;
}

.header-menu._active_ .__txt {
	display: none;
}

.header-menu__inner {
	position: relative;
	width: 36px;
	height: 24px;
	margin: 0 0 10px;
}

.header-menu__item {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--white);
	transition: all 0.3s ease;
}

.header-menu__item:nth-of-type(1) { top: 0; }
.header-menu__item:nth-of-type(2) { top: 11px; }
.header-menu__item:nth-of-type(3) { bottom: 0; }

.header-menu._active_ .header-menu__item:nth-of-type(1) { transform: translateY(10px) rotate(-315deg); }
.header-menu._active_ .header-menu__item:nth-of-type(2) { opacity: 0; }
.header-menu._active_ .header-menu__item:nth-of-type(3) { transform: translateY(-10px) rotate(315deg); } 

.header-nav {
	position: fixed;
	right: 30px;
	z-index: -1;
	width: 100%;
	max-width: 400px;
	height: calc(100% - 100px);
	padding: 50px 60px;
	background: var(--blue);
	opacity: 0;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	pointer-events: none;
	transition: all 0.3s ease;
	color: var(--white);
	border-radius: 8px 0 0 0;
}

._gnav-show_ .header-nav {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}


/* .gnav
------------------------------------------------------------ */
.gnav {
}

.gnav__item {
	margin: 0 0 20px;
	font-size: 1.6rem;
}

.gnav__item:last-child {
	margin: 0;
}

.gnav__link {
	color: var(--white);
	font-weight: 700;
	letter-spacing: 1.6px;
}

.gnav__link .__txt {
  background: linear-gradient(0deg, var(--white), var(--white)) no-repeat right bottom / 0 var(--bg-h2);
}

.gnav-sub {
	margin: 5px 0 0;
}

.gnav-sub__item {
	line-height: 1.4;
	margin: 0 0 10px 1.2em;
}

.gnav-sub__item:last-child {
	margin: 0 0 0 1.2em;
}

.gnav-sub__link {
	color: rgba(255, 255, 255, 0.75);
	font-weight: 700;
}

.gnav-sub__link .__txt {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)) no-repeat right bottom / 0 var(--bg-h2);
}

