@charset "UTF-8";
/* Global Nav【nav.css】 */
/* ――――――――――――――――――――――――――

初期設定【min-width: 768px】

―――――――――――――――――――――――――― */


/* ――――――――――――――――――――――――――

header

―――――――――――――――――――――――――― */
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 100%;
	z-index: 9999;
}
header nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(34,34,34,0.95);
	color: var(--jp-white);
	z-index: 510;
	-webkit-transition: .5s all ease;
			-ms-transition: .5s all ease;
					transition: .5s all ease;
}
header.active nav {
	left: -100%;
}
header nav .outer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75%;
	width: calc(100% - 80px);
	margin: 0 auto;
}
header .top_search {
	position: absolute;
	top: 70px;
	left: -70px;
	width: 70px;
	height: 70px;
	text-align: center;
	background: var(--jp-c01);
	-webkit-transition: .2s all ease;
					transition: .2s all ease;
}
header .top_search:hover {
	background: var(--jp-c01-hover);
}
header .top_search span {
	display: block;
	font-size: 12px;
	line-height: 1em;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}
header .top_search a {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--jp-white);
}
header .top_search a i {
	font-size: 34px;
	line-height: 1em;
}
header .top_event {
	position: absolute;
	top: 200px;
	left: -51px;
	width: 51px;
	height: 231px;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
	overflow: hidden;
}
header .top_event a {
	display: block;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}
header .event_banner {
	margin-left: auto;
	margin-right: auto;
	width: 220px;
}



header .top_shop {
	position: absolute;
	top: 50px;
	left: -50px;
	width: 50px;
	height: 51px;
	text-align: center;
	background: var(--jp-g05);
	border-left: 1px solid var(--jp-g01);
	border-bottom: 1px solid var(--jp-g01);
	-webkit-transition: .2s all ease;
					transition: .2s all ease;
}
header .top_shop:hover {
	background: var(--jp-g03);
}
header .top_shop a {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	color: var(--jp-body);
	transform: translate(-50%, -50%);
	font-size: 14px;
	line-height: 1.125em;
	letter-spacing: 0.05em;
	text-indent: 0.05em;
}


header .sns a img {
	width: 40px;
	border-radius: 50rem;
}
header .contact {
	width: 90%;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
header .contact a {
	position: relative;
	display: block;
	color: var(--jp-white);
	border: 1px solid var(--jp-white);
	padding: 0.825em 1.5em;
	border-radius: 50rem;
}
header .contact a:hover {
	border-color: var(--jp-href-hover);
	background: var(--jp-href-hover);
}
header .contact a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent var(--jp-white);
}
@media (min-width: 768px) {
	header nav {
		width: 640px;
	}
	header.active nav {
		left: -640px;
	}
	header nav .outer {
		width: 75%;
	}
	header .sns a img {
		width: 50px;
	}
	header .event_banner {
		width: 281px;
	}
}



/* ――――――――――――――――――――――――――

#head

―――――――――――――――――――――――――― */
#head .inner {
	position: relative;
	width: 100%;
	height: 100px;
}
#head h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
#head h1 img {
	width: 240px;
}
#head h1 span {
	display: block;
	font-size: 14px;
	line-height: 1em;
}
#head h1 img:hover {
	opacity: 1;
}
@media (min-width: 768px) {
	#head .inner {
		height: 140px;
	}
	#head h1 img {
		width: 300px;
	}
	#head h1 span {
		font-size: 16px;
		line-height: 1em;
	}
}



/* ――――――――――――――――――――――――――

#hamburger

―――――――――――――――――――――――――― */
#hamburger {
	position: absolute;
	top: 0;
	left: -50px;
	z-index: 600;
	background: var(--jp-g01);
	-webkit-transition: .2s all ease;
					transition: .2s all ease;
}
#hamburger:hover,
.active #hamburger {
	background: var(--jp-black);
}
#hamburger.icon-area {
	position: relative;
	cursor: pointer;
	width: 50px;
	height: 50px;
}
#hamburger .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 24px;
}
#hamburger .icon span {
	display: block;
	position: absolute;
	-webkit-transition: .35s ease-in-out;
			-ms-transition: .35s ease-in-out;
					transition: .35s ease-in-out;
}
#hamburger .icon span:nth-child(1),
#hamburger .icon span:nth-child(3) {
	height: 2px;
	width: 100%;
	background: var(--jp-white);
	left: 0;
	border-radius: 50rem;
}
#hamburger .icon span:nth-child(2) {
	width: 100%;
	top: 7px;
	left: 0;
	color: var(--jp-white);
	text-align: center;
	font-size: 10px;
	line-height: 1em;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}
#hamburger .icon span:nth-child(2):before {
	content: "MENU";
}
@media (min-width: 768px) {
	#hamburger {
		left: -70px;
	}
	#hamburger.icon-area {
		width: 70px;
		height: 70px;
	}
	#hamburger .icon {
		width: 40px;
		height: 34px;
	}
	#hamburger .icon span:nth-child(2) {
		top: 10px;
		font-size: 14px;
	}
}
/* ----- .active ----- */
#hamburger .icon span:nth-child(1) {
	top: 0;
}
#hamburger .icon span:nth-child(3) {
	bottom: 0;
}
.active #hamburger .icon span:nth-child(1) {
	top: calc(50% - 2px);
	left: calc(50% - 15px);
	-webkit-transform: rotate(315deg);
					transform: rotate(315deg);
}
.active #hamburger .icon span:nth-child(2) {
	width: 0;
	opacity: 0;
}
.active #hamburger .icon span:nth-child(3) {
	top: calc(50% - 2px);
	left: calc(50% - 15px);
	-webkit-transform: rotate(-315deg);
					transform: rotate(-315deg);
}
@media (min-width: 768px) {
	.active #hamburger .icon span:nth-child(1) {
		top: calc(50% - 1px);
		left: calc(50% - 20px);
	}
	.active #hamburger .icon span:nth-child(3) {
		top: calc(50% - 1px);
		left: calc(50% - 20px);
	}
}



/* ――――――――――――――――――――――――――

footer

―――――――――――――――――――――――――― */
footer {
}
footer .logo img {
	width: 220px;
}
footer .logo img:hover {
	opacity: 1;
}
