body {
	font-family: var(--tz-font-sans);
	color: var(--tz-color-text);
	background:
		radial-gradient(circle at top left, rgba(var(--tz-color-primary-rgb), 0.16), transparent 28%),
		linear-gradient(180deg, #f8fbff 0, #ffffff 240px, #f7f8fb 100%);
}

body.is-header-layer-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

:root {
	--tz-border-soft: rgba(54, 92, 150, 0.12);
	--tz-shadow-soft: 0 18px 42px rgba(54, 92, 150, 0.08);
	--tz-shadow-card: 0 14px 28px rgba(54, 92, 150, 0.08);
	--tz-shadow-float: 0 14px 30px rgba(54, 92, 150, 0.18);
	--tz-radius-lg: 16px;
	--tz-radius-md: 12px;
	--tz-radius-sm: 8px;
	--tz-header-height: 76px;
}

.container,
.l-wrapper {
	width: min(calc(100% - 32px), var(--tz-max-width));
}

.container {
	margin-right: auto;
	margin-left: auto;
}

.l-wrapper {
	display: grid;
	gap: 32px;
	margin: 32px auto 72px;
}

.l-main,
.l-sidebar {
	width: 100%;
}

.tz-blog-hero {
	width: min(calc(100% - 32px), var(--tz-max-width));
	margin: 32px auto 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.tz-blog-hero + .l-wrapper {
	margin-top: 28px;
}

.u-shadow,
.archive__item-border {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--tz-border-soft);
	border-radius: var(--tz-radius-lg);
	box-shadow: var(--tz-shadow-soft);
}

.u-shadow {
	padding: 24px 20px;
}

/* デスクトップは記事・固定ページの横余白を少し広げて窮屈さを解消 */
@media only screen and (min-width: 768px) {
	.u-shadow {
		padding: 28px 36px;
	}
}

.tz-header {
	position: sticky;
	top: 0;
	z-index: 999;
	border-bottom: 1px solid rgba(54, 92, 150, 0.1);
	box-shadow: 0 8px 24px rgba(54, 92, 150, 0.07);
}

/* 背景ぼかしは擬似要素に分離する。ヘッダー自体に backdrop-filter があると、
   中のドロワー（position:fixed）がヘッダーの高さに閉じ込められ、項目が一部しか見えなくなるため。 */
.tz-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	z-index: -1;
}

.tz-header.is-scrolled {
	box-shadow: 0 12px 28px rgba(54, 92, 150, 0.12);
}

.container-header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	min-height: var(--tz-header-height);
	padding: 12px 0;
}

.siteTitle {
	margin: 0;
	max-width: 100%;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--tz-color-deep);
}

.siteTitle .custom-logo-link,
.siteTitle__link {
	display: inline-flex;
	align-items: center;
}

.siteTitle .custom-logo {
	width: auto;
	max-height: 48px;
}

.globalNavi {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(88vw, 360px);
	margin: 0;
	padding: 88px 20px 32px;
	background: #fff;
	box-shadow: -16px 0 40px rgba(54, 92, 150, 0.18);
	transform: translateX(105%);
	transition: transform 0.28s ease;
	overflow-y: auto;
}

.globalNavi.is-open {
	transform: translateX(0);
}

.globalNavi__inner {
	overflow: visible;
}

.globalNavi__list,
.menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.globalNavi__list li,
.menu li {
	margin: 0;
}

.globalNavi__list a,
.menu a {
	display: block;
	padding: 13px 16px;
	border-radius: 999px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.5;
	color: #31476f;
}

.globalNavi__list .current-menu-item > a,
.globalNavi__list .current_page_item > a,
.globalNavi__list a:hover,
.menu a:hover {
	color: var(--tz-color-deep);
	background: rgba(var(--tz-color-primary-rgb), 0.12);
}

.globalNavi__list .sub-menu {
	padding-left: 14px;
}

.tz-header__actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.tz-search-toggle,
.tz-nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 14px;
	font: inherit;
	color: var(--tz-color-deep);
	background: rgba(var(--tz-color-primary-rgb), 0.08);
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.14);
	border-radius: 999px;
}

.tz-search-toggle:hover,
.tz-nav-toggle:hover {
	background: rgba(var(--tz-color-primary-rgb), 0.14);
	box-shadow: 0 10px 22px rgba(54, 92, 150, 0.12);
	transform: translateY(-1px);
}

.tz-actionLabel {
	font-size: 1.2rem;
	font-weight: 700;
}

.tz-actionIcon {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
}

.tz-actionIcon-search::before,
.tz-actionIcon-search::after {
	content: "";
	position: absolute;
}

.tz-actionIcon-search::before {
	inset: 0;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.tz-actionIcon-search::after {
	right: -4px;
	bottom: -3px;
	width: 7px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: center;
}

.tz-nav-toggle__box {
	display: inline-grid;
	gap: 4px;
}

.tz-nav-toggle__box span {
	display: block;
	width: 16px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.tz-nav-toggle[aria-expanded="true"] .tz-nav-toggle__box span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.tz-nav-toggle[aria-expanded="true"] .tz-nav-toggle__box span:nth-child(2) {
	opacity: 0;
}

.tz-nav-toggle[aria-expanded="true"] .tz-nav-toggle__box span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.tz-search-panel {
	padding: 0 0 20px;
}

.tz-search-panel__inner {
	padding: 22px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.12);
	border-radius: 0 0 var(--tz-radius-lg) var(--tz-radius-lg);
	box-shadow: var(--tz-shadow-card);
}

.tz-search-panel__title {
	margin: 0 0 12px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--tz-color-deep);
}

