@charset "utf-8";
/*-----nav-----*/
body.active {
	height: 100%;
	overflow: hidden;
}
.header {
	background-color: transparent;
	width: 100%;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
.header--bgc {
	backdrop-filter: blur(3px);
	background: rgba(255, 255, 255, 0.7);
}
.header.active {
	backdrop-filter: blur(3px);
	background: rgba(255, 255, 255, 0.3);
}
.header__inner {
	padding: 55px 37px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
}
.header__logo {
	display: block;
	width: auto;
	height: 40px;
}
.header__title {
	width: auto;
	position: relative;
	z-index: 1;
}
.header__nav {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	background-color: #eaeaea;
	transition: ease 0.3s;
	display: flex;
	align-items: center;
	overflow-y: scroll;
}
.nav-items {
	position: absolute;
	top: 110px;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 0;
	width: 300px;
}
.nav-items__item:hover a {
	color: #e94817;
}
.nav-items__item a {
	font-family: shippori-mincho, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #121212;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 18px;
	letter-spacing: calc((200 / 1000) * 1em);
	margin-bottom: 28px;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.nav-items__item:last-child a {
	margin-bottom: 35px;
}
.header__hamburger {
	height: 100%;
}
.hamburger {
	background-color: #eaeaea;
	border: none;
	z-index: 9999;
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	border-radius: 25px;
}
.hamburger span {
	width: 24px;
	height: 2px;
	background-color: #121212;
	position: relative;
	transition: ease 0.3s;
	display: block;
	border-radius: 2px;
	margin: auto;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	margin: 7px auto;
}
.hamburger span:nth-child(3) {
	top: 0;
}
.header__nav.active {
	transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	top: -9px;
	transform: rotate(-45deg);
}
.language {
	margin-left: auto;
	margin-right: 14px;
}
.language a {
	font-size: 14px;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 7px;
	margin-bottom: 5px;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.language a:hover {
	color: #e94817;
	border-bottom: 1px solid #e94817;
}
@media screen and (max-width: 1000px) {
	.header__inner {
		padding: 33px 15px 0;
	}
	.nav-items {
		top: 80px;
	}
	.nav-items__item a {
		margin-bottom: 28px;
	}
}
/*-----/nav-----*/
/*-----footer-----*/
footer {
	position: relative;
	height: 380px;
	background: url(../img/common/footer.png) right no-repeat;
	background-size: cover;
	padding: 0 16px;
}
footer small {
	display: block;
	color: #eaeaea;
	line-height: 1;
	font-size: 12px;
}
.footer__wrap {
	max-width: 900px;
	margin: auto;
}
.footer__logo {
	position: absolute;
	bottom: 32px;
}
.footer__logo img {
	width: auto;
	height: 50px;
	margin-bottom: 56px;
}
@media screen and (max-width: 600px) {
	footer {
		position: relative;
		height: 205px;
		background: url(../img/common/footer-sp.png) right no-repeat;
		background-size: cover;
	}
	.footer__logo {
		bottom: 21px;
	}
	.footer__logo img {
		height: 40px;
		margin-bottom: 24px;
	}
}
/*-----/footer-----*/
