body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
.header {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 80px;
	background-color: #E6E6E6;
	transition: .6s;
}
.header ul {
	padding: 0;
	list-style: none;
}
.header a {
	color: #666464;
	text-decoration: none;
}
/* ロゴ */
.header-logo {
	position: absolute;
	left: 0;
}
.header-logo img {
	height: 30px;
	margin-left: 15%;
	transition: all 0.6s ease 0s;
	display: block;
}
.header-logo img:hover,
.open-btn:hover,
.header-cart img:hover {
	transform: scale(1.1, 1.1);
}
.header-right-box {
	position: absolute;
	display: flex;
	align-items: center;
	right: 0;
	margin-right: 2%;
}
/* 検索BOX */
.open-btn{
	background:url("https://shopping.geocities.jp/asoboze/asobozeyahoo/images/iconserch.png") no-repeat center;
	margin-right: 10px;
	cursor: pointer;
	transition: transform 0.6s ease 0s, background 0.3s ease 0s, background-size 0.3s ease 0s, width 0.3s ease 0s;
}
.open-btn.btnactive{
	background:url("https://shopping.geocities.jp/asoboze/asobozeyahoo/images/iconbatsu.png") no-repeat center;
}
#search-wrap{
	position: absolute;
	width: 280px;
	background: #F9F7F5;
	opacity: 0;
	transition: all 0.4s;
}
#search-wrap.panelactive{
	padding:10px;
	opacity: 1;
}
#search-wrap #searchform{
	display: none;
}
#search-wrap.panelactive #searchform{
	display: block;
}
#search-wrap input{
	-webkit-appearance:none;
	outline: none;
	cursor: text;
	color: #666464;
}
#search-wrap input[type="text"] {
	width: 93%;
	border: none;
	border-bottom:2px solid #ccc;
	transition: all 0.5s;
	letter-spacing: 0.05em;
	height:30px;
	padding: 10px;
	color: #666464;
}
#search-wrap input[type="text"]:focus {
	background:#fff;
}
#search-wrap input[type="submit"] {
	position: absolute;
	right:30px;
	background:url("https://shopping.geocities.jp/asoboze/asobozeyahoo/images/iconserch.png") no-repeat right;
	border: none;
	cursor: pointer;
}
input:-webkit-autofill {
	box-shadow: 0 0 0px 100px #fff inset;
}
/* カート */
.header-cart img {
	display: block;
	transition: all 0.6s ease 0s;
}
/* メニュー */
.header-menu-box {
	position: relative;
}
.header-menu-box > ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}
.header-menu {
	flex: 1;
	transition: .6s;
}
.header-link {
	text-align: center;
	cursor: pointer;
	position: relative;
	color: #666464;
	font-weight: 600;
}
.header-link::after {
	position: absolute;
	left: 10%;
	content: '';
	width: 80%;
	height: 3px;
	bottom: 0;
	border-radius: 5px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
}
.header-link:hover::after{
	transform: scale(1, 1);
}
.header-dropmenu {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	padding: 25px 35px;
	background-color: #F9F7F5;
	cursor: default;
	color: initial;
	top: 0%;
	left: 50%;
	height: fit-content;
	transition: all 0.6s ease 0s;
}
.header-link:hover > .header-dropmenu,
.header-link:focus-within > .header-dropmenu {
	opacity: 1;
	visibility: visible;
}
.header-dropmenu > ul {
	text-align: start;
	display: flex;
	flex-direction: column;
	gap: 25px;
}
/* ヘッダーメニューの区切り線 */
.header-menu-box li {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
.header-menu-box li+ li {
	border-left: 0;
	border-right: 1px solid #fff;
}
.header-dropmenu li {
	border: none;
}
.header-dropmenu li+ li {
	border: none;
}
.header-dropmenu {
	min-width: 100%;
}
.dropmenu-link:hover {
	text-decoration: underline;
	text-underline-offset: 8px;
	text-decoration-color: #B6A094;
}
@media screen and (min-width: 1300px) {
	.header {
		height: 80px;
	}
	/* ロゴ */
	.header-logo {
		width: 13%;
	}
	.header-logo img {
		height: 40px;
	}
	/* 検索ボタン */
	.open-btn {
		background-size: 40px 40px;
		width: 40px;
		height: 40px;
	}
	.open-btn.btnactive {
		background-size: 40px 40px;
		width: 40px;
		height: 40px;
	}
	/* 検索BOX */
	#search-wrap {
		top: 60px;
		right: 20px;
	}
	#search-wrap input[type="submit"] {
		top: 13px;
		background-size: 40px 40px;
		width: 40px;
		height: 40px;
	}
	#search-wrap input[type="text"] {
		font-size: 15px;
	}
	/* カートボタン */
	.header-cart img {
		width: 40px;
	}
	/* ヘッダーメニュー */
	.header-menu-box {
		width: 74%;
	}
	.header-menu-box > ul {
		height: 60px;
	}
	/* ヘッダーメニュー詳細 */
	.header-menu {
		font-size: 15px;
	}
	.header-link {
		padding: 20px 0;
	}
	.header-dropmenu.menu1 {
		width: 224px;
		transform: translate(-50%,19.4%);
	}
	.header-dropmenu.menu2 {
		width: 182px;
		transform: translate(-50%,46.2%);
	}
	.header-dropmenu.menu3 {
		width: 224px;
		transform: translate(-50%,22.3%);
	}
	.header-dropmenu.menu4 {
		width: 238px;
		transform: translate(-50%,19.5%);
	}
	.header-dropmenu.menu5 {
		width: 166px;
		transform: translate(-50%, 30%);
	}
	.header-dropmenu.menu6 {
		width: 140px;
		transform: translate(-50%,25.3%);
	}
	.header-dropmenu.menu7 {
		width: 350px;
		transform: translate(-50%, 16%);
	}
	/* ヘッダードロップメニュー */
	.dropmenu-link {
		font-size: 14px;
	}
}
@media screen and (max-width: 1299px) and (min-width: 1080px) {
	.header {
		height: 70px;
	}
	/* ロゴ */
	.header-logo {
		width: 12%;
	}
	.header-logo img {
		height: 30px;
	}
	/* 検索ボタン */
	.open-btn {
		background-size: 30px 30px;
		width: 30px;
		height: 30px;
	}
	.open-btn.btnactive {
		background-size: 30px 30px;
		width: 30px;
		height: 30px;
	}
	/* 検索BOX */
	#search-wrap {
		top: 50px;
		right: 10px;
	}
	#search-wrap input[type="submit"] {
		top: 19px;
		background-size: 30px 30px;
		width: 30px;
		height: 30px;
	}
	/* カートボタン */
	.header-cart img {
		width: 30px;
	}
	/* ヘッダーメニュー */
	.header-menu-box {
		width: 76%;
	}
	.header-menu-box > ul {
		height: 60px;
	}
	/* ヘッダーメニュー詳細 */
	.header-menu {
		font-size: 13px;
	}
	.header-link {
		padding: 17.5px 0;
	}
	.header-dropmenu.menu1 {
		width: 202px;
		transform: translate(-50%,17.5%);
	}
	.header-dropmenu.menu2 {
		width: 166px;
		transform: translate(-50%,42.1%);
	}
	.header-dropmenu.menu3 {
		width: 202px;
		transform: translate(-50%,20.3%);
	}
	.header-dropmenu.menu4 {
		width: 214px;
		transform: translate(-50%,18%);
	}
	.header-dropmenu.menu5 {
		width: 152px;
		transform: translate(-50%, 27.5%);
	}
	.header-dropmenu.menu6 {
		width: 130px;
		transform: translate(-50%,23.3%);
	}
	.header-dropmenu.menu7 {
		width: 310px;
		transform: translate(-50%, 14.5%);
	}
	/* ヘッダードロップメニュー */
	.dropmenu-link {
		font-size: 12px;
	}
}
@media screen and (max-width: 1079px) and (min-width: 760px) {
	.header {
		height: 60px;
	}
	/* ロゴ */
	.header-logo {
		width: 10%;
	}
	.header-logo img {
		height: 20px;
	}
	/* 検索ボタン */
	.open-btn {
		background-size: 25px 25px;
		width: 25px;
		height: 25px;
	}
	.open-btn.btnactive {
		background-size: 25px 25px;
		width: 25px;
	}
	/* 検索BOX */
	#search-wrap {
		top:42px;
		right: 5px;
	}
	#search-wrap input[type="submit"] {
		top: 21px;
		background-size: 25px 25px;
		width: 25px;
		height: 25px;
	}
	/* カートボタン */
	.header-cart img {
		width: 25px;
	}
	/* ヘッダーメニュー */
	.header-menu-box {
		width: 80%;
	}
	.header-menu-box > ul {
		height: 60px;
	}
	/* ヘッダーメニュー詳細 */
	.header-menu {
		font-size: 12px;
	}
	.header-link {
		padding: 15px 0;
	}
	.header-dropmenu.menu1 {
		width: 191px;
		transform: translate(-50%,15.8%);
	}
	.header-dropmenu.menu2 {
		width: 158px;
		transform: translate(-50%,37.3%);
	}
	.header-dropmenu.menu3 {
		width: 191px;
		transform: translate(-50%,18.5%);
	}
	.header-dropmenu.menu4 {
		width: 202px;
		transform: translate(-50%,15.8%);
	}
	.header-dropmenu.menu5 {
		width: 145px;
		transform: translate(-50%, 24.5%);
	}
	.header-dropmenu.menu6 {
		width: 125px;
		transform: translate(-50%,20.5%);
	}
	.header-dropmenu.menu7 {
		width: 290px;
		transform: translate(-50%, 13%);
	}
	/* ヘッダードロップメニュー */
	.dropmenu-link {
		font-size: 11px;
	}
}
@media screen and (max-width: 899px) and (min-width: 760px) {
	/* ヘッダーロゴ */
	.header-logo img {
		height: 18px;
	}
	/* ヘッダーメニュー詳細 */
	.header-menu {
		font-size: 10px;
	}
	.header-dropmenu.menu1 {
		width: 182px;
		transform: translate(-50%,16%);
	}
	.header-dropmenu.menu2 {
		width: 152px;
		transform: translate(-50%,38.5%);
	}
	.header-dropmenu.menu3 {
		width: 182px;
		transform: translate(-50%,18.3%);
	}
	.header-dropmenu.menu4 {
		width: 191px;
		transform: translate(-50%, 16.2%);
	}
	.header-dropmenu.menu5 {
		width: 140px;
		transform: translate(-50%, 25%);
	}
	.header-dropmenu.menu6 {
		width: 122px;
		transform: translate(-50%,21.3%);
	}
	.header-dropmenu.menu7 {
		width: 271px;
		transform: translate(-50%, 13.4%);
	}
	/* ヘッダードロップメニュー */
	.dropmenu-link {
		font-size: 10px;
	}
}