.tz-header-overlay {
	position: fixed;
	inset: 0;
	z-index: 900;
	background: rgba(21, 34, 58, 0.48);
}

.breadcrumb {
	overflow: visible;
	margin-bottom: 20px;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumb__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #6f7a8d;
}

.breadcrumb__item:not(:last-child)::after {
	content: "/";
	color: rgba(54, 92, 150, 0.35);
}

.breadcrumb__item a:hover {
	color: var(--tz-color-link);
}

.tz-entry-header,
.archiveHead {
	margin-bottom: 24px;
}

.heading {
	margin-bottom: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.heading a:hover {
	color: var(--tz-color-link);
}

.heading-primary {
	font-size: clamp(2.4rem, 3.5vw, 3.6rem);
	line-height: 1.35;
	color: #13233f;
}

.heading-sub {
	font-size: clamp(2rem, 3vw, 2.8rem);
	color: #13233f;
}

.heading-secondary {
	font-size: 1.9rem;
	line-height: 1.5;
	color: #13233f;
}

.heading-widget {
	position: relative;
	margin-bottom: 18px;
	padding: 12px 16px 12px 18px;
	font-size: 1.5rem;
	color: #fff;
	background: linear-gradient(135deg, var(--tz-color-deep), var(--tz-color-primary));
	border-radius: 14px;
	box-shadow: 0 10px 20px rgba(54, 92, 150, 0.14);
}

.heading-widget::before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 8px;
	width: 3px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 999px;
}

.the__category,
.eyecatch__cat {
	background: var(--tz-color-primary);
	border-radius: 999px;
	box-shadow: 0 10px 20px rgba(109, 145, 206, 0.22);
}

.the__category {
	margin-bottom: 14px;
}

.the__category a,
.eyecatch__cat a {
	display: block;
	padding: 7px 12px;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
}

.the__category a::before,
.eyecatch__cat a::before {
	content: "#";
	margin-right: 4px;
}

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

.dateList-main {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-bottom: 0;
}

.dateList__item {
	font-size: 1.2rem;
	font-weight: 500;
	color: #6f7a8d;
}

.eyecatch {
	position: relative;
	width: 100%;
	margin-bottom: 0;
	overflow: hidden;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(var(--tz-color-primary-rgb), 0.2), rgba(54, 92, 150, 0.06));
}

.eyecatch:before {
	padding-top: 56.25%;
}

/* カードのアイキャッチは端を切らず全体を見せる（contain・中央） */
.tz-card .eyecatch {
	background: #eef2f8;
}

.tz-card .eyecatch .eyecatch__link img,
.tz-card .eyecatch > img {
	object-fit: contain;
}

.eyecatch-main {
	margin: 0 0 28px;
	border-radius: 20px;
	box-shadow: var(--tz-shadow-card);
}

/* 記事トップのアイキャッチは固定比率をやめ、画像全体をフル表示（見切れ防止） */
.eyecatch-main::before {
	content: none;
}

.eyecatch-main > img,
.eyecatch-main .eyecatch__link img {
	position: static;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.eyecatch .eyecatch__link img,
.eyecatch > img {
	border-radius: inherit;
}

.eyecatch__link::after {
	content: "READ MORE";
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.eyecatch__cat {
	position: absolute;
	top: 14px;
	left: 14px;
	right: auto;
	max-width: calc(100% - 28px);
}

.archiveHead .phrase-secondary {
	margin-bottom: 0;
}

.archive {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 28px;
}

.archive__item {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

.archive__item-border {
	padding: 14px;
}

.archive__contents {
	padding: 16px 8px 6px;
}

.phrase {
	margin-bottom: 0;
	line-height: 1.9;
}

.phrase-secondary {
	color: #56647a;
}

.tz-card .phrase-secondary {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tz-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow: hidden;
}

.tz-card .archive__contents {
	flex: 1 1 auto;
}

.tz-card:hover {
	box-shadow: var(--tz-shadow-float);
	transform: translateY(-4px);
}

.tz-card:hover .eyecatch__link img {
	transform: scale(1.08);
}

.pageNation {
	margin-top: 6px;
}

.pageNation__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.pageNation__item a,
.pageNation__item .current,
.pageNation__item .dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	padding: 0 16px;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--tz-color-deep);
	background: #fff;
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.16);
	border-radius: 999px;
	box-shadow: 0 8px 16px rgba(54, 92, 150, 0.06);
}

.pageNation__item a:hover,
.pageNation__item.is-current .current {
	color: #fff;
	background: linear-gradient(135deg, var(--tz-color-primary), var(--tz-color-deep));
	border-color: transparent;
}

.content {
	font-size: 1.55rem;
	line-height: 2;
	color: #24334d;
}

.content > * + * {
	margin-top: 1.8em;
}

.content p {
	margin: 0;
}

/* 連続する文（1文1段落）は詰めて流し、空行(&nbsp;段落)でブロックを区切る読みやすさ */
.content p + p {
	margin-top: 0.7em;
}

.content a {
	color: var(--tz-color-link);
	text-decoration-color: rgba(30, 115, 190, 0.28);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

.content a:hover {
	color: var(--tz-color-deep);
	text-decoration-color: currentColor;
}

.content h2,
.content h3,
.content h4 {
	margin-top: 2.8em;
	margin-bottom: 0.8em;
	font-weight: 700;
	line-height: 1.45;
	color: #162541;
}

.content h2 {
	position: relative;
	margin-top: 3.6em;
	padding: 18px 22px 18px 24px;
	font-size: clamp(2rem, 3vw, 2.8rem);
	background: linear-gradient(135deg, rgba(var(--tz-color-primary-rgb), 0.12), rgba(255, 255, 255, 0.94));
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.16);
	border-radius: 16px;
	box-shadow: 0 12px 24px rgba(54, 92, 150, 0.08);
}

