:root {
	--nmt-white: #fff;
	--nmt-warm-white: #fbfaf7;
	--nmt-indigo: #536c7d;
	--nmt-indigo-dark: #445865;
	--nmt-blue-gray: #c9d4da;
	--nmt-gold: #b89a58;
	--nmt-gold-light: #d2be90;
	--nmt-ink: #303a40;
	--nmt-muted: #66747c;
	--nmt-border: #d8e0e3;
	--nmt-line: #06c755;
	--nmt-red: var(--nmt-indigo);
	--nmt-red-dark: var(--nmt-indigo-dark);
	--nmt-red-soft: #eef2f4;
	--nmt-beige: var(--nmt-warm-white);
	--ink: var(--nmt-ink);
	--ink-soft: var(--nmt-muted);
	--red: var(--nmt-indigo);
	--red-dark: var(--nmt-indigo-dark);
	--ivory: var(--nmt-warm-white);
	--warm: #f4f1e9;
	--sage: #eef2f4;
	--line: var(--nmt-border);
	--white: var(--nmt-white);
	--muted: var(--nmt-muted);
	--nmt-shadow: 0 10px 30px rgba(68, 88, 101, 0.09);
	--nmt-serif: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
	--nmt-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	--nmt-header-height: 76px;
}

html {
	scroll-padding-top: calc(var(--nmt-header-height) + 18px);
}

.nmt-site {
	background: var(--nmt-white);
	color: var(--nmt-ink);
	font-family: var(--nmt-sans);
	font-size: 16px;
	line-height: 1.8;
}

.nmt-site :where(h1, h2, h3, h4) {
	color: var(--nmt-ink);
	font-family: var(--nmt-serif);
	font-weight: 500;
	letter-spacing: .055em;
}

.nmt-site :where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--nmt-indigo);
	outline-offset: 3px;
}

.nmt-site .wrap {
	margin-inline: auto;
	width: min(1180px, calc(100% - 48px));
}

.nmt-site .icon {
	flex: 0 0 auto;
	height: 1.15em;
	width: 1.15em;
}

.nmt-info-bar {
	align-items: center;
	background: var(--nmt-indigo-dark);
	color: #fff;
	display: flex;
	font-size: 11px;
	letter-spacing: .08em;
	min-height: 30px;
}

.nmt-info-bar__inner {
	display: flex;
	justify-content: center;
}

.nmt-info-bar p {
	margin: 0;
}

.nmt-site-header {
	background: rgba(255,255,255,.98);
	border-bottom: 1px solid rgba(216,224,227,.82);
	height: var(--nmt-header-height);
	position: sticky;
	top: 0;
	z-index: 80;
}

.admin-bar .nmt-site-header {
	top: 32px;
}

.nmt-site-header__inner {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: auto 1fr auto;
	height: 100%;
}

.nmt-brand {
	min-width: 225px;
}

.nmt-brand .custom-logo {
	height: auto;
	max-height: 56px;
	width: auto;
}

.nmt-brand__text {
	align-items: center;
	color: var(--nmt-ink);
	display: inline-flex;
	gap: 12px;
	line-height: 1.15;
	text-decoration: none;
}

.nmt-brand__text > span:last-child {
	display: flex;
	flex-direction: column;
}

.nmt-brand__text strong {
	font-family: var(--nmt-serif);
	font-size: clamp(20px, 2vw, 29px);
	font-weight: 500;
	letter-spacing: .09em;
	white-space: nowrap;
}

.nmt-brand__text small {
	font-size: 9px;
	letter-spacing: .19em;
	margin-bottom: 5px;
}

