body.active {
	overflow: hidden;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100px;
	background-color: #FFF;
	padding-left: 2.5rem;
	box-shadow: 0px 0px 10px #0000001A;
	z-index: 99999;
}

@media (max-width:1128px) {
	header {
		padding-left: 0.625rem;
	}
}

@media (max-width:960px) {
	header {
		height: 85px;
		padding-left: 1.25rem;
	}
}

@media (max-width:480px) {
	header {
		height: 66px;
	}
}

header .header_logo a {
	display: block;
	font-size: 0;
	width: 152px;
}

@media (max-width:1128px) {
	header .header_logo a {
		width: 135px;
	}
}

@media (max-width:960px) {
	header .header_logo a {
		width: 152px;
	}
}

header .header_menu_sp {
	display: none;
}

@media (max-width:960px) {
	header .header_menu_sp {
		display: flex;
		align-items: center;
		height: 100%;
	}

	header .header_menu_sp .header_menu_sp_shopping {
		display: table;
		height: 100%;
		font-size: 0.625rem;
		vertical-align: middle;
	}

	header .header_menu_sp .header_menu_sp_shopping a {
		display: table-cell;
		width: 90px;
		font-size: 0.625rem;
		color: #FFF;
		text-align: center;
		background: linear-gradient(90deg, #00B2A9 0%, #008EBB 100%);
		text-decoration: none;
		vertical-align: middle;
		letter-spacing: 0;
	}

	@media (max-width:480px) {
		header .header_menu_sp .header_menu_sp_shopping a {
			width: 70px;
		}
	}

	header .header_menu_sp .header_menu_sp_shopping a::before {
		content: '';
		display: block;
		background-image: url(../image/ic_cart.svg);
		background-repeat: no-repeat;
		background-size: contain;
		width: 26px;
		height: 20px;
		margin: 0 auto 4px;
		text-align: center;
		vertical-align: bottom;
		line-height: 1;
	}

	header .header_menu_sp .header_menu_sp_hamb {
		height: 100%;
	}

	header .header_menu_sp_hamb {
		position: relative;
		width: 90px;
		height: 100%;
		text-indent: -999999px;
		cursor: pointer;
	}

	@media (max-width:480px) {
		header .header_menu_sp_hamb {
			width: 70px;
		}
	}

	header .header_menu_sp_hamb span {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 20px;
		height: 14px;
		transform: translate(-50%, -50%);
	}

	header .header_menu_sp_hamb:before,
	header .header_menu_sp_hamb:after,
	header .header_menu_sp_hamb span:before,
	header .header_menu_sp_hamb span:after {
		display: block;
		content: "";
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #303338;
		opacity: 1;
		transition: all .3s;
	}

	header .header_menu_sp_hamb:after,
	header .header_menu_sp_hamb:before {
		top: 50%;
		width: 20px;
	}

	header .header_menu_sp_hamb:before {
		left: 50%;
		transform: translate(-50%, -50%);
	}

	header .header_menu_sp_hamb:after {
		left: 50%;
		opacity: 0;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	header .header_menu_sp_hamb span:before {
		top: 0;
	}

	header .header_menu_sp_hamb span:after {
		bottom: 0;
	}

	header .header_menu_sp_hamb.active:before {
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	header .header_menu_sp_hamb.active:after {
		opacity: 1;
	}

	header .header_menu_sp_hamb.active span:before,
	header .header_menu_sp_hamb.active span:after {
		opacity: 0;
	}
}

header .header_menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}

@media (max-width:960px) {
	header .header_menu {
		display: none;
		position: absolute;
		top: 85px;
		left: 0;
		width: 100%;
		height: calc(100vh - 85px);
		padding-bottom: 2.5rem;
		background: #FFF;
		box-shadow: 0px 5px 10px -5px #0000001A inset;
		overflow: auto;
	}

	@media screen and (-webkit-min-device-pixel-ratio: 0) {
		_::-webkit-full-page-media, _:future, :root header .header_menu {
			padding-bottom: 10rem;
		}
	}
}

@media (max-width:480px) {
	header .header_menu {
		top: 66px;
		height: calc(100vh - 66px);
	}
}

header .header_menu li {
	display: table;
	height: 100%;
	vertical-align: middle;
}

@media (max-width:960px) {
	header .header_menu li {
		display: block;
		height: auto;
	}

	header .header_menu>li {
		border-bottom: 1px solid #E9F2F3;
	}

	header .header_menu>li:last-of-type {
		border-bottom: none;
	}
}

header .header_menu li:last-of-type {
	margin-right: 0;
}

header .header_menu li a {
	position: relative;
	display: table-cell;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
	font-size: 0.75rem;
	font-weight: 700;
	color: #2A2A2A;
	padding: 0 0.625rem;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: -0.5px;
}

@media (min-width:961px) {
	header .header_menu li a:after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 2px;
		background-color: #00B2A9;
		transform: scale(0, 1);
		transform-origin: left;
		transition: transform .5s;
	}

	header .header_menu li a:hover:after {
		color: #00B2A9;
		transform: scale(1);
	}
}

@media (max-width:1128px) {
	header .header_menu li a {
		padding: 0 0.5rem
	}
}

@media (max-width:960px) {
	header .header_menu li a {
		position: relative;
		display: inherit;
		font-size: 1rem;
		padding: 2rem 1.25rem;
	}

	header .header_menu li a::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 24px;
		width: 6px;
		height: 6px;
		border: 0px;
		border-top: solid 2px #00B2A9;
		border-right: solid 2px #00B2A9;
		transform: rotate(45deg);
		margin-top: -4px;
	}
}

