/* サイト骨格セクション: ヘッダー/ドロワー/SP固定CTA/ヒーロー/CTA帯/アクセス/フッター。 */

/* ---- ヘッダー ---- */
.wpt-topbar {
	background: var(--wpt-color-primary);
	color: #fff;
	font-size: 0.8rem;
	display: none;
}

.wpt-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 34px;
}

.wpt-topbar__tel {
	color: var(--wpt-color-accent);
	font-weight: bold;
	text-decoration: none;
	font-size: 0.95rem;
}

@media (min-width: 1024px) {
	.wpt-topbar {
		display: block;
	}
}

.wpt-header {
	background: #fff;
	border-bottom: 1px solid var(--wpt-border);
	position: relative;
	z-index: 50;
}

.wpt-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 64px;
}

.wpt-header__brand {
	font-family: var(--wpt-font-heading);
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--wpt-color-primary-deep);
	text-decoration: none;
	line-height: 1.3;
}

.wpt-header__brand small {
	display: block;
	font-family: var(--wpt-font-body);
	font-size: 0.65rem;
	color: var(--wpt-ink-muted);
	font-weight: normal;
}

.wpt-header__nav {
	display: none;
}

@media (min-width: 1024px) {
	.wpt-header__nav {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.wpt-header__nav ul {
		display: flex;
		gap: 4px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.wpt-header__nav a {
		display: block;
		padding: 8px 12px;
		color: var(--wpt-ink);
		text-decoration: none;
		font-size: 0.92rem;
		border-radius: 4px;
	}

	.wpt-header__nav a:hover {
		background: var(--wpt-color-primary-soft);
		color: var(--wpt-color-primary);
	}

	.wpt-header__cta {
		margin-left: 8px;
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}

/* SPハンバーガー+ドロワー */
.wpt-drawer-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: none;
	border: 0;
	cursor: pointer;
}

.wpt-drawer-toggle span {
	display: block;
	height: 2px;
	background: var(--wpt-color-primary-deep);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (min-width: 1024px) {
	.wpt-drawer-toggle {
		display: none;
	}
}

.wpt-drawer {
	position: fixed;
	inset: 0;
	background: var(--wpt-color-primary-deep);
	color: #fff;
	z-index: 100;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.wpt-drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.wpt-drawer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.wpt-drawer a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 14px;
	font-size: 1.05rem;
}

.wpt-drawer__close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 1.8rem;
	cursor: pointer;
	width: 44px;
	height: 44px;
}

.wpt-drawer__tel {
	margin-top: 24px;
	text-align: center;
}

.wpt-drawer__tel a {
	color: var(--wpt-color-accent);
	font-size: 1.4rem;
	font-weight: bold;
}

/* SP下部固定CTAバー */
.wpt-fixed-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: flex;
	box-shadow: 0 -2px 10px rgba(14, 27, 51, 0.15);
	transition: transform 0.3s ease;
}

.wpt-fixed-cta.is-hidden {
	transform: translateY(100%);
}

.wpt-fixed-cta a {
	flex: 1;
	text-align: center;
	padding: 14px 8px;
	font-weight: bold;
	font-size: 0.95rem;
	text-decoration: none;
}

.wpt-fixed-cta__tel {
	background: var(--wpt-color-primary);
	color: #fff;
}

.wpt-fixed-cta__mail {
	background: var(--wpt-color-accent);
	color: var(--wpt-color-primary-deep);
}

@media (min-width: 1024px) {
	.wpt-fixed-cta {
		display: none;
	}
}

body {
	padding-bottom: 52px;
}

@media (min-width: 1024px) {
	body {
		padding-bottom: 0;
	}
}

/* ---- ヒーロー ---- */
.wpt-hero--video {
	overflow: hidden;
}

.wpt-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.wpt-hero--video .wpt-hero__inner {
	position: relative;
	z-index: 1;
}

.wpt-hero--video::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(11, 15, 26, 0.55);
	z-index: 0;
}

.wpt-hero {
	position: relative;
	min-height: 72vh;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(14, 27, 51, 0.55), rgba(14, 27, 51, 0.55)), var(--wpt-hero-image, linear-gradient(135deg, #16233f, #2e4370)) center / cover no-repeat;
	color: #fff;
}

@media (min-width: 1024px) {
	.wpt-hero {
		min-height: 560px;
	}
}

.wpt-hero__inner {
	padding-block: 64px;
}

.wpt-hero h1 {
	color: #fff;
	margin-bottom: 16px;
}

.wpt-hero h1 em {
	font-style: normal;
	color: var(--wpt-color-accent);
}

.wpt-hero__sub {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 28px;
}

.wpt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* ヒーロー直下のバッジ帯 */
.wpt-badge-bar {
	background: var(--wpt-color-primary-soft);
	font-size: 0.82rem;
	color: var(--wpt-color-primary-deep);
}

.wpt-badge-bar__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 24px;
	padding-block: 10px;
	justify-content: center;
}

/* ---- CTA帯(紺ベタ) ---- */
.wpt-cta-band {
	background: var(--wpt-color-primary-deep);
	color: #fff;
	text-align: center;
}

.wpt-cta-band h2 {
	color: #fff;
}

.wpt-cta-band h2::after {
	background: var(--wpt-color-accent);
}

.wpt-cta-band__tel {
	display: inline-block;
	color: #fff;
	font-size: clamp(1.8rem, 6vw, 2.6rem);
	font-weight: bold;
	text-decoration: none;
	line-height: 1.3;
	letter-spacing: 0.04em;
}

.wpt-cta-band__hours {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	margin-bottom: 24px;
}

/* ---- アクセス ---- */
.wpt-access {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
	.wpt-access {
		grid-template-columns: 1.2fr 1fr;
	}
}

.wpt-access__map iframe {
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 0;
	border-radius: var(--wpt-radius-img);
}

/* ---- 代表挨拶 ---- */
.wpt-greeting {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
	align-items: start;
}

@media (min-width: 768px) {
	.wpt-greeting {
		grid-template-columns: 280px 1fr;
	}
}

.wpt-greeting__photo img {
	border-radius: var(--wpt-radius-img);
	border: 3px solid var(--wpt-color-accent);
	display: block;
	width: 100%;
}

.wpt-greeting__name {
	font-family: var(--wpt-font-heading);
	font-size: 1.3rem;
	color: var(--wpt-color-primary-deep);
	margin-top: 16px;
}

/* ---- フッター ---- */
.wpt-footer {
	background: var(--wpt-color-primary-deep);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	margin-top: 0;
}

.wpt-footer a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.wpt-footer a:hover {
	color: #fff;
}

.wpt-footer__cols {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
	padding-block: 48px 32px;
}

@media (min-width: 768px) {
	.wpt-footer__cols {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

.wpt-footer__title {
	font-family: var(--wpt-font-heading);
	color: #fff;
	font-size: 1.05rem;
	margin-bottom: 14px;
}

.wpt-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wpt-footer li {
	margin-bottom: 8px;
}

.wpt-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-block: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	justify-content: space-between;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}