.content h2::before {
	content: "";
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 10px;
	width: 5px;
	background: linear-gradient(180deg, var(--tz-color-primary), var(--tz-color-deep));
	border-radius: 999px;
}

.content h3 {
	position: relative;
	padding: 0 0 10px 16px;
	font-size: clamp(1.8rem, 2.6vw, 2.2rem);
	border-bottom: 1px solid rgba(var(--tz-color-primary-rgb), 0.16);
}

.content h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.15em;
	bottom: 0.45em;
	width: 4px;
	background: var(--tz-color-primary);
	border-radius: 999px;
}

.content h4 {
	font-size: 1.8rem;
	padding-left: 1em;
}

.content h4::before {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	margin-right: 0.55em;
	margin-left: -1em;
	background: var(--tz-color-primary);
	border-radius: 50%;
	vertical-align: 0.08em;
}

.content ul,
.content ol {
	margin: 0;
	padding-left: 1.5em;
}

.content li + li {
	margin-top: 0.5em;
}

.content blockquote {
	position: relative;
	margin: 0;
	padding: 22px 22px 22px 26px;
	background: #f6f8fd;
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.12);
	border-radius: 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.content blockquote::before {
	content: "";
	position: absolute;
	top: 18px;
	bottom: 18px;
	left: 12px;
	width: 4px;
	background: rgba(var(--tz-color-primary-rgb), 0.4);
	border-radius: 999px;
}

.content table {
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.16);
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(54, 92, 150, 0.05);
}

.content th,
.content td {
	padding: 14px 16px;
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.12);
}

.content th {
	background: var(--tz-color-deep);
	color: #fff;
}

.content tr:nth-child(odd) td {
	background: rgba(var(--tz-color-primary-rgb), 0.04);
}

.content img {
	border-radius: 14px;
	box-shadow: 0 10px 20px rgba(54, 92, 150, 0.08);
}

.outline {
	margin: 0 0 28px;
	padding: 18px;
	background: linear-gradient(180deg, rgba(var(--tz-color-primary-rgb), 0.06), rgba(255, 255, 255, 0.95));
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.14);
	border-radius: 18px;
	box-shadow: var(--tz-shadow-card);
}

.outline__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(var(--tz-color-primary-rgb), 0.1);
}

.outline__title {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 700;
	color: #162541;
	white-space: nowrap;
	flex: 0 0 auto;
}

.outline__toggle {
	padding: 8px 14px;
	font: inherit;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--tz-color-deep);
	background: #fff;
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.14);
	border-radius: 999px;
}

.outline__toggle:hover {
	background: rgba(var(--tz-color-primary-rgb), 0.08);
}

.outline__list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}

.outline__item + .outline__item {
	margin-top: 2px;
}

.outline__item-level-3 {
	padding-left: 18px;
}

.outline__link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 5px 10px;
	border-radius: 10px;
	color: #23334e;
}

.outline__link:hover {
	background: rgba(var(--tz-color-primary-rgb), 0.08);
}

.outline__number {
	flex: 0 0 auto;
	min-width: 2.8em;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--tz-color-primary);
}

.outline__label {
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1.45;
}

.tz-entry-footer {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(var(--tz-color-primary-rgb), 0.12);
}

.tz-entry-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tz-entry-tag {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--tz-color-deep);
	background: rgba(var(--tz-color-primary-rgb), 0.08);
	border-radius: 999px;
}

.tz-entry-tag:hover {
	color: #fff;
	background: var(--tz-color-primary);
}

.postCta,
.related {
	margin-top: 36px;
}

.postcta-bg {
	padding: 24px;
	background: linear-gradient(135deg, #365c96, #6d91ce);
	border-radius: 20px;
	box-shadow: 0 18px 30px rgba(54, 92, 150, 0.2);
}

.postCta__inner {
	color: #fff;
}

.postCta__lead {
	margin: 0 0 8px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.8;
}

.postCta__title {
	margin: 0 0 12px;
	font-size: clamp(2rem, 3vw, 2.8rem);
	line-height: 1.4;
}

.postCta__text {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.9;
	opacity: 0.92;
}

.postCta__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 22px;
}

.btn__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
}

.btn__link::before {
	content: none;
}

.btn__link-primary,
.btn__link-search {
	color: #fff;
	background: linear-gradient(135deg, var(--tz-color-primary), var(--tz-color-deep));
	border: 1px solid transparent;
	box-shadow: 0 12px 24px rgba(54, 92, 150, 0.18);
}

.btn__link-primary:hover,
.btn__link-search:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(54, 92, 150, 0.22);
}

.btn__link-line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #06c755, #04a54a);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(6, 199, 85, 0.24);
}

.btn__link-line:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(6, 199, 85, 0.3);
}

.postCta .btn__link-primary {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.12));
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: none;
}

.postCta .btn__link-primary:hover {
	box-shadow: 0 12px 24px rgba(21, 34, 58, 0.18);
}

.related__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.tz-sidebar {
	display: grid;
	gap: 20px;
}

.widget {
	margin-bottom: 0;
	padding: 18px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--tz-border-soft);
	border-radius: 18px;
	box-shadow: var(--tz-shadow-card);
}

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

.widget li + li {
	margin-top: 10px;
}

