/* ファーストビュー。旧CSSの巨大な強調語と同格CTAを上書きし、
   調査対象→媒体価値→主導線の順に一度で読める構造へ統一する。 */
.Mv {
	overflow: hidden;
}
@media (min-width: 769px) {
	.Mv picture {
		display: block;
		aspect-ratio: 16 / 9;
		overflow: hidden;
	}
	.Mv picture img {
		width: 106%;
		max-width: none;
		height: auto;
		transform: translateX(-5.7%);
	}
}
.Mv .Txbox {
	width: min(39%, 680px);
	right: 4.5%;
}
.Mv .Txbox .MvEyebrow {
	margin: 0 0 14px;
	color: #176f7a;
	font-size: clamp(12px, .9vw, 16px);
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: .12em;
	text-align: left;
}
.Mv .Txbox h1 {
	margin: 0;
	color: #176f7a;
	font-size: clamp(34px, 3.05vw, 58px);
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: -.025em;
	text-align: left;
	text-wrap: balance;
}
.Mv .Txbox h1 b {
	display: block;
	font-size: 1.08em;
	font-weight: inherit;
}
.Mv .Txbox p.MvLead {
	max-width: 35em;
	margin: 24px 0 30px;
	color: #24343d;
	font-size: clamp(14px, 1vw, 18px);
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: .01em;
	text-align: left;
}
.Mv .Links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 14px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.Mv .Links li {
	width: auto;
	min-width: 0;
	margin: 0;
}
.Mv .Links li a {
	display: flex;
	min-height: 52px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	padding: 13px 18px;
	border: 2px solid #2fa9b8;
	border-radius: 14px;
	background: #fff;
	color: #176f7a;
	font-size: clamp(13px, .9vw, 16px);
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
	transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.Mv .Links .is-primary a {
	background: #2fa9b8;
	color: #fff;
}
.Mv .Links .is-primary a:hover,
.Mv .Links .is-primary a:focus-visible {
	border-color: #268c9a;
	background: #268c9a;
	box-shadow: 0 6px 18px rgba(47, 169, 184, .26);
}
.Mv .Links .is-secondary a:hover,
.Mv .Links .is-secondary a:focus-visible {
	background: #eaf7f8;
	transform: translateY(-1px);
}
.Mv .Links .is-tertiary {
	grid-column: 1 / -1;
}
.Mv .Links .is-tertiary a {
	min-height: 32px;
	justify-content: flex-start;
	width: max-content;
	padding: 4px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #176f7a;
	font-size: clamp(12px, .82vw, 15px);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}
.Mv .Links .is-tertiary a:hover,
.Mv .Links .is-tertiary a:focus-visible {
	color: #0f5d66;
}
/* タブレット横幅では人物とコピーの安全域を優先する。
   写真をさらに左へ逃がし、右カラムを一段コンパクトにする。 */
@media (min-width: 769px) and (max-width: 1100px) {
	.Mv picture img {
		width: 112%;
		transform: translateX(-10.7%);
	}
	.Mv .Txbox {
		width: 42%;
		right: 2.5%;
	}
	.Mv .Txbox .MvEyebrow {
		margin-bottom: 8px;
		font-size: 11px;
	}
	.Mv .Txbox h1 {
		font-size: clamp(26px, 3.1vw, 32px);
		line-height: 1.25;
	}
	.Mv .Txbox p.MvLead {
		margin: 14px 0 16px;
		font-size: 12px;
		line-height: 1.65;
	}
	.Mv .Links {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.Mv .Links .is-tertiary { grid-column: auto; }
	.Mv .Links li a {
		min-height: 42px;
		padding: 9px 12px;
		font-size: 12px;
	}
	.Mv .Links .is-tertiary a {
		min-height: 28px;
		font-size: 11px;
	}
}
@media (max-width: 768px) {
	.Mv {
		margin-top: 64px;
	}
	.Mv .Txbox {
		width: 86%;
		top: 4.5%;
		right: 50%;
	}
	.Mv .Txbox .MvEyebrow {
		margin: 0 0 8px !important;
		font-size: clamp(11px, 3vw, 14px);
		letter-spacing: .08em;
		text-align: center;
	}
	.Mv .Txbox h1 {
		font-size: clamp(23px, 6.8vw, 36px);
		line-height: 1.28;
		letter-spacing: -.035em;
		text-align: center;
	}
	.Mv .Txbox h1 b { font-size: 1em; white-space: normal; }
	.Mv .Txbox p.MvLead {
		max-width: 30em;
		margin: 14px auto 18px !important;
		font-size: clamp(13px, 3.5vw, 16px);
		font-weight: 600;
		line-height: 1.75;
		text-align: left;
	}
	.Mv .Links {
		grid-template-columns: 1fr;
		gap: 10px;
		max-width: 420px;
		margin: 0 auto;
	}
	.Mv .Links .is-tertiary { grid-column: auto; }
	.Mv .Links li a {
		min-height: 48px;
		padding: 11px 16px;
		font-size: 14px;
	}
	.Mv .Links .is-tertiary a {
		min-height: 34px;
		margin: 0 auto;
		padding: 6px 12px;
		border: 1px solid rgba(47, 169, 184, .35);
		border-radius: 9px;
		background: rgba(255, 255, 255, .88);
		font-size: 13px;
	}
}

/* トップページ「大学ブランディング研究所の調査」セクション。
   既存テーマのクラスに依存せず、このセクション内だけで完結させる。 */
.ub-research .Conttype4 > p {
	max-width: 46em;
	margin: 0 auto 2.5rem;
	line-height: 1.9;
}
.ub-transparency {
	max-width: 860px;
	margin: 0 auto 1rem;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid #dbe6ec;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}
.ub-transparency li { margin: 0; padding: 1.1rem .75rem; text-align: center; border-right: 1px solid #e8eef1; }
.ub-transparency li:last-child { border-right: 0; }
.ub-transparency li::before { content: none; }
.ub-transparency strong { display: block; color: #176f7a; font-size: 1.7rem; line-height: 1.1; font-variant-numeric: tabular-nums; }
.ub-transparency span { display: block; margin-top: .35rem; color: #55606c; font-size: .78rem; line-height: 1.4; }
.ub-research .Conttype4 > p.ub-transparency-note { max-width: 860px; margin: 0 auto 2.2rem; color: #6b7885; font-size: .76rem; line-height: 1.7; text-align: center; }
.ub-transparency-note a { color: #176f7a; text-decoration: underline; text-underline-offset: 2px; }
.ub-research-list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-auto-rows: 1fr;
	max-width: 1120px;
}
.ub-research-list > li {
	margin: 0;
	padding: 0;
}
.ub-research-list > li::before { content: none; }
.ub-research-list a {
	display: block;
	height: 100%;
	padding: 1.35rem 1.5rem;
	background: #fff;
	border: 1px solid #dbe6ec;
	border-radius: 10px;
	text-decoration: none;
	color: #16202b;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ub-research-list a:hover,
.ub-research-list a:focus-visible {
	border-color: #2fa9b8;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(22, 32, 43, .08);
}
.ub-research-list strong {
	display: block;
	font-size: 1.02rem;
	line-height: 1.6;
	margin-bottom: .5rem;
	text-wrap: pretty;
}
.ub-research-list span {
	display: block;
	font-size: .86rem;
	line-height: 1.75;
	color: #55606c;
	text-wrap: pretty;
}
@media (max-width: 767px) {
	.ub-research-list { grid-template-columns: 1fr; }
	.ub-transparency { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ub-transparency li { padding: .9rem .35rem; border-right: 1px solid #e8eef1; border-bottom: 0; }
	.ub-transparency li:last-child { border-right: 0; }
	.ub-transparency strong { font-size: 1.45rem; }
	.ub-transparency span { font-size: .68rem; }
}
