/* ========================================
   Header
======================================== */
.c-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
}

.c-header__top {
	border-bottom: 1px solid var(--color-border);
	background: #f7fafc;
}

.c-header__top-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 64px;
}

.c-header__top-info {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	min-width: 0;
}

.c-header__address,
.c-header__closed {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.6;
}

.c-header__address {
	color: var(--color-text);
}

.c-header__closed {
	color: var(--color-text-light);
}

/* top actions */
.c-header__top-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.c-header-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 0 15px;
	border-radius: 10px;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.c-header-action__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	flex: 0 0 auto;
}

.c-header-action__icon-svg,
.c-header-action__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.c-header-action__icon svg {
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.c-header-action__label {
	display: block;
	font-size: 0.7rem;
	opacity: 0.9;
}

.c-header-action__main {
	display: block;
	font-size: 0.92rem;
	font-weight: 800;
}

.c-header-action--tel {
	min-width: 178px;
	border: 1px solid var(--color-border);
	background: #fff;
	color: var(--color-main);
}

.c-header-action--tel .c-header-action__main {
	font-size: 1.16rem;
	letter-spacing: 0.02em;
}

.c-header-action--access {
	background: #e17835;
}

.c-header-action--web {
	background: var(--color-main);
}

/* main */
.c-header__main {
	background: #fff;
}

.c-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 78px;
}

/* logo */
.c-header__brand {
	flex-shrink: 0;
}

.c-header__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: inherit;
	text-decoration: none;
}

.c-header__logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
}

.c-header__logo-img {
	display: block;
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.c-header__brand-copy {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.c-header__logo-text {
	margin: 0;
	color: var(--color-text);
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.35;
	white-space: nowrap;
}

.c-header__brand-text {
	margin: 0;
	color: var(--color-text-light);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

/* ========================================
   PC nav
======================================== */
.c-header-nav {
	margin-left: auto;
}

.c-header-nav__list {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-header-nav__link {
	display: inline-flex;
	align-items: center;
	color: var(--color-text);
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.c-header-nav__link:hover {
	color: var(--color-main);
}

/* ========================================
   Drawer base
======================================== */
.c-header-drawer {
	display: none;
}

.c-header-drawer__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-header-drawer__actions,
.c-header-drawer__info {
	display: none;
}

/* ========================================
   Hamburger
======================================== */
.c-hamburger {
	display: none;
	position: relative;
	z-index: 1040;
	width: 88px;
	height: 78px;
	margin-right: calc((100vw - 100%) / -2);
	border: 0;
	background: var(--color-main);
	color: #fff;
	cursor: pointer;
}

.c-hamburger__text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 13px;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
}

.c-hamburger__lines {
	position: absolute;
	left: 50%;
	top: 24px;
	width: 28px;
	height: 20px;
	transform: translateX(-50%);
}

.c-hamburger__line {
	position: absolute;
	left: 0;
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.25s ease, top 0.25s ease;
}

.c-hamburger__line:nth-child(1) {
	top: 5px;
}

.c-hamburger__line:nth-child(2) {
	top: 14px;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
	top: 10px;
	transform: rotate(45deg);
}

.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
	top: 10px;
	transform: rotate(-45deg);
}

.c-header-overlay {
	display: none;
}

/* ========================================
   Mobile drawer
======================================== */
@media (max-width: 900px) {
	.c-header__top {
		display: none;
	}

	.c-header__inner {
		min-height: 70px;
	}

	.c-header-nav {
		display: none;
	}

	.c-hamburger {
		display: block;
		width: 82px;
		height: 70px;
		margin-left: auto;
	}

	.c-hamburger__text {
		bottom: 10px;
	}

	.c-hamburger__lines {
		top: 20px;
	}

	.c-header-drawer {
		position: fixed;
		top: 70px;
		right: 0;
		z-index: 1030;
		display: block;
		width: 82%;
		max-width: 380px;
		height: calc(100dvh - 70px);
		margin-left: 0;
		padding: 22px 20px 32px;
		border-left: 1px solid var(--color-border);
		background: #fff;
		box-shadow: -10px 0 28px rgba(24, 52, 77, 0.12);
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.28s ease;
	}

	.c-header-drawer.is-open {
		transform: translateX(0);
	}

	.c-header-drawer__list {
		display: grid;
		gap: 0;
	}

	.c-header-drawer__item {
		border-bottom: 1px solid var(--color-border);
	}

	.c-header-drawer__link {
		display: flex;
		align-items: center;
		gap: 12px;
		min-height: 64px;
		color: var(--color-text);
		text-decoration: none;
	}

	.c-header-drawer__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		flex: 0 0 24px;
		border-radius: 999px;
		background: var(--color-main);
		color: #fff;
	}

	.c-header-drawer__icon-svg,
	.c-header-drawer__icon svg {
		display: block;
		width: 11px;
		height: 11px;
	}

	.c-header-drawer__icon svg {
		stroke: currentColor;
		fill: none;
		stroke-width: 2;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.c-header-drawer__text {
		display: grid;
		gap: 3px;
		min-width: 0;
	}

	.c-header-drawer__label {
		color: var(--color-text);
		font-size: 1rem;
		font-weight: 800;
		line-height: 1.45;
	}

	.c-header-drawer__actions {
		display: grid;
		gap: 10px;
		margin-top: 22px;
	}

	.c-header-drawer-action {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		min-height: 46px;
		padding: 0 14px;
		border-radius: 10px;
		color: #fff;
		font-size: 0.92rem;
		font-weight: 800;
		text-decoration: none;
	}

	.c-header-drawer-action__icon,
	.c-header-drawer-action svg {
		display: block;
		width: 20px;
		height: 20px;
	}

	.c-header-drawer-action svg {
		stroke: currentColor;
		fill: none;
		stroke-width: 1.7;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.c-header-drawer-action--tel {
		border: 1px solid var(--color-main);
		background: #fff;
		color: var(--color-main);
	}

	.c-header-drawer-action--web {
		background: var(--color-main);
	}

	.c-header-drawer__info {
		display: block;
		margin-top: 22px;
		padding: 16px;
		border-radius: 12px;
		background: #f7fafc;
		color: var(--color-text-light);
		font-size: 0.88rem;
		line-height: 1.75;
	}

	.c-header-drawer__info p {
		margin: 0;
	}

	.c-header-drawer__info p + p {
		margin-top: 6px;
	}

	.c-header-overlay.is-open {
		position: fixed;
		inset: 70px 0 0;
		z-index: 2;
		display: block;
		background: rgba(24, 52, 77, 0.28);
	}

	body.is-menu-open {
		overflow: hidden;
	}

	body.is-menu-open .c-mobile-fixed-cta {
		display: none;
	}
}

@media (max-width: 640px) {
	.c-header__brand-link {
		gap: 10px;
	}

	.c-header__logo-mark,
	.c-header__logo-img {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.c-header__logo-text {
		font-size: 1.02rem;
	}

	.c-header__brand-text {
		font-size: 0.72rem;
	}

	.c-header-drawer {
		width: 84%;
		padding-inline: 18px;
	}
}
.c-header-drawer-action--access {
	background: #e17835;
	color: #fff;
}