.widget ul li a {
	display: block;
	padding: 10px 14px;
	line-height: 1.7;
	color: #23334e;
	background: rgba(var(--tz-color-primary-rgb), 0.04);
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.08);
	border-radius: 12px;
}

.widget ul li a:hover {
	color: var(--tz-color-deep);
	background: rgba(var(--tz-color-primary-rgb), 0.1);
}

.widget select {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	font: inherit;
	color: #23334e;
	background: #fff;
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.16);
	border-radius: 12px;
}

.widgetSearch__contents {
	display: grid;
	gap: 14px;
}

.search-form {
	display: grid;
	gap: 12px;
}

.search-field {
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	font: inherit;
	border: 1px solid rgba(var(--tz-color-primary-rgb), 0.16);
	border-radius: 14px;
	background: #fff;
}

.search-field:focus,
.widget select:focus {
	outline: 0;
	border-color: rgba(var(--tz-color-primary-rgb), 0.55);
	box-shadow: 0 0 0 4px rgba(var(--tz-color-primary-rgb), 0.12);
}

.search-submit {
	width: 100%;
	border: 0;
}

.widgetPosts__list {
	display: grid;
	gap: 14px;
}

.widgetPosts__item {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.widgetPosts__thumb {
	display: block;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 8px 16px rgba(54, 92, 150, 0.1);
}

.widgetPosts__thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: contain;
	background: #eef2f8;
	border-radius: inherit;
	box-shadow: none;
}

.widgetPosts__thumb:hover img {
	transform: scale(1.06);
}

.widgetPosts__cat {
	margin-bottom: 6px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--tz-color-primary);
}

.widgetPosts__title {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.65;
	font-weight: 500;
}

.widgetPosts__meta {
	margin: 6px 0 0;
	font-size: 1.1rem;
	color: #7a8699;
}

.widgetProfile__card {
	padding: 20px;
	background: linear-gradient(180deg, rgba(var(--tz-color-primary-rgb), 0.08), rgba(255, 255, 255, 0.96));
	border-radius: 16px;
}

.widgetProfile__brand {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.widgetProfile__logo .custom-logo {
	max-height: 42px;
	width: auto;
}

.widgetProfile__name {
	margin: 0;
	font-size: 1.7rem;
	font-weight: 700;
	color: #162541;
}

.widgetProfile__text {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.9;
	color: #4c5b72;
}

.widgetProfile__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
	min-height: 42px;
	padding: 0 18px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, var(--tz-color-primary), var(--tz-color-deep));
	border-radius: 999px;
}

.widgetProfile__link:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 22px rgba(54, 92, 150, 0.2);
}

.tz-footer {
	margin-top: 72px;
	padding: 52px 0 26px;
	color: rgba(255, 255, 255, 0.88);
	background: linear-gradient(180deg, #365c96 0, #26416b 100%);
}

.tz-footer__inner {
	display: grid;
	gap: 20px;
}

.tz-footer__title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}

.tz-footer__description {
	margin: 12px 0 0;
	font-size: 1.3rem;
	line-height: 1.8;
}

.bottomFooter__list .menu,
.tz-footer .menu {
	gap: 10px;
}

.bottomFooter__list a,
.tz-footer .menu a {
	padding: 0;
	color: rgba(255, 255, 255, 0.85);
	background: transparent;
}

.bottomFooter__list a:hover,
.tz-footer .menu a:hover {
	color: #fff;
	background: transparent;
}

