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

#Header .logo {
	position: absolute;
	left: 30px;
	top: 28px;
	width: 200px;
	display: block;
}

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

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

#Header .menu_logo {
	position: absolute;
	left: 14%;
	top: 70px;
	width: 240px;
	display: block;
}

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

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

#Header .menu_btn {
	background-color: rgba(0,0,0,0);
	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: 60px;
	top: 40px;
	width: 120px;
	height: 120px;
	z-index: 120;
}

#Header .menu_btn:hover::before,
#Header .menu_btn:active::before {
	opacity: .3;
}

#Header .menu_btn:hover .menu_inner,
#Header .menu_btn:active .menu_inner {
	opacity: .7;
}

#Header .menu_btn::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #353535;
	opacity: .5;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	z-index: -1;
	transition: opacity .3s;
}

#Header .menu_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: rgba(0,0,0,0) url(../img/btn_menu.png) center no-repeat;
	background-size: 100% 100%;
	position: relative;
	z-index: 2;
	transition: all .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: #353535;
	text-align: left;
	opacity: 0;
	overflow: auto;
	padding: 100px 40px 40px;
	transition: opacity .3s;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

#Header>.menu::before,
#Header>.menu::after {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 700px;
	height: 100vh;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

#Header>.menu::before {
	opacity: .1;
	background-image: url(../img/bg_base.png);
	background-size: 100% 100%;
	background-position: top right;
	background-repeat: repeat-y;
	z-index: -2;
}

#Header>.menu::after {
	background: linear-gradient(90deg, rgb(53, 53, 53) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: -1;
}

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

#Header>.menu .menu_container {
	box-sizing: border-box;
	display: block;
	margin: auto;
	width: 100%;
	max-width: 1200px;
	height: -moz-fit-content;
	height: fit-content;
}

#Header>.menu .menu_container>section {
	width: 100%;
}

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

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

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

#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: -23px;
	left: -39px;
	width: 48px;
	height: 48px;
	background-image: url(../img/ico_lead.png);
	background-size: 100% 100%;
	background-position: top left;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity .3s;
}

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

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

#Header>.menu .menu_container>section>ul>li.cur>p a::before {
	opacity: 1;
}

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

#Header>.menu .menu_container>section>ul>li>ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-end;
	margin-left: 30px;
	min-height: 1.65em;
	font-family: birch-std,serif;
	font-weight: 400;
	font-style: normal;
}

#Header>.menu .menu_container>section>ul>li>ul._jp>li {
	font-family: fot-tsukumin-pr6n,sans-serif;
	font-weight: 300;
	font-style: normal;
	letter-spacing: .02em;
	font-size: 1.5rem;
}

#Header>.menu .menu_container>section>ul>li>ul>li {
	position: relative;
	z-index: 1;
	margin-bottom: 2px;
	font-size: 2rem;
	line-height: 1em;
	letter-spacing: .03em;
	font-weight: 400;
	white-space: nowrap;
	font-family: "Zen Old Mincho",serif;
	font-weight: 400;
	font-style: normal;
}

#Header>.menu .menu_container>section>ul>li>ul>li:not(:last-child)::after {
	content: "/";
	margin: 0 .1em;
	color: #f7f4f1;
}

#Header>.menu .menu_container>section>ul>li>ul>li a {
	display: inline-block;
	color: #f7f4f1;
	transition: all .3s;
}

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

#Header>.menu .menu_container>section>ul>li>ul>li.cur a {
	color: #c4924f;
}

#Header>.menu .bar {
	position: fixed;
	top: 0;
	right: 0;
	width: 240px;
	height: 100vh;
	background-color: rgba(5,5,5,.5);
	color: #c4924f;
}

#Header>.menu .bar .accounts {
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
	margin: 230px auto 0;
}

#Header>.menu .bar .accounts>dt {
	color: #c4924f;
	font-family: "Zen Old Mincho",serif;
	font-weight: 400;
	font-style: normal;
	font-weight: 600;
	font-size: .8em;
	line-height: 1.1em;
	letter-spacing: .05em;
	margin-bottom: 11px;
	font-size: 1.1em;
}

#Header>.menu .bar .accounts>div {
	display: block;
	box-sizing: border-box;
	padding: 30px 0;
	position: relative;
}

