/* ── 魚乃心粋固定ページテンプレート ── */

/* ── SWELL標準UI非表示 ── */
.page-template-page-uonokokoroiki #breadcrumb {
	display: none;
}

.page-template-page-uonokokoroiki #sidebar {
	display: none;
}

/* コンテンツ幅を1カラム化 */
.page-template-page-uonokokoroiki .l-mainContent {
	flex: 1 1 100%;
	max-width: 100%;
}

/* ── ページヘッダー（フルワイド） ── */
.page-header-custom {
	background: linear-gradient(135deg, #065986 0%, #0b4a6f 50%, #083344 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: 320px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: -64px;
	box-sizing: border-box;
}

.page-header-custom::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 8px,
		rgba(255, 255, 255, 0.03) 8px,
		rgba(255, 255, 255, 0.03) 16px
	);
	pointer-events: none;
}

.page-header-custom__inner {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 2rem;
}

/* パンくず */
.page-header-custom__breadcrumb ol {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	font-size: 0.875rem;
}

.page-header-custom__breadcrumb a {
	color: rgba(185, 230, 254, 0.8);
	text-decoration: none;
	transition: color 0.3s;
}

.page-header-custom__breadcrumb a:hover {
	color: #fff;
}

.page-header-custom__breadcrumb .separator {
	color: rgba(54, 191, 250, 0.6);
}

.page-header-custom__breadcrumb .current {
	color: #fff;
}

/* タイトル */
.page-header-custom__title {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.025em;
	margin: 0;
	line-height: 1;
}

/* サブタイトル */
.page-header-custom__subtitle {
	color: rgba(185, 230, 254, 0.8);
	margin-top: 1rem;
	font-size: 1rem;
}

/* ── ロープボーダー装飾（FV下部） ── */
.page-header-custom::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 6px;
	z-index: 1;
	background: repeating-linear-gradient(
		90deg,
		#00b4d8 0px,
		#00b4d8 8px,
		#0090ad 8px,
		#0090ad 12px,
		#00b4d8 12px,
		#00b4d8 20px
	);
}

/* ── レスポンシブ ── */
@media (max-width: 599px) {
	.page-header-custom {
		padding: 6rem 1rem 2.5rem;
		min-height: 220px;
	}

	.page-header-custom__title {
		font-size: 1.75rem;
	}
}

@media (min-width: 600px) and (max-width: 959px) {
	.page-header-custom__title {
		font-size: 2rem;
	}
}