.tz-footer__bottom {
	display: grid;
	gap: 14px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.tz-footer__copy {
	margin: 0;
	font-size: 1.2rem;
}

.tz-empty {
	text-align: center;
}

@media only screen and (min-width: 768px) {
	.l-wrapper {
		grid-template-columns: minmax(0, 1fr) 300px;
		align-items: start;
	}

	.archive {
		grid-template-columns: 1fr;
	}

	.archive .tz-card {
		flex-direction: row;
		align-items: stretch;
		gap: 22px;
		padding: 16px;
	}

	.archive .tz-card .eyecatch {
		flex: 0 0 38%;
		max-width: 300px;
		align-self: flex-start;
	}

	.archive .tz-card .archive__contents {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 8px;
		padding: 0 8px 4px 0;
	}

	.archive .tz-card .archive__contents > * {
		margin: 0;
	}

	.related__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.postCta__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media only screen and (min-width: 992px) {
	.container-header {
		grid-template-columns: auto 1fr auto;
		gap: 28px;
		padding: 0;
	}

	.siteTitle {
		margin-right: 8px;
	}

	.globalNavi {
		position: relative;
		inset: auto;
		width: auto;
		padding: 0;
		background: transparent;
		box-shadow: none;
		transform: none;
		overflow: visible;
	}

	.globalNavi__list {
		flex-direction: row;
		align-items: center;
		gap: 4px;
	}

	.globalNavi__list > li {
		position: relative;
	}

	.globalNavi__list > li > a {
		padding: 28px 16px;
		border-radius: 0;
		font-size: 1.35rem;
		color: rgba(54, 92, 150, 0.74);
		background: transparent;
		border-bottom: 2px solid transparent;
	}

	.globalNavi__list > li > a:hover,
	.globalNavi__list > .current-menu-item > a,
	.globalNavi__list > .current_page_item > a {
		color: var(--tz-color-deep);
		background: transparent;
		border-bottom-color: var(--tz-color-primary);
	}

	.globalNavi__list .sub-menu {
		position: absolute;
		top: calc(100% - 6px);
		left: 0;
		min-width: 220px;
		padding: 10px;
		background: #fff;
		border: 1px solid rgba(var(--tz-color-primary-rgb), 0.12);
		border-radius: 14px;
		box-shadow: 0 16px 28px rgba(54, 92, 150, 0.14);
		opacity: 0;
		pointer-events: none;
		transform: translateY(10px);
	}

	.globalNavi__list li:hover > .sub-menu,
	.globalNavi__list li.is-submenu-open > .sub-menu {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.globalNavi__list .sub-menu a {
		padding: 10px 12px;
	}

	.tz-nav-toggle {
		display: none;
	}

	.tz-search-toggle {
		padding: 0;
		width: 50px;
		justify-content: center;
		background: transparent;
		border: 0;
	}

	.tz-search-panel__inner {
		padding: 28px 32px;
	}

	.archive {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.archive__item-border {
		padding: 18px;
	}

	.related__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.search-form {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.search-submit {
		width: auto;
		min-width: 140px;
	}
}

/* ===== ブログトップ: PICKUP / 特集 / 一覧（新着・人気ソート） ===== */
.tz-pickup,
.tz-feature {
	margin-bottom: 40px;
}

.tz-section-band {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	padding: 10px 16px;
	color: #ffffff;
	background: var(--tz-color-deep);
	border-radius: var(--tz-radius-sm);
}

.tz-section-band--accent {
	background: var(--tz-color-accent);
}

.tz-section-band--list {
	background: #2b2f36;
}

.tz-section-band__icon {
	display: inline-flex;
	align-items: center;
}

.tz-section-band__en {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.tz-section-band__ja {
	font-size: 1.3rem;
	font-weight: 500;
	opacity: 0.92;
}

/* --- PICKUP --- */
.tz-pickup__grid {
	display: grid;
	gap: 14px;
}

.tz-pickup__subs {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tz-pickup__item {
	position: relative;
	overflow: hidden;
	border-radius: var(--tz-radius-md);
	box-shadow: var(--tz-shadow-card);
}

.tz-pickup__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
}

.tz-pickup__media {
	display: block;
	position: relative;
	overflow: hidden;
}

.tz-pickup__img {
	display: block;
	width: 100%;
	object-fit: cover;
}

.tz-pickup__item--main .tz-pickup__img {
	aspect-ratio: 16 / 10;
}

.tz-pickup__item--sub .tz-pickup__img {
	aspect-ratio: 16 / 9;
}

.tz-pickup__num {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--tz-color-deep);
	background: #ffffff;
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tz-pickup__cat {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	padding: 4px 12px;
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	background: rgba(54, 92, 150, 0.92);
	border-radius: 999px;
}

.tz-pickup__body {
	display: flex;
	flex: 1 1 auto;
	align-items: flex-start;
	padding: 14px 16px 16px;
	background: var(--tz-color-deep);
}

.tz-pickup__title {
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.55;
}

.tz-pickup__item--main .tz-pickup__title {
	font-size: 1.8rem;
}

.tz-pickup__item:hover .tz-pickup__title {
	color: rgba(255, 255, 255, 0.82);
}

.tz-pickup__img {
	transition: transform 0.4s ease;
}

.tz-pickup__item:hover .tz-pickup__img {
	transform: scale(1.04);
}

/* --- 特集 --- */
.tz-feature__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.tz-feature__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--tz-border-soft);
	border-radius: var(--tz-radius-md);
	box-shadow: var(--tz-shadow-card);
}

.tz-feature__thumb {
	display: block;
	overflow: hidden;
}

.tz-feature__thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.tz-feature__link:hover .tz-feature__thumb img {
	transform: scale(1.05);
}

.tz-feature__title {
	padding: 12px 14px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--tz-color-text);
}

/* --- ソートバー --- */
.tz-sortbar {
	display: flex;
	gap: 8px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--tz-border-soft);
}

.tz-sortbar__tab {
	margin-bottom: -1px;
	padding: 8px 16px 12px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tz-color-muted);
	text-decoration: none;
	border-bottom: 3px solid transparent;
}

.tz-sortbar__tab:hover {
	color: var(--tz-color-deep);
}

.tz-sortbar__tab.is-active {
	color: var(--tz-color-deep);
	border-bottom-color: var(--tz-color-deep);
}

@media only screen and (min-width: 768px) {
	.tz-pickup__grid {
		grid-template-columns: 1.6fr 1fr;
		align-items: start;
	}

	.tz-pickup__item--main {
		grid-column: 1;
		grid-row: 1;
	}

	.tz-pickup__subs {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.tz-pickup__grid > .tz-tagnav {
		grid-column: 1;
		grid-row: 2;
		margin: 0;
	}

	.tz-pickup__item--main .tz-pickup__img {
		aspect-ratio: 16 / 9;
		height: auto;
	}

	.tz-pickup__item--main .tz-pickup__title {
		font-size: 2.1rem;
	}

	.tz-feature__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* =========================================================
   特集ページ（国別 専用デザインテンプレ: page-czech.php 等）
   ========================================================= */
.tz-fpage {
	width: min(calc(100% - 32px), var(--tz-max-width));
	margin: 0 auto 72px;
}

/* --- ① ヒーロー --- */
.tz-fpage-hero {
	position: relative;
	margin-top: 20px;
	overflow: hidden;
	border-radius: var(--tz-radius-lg);
	box-shadow: var(--tz-shadow-card);
	background: var(--tz-color-deep);
}

.tz-fpage-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 9;
}

.tz-fpage-hero__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	padding: 28px 24px 26px;
	color: #ffffff;
	background: linear-gradient(180deg, rgba(20, 30, 50, 0) 30%, rgba(20, 30, 50, 0.78) 100%);
}

.tz-fpage-hero__eyebrow {
	display: inline-flex;
	align-self: flex-start;
	padding: 5px 14px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	background: var(--tz-color-accent);
	border-radius: 999px;
}

.tz-fpage-hero__title {
	font-size: clamp(2.4rem, 6vw, 3.8rem);
	font-weight: 900;
	line-height: 1.3;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.tz-fpage-hero__lead {
	max-width: 720px;
	font-size: 1.4rem;
	line-height: 1.7;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* --- セクション共通 --- */
.tz-fpage-section {
	margin-top: 48px;
}

.tz-fpage-section__head {
	margin-bottom: 20px;
}

.tz-fpage-section__en {
	display: block;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--tz-color-primary);
}

.tz-fpage-section__ja {
	display: block;
	margin-top: 2px;
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--tz-color-deep);
}

/* --- ② 基本情報テーブル --- */
.tz-fpage-facts {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border: 1px solid var(--tz-color-border);
	border-radius: var(--tz-radius-md);
	background: #ffffff;
	box-shadow: var(--tz-shadow-card);
}

.tz-fpage-facts th,
.tz-fpage-facts td {
	padding: 13px 16px;
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: left;
	border-bottom: 1px solid var(--tz-color-border);
	vertical-align: top;
}

.tz-fpage-facts tr:last-child th,
.tz-fpage-facts tr:last-child td {
	border-bottom: none;
}

.tz-fpage-facts th {
	width: 34%;
	font-weight: 700;
	color: var(--tz-color-deep);
	background: rgba(54, 92, 150, 0.06);
	white-space: nowrap;
}

/* --- ③ 見どころカード --- */
.tz-fpage-spots {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.tz-fpage-spot {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid var(--tz-border-soft);
	border-radius: var(--tz-radius-md);
	box-shadow: var(--tz-shadow-card);
}

.tz-fpage-spot__title {
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--tz-color-deep);
}

.tz-fpage-spot__text {
	font-size: 1.4rem;
	line-height: 1.75;
	color: var(--tz-color-text);
}

.tz-fpage-spot__link {
	margin-top: auto;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--tz-color-link);
}

