/* =========================================================
   ヘッダー / グローバルナビ
   ========================================================= */
.site-header {
	position: relative;
	z-index: 100;
	background-color: #eee8da;
	border-bottom: 1px solid rgba(49, 23, 11, .08);
	background: url("../img/nav/head_back.jpg");
}

.site-header__inner {
	max-width: 1100px;
	min-height: 80px;
	margin-inline: auto;
	padding: 10px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 54px;
	/* width: 100%; */
	width: 92%;
    margin: 0 auto;
}

.site-logo {
	flex: 0 0 auto;
	margin: 0;
	line-height: 1;
	width: 150px;
}

.site-logo a {
	display: inline-flex;
	align-items: center;
	color: var(--ink);
}

.site-logo__img {
	display: block;
	width: auto;
	max-width: 240px;
	max-height: 52px;
}

.site-logo__text {
	display: grid;
	gap: 2px;
	font-family: var(--font-mincho);
	letter-spacing: .08em;
	white-space: nowrap;
}

.site-logo__sub {
	font-size: 11px;
	line-height: 1.2;
	font-weight: 500;
}

.site-logo__main {
	font-size: 24px;
	line-height: 1.1;
	font-weight: 600;
}

.site-logo {
	flex-shrink: 0;
}

.site-logo a {
	display: block;
}

.site-logo img {
	display: block;
	/* width: 318px; */ /* スクショに近いサイズ */
	height: auto;
}

.global-nav {
	flex: 0 1 auto;
}

.global-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 44px;
	padding: 0;
	margin: 0;
	/* height: 100%; */
}

.global-nav__list li a {
	display: block;
	padding: 8px 0;
	font-family: var(--font-mincho);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .16em;
	white-space: nowrap;
	color: var(--ink);
	background: none;
	border: 0;
	text-decoration: none;
}

.global-nav__list li a:hover,
.global-nav__list .current-menu-item > a,
.global-nav__list .current_page_item > a {
	opacity: .65;
}

.nav-toggle {
	display: none;
	appearance: none;
	background: transparent;
	border: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 26px;
	height: 2px;
	margin: 0 auto 6px;
	background: var(--ink);
	transition: transform .25s, opacity .25s;
}

.nav-toggle__bar:last-child {
	margin-bottom: 0;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
	.site-header__inner {
		max-width: none;
		min-height: 76px;
		justify-content: space-between;
		gap: 16px;
		padding: 14px 20px;
	}

	.site-logo__img {
		max-width: 210px;
		max-height: 46px;
	}

	.site-logo__sub {
		font-size: 10px;
	}

	.site-logo__main {
		font-size: 21px;
	}

	.nav-toggle {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		position: relative;
		z-index: 2;
	}

	.global-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		overflow-y: auto;
		z-index: 1;
		background-image: none;
		background-repeat: repeat;
		background-position: center top;
		background-color: #eee8da;
		border-top: 0;
		box-shadow: 0 8px 18px rgba(49, 23, 11, .08);
		display: none;
	}

	.global-nav.is-open {
		display: block;
	}

	.global-nav__list {
		display: block;
		max-width: 100%;
		min-height: 100%;
		padding: 76px 20px 40px;
	}

	.global-nav__list li a {
		padding: 13px 28px;
		text-align: center;
		border-top: 1px solid rgba(49, 23, 11, .08);
	}

	.global-nav__list li:first-child a {
		border-top: 0;
		padding: 13px 0;
	}

	footer .global-nav__list li a {
		padding: 5px 0;
		text-align: center;
		border-top: 1px solid rgba(49, 23, 11, .08);
	}

	footer .global-nav__list li:first-child a {
		border-top: 0;
		padding: 5px 0;
	}
}