#Header>.menu .bar .accounts>div::before,
#Header>.menu .bar .accounts>div::after {
	content: "";
	display: block;
	position: absolute;
	width: 44px;
	height: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-size: 100% 100%;
	background-position: top left;
	background-repeat: no-repeat;
}

#Header>.menu .bar .accounts>div::before {
	top: 0;
	background-image: url(../img/deco_top.png);
}

#Header>.menu .bar .accounts>div::after {
	bottom: 0;
	background-image: url(../img/deco_bottom.png);
}

#Header>.menu .bar .accounts>div>dd {
	width: auto;
	height: -moz-fit-content;
	height: fit-content;
	line-height: 0;
}

#Header>.menu .bar .accounts>div>dd:not(:last-child) {
	margin-bottom: 10px;
}

#Header>.menu .bar .accounts>div>dd a {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}

#Header>.menu .bar .accounts>div>dd a:hover {
	transform: scale(1.1);
}

#Header>.menu .bar .accounts>div>dd svg {
	fill: #c4924f;
}

#Header>.menu .bar .accounts>div>dd .ic_x {
	width: 26px;
}

#Header>.menu .bar .accounts>div>dd .ic_youtube {
	width: 26px;
}

#Header>.menu .bar .accounts>div>dd .ic_tiktok {
	width: 26px;
}

#Header>.menu .bar .accounts>div>dd .ic_tiktok img {
	width: 100%;
	display: block;
}

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

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

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

#Header .menu_logo {
	top: 50px;
	left: 5%;
}

#Header>.menu {
	padding: 330px 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 {
	top: 30px;
	left: 40px;
}

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

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

#Header .menu_btn:hover::before,
#Header .menu_btn:active::before {
	opacity: .5;
}

#Header .menu_btn:hover .menu_inner,
#Header .menu_btn:active .menu_inner {
	opacity: 1;
}

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

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

#Header>.menu .menu_container {
	padding: 0 40px;
	padding-left: 77px;
	margin-bottom: 77px;
}

#Header>.menu .menu_container>section:not(:last-of-type) {
	margin-bottom: 16px;
}

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

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

#Header>.menu .menu_container>section>ul>li>p {
	font-size: 1.9em;
	letter-spacing: .1em;
	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: 15px;
}

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

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

#Header>.menu .menu_container>section>ul>li>ul {
	margin-top: 4px;
	margin-bottom: 30px;
}

#Header>.menu .menu_container>section>ul>li>ul._jp>li {
	font-size: 1.05em;
	letter-spacing: 0;
	line-height: 1.4em;
}

#Header>.menu .menu_container>section>ul>li>ul>li {
	font-size: 1.1em;
	line-height: 1.2em;
	margin-bottom: 0;
}

#Header>.menu .menu_container>section>ul>li>ul>li:not(:last-child)::after {
	margin: 0 .2em;
}

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

#Header>.menu .bar {
	position: relative;
	width: 100%;
	height: auto;
	background-color: rgba(0,0,0,0);
	color: #f7f4f1;
	box-sizing: border-box;
	padding: 0 40px;
	padding-left: 77px;
}

#Header>.menu .bar .accounts {
	margin-top: 0;
	width: 100%;
	padding-left: 30px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

#Header>.menu .bar .accounts>dt {
	color: #f7f4f1;
	letter-spacing: .07em;
	margin-bottom: 0;
	margin-right: 28px;
	position: relative;
	top: -4px;
}

#Header>.menu .bar .accounts>div {
	padding: 0;
	display: flex;
	align-items: center;
}

#Header>.menu .bar .accounts>div::before,
#Header>.menu .bar .accounts>div::after {
	display: none;
}

#Header>.menu .bar .accounts>div>dd:not(:last-child) {
	margin-bottom: 0;
	margin-right: 30px;
}

#Header>.menu .bar .accounts>div>dd svg {
	fill: #f7f4f1;
}

#Header>.menu .bar .accounts>div>dd .ic_x {
	width: 44px;
}

#Header>.menu .bar .accounts>div>dd .ic_youtube {
	width: 62px;
}

#Header>.menu .bar .accounts>div>dd .ic_tiktok {
	width: 40px;
}

}


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