:root {
	--ov-blue: #0b6aa8;
	--ov-blue-d: #084a78;
	--ov-ink: #12324a;
	--ov-muted: #5b7386;
	--ov-orange: #f58220;
	--ov-orange-d: #dc6d12;
	--ov-bg: #eef4f8;
	--ov-white: #fff;
	--ov-line: #d7e4ee;
	--ov-radius: 28px;
	--ov-shadow: 0 18px 50px rgba(8, 50, 80, .12);
	--ov-font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden;
}
body {
	margin: 0;
	font-family: var(--ov-font);
	font-weight: 500;
	color: var(--ov-ink);
	background: var(--ov-bg);
	line-height: 1.6;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: inherit;
	text-align: left;
	text-wrap: pretty;
}
button, input, select, textarea {
	font-family: inherit;
}
button {
	font: inherit;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ov-blue); text-decoration: none; }
a:hover { color: var(--ov-blue-d); }
.ov-skip {
	position: absolute; left: -999px; top: 0;
}
.ov-skip:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 99; }
.ov-wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.ov-header {
	position: sticky; top: 0; z-index: 40;
	background: #fff;
	border-bottom: 1px solid transparent;
	padding-top: env(safe-area-inset-top);
}
.ov-header.is-scrolled { border-bottom-color: var(--ov-line); box-shadow: 0 8px 24px rgba(12, 50, 80, .06); }
.ov-header__inner {
	width: min(1280px, calc(100% - 32px));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 76px;
}
.ov-brand {
	display: flex; align-items: center; gap: 10px;
	flex: 0 0 auto;
}
.ov-brand .ov-logo-img {
	width: auto;
	height: 52px;
	max-width: min(240px, 58vw);
	max-height: 52px;
	object-fit: contain;
}
.ov-brand__text { font-weight: 800; font-size: 1.15rem; letter-spacing: -.03em; color: #1a4f8a; white-space: nowrap; }
.ov-brand__text strong { color: #2aa3a8; font-weight: 800; }
.ov-nav { display: flex; align-items: center; gap: 8px; }
.ov-menu { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ov-menu a { color: #4a6274; font-size: .92rem; font-weight: 600; padding: 8px 10px; border-radius: 8px; }
.ov-menu a:hover, .ov-menu .current-menu-item > a { color: var(--ov-blue-d); }
.ov-icon-btn {
	width: 40px; height: 40px; border-radius: 999px;
	display: grid; place-items: center;
	color: var(--ov-blue-d); background: #f3f8fb;
}
.ov-nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 10px; }
.ov-nav-toggle span { display: block; height: 2px; background: var(--ov-ink); margin: 6px 0; }

.ov-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px; border-radius: 10px; font-weight: 800; border: 0; cursor: pointer;
	padding: 12px 18px; font-family: inherit; font-size: .95rem;
}
.ov-btn--accent { background: var(--ov-orange); color: #fff; }
.ov-btn--accent:hover { background: var(--ov-orange-d); color: #fff; }
.ov-btn--header { padding: 12px 16px; white-space: nowrap; }
.ov-btn--ghost { background: #fff; color: var(--ov-blue-d); border: 1px solid var(--ov-line); }
.ov-btn--light { background: #fff; color: var(--ov-blue-d); }
.ov-btn--lg { padding: 14px 22px; font-size: 1.05rem; }

.ov-hero {
	position: relative;
	height: calc(100dvh - 76px);
	min-height: 560px;
	display: flex;
	align-items: center;
	padding: 0;
	overflow: hidden;
	background: #fff;
}
.admin-bar .ov-hero { height: calc(100dvh - 108px); }
.ov-hero__visual {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.ov-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: 42% center;
	opacity: 0;
	transition: opacity .85s ease;
	z-index: 0;
	pointer-events: none;
}
.ov-hero__slide.is-active { opacity: 1; z-index: 1; pointer-events: auto; }
.ov-hero__wash {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(90deg,
		rgba(255,255,255,.78) 0%,
		rgba(255,255,255,.55) 14%,
		rgba(255,255,255,.22) 28%,
		rgba(255,255,255,.08) 40%,
		rgba(255,255,255,0) 52%);
}
.ov-hero__caption {
	position: absolute;
	left: auto;
	right: 90px;
	bottom: 28px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	max-width: 380px;
	padding: 10px 14px;
	border-radius: 12px;
	background: rgba(6, 32, 52, .72);
	color: #fff;
	pointer-events: none;
	text-align: right;
}
.ov-hero__caption strong {
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -.02em;
}
.ov-hero__caption em {
	font-style: normal;
	font-size: .82rem;
	font-weight: 500;
	line-height: 1.4;
	opacity: .95;
	text-wrap: balance;
}
.ov-hero::before,
.ov-hero::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(11, 106, 168, .14);
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}
.ov-hero::before {
	width: 520px; height: 520px;
	left: -180px; top: -80px;
}
.ov-hero::after {
	width: 760px; height: 760px;
	left: -260px; top: -160px;
	border-color: rgba(11, 106, 168, .08);
}
.ov-hero__grid {
	display: grid;
	grid-template-columns: minmax(280px, 46%) 1fr;
	gap: 0;
	align-items: center;
	position: relative;
	z-index: 3;
	width: min(1280px, calc(100% - 64px));
	margin-inline: auto;
	pointer-events: none;
}
.ov-hero__copy { pointer-events: auto; }
.ov-kicker { color: var(--ov-blue); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; margin: 0 0 10px; }
.ov-kicker--light { color: #cfe8f7; }
.ov-hero h1 {
	margin: 0 0 22px;
	font-size: clamp(2.4rem, 4.6vw, 3.7rem);
	line-height: 1.1;
	color: var(--ov-blue);
	letter-spacing: -.04em;
	font-weight: 800;
	text-shadow: 0 1px 0 rgba(255,255,255,.55), 0 8px 28px rgba(255,255,255,.45);
}
.ov-hero__brand-line,
.ov-hero__subline { display: block; }
.ov-hero__subline { font-weight: 700; }
.ov-hero__subline--strong { font-weight: 800; }
.ov-hero__highlight {
	display: inline-block;
	margin: 0 0 18px;
	background: var(--ov-orange);
	color: #fff;
	font-weight: 800;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: clamp(1.02rem, 1.6vw, 1.28rem);
	text-align: left;
	letter-spacing: -.01em;
}
.ov-hero__rank {
	margin: 0 0 22px;
	color: #4a6274;
	font-size: clamp(1.55rem, 2.6vw, 2.15rem);
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1.15;
	text-shadow: 0 1px 0 rgba(255,255,255,.7), 0 6px 18px rgba(255,255,255,.4);
}
.ov-hero__aside {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: center;
	max-width: 460px;
	padding-left: 18px;
	border-left: 3px solid var(--ov-blue);
}
.ov-hero__aside-num strong {
	display: block;
	color: var(--ov-blue);
	font-size: 1.55rem;
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1;
}
.ov-hero__aside-num span {
	display: block;
	color: var(--ov-blue);
	font-weight: 800;
	font-size: .92rem;
	margin-top: 4px;
}
.ov-hero__aside p {
	margin: 0;
	color: var(--ov-blue);
	font-size: .88rem;
	line-height: 1.4;
	font-weight: 700;
	text-align: left;
	text-shadow: 0 1px 0 rgba(255,255,255,.65);
}
.ov-lead {
	color: var(--ov-muted);
	font-size: 1.08rem;
	max-width: none;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	overflow-wrap: break-word;
}
.ov-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.ov-hero__stats { display: flex; gap: 28px; padding-top: 8px; }
.ov-hero__stats strong { display: block; color: var(--ov-blue-d); font-size: 1.35rem; }
.ov-hero__stats span { color: var(--ov-muted); font-size: .85rem; }
.ov-slider__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.92);
	color: var(--ov-blue-d);
	font-size: 1.5rem;
	line-height: 1;
	font-family: inherit;
	cursor: pointer;
	z-index: 5;
	box-shadow: 0 6px 16px rgba(15,40,70,.18);
	pointer-events: auto;
}
.ov-slider__btn--prev { left: auto; right: 72px; }
.ov-slider__btn--next { right: 22px; }
.ov-slider__dots {
	position: absolute;
	left: auto;
	right: 90px;
	bottom: 22px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 0;
	z-index: 4;
	transform: none;
}
.ov-slider__dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 2px solid #0b6aa8;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	box-shadow: none;
}
.ov-slider__dots button.is-active {
	background: #0b6aa8;
	width: 10px;
	border-radius: 50%;
}

.ov-section { padding: 56px 0; }
.ov-section--muted { background: #fff; }
.ov-section__head { margin-bottom: 28px; }
.ov-section__head h2, .ov-band h2, .ov-cta h2, .ov-pagehead h1 {
	margin: 0;
	color: var(--ov-blue-d);
	letter-spacing: -.03em;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	text-align: left;
}
.ov-center { text-align: center; margin-top: 28px; }

.ov-copy,
.ov-band p,
.ov-blog-card p,
.ov-sede p,
.ov-prose p,
.ov-prose li,
.entry-content p,
.ov-footer p,
.ov-cta p,
.ov-form__note,
.ov-pagehead p {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	overflow-wrap: break-word;
}
.ov-spec p,
.ov-svc p {
	text-align: left;
	hyphens: auto;
	-webkit-hyphens: auto;
	overflow-wrap: break-word;
}

.ov-spec-grid, .ov-svc-grid, .ov-blog-grid, .ov-staff-grid, .ov-sede-grid {
	display: grid; gap: 18px;
}
.ov-spec-grid { grid-template-columns: repeat(4, 1fr); }
.ov-spec {
	background: #fff; border-radius: 18px; padding: 0 0 18px;
	box-shadow: 0 10px 30px rgba(12,50,80,.06);
	color: inherit; min-height: 210px;
	display: flex; flex-direction: column;
	border: 1px solid transparent; overflow: hidden;
}
.ov-spec:hover { border-color: #cfe4f3; transform: translateY(-2px); color: inherit; }
.ov-spec__img { display: block; }
.ov-spec__img img { width: 100%; height: 150px; object-fit: cover; }
.ov-spec__n, .ov-spec h3, .ov-spec p, .ov-spec__more { padding-left: 18px; padding-right: 18px; }
.ov-spec__n { color: var(--ov-orange); font-weight: 800; font-size: 1.2rem; margin-top: 14px; }
.ov-spec h3 { margin: 10px 0 8px; font-size: 1.12rem; color: var(--ov-blue-d); min-height: 2.5em; }
.ov-spec p { margin: 0 0 auto; color: var(--ov-muted); font-size: .92rem; min-height: 4.6em; }
.ov-spec__more { margin-top: 14px; color: var(--ov-blue); font-weight: 700; font-size: .88rem; }

.ov-band { background: linear-gradient(120deg, #0b6aa8, #084a78); color: #fff; padding: 56px 0; }
.ov-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.ov-band p { color: #d7eaf6; }
.ov-checks { margin: 0; padding: 0; list-style: none; }
.ov-checks li {
	position: relative; padding: 10px 0 10px 28px;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.ov-checks li::before { content: "✓"; position: absolute; left: 0; color: #ffc27a; font-weight: 800; }

.ov-band__photo img { width: 100%; border-radius: 20px; aspect-ratio: 16/10; object-fit: cover; box-shadow: 0 16px 40px rgba(0,0,0,.25); }

.ov-svc-grid { grid-template-columns: repeat(5, 1fr); }
.ov-svc {
	background: #fff; border-radius: 18px; padding: 0 0 16px; color: inherit;
	min-height: 220px; box-shadow: 0 10px 30px rgba(12,50,80,.06); overflow: hidden;
	display: flex; flex-direction: column;
}
.ov-svc__img { display: block; }
.ov-svc__img img { width: 100%; height: 140px; object-fit: cover; object-position: center; }
.ov-svc > span, .ov-svc h3, .ov-svc p { padding-left: 14px; padding-right: 14px; }
.ov-svc > span { display: block; color: var(--ov-orange); font-weight: 800; margin-top: 12px; }
.ov-svc h3 { color: var(--ov-blue-d); margin: 10px 0; font-size: 1.05rem; min-height: 2.4em; }
.ov-svc p { margin: 0; color: var(--ov-muted); font-size: .9rem; min-height: 5.4em; }

.ov-staff-grid { grid-template-columns: repeat(5, 1fr); }
.ov-card-doc { color: inherit; text-align: center; }
.ov-card-doc__photo {
	background: #e8eef2; border-radius: 22px; overflow: hidden;
	margin-bottom: 12px;
	box-shadow: 0 10px 24px rgba(12,50,80,.08);
}
.ov-card-doc__photo img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: top center;
}
.ov-avatar {
	width: 100%; height: 100%; display: grid; place-items: center;
	background: linear-gradient(160deg, #d7ecf7, #9ecce6);
	color: var(--ov-blue-d); font-size: 2.4rem; font-weight: 800;
}
.ov-card-doc h3 { margin: 0; font-size: 1rem; color: var(--ov-blue-d); text-align: center; }
.ov-card-doc p { margin: 4px 0 0; color: var(--ov-muted); font-size: .88rem; text-align: center; }

.ov-blog-grid { grid-template-columns: repeat(3, 1fr); }
.ov-blog-card {
	background: #fff; border-radius: 18px; padding: 24px; color: inherit;
	box-shadow: 0 10px 30px rgba(12,50,80,.06);
}
.ov-blog-card h3 { margin: 0 0 10px; color: var(--ov-blue-d); }
.ov-blog-card p { color: var(--ov-muted); }
.ov-blog-card span { color: var(--ov-orange); font-weight: 800; }

.ov-cta { padding: 20px 0 64px; }
.ov-cta__inner {
	background: #fff; border-radius: 24px; padding: 28px 32px;
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	box-shadow: var(--ov-shadow);
}
.ov-cta p { margin: 6px 0 0; color: var(--ov-muted); }

.ov-pagehead { padding: 42px 0 10px; }
.ov-prose { background: #fff; border-radius: 22px; padding: 32px; max-width: 820px; }
.ov-prose,
.ov-prose p,
.ov-prose li,
.entry-content,
.entry-content p {
	font-family: var(--ov-font);
}
.ov-prose-img { margin-bottom: 18px; border-radius: 16px; overflow: hidden; }
.ov-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.ov-form-wrap { max-width: 720px; background: #fff; border-radius: 22px; padding: 28px; }
.ov-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ov-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: .9rem; }
.ov-form input, .ov-form select, .ov-form textarea {
	font: inherit;
	font-size: 16px;
	padding: 12px 12px;
	border-radius: 10px;
	border: 1px solid var(--ov-line);
	width: 100%;
	max-width: 100%;
}
.ov-span-2 { grid-column: 1 / -1; }
.ov-hp { position: absolute; left: -9999px; }
.ov-alert { padding: 10px 12px; border-radius: 10px; }
.ov-alert--ok { background: #e8f7ee; }
.ov-alert--err { background: #fdecea; }
.ov-form__note { color: var(--ov-muted); font-size: .9rem; }
.ov-sede-grid { grid-template-columns: 1fr 1fr; }
.ov-sede { background: #fff; border-radius: 20px; padding: 0 0 22px; overflow: hidden; }
.ov-sede__img img { width: 100%; height: 220px; object-fit: cover; }
.ov-sede h2, .ov-sede p { padding-left: 22px; padding-right: 22px; }
.ov-sede h2 { margin-top: 18px; }

.ov-logo-row {
	display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center;
}
.ov-logo-row img {
	height: 52px; width: auto; max-width: 150px; object-fit: contain;
	background: #0a3148; padding: 8px 12px; border-radius: 10px;
}
.ov-testi-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; align-items: start; }
.ov-testi-photo img, .ov-testi-video {
	width: 100%; border-radius: 18px; background: #000;
}
.ov-testi-video { aspect-ratio: 9/16; max-height: 480px; object-fit: cover; }
.ov-testi-photo img { aspect-ratio: 9/16; max-height: 480px; object-fit: cover; }

.ov-footer { background: #0a3148; color: #d5e6f1; padding-top: 48px; }
.ov-footer a { color: #fff; }
.ov-footer__top { display: grid; grid-template-columns: 1.3fr .9fr 1.2fr .9fr; gap: 28px; padding-bottom: 28px; }
.ov-footer h3 { color: #fff; margin: 0 0 12px; font-size: 1rem; }
.ov-footer__brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; margin-bottom: 10px; }
.ov-footer__brand .ov-logo-img {
	width: auto;
	height: 48px;
	max-width: 220px;
	object-fit: contain;
	background: #fff;
	border-radius: 12px;
	padding: 8px 12px;
	box-sizing: content-box;
}
.ov-footer__menu { list-style: none; margin: 0; padding: 0; }
.ov-footer__menu a { display: block; padding: 4px 0; color: #c9dce8; }
.ov-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.ov-footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; padding: 16px 0 22px; font-size: .88rem; }

.ov-wa {
	position: fixed;
	right: calc(16px + env(safe-area-inset-right));
	bottom: calc(16px + env(safe-area-inset-bottom));
	z-index: 50;
	display: flex; align-items: center; gap: 10px;
	background: #25d366; color: #fff; padding: 10px 14px 10px 16px;
	border-radius: 999px; box-shadow: 0 10px 24px rgba(20,140,70,.35); font-weight: 700;
}
.ov-wa:hover { color: #fff; }
.ov-wa span { font-size: .85rem; }
.ov-carousel {
	position: relative;
	padding: 0 44px;
}
.ov-carousel__viewport {
	overflow: hidden;
	container-type: inline-size;
}
.ov-carousel__track {
	display: flex;
	gap: 18px;
	transition: transform .5s cubic-bezier(.22,.61,.36,1);
	will-change: transform;
}
.ov-dyn-card {
	flex: 0 0 calc((100cqi - 54px) / 4);
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(12,50,80,.06);
	border: 1px solid transparent;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.ov-carousel[data-per="3"] .ov-dyn-card { flex-basis: calc((100cqi - 36px) / 3); }
.ov-dyn-card:hover { border-color: #cfe4f3; transform: translateY(-2px); }
.ov-dyn-card__media {
	position: relative;
	overflow: hidden;
}
.ov-dyn-card__media img,
.ov-dyn-card__ph {
	width: 100%;
	height: 168px;
	object-fit: cover;
	display: block;
	transition: transform .45s ease;
}
.ov-carousel--staff .ov-dyn-card__media img,
.ov-carousel--staff .ov-dyn-card__ph {
	height: 240px;
	object-position: top center;
}
.ov-dyn-card__ph {
	background: linear-gradient(160deg, #d7ecf7, #9ecce6);
}
.ov-dyn-card:hover .ov-dyn-card__media img { transform: scale(1.06); }
.ov-dyn-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(8,74,120,.35), rgba(8,74,120,.94));
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 12px;
	padding: 16px;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity .3s ease, transform .3s ease;
}
.ov-dyn-card.is-open .ov-dyn-card__overlay {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.ov-dyn-card__overlay p {
	margin: 0;
	font-size: .88rem;
	line-height: 1.45;
	text-align: left;
	hyphens: auto;
}
.ov-dyn-card__overlay .ov-btn { align-self: flex-start; padding: 8px 14px; font-size: .85rem; }
.ov-dyn-card__info {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px 10px;
	align-items: center;
	padding: 14px 16px 16px;
}
.ov-dyn-card__n {
	grid-column: 1;
	color: var(--ov-orange);
	font-weight: 800;
	font-size: 1.05rem;
}
.ov-dyn-card__info h3 {
	grid-column: 1;
	margin: 0;
	font-size: 1.05rem;
	color: var(--ov-blue-d);
	line-height: 1.25;
}
.ov-dyn-card__ver {
	grid-column: 2;
	grid-row: 1 / span 2;
	border: 1px solid var(--ov-line);
	background: #fff;
	color: var(--ov-blue);
	font-weight: 800;
	font-size: .82rem;
	border-radius: 999px;
	padding: 8px 14px;
	cursor: pointer;
	font-family: inherit;
}
.ov-dyn-card.is-open .ov-dyn-card__ver,
.ov-dyn-card__ver:hover {
	background: var(--ov-orange);
	border-color: var(--ov-orange);
	color: #fff;
}
.ov-carousel__btn {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--ov-blue-d);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(12,50,80,.14);
	z-index: 3;
	font-family: inherit;
}
.ov-carousel__btn--prev { left: 0; }
.ov-carousel__btn--next { right: 0; }
.ov-carousel__btn:disabled { opacity: .35; cursor: default; }

@media (max-width: 1100px) {
	.ov-nav-toggle { display: block; min-width: 44px; min-height: 44px; }
	.ov-nav {
		position: fixed;
		top: calc(76px + env(safe-area-inset-top));
		left: 0;
		right: 0;
		bottom: auto;
		background: #fff;
		display: none;
		flex-direction: column;
		padding: 16px 16px calc(20px + env(safe-area-inset-bottom));
		border-bottom: 1px solid var(--ov-line);
		max-height: calc(100dvh - 76px - env(safe-area-inset-top));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 39;
	}
	.ov-nav.is-open { display: flex; }
	.ov-menu { flex-direction: column; width: 100%; }
	.ov-menu a { padding: 12px 10px; min-height: 44px; }
	.ov-btn--header { width: 100%; min-height: 48px; }
	.ov-icon-btn { min-width: 44px; min-height: 44px; }
	.ov-dyn-card,
	.ov-carousel[data-per="3"] .ov-dyn-card { flex-basis: calc((100cqi - 18px) / 2); }
	.ov-hero__grid, .ov-band__grid, .ov-split, .ov-cta__inner { grid-template-columns: 1fr; }
	.ov-spec-grid, .ov-svc-grid, .ov-staff-grid, .ov-blog-grid, .ov-sede-grid, .ov-footer__top, .ov-testi-grid {
		grid-template-columns: 1fr 1fr;
	}
	.ov-hero { height: auto; min-height: 0; display: block; padding-bottom: 28px; overflow: hidden; }
	.ov-hero::before,
	.ov-hero::after { display: none; }
	.ov-hero__visual {
		position: relative;
		height: min(46vh, 380px);
		width: 100%;
	}
	.ov-hero__slide { left: 0; background-position: center center; }
	.ov-hero__wash { display: none; }
	.ov-hero__caption {
		left: 12px;
		right: 12px;
		bottom: 44px;
		width: auto;
		max-width: calc(100% - 24px);
		align-items: flex-start;
		text-align: left;
		padding: 8px 12px;
		overflow: hidden;
	}
	.ov-hero__caption em {
		display: block;
		overflow-wrap: anywhere;
		white-space: normal;
	}
	.ov-hero__caption strong { font-size: .9rem; }
	.ov-hero__caption em { font-size: .74rem; }
	.ov-hero__grid {
		display: block;
		width: min(1180px, calc(100% - 32px));
		padding-top: 12px;
		pointer-events: auto;
	}
	.ov-hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); margin-bottom: 14px; }
	.ov-hero__highlight { font-size: .95rem; padding: 8px 14px; max-width: 100%; }
	.ov-hero__rank { font-size: clamp(1.2rem, 5vw, 1.6rem); margin-bottom: 16px; }
	.ov-hero__aside { max-width: none; }
	.ov-slider__btn {
		width: 44px;
		height: 44px;
		top: 50%;
	}
	.ov-slider__btn--prev { left: 10px; right: auto; }
	.ov-slider__btn--next { right: 10px; }
	.ov-slider__dots {
		left: 12px;
		right: auto;
		bottom: 12px;
		justify-content: flex-start;
	}
	.ov-cta { padding: 12px 0 80px; }
	.ov-cta__inner { flex-direction: column; align-items: flex-start; padding: 22px; }
	.ov-prose, .ov-form-wrap { padding: 20px; }
	body.ov-nav-lock { overflow: hidden; }
}
@media (max-width: 820px) {
	.ov-carousel { padding: 0 40px; }
	.ov-dyn-card,
	.ov-carousel[data-per="3"] .ov-dyn-card { flex-basis: 100cqi; }
	.ov-spec-grid, .ov-svc-grid, .ov-staff-grid, .ov-blog-grid, .ov-sede-grid, .ov-footer__top, .ov-form__grid, .ov-testi-grid {
		grid-template-columns: 1fr;
	}
	.ov-hero__stats { flex-direction: column; gap: 10px; }
	.ov-hero__aside {
		grid-template-columns: 1fr;
		padding-left: 14px;
		gap: 8px;
	}
	.ov-hero__aside p { font-size: .92rem; }
	.ov-wa {
		padding: 12px;
		right: calc(12px + env(safe-area-inset-right));
		bottom: calc(12px + env(safe-area-inset-bottom));
	}
	.ov-wa span { display: none; }
	.ov-footer__bottom-inner { flex-direction: column; }
	.ov-section { padding: 40px 0; }
	.ov-wrap { width: min(1180px, calc(100% - 28px)); }
	.ov-header__inner { width: min(1280px, calc(100% - 20px)); gap: 10px; }
	.ov-brand__text { font-size: 1rem; }
	.ov-brand .ov-logo-img { height: 42px; max-height: 42px; }
	.ov-carousel__btn { width: 44px; height: 44px; }
	.ov-logo-row { justify-content: center; }
}
@media (max-width: 390px) {
	.ov-hero__visual { height: min(42vh, 320px); }
	.ov-hero h1 { font-size: 1.7rem; }
}