.nmt-brand__mark {
	align-items: center;
	border: 2px solid var(--nmt-gold);
	border-radius: 50%;
	color: var(--nmt-gold);
	display: flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.nmt-brand__mark .icon {
	height: 26px;
	width: 26px;
}

.nmt-primary-nav {
	justify-self: end;
}

.nmt-primary-nav__list {
	align-items: center;
	display: flex;
	gap: clamp(10px, 1.25vw, 20px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nmt-primary-nav__list a {
	color: var(--nmt-ink);
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.nmt-primary-nav__list a:hover,
.nmt-primary-nav__list .current-menu-item > a {
	color: var(--nmt-gold);
}

.nmt-header-actions {
	align-items: stretch;
	display: flex;
	gap: 9px;
	height: 54px;
}

.nmt-btn {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--nmt-sans);
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	line-height: 1.35;
	min-height: 48px;
	padding: 11px 21px;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nmt-btn:hover {
	transform: translateY(-1px);
}

.nmt-btn--header {
	font-size: 12px;
	min-height: 46px;
	padding-inline: 15px;
}

.nmt-btn--header > span {
	display: flex;
	flex-direction: column;
}

.nmt-btn--header small {
	font-size: 9px;
	font-weight: 500;
}

.nmt-btn--header strong {
	font-size: 15px;
}

.nmt-btn--line {
	background: var(--nmt-line);
	border-color: var(--nmt-line);
	color: #fff;
}

.nmt-btn--line:hover {
	background: #05aa49;
	border-color: #05aa49;
	color: #fff;
}

.nmt-btn--phone,
.nmt-btn--red,
.nmt-btn--phone-dark {
	background: var(--nmt-indigo);
	border-color: var(--nmt-indigo);
	color: #fff;
}

.nmt-btn--phone:hover,
.nmt-btn--red:hover,
.nmt-btn--phone-dark:hover {
	background: var(--nmt-indigo-dark);
	border-color: var(--nmt-indigo-dark);
	color: #fff;
}

.nmt-btn--phone-outline,
.nmt-btn--outline {
	background: #fff;
	border-color: var(--nmt-gold);
	color: var(--nmt-gold);
}

.nmt-btn--phone-outline:hover,
.nmt-btn--outline:hover {
	background: var(--nmt-warm-white);
	border-color: var(--nmt-gold);
	color: var(--nmt-indigo-dark);
}

.nmt-btn--gold-outline {
	background: transparent;
	border-color: var(--nmt-gold-light);
	color: #fff;
}

.nmt-btn--gold-outline:hover {
	background: rgba(255,255,255,.08);
	color: #fff;
}

.nmt-btn--white,
.nmt-btn--glass {
	background: #fff;
	border-color: #fff;
	color: var(--nmt-indigo-dark);
}

.nmt-menu-toggle {
	align-items: center;
	background: #fff;
	border: 1px solid var(--nmt-border);
	border-radius: 8px;
	color: var(--nmt-indigo-dark);
	display: none;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.nmt-mobile-drawer {
	background: rgba(48,58,64,.42);
	inset: 0;
	position: fixed;
	z-index: 200;
}

.nmt-mobile-drawer[hidden] {
	display: none;
}

.nmt-mobile-drawer::before {
	background: #fff;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: min(390px, 92vw);
	z-index: -1;
}

.nmt-mobile-drawer__top,
.nmt-mobile-drawer__owner,
.mobile-drawer__nav,
.mobile-drawer__actions {
	margin-left: auto;
	padding-inline: 24px;
	width: min(390px, 92vw);
}

.nmt-mobile-drawer__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-block: 18px;
}

.mobile-drawer__close {
	align-items: center;
	background: #fff;
	border: 1px solid var(--nmt-border);
	border-radius: 50%;
	color: var(--nmt-indigo-dark);
	display: flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.nmt-mobile-drawer__owner {
	align-items: center;
	background: var(--nmt-warm-white);
	border-block: 1px solid var(--nmt-border);
	display: flex;
	gap: 13px;
	padding-block: 14px;
}

.nmt-mobile-drawer__owner img,
.nmt-mobile-drawer__owner > span {
	align-items: center;
	background: #fff;
	border: 1px solid var(--nmt-border);
	border-radius: 50%;
	display: flex;
	height: 58px;
	justify-content: center;
	object-fit: cover;
	width: 58px;
}

.nmt-mobile-drawer__owner p {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.nmt-mobile-drawer__owner small {
	color: var(--nmt-muted);
	font-size: 11px;
}

.mobile-drawer__nav {
	max-height: calc(100vh - 360px);
	overflow: auto;
	padding-block: 14px;
}

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

.mobile-drawer__list a {
	border-bottom: 1px solid var(--nmt-border);
	display: block;
	font-weight: 600;
	padding: 12px 4px;
	text-decoration: none;
}

.mobile-drawer__actions {
	display: grid;
	gap: 9px;
	padding-block: 14px 24px;
}

.mobile-drawer__actions p {
	color: var(--nmt-muted);
	font-size: 11px;
	margin: 0;
	text-align: center;
}

.nmt-footer {
	background: var(--nmt-indigo-dark);
	border-top: 1px solid rgba(210,190,144,.45);
	color: rgba(255,255,255,.82);
	padding: 35px 0 18px;
}

.nmt-footer__grid {
	align-items: start;
	display: grid;
	gap: 38px;
	grid-template-columns: 1.2fr 2fr .7fr;
}

.nmt-brand__text--footer {
	color: #fff;
}

.nmt-footer__brand > p {
	font-size: 10px;
	margin: 20px 0 0;
}

.nmt-footer__nav .nmt-footer-menu {
	display: grid;
	gap: 5px 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.nmt-footer__nav a,
.nmt-footer__social a,
.nmt-footer__bottom a {
	color: rgba(255,255,255,.82);
	font-size: 12px;
	text-decoration: none;
}

.nmt-footer__nav a:hover,
.nmt-footer__social a:hover,
.nmt-footer__bottom a:hover {
	color: var(--nmt-gold-light);
}

.nmt-footer__social a {
	align-items: center;
	display: flex;
	gap: 8px;
}

.nmt-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255,255,255,.14);
	display: flex;
	font-size: 10px;
	justify-content: space-between;
	margin-top: 28px;
	padding-top: 15px;
}

.nmt-footer__bottom p {
	margin: 0;
}

.nmt-mobile-sticky {
	display: none;
}

.breadcrumbs {
	font-size: 12px;
	padding-block: 16px;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumbs li + li::before {
	color: var(--nmt-gold);
	content: "/";
	margin-right: 6px;
}

.page-hero {
	isolation: isolate;
	min-height: min(56vh, 620px);
	position: relative;
}

.page-hero::after {
	background: linear-gradient(90deg, rgba(68,88,101,.88), rgba(68,88,101,.48));
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}

.page-hero::before {
	background-position: var(--nmt-hero-position, 70% center);
}

.page-hero__media {
	inset: 0;
	position: absolute;
	z-index: -2;
}

.page-hero__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.page-hero :where(h1, p) {
	color: #fff;
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

@media (max-width: 1100px) {
	.nmt-primary-nav {
		display: none;
	}

	.nmt-site-header__inner {
		grid-template-columns: 1fr auto auto;
	}

	.nmt-menu-toggle {
		display: flex;
	}
}

@media (max-width: 782px) {
	.admin-bar .nmt-site-header {
		top: 46px;
	}

	.nmt-site .wrap {
		width: min(100% - 30px, 720px);
	}

	.nmt-info-bar {
		font-size: 9px;
		min-height: 25px;
	}

	.nmt-site-header {
		--nmt-header-height: 64px;
	}

	.page-hero::before {
		background-position: var(--nmt-hero-mobile-position, 66% center);
	}

	.page-hero {
		min-height: calc(100svh - 89px);
	}

	.page-hero__content {
		padding-bottom: 96px;
	}

	.page-hero__actions .nmt-btn {
		min-height: 46px;
		padding-inline: 15px;
	}

	.nmt-brand {
		min-width: 0;
	}

	.nmt-brand__mark {
		height: 34px;
		width: 34px;
	}

	.nmt-brand__mark .icon {
		height: 21px;
		width: 21px;
	}

	.nmt-brand__text strong {
		font-size: 18px;
	}

	.nmt-brand__text small {
		font-size: 7px;
	}

	.nmt-header-actions {
		display: none;
	}

	.nmt-site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.nmt-footer {
		padding-bottom: 82px;
	}

	.nmt-footer__grid {
		grid-template-columns: 1fr;
	}

	.nmt-footer__nav .nmt-footer-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nmt-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.nmt-mobile-sticky {
		background: #fff;
		border-top: 1px solid var(--nmt-border);
		bottom: 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		left: 0;
		padding: 8px max(10px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
		position: fixed;
		right: 0;
		z-index: 120;
	}

	.nmt-mobile-sticky a {
		align-items: center;
		background: var(--nmt-indigo);
		color: #fff;
		display: flex;
		font-size: 13px;
		font-weight: 700;
		gap: 7px;
		justify-content: center;
		min-height: 48px;
		text-decoration: none;
	}

	.nmt-mobile-sticky a:last-child {
		background: var(--nmt-line);
	}
}

@media (max-width: 380px) {
	.nmt-brand__text {
		gap: 7px;
	}

	.nmt-brand__mark {
		height: 30px;
		width: 30px;
	}

	.nmt-brand__text strong {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