header .header_menu .header_menu_shopping {
	height: 100%;
	margin-left: 1.75rem;
}

@media (max-width:1128px) {
	header .header_menu .header_menu_shopping {
		margin-left: 0.25rem;
	}
}

@media (max-width:960px) {
	header .header_menu .header_menu_shopping {
		display: none;
	}
}

header .header_menu .header_menu_shopping a {
	font-weight: 700;
	font-size: 0.875rem;
	color: #FFF;
	padding: 0 2.5rem;
	background: linear-gradient(90deg, #00B2A9 0%, #008EBB 100%);
	letter-spacing: 0;
	transition: all .3s;
}

header .header_menu .header_menu_shopping a:hover {
	opacity: 0.8;
}

header .header_menu .header_menu_shopping a::before {
	content: '';
	display: inline-block;
	background-image: url(../image/ic_cart.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 16px;
	margin-right: 0.5rem;
	line-height: 1;
	vertical-align: bottom;
}

header .header_menu .header_menu_shopping a::after {
	content: none;
}

@media (max-width:1128px) {
	header .header_menu .header_menu_shopping a {
		padding: 0 0.875rem;
	}
}

header .header_menu .header_menu_shopping_sp {
	display: none;
}

@media (max-width:960px) {
	header .header_menu .header_menu_shopping_sp {
		display: block;
		padding: 0 1.25rem;
		border-bottom: none;
	}

	header .header_menu .header_menu_shopping_sp a {
		display: flex;
		justify-content: center;
		width: 100%;
		max-width: 400px;
		font-size: 0.875rem;
		font-weight: normal;
		color: #FFF;
		margin: 2rem auto;
		padding: 2rem 0;
		background: linear-gradient(90deg, #00B2A9 0%, #008EBB 100%);
		letter-spacing: 0;
	}

	header .header_menu .header_menu_shopping_sp a::before {
		content: '';
		display: inline-block;
		background-image: url(../image/ic_cart.svg);
		background-repeat: no-repeat;
		background-size: contain;
		width: 20px;
		height: 16px;
		margin-right: 0.5rem;
		line-height: 1;
		vertical-align: bottom;
	}

	header .header_menu .header_menu_shopping_sp a::after {
		border-top: solid 2px #FFF;
		border-right: solid 2px #FFF;
	}
}

header .header_menu .header_menu_searchform,
header .header_menu .header_menu_new_articles,
header .header_menu .header_menu_official {
	display: none;
}

@media (max-width:960px) {

	header .header_menu .header_menu_searchform,
	header .header_menu .header_menu_new_articles,
	header .header_menu .header_menu_official {
		display: block;
	}

	header .header_menu .header_menu_official {
		padding: 0 1.25rem;
	}

	header .header_menu .header_menu_official .btn {
		max-width: 400px;
		font-size: 0.875rem;
		font-weight: normal;
		margin: -1rem auto 0;
	}
}

header .header_menu_sub {
	display: none;
}

@media (max-width:960px) {
	header .header_menu_sub {
		display: block;
	}
}

.header_menu_product .sp_plus {
	display: none;
}

@media (max-width:960px) {
	.header_menu_product {
		position: relative;
	}

	.header_menu_product .sp_plus {
		display: block;
		position: absolute;
		top: 25px;
		right: 6px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 1;
	}

	.header_menu_product .sp_plus::before,
	.header_menu_product .sp_plus::after {
		content: "";
		display: block;
		width: 12px;
		height: 2px;
		background-color: #333333;
		position: absolute;
		top: 50%;
		left: 50%;
		transition: all .3s;
	}

	.header_menu_product .sp_plus::before {
		transform: translate(-50%, -50%);
	}

	.header_menu_product .sp_plus::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.header_menu_product .sp_plus.open::after {
		transform: translate(-50%, -50%);
	}
}

header .header_menu li .header_menu_product_list {
	display: none;
}

@media (max-width:960px) {
	header .header_menu li .header_menu_product_list li {
		padding: 0 1.25rem;
		border-top: 1px solid #E9F2F3;
	}

	header .header_menu li .header_menu_sub {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 2.5rem;
		padding: 0 1.25rem;
	}

	header .header_menu li .header_menu_sub li {
		margin: 0 1rem 1rem 0;
	}

	header .header_menu li .header_menu_sub li:last-of-type {
		margin-right: 0;
	}

	header .header_menu li .header_menu_sub li a {
		font-size: 0.75rem;
		padding: 0;
	}

	header .header_menu li .header_menu_sub li a::after {
		content: none;
	}
}