.tz-fpage-spot__link::after {
	content: " ›";
}

/* --- ④ 関連記事グリッド --- */
.tz-fpage-related .tz-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

/* --- ⑤ CTA --- */
.tz-fpage-cta {
	margin-top: 52px;
	padding: 36px 24px;
	text-align: center;
	color: #ffffff;
	border-radius: var(--tz-radius-lg);
	background: linear-gradient(135deg, var(--tz-color-deep) 0%, var(--tz-color-primary) 100%);
	box-shadow: var(--tz-shadow-card);
}

.tz-fpage-cta__title {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
}

.tz-fpage-cta__text {
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 1.7;
	opacity: 0.95;
}

.tz-fpage-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 20px;
	padding: 0 36px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tz-color-deep);
	background: #ffffff;
	border-radius: 999px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

@media only screen and (min-width: 768px) {
	.tz-fpage-hero__img {
		aspect-ratio: 21 / 9;
	}

	.tz-fpage-hero__overlay {
		padding: 40px 44px 38px;
	}

	.tz-fpage-spots {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tz-fpage-related .tz-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* =========================================================
   ブログトップ: タグ/カテゴリ ナビ
   ========================================================= */
.tz-tagnav {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 22px 24px;
	background: #ffffff;
	border: 1px solid var(--tz-border-soft);
	border-radius: var(--tz-radius-lg);
	box-shadow: var(--tz-shadow-soft);
}

.tz-tagnav__label {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 12px;
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--tz-color-deep);
}

.tz-tagnav__label::before {
	content: "";
	width: 18px;
	height: 3px;
	background: var(--tz-color-primary);
	border-radius: 2px;
}

.tz-tagnav__group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 16px;
}

.tz-tagnav__group .tz-tagnav__label {
	margin-bottom: 0;
	flex-shrink: 0;
	font-size: 1.2rem;
}

.tz-tagnav__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tz-tagnav__pill {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 7px 18px;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--tz-color-deep);
	text-decoration: none;
	background: #ffffff;
	border: 1px solid var(--tz-color-border);
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tz-tagnav__pill:hover {
	color: #ffffff;
	background: var(--tz-color-deep);
	border-color: var(--tz-color-deep);
}

.tz-tagnav__pill--cat {
	background: rgba(109, 145, 206, 0.10);
	border-color: transparent;
}

.tz-tagnav__pill--cat:hover {
	background: var(--tz-color-primary);
	border-color: var(--tz-color-primary);
}

/* =========================================================
   ブログトップ: RANKING（フッター手前・全幅）
   ========================================================= */
.tz-ranking-band {
	margin-top: 56px;
	padding: 40px 0 8px;
}

.tz-ranking__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.tz-ranking__link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.tz-ranking__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--tz-radius-sm);
	box-shadow: var(--tz-shadow-card);
}

.tz-ranking__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tz-ranking__link:hover .tz-ranking__media img {
	transform: scale(1.05);
}

.tz-ranking__num {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	background: var(--tz-color-deep);
	border-radius: 0 0 var(--tz-radius-sm) 0;
}

