@charset "UTF-8";

#menu {
	position: absolute; top: 0; left: 50%; transform: translateX(-50%);
	width: 720px; height: 100px;
	display: flex; justify-content: space-between; align-items: center;
	box-sizing: border-box; padding: 0 20px;
	background-color: #fff;
	z-index: 999;
	transition: all .2s;
}
#menu.on {position: fixed;background-color: var(--menubg); border-bottom: 4px solid var(--menuborder);}
#menu .menu_logo {
	display: block;
	width: 415px; height: 50px;
	background-image: url(./logo-m.png);
	background-repeat: no-repeat;
	background-position: center;
}
#menu .menu_toggle {
	width: 50px; height: 40px;
	position: relative;
	/* border: 1px dotted red; */
	cursor: pointer;
	transition: all .2s;
}
.menu_toggle .toggle_bar {
	position: absolute;
	width: 100%; height: 6px;
	border-radius: 6px;
	background: var(--menubar);
	transition: all .2s;
}
.toggle_bar:nth-child(1) {top: 0;}
.toggle_bar:nth-child(2) {top: 17px;}
.toggle_bar:nth-child(3) {top: 17px; opacity: 0;}
.toggle_bar:nth-child(4) {bottom: 0;}

#menu .menu_toggle.on {transform: rotate(225deg);}
#menu .menu_toggle.on .toggle_bar:nth-child(1),
#menu .menu_toggle.on .toggle_bar:nth-child(4) {display: none;}
#menu .menu_toggle.on .toggle_bar:nth-child(3) {opacity: 1; transform: rotate(90deg);}

#menu2 {
	width: 720px; height: auto;
	position: absolute; top: 100px; left: 50%; transform: translateX(-50%);
	z-index: 998;
	box-sizing: border-box; padding: 55px 20px;
	/* background: #e9e3f1; */
	background: #fff;
	border: 4px solid var(--point); border-radius: 15px;
	/* border-bottom: 4px solid var(--menuborder); */
	display: none;
}
#menu2.on {display: block;}
#menu2 a {color: var(--menutxt); font-size: 32px; font-weight: 700; display: block;}
#menu2 a::before {
	content: ""; display: inline-block; clear: both;
	width: 4px; height: 32px; margin-bottom: -4px; margin-right: 5px;
	background: var(--menutxt);
}
#menu2 .on a::before {background: #fff;}

#menu2 .menu2_list,
.tab2 .tab2_list {
	display: flex; flex-direction: column;
	gap: 25px;
}
#menu2 .menu2_list .menu2_item {
	background: var(--menubg);
	border-radius: 15px;
	padding: 20px 25px;
}
#menu2 .menu2_list .menu2_item.on {
	background: var(--point);
}

#menu2 .menu2_list .tab2 {text-align: right; display: none;}
#menu2 .menu2_list .tab2.on {display: block;}
.tab2 .tab2_item {
	background: #fff; padding: 10px;
	box-shadow: 0px 4px 3px var(--dropShadow);
}

.menu2_item.menu2_drop {position: relative;}
.menu2_item.menu2_drop a::after {
	content: ""; display: block; clear: both;
	position: absolute; top: calc(50% - 3px); right: 20px; transform: translateY(-50%) rotate(45deg);
	width: 15px; height: 15px;
	border-right: 3px solid var(--menutxt);
	border-bottom: 3px solid var(--menutxt);
	transition: all .2s;
}
.menu2_item.menu2_drop.on a::after {transform: translateY(calc(-50% + 10px)) rotate(225deg);}

.tab2_item.on a,
.menu2_item.on a {color: #fff !important;}