.home #header.fixed {
	transform: translateY(-200%);
	transition: transform 1s;
	position: fixed;
	width: 100%;
}

.home #header.fixed.is-show-header {
	transform: translateY(0);
}

/*----------------------------------------------------
	header
----------------------------------------------------*/
#header-top {
	position: relative;
	z-index: 10;
	opacity: 0;
}

#header-top .inner {
	width: 1280px;
	width: max(66.67vw, 1280px);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

#header-top .logo-wrap {
	width: 170px;
	width: max(8.85vw, 170px);
	height: 170px;
	height: max(8.85vw, 170px);
	position: relative;
}

#header-top .logo-wrap img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 108px;
	width: max(5.63vw, 108px);
	height: auto;
}

@media screen and (max-width: 767px) {
	#header-top {
		width: 100%;
	}

	#header-top .inner {
		width: 100%;
	}

	#header-top .logo-wrap {
		width: 70px;
		height: 70px;
		z-index: 1;
	}

	#header-top .logo-wrap img {
		width: 40px;
	}

	#header-top .logo-wrap .sp-only {
		margin-top: 2px;
	}
}

/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header-top .fixed-wrap,
#header-top .menu {
	display: flex;
}

#header-top .menu {
	margin-top: 40px;
	margin-left: 35px;
}

#header-top .menu nav ul {
	display: flex;
}

#header-top .menu nav ul li {
	margin-left: 19px;
}

#header-top .menu nav ul li:first-of-type {
	margin-left: 0;
}

#header-top .menu nav ul li a {
	display: block;
	transition: 0.3s;
	font-size: 15px;
	font-size: max(0.78vw, 15px);
	letter-spacing: 0.03em;
}

#header-top .menu nav ul li a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.home #header.fixed .menu{
		visibility: hidden;
		opacity: 0;
		transition: visibility .3s, opacity .3s;
	}
	.home #header.fixed.is-show-header .menu{
		visibility: visible;
		opacity: 1;
	}
	.home #header.fixed.animate__fadeIn {
		animation: none;
	}
	#header-top .fixed-wrap {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: auto;
		z-index: 1000;
	}

	#header-top .menu {
		display: none;
		width: 100vw;
		margin-top: 0;
		margin-left: 0;
		padding-top: 70px;
		padding-bottom: 0;
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 0;
	}

	#header-top .menu nav ul {
		display: block;
		padding: 0 0;
	}

	#header-top .menu nav ul li {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}

	#header-top .menu nav ul li a {
		color: #000;
		font-size: 15px;
		padding: 15px 0;
		border-top: 1px solid #ddd;
	}

	#header-top .menu nav ul li:last-child a {
		border-bottom: 1px solid #ddd;
	}

	#header-top .menu-ani-button-wrap {
		position: absolute;
		top: 30px;
		right: 20px;
		display: block;
		width: 30px;
		height: 100%;
		z-index: 1;
	}
}