.tz-ranking__num--1 { background: #c79a3a; }
.tz-ranking__num--2 { background: #9aa6b8; }
.tz-ranking__num--3 { background: #b98154; }

.tz-ranking__cat {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
	padding: 3px 10px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
	background: rgba(54, 92, 150, 0.92);
	border-radius: 999px;
}

.tz-ranking__date {
	display: block;
	margin-top: 10px;
	font-size: 1.1rem;
	color: var(--tz-color-muted);
}

.tz-ranking__title {
	display: block;
	margin-top: 4px;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.55;
	color: var(--tz-color-text);
}

/* =========================================================
   ブログトップ: CATEGORY（カテゴリごとの最新記事・全幅）
   ========================================================= */
.tz-catlatest {
	margin-top: 40px;
	padding: 44px 0 52px;
	background: var(--tz-color-surface-alt);
}

.tz-catlatest__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
}

.tz-catlatest__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding-bottom: 9px;
	margin-bottom: 14px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tz-color-link);
	text-decoration: none;
	border-bottom: 2px solid var(--tz-color-primary);
}

.tz-catlatest__arrow {
	color: var(--tz-color-primary);
}

.tz-catlatest__card {
	display: block;
	text-decoration: none;
}

.tz-catlatest__thumb {
	display: block;
	overflow: hidden;
	border-radius: var(--tz-radius-sm);
	box-shadow: var(--tz-shadow-card);
}

.tz-catlatest__thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tz-catlatest__card:hover .tz-catlatest__thumb img {
	transform: scale(1.05);
}

.tz-catlatest__title {
	display: block;
	margin-top: 10px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.55;
	color: var(--tz-color-text);
}

/* =========================================================
   フッターCTA: タビゼミへ加入する（左コピー＋赤ボタン / 右に会員証カード）
   ========================================================= */
.tz-foot-cta {
	position: relative;
	padding: 64px 16px;
	color: #ffffff;
	background:
		linear-gradient(rgba(20, 24, 32, 0.74), rgba(20, 24, 32, 0.82)),
		url(../img/foot-cta-bg.jpg) center / cover no-repeat;
}

.tz-foot-cta__inner {
	display: flex;
	flex-direction: column;
	gap: 36px;
	align-items: center;
}

.tz-foot-cta__copy {
	max-width: 560px;
}

.tz-foot-cta__title {
	font-size: clamp(2.1rem, 3vw, 2.8rem);
	font-weight: 800;
	line-height: 1.45;
}

.tz-foot-cta__text {
	margin: 18px 0 28px;
	font-size: 1.4rem;
	line-height: 1.95;
	color: rgba(255, 255, 255, 0.84);
}

.tz-foot-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-height: 58px;
	padding: 0 40px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	background: var(--tz-color-accent);
	border-radius: 6px;
	box-shadow: 0 14px 28px rgba(178, 56, 78, 0.34);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tz-foot-cta__btn:hover {
	background: #9c2f44;
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(178, 56, 78, 0.44);
}

.tz-foot-cta__btn-arrow {
	font-size: 1.8rem;
	line-height: 1;
}

.tz-foot-cta__card {
	width: min(100%, 460px);
}

.tz-foot-cta__card img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

@media only screen and (min-width: 900px) {
	.tz-foot-cta {
		padding: 72px 16px;
	}

	.tz-foot-cta__inner {
		flex-direction: row;
		justify-content: space-between;
		gap: 56px;
	}

	.tz-foot-cta__card {
		flex: 0 0 460px;
	}
}

@media only screen and (min-width: 768px) {
	.tz-ranking__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.tz-catlatest__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* プロモーション表示ラベル（記事最上部・左・小さく灰色の斜体） */
.tz-pr-disclosure {
	margin: 8px 0 0;
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.4;
	color: #9aa0ab;
}

/* =========================================================
   イベント 個別ページ
   ========================================================= */
.tz-event-badge--past {
	display: inline-block;
	margin-top: 10px;
	padding: 4px 14px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	background: #9aa0ab;
	border-radius: 999px;
}

.tz-event-info {
	margin: 24px 0;
	overflow: hidden;
	border: 1px solid var(--tz-color-border);
	border-radius: var(--tz-radius-md);
}

.tz-event-info__row {
	display: flex;
	border-bottom: 1px solid var(--tz-color-border);
}

.tz-event-info__row:last-child {
	border-bottom: none;
}

.tz-event-info dt {
	flex: 0 0 100px;
	padding: 13px 16px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--tz-color-deep);
	background: rgba(54, 92, 150, 0.06);
}

.tz-event-info dd {
	flex: 1 1 auto;
	margin: 0;
	padding: 13px 16px;
	font-size: 1.4rem;
	line-height: 1.7;
}

.tz-event-cta {
	margin: 30px 0 8px;
	text-align: center;
}

.tz-event-apply {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 48px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	background: linear-gradient(135deg, var(--tz-color-primary) 0%, var(--tz-color-deep) 100%);
	border-radius: 999px;
	box-shadow: 0 14px 28px rgba(54, 92, 150, 0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tz-event-apply:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(54, 92, 150, 0.36);
}

.tz-event-back {
	margin-top: 26px;
}

.tz-event-back a {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--tz-color-link);
}

/* =========================================================
   イベント 一覧ページ
   ========================================================= */
.tz-eventarch {
	margin-top: 40px;
}

.tz-eventarch__empty {
	padding: 18px 4px;
	color: var(--tz-color-muted);
}

.tz-eventcard-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.tz-eventcard {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid var(--tz-border-soft);
	border-radius: var(--tz-radius-md);
	box-shadow: var(--tz-shadow-card);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tz-eventcard:hover {
	transform: translateY(-3px);
	box-shadow: var(--tz-shadow-float);
}

.tz-eventcard__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--tz-color-primary), var(--tz-color-deep));
}

