:root {
	--header-height: 80px;
}

@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;700&display=swap");

body {
	padding-top: var(--header-height);
	font-family: "Shippori Mincho", serif;
}

/* ヘッダー */
#header {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	z-index: 1;
	background-color: #ffffff;
}

.fungash_logo {
	height: 50px;
	margin-top: 15px;
	margin-left: 100px;
	margin-right: 8vw;
}

.header_links ul {
	display: flex;
	margin-top: 22px;
	margin-right: 2vw;
}

.header_links ul li {
	margin: 0 20px;
	white-space: nowrap;
}

.header_links ul li a {
	font-size: 24px;
	color: #221e1c;
	border-bottom: 2px solid #009846;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	letter-spacing: 2px;
}

.motherland_logo {
	height: 50px;
	margin-top: 15px;
	margin-right: 20px;
}

/* メニューボタン */
#menu_open_btn {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 1;
}

#menu_open_btn p {
	position: absolute;
	right: 70px;
	bottom: 5px;
	width: 200px;
	color: #8b6752;
	z-index: 3;
	font-size: 32px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	cursor: auto;
}

.menu_character {
	position: absolute;
	right: -20px;
	bottom: -15px;
	z-index: 3;
	width: 150px;
	cursor: pointer;
}

.menu_character img {
	transform: scaleX(-1);
}

.menu_background {
	position: absolute;
	bottom: 0px;
	right: -0px;
	width: 270px;
	z-index: 2;
	cursor: auto;
}

/* メニュー画面 */
#menu.active {
	background-color: #009846;
	position: fixed;
	top: 0;
	z-index: 4;
	width: 100%;
	height: 100vh;
}

#menu.delete {
	display: none;
}

.menu_close_btn {
	position: absolute;
	top: 10px; /* 上からの位置（お好みで調整） */
	right: 30px; /* ← 右から30pxだけ内側に */
	background: none;
	border: none;
	color: white;
	font-size: 60px;
	cursor: pointer;
	z-index: 5;
	font-weight: 800;
}

.menu_contents {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	margin: auto;
	width: 900px;
	place-items: center;
}

.menu_contents a {
	display: block;
	width: 300px;
}

.menu_top {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 100px;
	gap: 40px;
	place-items: center;
}

.menu_bottom {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	place-items: center;
}
