#Header {
	position: absolute;
	box-sizing: border-box;
	height: 0;
	z-index: 120;
	width: 100%;
}

#Header .logo {
	position: absolute;
	left: 50px;
	top: 40px;
	width: 300px;
	display: block;
}

#Header .logo:hover img {
	opacity: 0.6;
}

#Header .logo img {
	display: block;
	width: 100%;
}

#Header .menu_logo {
	position: absolute;
	left: 50px;
	top: 40px;
	width: 300px;
	display: block;
}

#Header .menu_logo:hover img {
	opacity: 0.6;
}

#Header .menu_logo img {
	display: block;
	width: 100%;
}

#Header .menu_btn {
	background-color: transparent;
	background-image: url(../img/menu_base.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	text-align: center;
	cursor: pointer;
	position: fixed;
	right: 20px;
	top: 16px;
	width: 114px;
	height: 100px;
	z-index: 120;
	transition: opacity 0.4s;
}

#Header .menu_btn:hover {
	opacity: 1;
}

#Header .menu_btn:hover .menu_inner,
#Header .menu_btn:active .menu_inner {
	transform: scale(1.05);
	animation: charaBgFlash 0.2s 0s 1 alternate forwards;
}

#Header .menu_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: transparent url(../img/menu_btn_open.png) center no-repeat;
	background-size: 100% 100%;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease-out;
}

#Header > .menu {
	box-sizing: border-box;
	overflow: hidden;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.96);
	text-align: left;
	opacity: 0;
	overflow: auto;
	padding: 100px 40px 40px;
	transition: opacity 0.3s;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

#Header > .menu a {
	text-decoration: none;
}

#Header > .menu .menu_container {
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	margin: 0 auto 74px;
	width: 100%;
	max-width: 1000px;
	height: -moz-fit-content;
	height: fit-content;
}

#Header > .menu .menu_container > section:nth-of-type(1) {
	width: 48%;
}

#Header > .menu .menu_container > section:nth-of-type(2) {
	width: 52%;
}

#Header > .menu .menu_container > section:not(:first-child) {
	margin-left: 38px;
}

#Header > .menu .menu_container > section > ul > li {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	height: 120px;
}

#Header > .menu .menu_container > section > ul > li > p {
	position: relative;
	z-index: 1;
	font-size: 3.8em;
	letter-spacing: 0.07em;
	line-height: 0;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}

#Header > .menu .menu_container > section > ul > li > p a,
#Header > .menu .menu_container > section > ul > li > p span {
	display: inline-block;
	color: #003d63;
}

#Header > .menu .menu_container > section > ul > li > p a {
	box-sizing: border-box;
	padding-left: 30px;
}

#Header > .menu .menu_container > section > ul > li > p a::before {
	content: "";
	display: block;
	position: absolute;
	top: -7px;
	left: 0;
	width: 10px;
	height: 2px;
	background-color: #864faa;
}

#Header > .menu .menu_container > section > ul > li > p a:hover {
	color: #864faa;
}

#Header > .menu .menu_container > section > ul > li.cur > p a,
#Header > .menu .menu_container > section > ul > li.cur > p span {
	color: #864faa;
}

#Header > .menu .menu_container > section > ul > li.cur > p a::before {
	width: calc(100% + 27px);
}

#Header > .menu .menu_container > section > ul > li.off > p {
	opacity: 0.3;
}

#Header > .menu .accounts {
	display: block;
	align-items: center;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

#Header > .menu .accounts .accounts_item {
	width: -moz-fit-content;
	width: fit-content;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.3em;
	font-weight: 400;
	line-height: 1em;
	letter-spacing: 0.05em;
}

#Header > .menu .accounts .accounts_item:not(:last-child) {
	margin-bottom: 20px;
}

#Header > .menu .accounts .accounts_item .ico {
	display: block;
	margin-right: 20px;
	transition: all 0.3s;
}

#Header > .menu .accounts .accounts_item .ic_x {
	width: 28px;
	margin-left: 6px;
}

#Header > .menu .accounts .accounts_item .ic_youtube {
	width: 40px;
}

#Header > .menu .accounts .accounts_item a {
	display: flex;
	align-items: center;
	color: #003d63;
}

#Header > .menu .accounts .accounts_item a:hover {
	color: #8650a9;
}

#Header > .menu .accounts .accounts_item a:hover .ico {
	transform: scale(1.1);
}

#Header > .menu .accounts .accounts_item path {
	fill: #003d63;
}

#Header.show .menu_inner {
	background-image: url(../img/menu_btn_close.png);
}

#Header.show > .menu {
	opacity: 1;
	z-index: 110;
	pointer-events: all;
}

@media screen and (max-width: 1300px) {

#Header > .menu {
	padding: 240px 40px 40px;
}

}

@media screen and (max-width: 768px) {

#Header .logo {
	top: 20px;
	left: 20px;
	width: 240px;
}

#Header .logo a:hover img {
	opacity: 1;
}

#Header .menu_logo {
	left: 40px;
}

#Header .menu_logo a:hover img {
	opacity: 1;
}

#Header .menu_btn {
	right: 19px;
	top: 19px;
}

#Header .menu_btn:hover .menu_inner,
#Header .menu_btn:active .menu_inner {
	transform: none;
	animation: none;
}

#Header > .menu {
	display: block;
	padding: 233px 0 160px;
}

#Header > .menu .l-inner {
	padding: 0;
}

#Header > .menu .menu_container {
	padding: 0 40px;
	margin-bottom: 116px;
	justify-content: flex-start;
}

#Header > .menu .menu_container > section:nth-of-type(1) {
	width: 48%;
}

#Header > .menu .menu_container > section:nth-of-type(2) {
	width: 52%;
}

#Header > .menu .menu_container > section:not(:first-child) {
	margin-left: 20px;
}

#Header > .menu .menu_container > section > ul > li {
	display: block;
	height: auto;
}

#Header > .menu .menu_container > section > ul > li:not(:first-child) {
	margin-top: 64px;
}

#Header > .menu .menu_container > section > ul > li > p {
	font-size: 2.1em;
	letter-spacing: 0.07em;
	line-height: 1.5em;
}

#Header > .menu .menu_container > section > ul > li > p a {
	position: relative;
}

#Header > .menu .menu_container > section > ul > li > p a::before {
	top: 29px;
}

#Header > .menu .menu_container > section > ul > li.cur > p a,
#Header > .menu .menu_container > section > ul > li.cur > p span {
	color: #864faa;
}

#Header > .menu .menu_container > section > ul > li.cur > p a::before {
	width: calc(100% + 45px);
	max-width: 310px;
}

#Header > .menu .menu_container > section > ul > li:not(.cur) > p a:hover {
	color: #003d63;
}

#Header > .menu .accounts {
	box-sizing: border-box;
	padding: 0 40px;
}

#Header > .menu .accounts .accounts_item:not(:last-child) {
	margin-bottom: 45px;
}

#Header > .menu .accounts .accounts_item a:hover {
	color: #003d63;
}

#Header > .menu .accounts .accounts_item a:hover .ico {
	transform: scale(1);
}

}

@keyframes charaBgFlash {

0% {
	opacity: 0;
}

20% {
	opacity: 1;
}

40% {
	opacity: 0;
}

60% {
	opacity: 1;
}

80% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}


/*# sourceMappingURL=../map/header.css.map */