.tz-eventcard__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tz-eventcard__date {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	color: #ffffff;
}

.tz-eventcard__md {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1;
}

.tz-eventcard__dow {
	font-size: 1.4rem;
	font-weight: 700;
}

.tz-eventcard__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px 18px;
}

.tz-eventcard__meta {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--tz-color-primary);
}

.tz-eventcard__title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--tz-color-text);
}

.tz-eventarch--past .tz-eventcard__media {
	filter: saturate(0.7);
}

.tz-eventarch--past .tz-eventcard {
	opacity: 0.92;
}

@media only screen and (min-width: 600px) {
	.tz-eventcard-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (min-width: 900px) {
	.tz-eventcard-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* イベント個別: 紹介文（抜粋）のリード */
.tz-event-lead {
	margin: 4px 0 18px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.9;
	color: var(--tz-color-text);
}

/* 記事カードの著者表示 */
.tz-card-author {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}

.tz-card-author__avatar {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	object-fit: cover;
}

.tz-card-author__name {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--tz-color-muted);
}

/* =========================================================
   この記事を書いた人（著者ボックス）
   ========================================================= */
.tz-authorbox {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 40px 0 8px;
	padding: 28px 24px;
	background: #ffffff;
	border: 1px solid var(--tz-color-border);
	border-radius: var(--tz-radius-md);
}

.tz-authorbox__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.tz-authorbox__heading {
	width: 100%;
	margin: 0 0 18px;
	padding: 10px 12px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #4a4a4a;
	background: #efefef;
	border-radius: 4px;
}

.tz-authorbox__avatar img {
	width: 110px;
	height: 110px;
	border-radius: 999px;
	object-fit: cover;
	box-shadow: 0 8px 18px rgba(54, 92, 150, 0.16);
}

.tz-authorbox__name {
	margin: 14px 0 0;
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--tz-color-text);
}

.tz-authorbox__role {
	margin: 4px 0 0;
	font-size: 1.3rem;
	color: var(--tz-color-muted);
}

.tz-authorbox__body {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.tz-authorbox__bio {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.95;
	color: var(--tz-color-text);
}

.tz-authorbox__socials {
	display: flex;
	gap: 12px;
}

.tz-authorbox__sns {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: #ffffff;
	border-radius: 999px;
}

.tz-authorbox__sns--tw {
	background: #1d9bf0;
}

.tz-authorbox__sns--ig {
	background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285aeb 100%);
}

.tz-authorbox__sns:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
}

.tz-authorbox__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 28px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	background: var(--tz-color-accent);
	border-radius: 6px;
}

.tz-authorbox__more:hover {
	background: #9c2f44;
	color: #ffffff;
}

@media only screen and (min-width: 768px) {
	.tz-authorbox {
		flex-direction: row;
		align-items: stretch;
		gap: 28px;
		padding: 32px 30px;
	}

	.tz-authorbox__head {
		flex: 0 0 220px;
		justify-content: flex-start;
		padding-right: 28px;
		border-right: 1px solid var(--tz-color-border);
	}

	.tz-authorbox__body {
		flex: 1 1 auto;
		justify-content: center;
	}
}

/* ===== 特集トップ（page-feature.php） ===== */
.tz-fpage-hero--index {
	display: block;
	min-height: auto;
	background: linear-gradient(135deg, #365c96, #6d91ce);
}
.tz-fpage-hero--index .tz-fpage-hero__overlay {
	position: static;
	background: none;
	padding: 48px 24px;
}
.tz-feature-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}
.tz-feature-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e6e9ef;
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .2s ease, box-shadow .2s ease;
}
.tz-feature-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(54, 92, 150, .16);
}
.tz-feature-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #365c96, #6d91ce);
}
.tz-feature-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tz-feature-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 22px 22px;
}
.tz-feature-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #2a3a52;
}
.tz-feature-card__text {
	font-size: .92rem;
	line-height: 1.7;
	color: #5a6477;
}
.tz-feature-card__more {
	margin-top: 6px;
	font-size: .85rem;
	font-weight: 700;
	color: #365c96;
}
.tz-feature-card__more::after {
	content: " →";
}
@media (max-width: 768px) {
	.tz-feature-cards {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* ===== 旅の持ち物 特集（page-packing.php）ジャンルタブ ===== */
.tz-packing-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}
.tz-packing-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	border: 1px solid #d4dae6;
	border-radius: 999px;
	background: #fff;
	color: #4a5568;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.tz-packing-tab:hover {
	border-color: #6d91ce;
	color: #365c96;
}
.tz-packing-tab.is-active {
	background: #365c96;
	border-color: #365c96;
	color: #fff;
}
.tz-packing-tab__n {
	font-size: .75rem;
	opacity: .7;
}

/* 特集ページの関連記事カードは「アイキャッチ＋タイトルのみ」（抜粋を隠す） */
.tz-fpage-related .tz-card .phrase-secondary {
	display: none;
}

/* ===== モバイル: 本文のはみ出し防止（横スクロール対策） ===== */
@media only screen and (max-width: 767px) {
	.content img,
	.content iframe,
	.content video,
	.content embed,
	.content object {
		max-width: 100%;
		height: auto;
	}
	.content table {
		display: block;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.tz-article,
	.tz-article .content {
		overflow-wrap: break-word;
		word-break: break-word;
	}
	/* 本文内で width 属性などで固定幅指定された要素も画面内に収める */
	.content [style*="width"],
	.content [width] {
		max-width: 100% !important;
	}
}
