.mtg2-page {
	--mtg2-blue: #0a63f6;
	--mtg2-ink: #10151d;
	--mtg2-muted: #a8b0bb;
	box-sizing: border-box;
	color: #fff;
	background: #000;
	overflow: hidden;
}
.mtg2-page * {
	box-sizing: border-box;
}
.mtg2-page .mtg2-inner {
	width: min(1240px, calc(100% - 48px));
	margin-right: auto;
	margin-left: auto;
}
.mtg2-page .mtg2-wide-inner {
	width: min(1540px, calc(100% - 80px));
	margin-right: auto;
	margin-left: auto;
}
.mtg2-page .mtg2-heading {
	margin: 0 0 60px;
	font-size: clamp(34px, 4.2vw, 62px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -.035em;
	text-align: center;
}
.mtg2-page .mtg2-button {
	display: inline-flex;
	min-height: 56px;
	padding: 12px 28px;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	transition: color .25s, background .25s, transform .25s;
}
.mtg2-page .mtg2-button:hover {
	text-decoration: none;
	transform: translateY(-2px);
}
.mtg2-page .mtg2-button-primary {
	color: #fff;
	background: var(--mtg2-blue);
}
.mtg2-page .mtg2-button-primary:hover {
	color: #fff;
	background: #2f7fff;
}
.mtg2-page .mtg2-button-line {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .6);
}
.mtg2-page .mtg2-button-line:hover {
	color: #111;
	background: #fff;
}

/* メインビジュアル */
.mtg2-page .mtg2-hero {
	height: min(820px, calc(100vh - 116px));
	min-height: 650px;
	margin-bottom: 140px;
	position: relative;
	background: #06101f;
}
.mtg2-page .mtg2-hero-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	transform: translateX(6%) scale(1.12);
	transform-origin: center;
}
.mtg2-page .mtg2-hero-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 10, 22, .92) 0%, rgba(3, 10, 22, .62) 40%, rgba(3, 10, 22, .08) 74%);
}
.mtg2-page .mtg2-hero-inner {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.mtg2-page .mtg2-hero-title {
	margin: 0;
	font-family: Arial, sans-serif;
	font-size: clamp(48px, 6.2vw, 90px);
	font-weight: 800;
	line-height: .98;
	letter-spacing: -.04em;
}
.mtg2-page .mtg2-hero-title span {
	font-weight: 800;
}
.mtg2-page .mtg2-hero-lead {
	margin: 30px 0 38px;
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 600;
	line-height: 1.55;
}
.mtg2-page .mtg2-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.mtg2-page .mtg2-hero-actions .mtg2-button {
	border-color: rgba(255, 255, 255, .65);
	color: #fff;
	background: rgba(3, 10, 22, .18);
}
.mtg2-page .mtg2-hero-actions .mtg2-button:hover {
	border-color: #087cf0;
	color: #fff;
	background: #087cf0;
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-hero {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-hero {
		height: 680px;
		min-height: 0;
		margin-bottom: 60px;
	}
	.mtg2-page .mtg2-hero-img {
		object-position: 64% center;
		transform: none;
	}
	.mtg2-page .mtg2-hero-shade {
		background: linear-gradient(90deg, rgba(3, 10, 22, .94), rgba(3, 10, 22, .3));
	}
	.mtg2-page .mtg2-hero-inner {
		justify-content: flex-end;
		padding-bottom: 72px;
	}
	.mtg2-page .mtg2-hero-title {
		font-size: 46px;
	}
	.mtg2-page .mtg2-hero-lead {
		font-size: 18px;
	}
}

/* 製品の特長 */
.mtg2-page .mtg2-capability {
	margin-bottom: 140px;
	background: #000;
}
.mtg2-page .mtg2-capability-tabs {
	width: min(100%, 1280px);
	margin: 0 auto 34px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.mtg2-page .mtg2-capability-tab {
	min-height: 180px;
	padding: 34px 24px;
	border: 0;
	border-radius: 26px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	color: #fff;
	background: #1f1f1f;
	font-family: inherit;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background .3s, transform .3s;
}
.mtg2-page .mtg2-capability-tab:hover {
	background: #292929;
	transform: translateY(-3px);
}
.mtg2-page .mtg2-capability-tab.is-active {
	background: linear-gradient(135deg, #0784ff, #5cb7ff);
}
.mtg2-page .mtg2-capability-tab:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}
.mtg2-page .mtg2-capability-icon {
	width: 43px;
	height: 43px;
	object-fit: contain;
}
.mtg2-page .mtg2-capability-panel {
	width: min(100%, 1280px);
	margin: 0 auto;
	display: none;
	gap: 28px;
}
.mtg2-page .mtg2-capability-panel.is-active {
	display: flex;
}
.mtg2-page .mtg2-capability-card {
	flex: 1 1 0;
	min-width: 0;
	height: 440px;
	margin: 0;
	position: relative;
	border-radius: 26px;
	overflow: hidden;
	transition: flex-grow .55s cubic-bezier(.2, .8, .2, 1);
}
.mtg2-page .mtg2-capability-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(1, 7, 16, .9), transparent 68%);
}
.mtg2-page .mtg2-capability-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	background: #000;
	transition: transform .6s, opacity .3s;
}
@media (hover: hover) and (pointer: fine) {
	.mtg2-page .mtg2-capability-panel:hover .mtg2-capability-card {
		flex-grow: .72;
	}
	.mtg2-page .mtg2-capability-panel .mtg2-capability-card:hover {
		flex-grow: 2.56;
	}
}
.mtg2-page .mtg2-capability-title {
	margin: 0;
	position: absolute;
	right: 28px;
	bottom: 28px;
	left: 30px;
	z-index: 1;
	font-size: clamp(20px, 1.8vw, 29px);
	line-height: 1.45;
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-capability {
		margin-bottom: 80px;
	}
	.mtg2-page .mtg2-capability-tabs {
		gap: 14px;
	}
	.mtg2-page .mtg2-capability-tab {
		min-height: 145px;
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-capability {
		margin-bottom: 60px;
	}
	.mtg2-page .mtg2-capability-tabs {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		margin-bottom: 18px;
	}
	.mtg2-page .mtg2-capability-tab {
		min-height: 112px;
		padding: 18px 10px;
		border-radius: 18px;
		gap: 10px;
		font-size: 17px;
	}
	.mtg2-page .mtg2-capability-panel {
		display: none;
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.mtg2-page .mtg2-capability-panel.is-active {
		display: grid;
	}
	.mtg2-page .mtg2-capability-card {
		flex: none;
		height: 300px;
		border-radius: 18px;
	}
}

/* 活用分野 */
.mtg2-page .mtg2-applications {
	margin-bottom: 140px;
}
.mtg2-page .mtg2-applications-main {
	position: relative;
}
.mtg2-page .mtg2-applications-track {
	display: flex;
	gap: 32px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.mtg2-page .mtg2-applications-track::-webkit-scrollbar {
	display: none;
}
.mtg2-page .mtg2-applications-card {
	flex: 0 0 min(72vw, 980px);
	margin: 0;
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 28px;
	overflow: hidden;
	scroll-snap-align: center;
	opacity: .34;
	filter: brightness(.48);
	transition: opacity .35s ease, filter .35s ease;
}
.mtg2-page .mtg2-applications-card.is-active {
	opacity: 1;
	filter: brightness(1);
}
.mtg2-page .mtg2-applications-card:first-child {
	margin-left: calc((100% - min(72vw, 980px)) / 2);
}
.mtg2-page .mtg2-applications-card:last-child {
	margin-right: calc((100% - min(72vw, 980px)) / 2);
}
.mtg2-page .mtg2-applications-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.mtg2-page .mtg2-applications-arrow {
	width: 54px;
	height: 54px;
	padding: 0;
	position: absolute;
	top: 50%;
	z-index: 2;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, .18);
	font: 400 44px/1 Arial, sans-serif;
	cursor: pointer;
	transform: translateY(-50%);
}
.mtg2-page .mtg2-applications-prev {
	left: 4%;
}
.mtg2-page .mtg2-applications-next {
	right: 4%;
}
.mtg2-page .mtg2-applications-guide {
	width: max-content;
	max-width: calc(100% - 48px);
	margin: 34px auto 0;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	border-radius: 999px;
	background: #1f1f1f;
	box-shadow: 0 16px 50px rgba(0, 0, 0, .35);
	scrollbar-width: none;
}
.mtg2-page .mtg2-applications-guide::-webkit-scrollbar {
	display: none;
}
.mtg2-page .mtg2-applications-guide-item {
	min-height: 52px;
	padding: 0 24px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 999px;
	color: #fff;
	background: transparent;
	font: 800 clamp(16px, 1.35vw, 22px)/1.2 inherit;
	white-space: nowrap;
	cursor: pointer;
	transition: background .25s ease;
}
.mtg2-page .mtg2-applications-guide-item.is-active {
	background: linear-gradient(135deg, #0784ff, #5cb7ff);
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-applications {
		margin-bottom: 80px;
	}
	.mtg2-page .mtg2-applications-track {
		gap: 24px;
	}
	.mtg2-page .mtg2-applications-guide {
		max-width: calc(100vw - 32px);
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-applications {
		margin-bottom: 60px;
	}
	.mtg2-page .mtg2-applications-card {
		flex-basis: 88vw;
		border-radius: 18px;
	}
	.mtg2-page .mtg2-applications-card:first-child {
		margin-left: 0;
	}
	.mtg2-page .mtg2-applications-card:last-child {
		margin-right: 0;
	}
	.mtg2-page .mtg2-applications-arrow {
		width: 44px;
		height: 44px;
		font-size: 34px;
	}
	.mtg2-page .mtg2-applications-guide {
		margin-top: 22px;
		padding: 7px;
	}
	.mtg2-page .mtg2-applications-guide-item {
		min-height: 42px;
		padding: 0 15px;
		font-size: 15px;
	}
}

/* 光学システム */
.mtg2-page .mtg2-hardware {
	margin-bottom: 0;
	padding: 96px 0 210px;
	position: relative;
	overflow: hidden;
	background-color: #000;
	background-image:
		radial-gradient(ellipse 92% 58% at 50% 66%, rgba(130, 177, 230, .34) 0%, rgba(59, 104, 158, .2) 42%, rgba(5, 14, 25, 0) 76%),
		linear-gradient(180deg, #000 0%, #06111d 13%, #0a2137 52%, #06111d 78%, #000 100%);
}
.mtg2-page .mtg2-hardware::before,
.mtg2-page .mtg2-hardware::after {
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
}
.mtg2-page .mtg2-hardware::before {
	top: 0;
	height: 170px;
	background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .5) 42%, rgba(0, 0, 0, 0) 100%);
}
.mtg2-page .mtg2-hardware::after {
	bottom: 0;
	height: 300px;
	background:
		radial-gradient(ellipse 80% 55% at 50% 0%, rgba(147, 190, 238, .2) 0%, rgba(31, 67, 108, .1) 48%, rgba(0, 0, 0, 0) 72%),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.mtg2-page .mtg2-hardware-img {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
	mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-hardware {
		padding: 72px 0 150px;
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-hardware {
		padding: 48px 0 100px;
	}
}

/* 光源モード */
.mtg2-page .mtg2-light-mode {
	margin-bottom: 140px;
}
.mtg2-page .mtg2-light-mode-main {
	width: min(100%, 1280px);
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	position: relative;
	border-radius: 26px;
	overflow: hidden;
	background: #24272c;
}
.mtg2-page .mtg2-light-mode-poster {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(135deg, #17283b, #0b1725);
	opacity: 0;
	transition: opacity .24s ease;
}
.mtg2-page .mtg2-light-mode-video {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: 0;
	object-fit: cover;
	opacity: 0;
	transition: opacity .52s ease;
}
.mtg2-page .mtg2-light-mode-video.is-active {
	z-index: 1;
	opacity: 1;
}
.mtg2-page .mtg2-light-mode-main.is-loading .mtg2-light-mode-poster {
	opacity: 1;
}
.mtg2-page .mtg2-light-mode-main.is-loading .mtg2-light-mode-video {
	opacity: 0;
}
.mtg2-page .mtg2-light-mode-tabs {
	width: min(100%, 1280px);
	margin: 26px auto 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 3px solid #3b3b3b;
}
.mtg2-page .mtg2-light-mode-tab {
	min-height: 58px;
	padding: 0 10px 17px;
	position: relative;
	border: 0;
	color: #666;
	background: transparent;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
}
.mtg2-page .mtg2-light-mode-tab::after {
	content: "";
	height: 3px;
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
}
.mtg2-page .mtg2-light-mode-tab.is-active {
	color: #fff;
}
.mtg2-page .mtg2-light-mode-tab.is-active::after {
	background: #fff;
}
.mtg2-page .mtg2-light-mode-description {
	max-width: 760px;
	margin: 27px auto 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-light-mode {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-light-mode {
		margin-bottom: 60px;
	}
	.mtg2-page .mtg2-light-mode-main {
		border-radius: 16px;
	}
	.mtg2-page .mtg2-light-mode-tabs {
		margin-top: 18px;
	}
	.mtg2-page .mtg2-light-mode-tab {
		min-height: 68px;
		padding: 0 5px 12px;
		font-size: 11px;
	}
	.mtg2-page .mtg2-light-mode-description {
		margin-top: 20px;
		font-size: 14px;
	}
}

/* 詳細特長 */
.mtg2-page .mtg2-feature-list {
	margin-bottom: 140px;
}
.mtg2-page .mtg2-feature {
	margin-bottom: 70px;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 86px;
	align-items: center;
}
.mtg2-page .mtg2-feature:last-child {
	margin-bottom: 0;
}
.mtg2-page .mtg2-feature.is-reverse {
	grid-template-columns: .95fr 1.05fr;
}
.mtg2-page .mtg2-feature.is-reverse .mtg2-feature-img {
	order: 2;
}
.mtg2-page .mtg2-feature-img {
	width: 100%;
	display: block;
	aspect-ratio: 1.62;
	border-radius: 14px;
	object-fit: cover;
}
.mtg2-page .mtg2-feature-number {
	display: block;
	margin-bottom: 42px;
	color: transparent;
	font: 300 clamp(78px, 7vw, 124px)/.75 Arial, sans-serif;
	letter-spacing: -.05em;
	-webkit-text-stroke: 1px #464646;
}
.mtg2-page .mtg2-feature-title {
	max-width: 480px;
	margin: 0 0 18px;
	font-size: clamp(24px, 2.45vw, 36px);
	line-height: 1.35;
}
.mtg2-page .mtg2-feature-text {
	max-width: 500px;
	margin: 0;
	color: #c3c3c3;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.9;
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-feature-list {
		margin-bottom: 80px;
	}
	.mtg2-page .mtg2-feature {
		gap: 45px;
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-feature-list {
		margin-bottom: 60px;
	}
	.mtg2-page .mtg2-feature,
	.mtg2-page .mtg2-feature.is-reverse {
		margin-bottom: 60px;
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.mtg2-page .mtg2-feature.is-reverse .mtg2-feature-img {
		order: 0;
	}
	.mtg2-page .mtg2-feature-number {
		margin-bottom: 28px;
		font-size: 82px;
	}
	.mtg2-page .mtg2-feature-title {
		font-size: 26px;
	}
}

/* スキャン比較 */
.mtg2-page .mtg2-comparison {
	margin-bottom: 140px;
}
.mtg2-page .mtg2-comparison-main {
	--mtg2-position: 50%;
	width: min(100%, 1080px);
	margin: 0 auto;
	position: relative;
	aspect-ratio: 1.82;
	border-radius: 28px;
	overflow: hidden;
	touch-action: pan-y;
}
.mtg2-page .mtg2-comparison-after,
.mtg2-page .mtg2-comparison-before-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.mtg2-page .mtg2-comparison-before {
	position: absolute;
	inset: 0;
	clip-path: inset(0 calc(100% - var(--mtg2-position)) 0 0);
}
.mtg2-page .mtg2-comparison-divider {
	width: 3px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--mtg2-position);
	z-index: 2;
	background: #3191ff;
	transform: translateX(-50%);
}
.mtg2-page .mtg2-comparison-divider::after {
	content: "";
	width: 56px;
	height: 56px;
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	background: #1687ff;
	box-shadow: 0 6px 22px rgba(0, 94, 255, .35);
	transform: translate(-50%, -50%);
}
.mtg2-page .mtg2-comparison-divider span {
	position: absolute;
	top: 50%;
	z-index: 1;
	font: 700 25px/1 Arial, sans-serif;
	transform: translateY(-52%);
}
.mtg2-page .mtg2-comparison-divider span:first-child {
	right: 8px;
}
.mtg2-page .mtg2-comparison-divider span:last-child {
	left: 8px;
}
.mtg2-page .mtg2-comparison-range {
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	inset: 0;
	z-index: 3;
	opacity: 0;
	cursor: ew-resize;
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-comparison {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-comparison {
		margin-bottom: 60px;
	}
	.mtg2-page .mtg2-comparison-main {
		border-radius: 16px;
	}
}

/* 技術仕様 */
.mtg2-page .mtg2-spec {
	margin-bottom: 140px;
}
.mtg2-page .mtg2-spec-scroll {
	overflow-x: auto;
	border: 1px solid #2f2f2f;
	border-radius: 24px;
	background: #090909;
}
.mtg2-page .mtg2-spec-table {
	width: 100%;
	min-width: 1080px;
	border-collapse: collapse;
	table-layout: fixed;
}
.mtg2-page .mtg2-spec-table th,
.mtg2-page .mtg2-spec-table td {
	padding: 20px 24px;
	border-right: 1px solid #343434;
	border-bottom: 1px solid #343434;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
	vertical-align: middle;
}
.mtg2-page .mtg2-spec-table thead th {
	padding: 20px;
	border-right: 0;
	background: #232323;
	font-size: 20px;
	text-align: center;
}
.mtg2-page .mtg2-spec-table tbody th {
	color: #fff;
	background: #080808;
}
.mtg2-page .mtg2-spec-table tbody td {
	background: #080808;
}
.mtg2-page .mtg2-spec-table tbody tr:nth-child(even) th,
.mtg2-page .mtg2-spec-table tbody tr:nth-child(even) td {
	background: #242424;
}
.mtg2-page .mtg2-spec-table tr > :last-child {
	border-right: 0;
}
.mtg2-page .mtg2-spec-table tbody tr:last-child > * {
	border-bottom: 0;
}
.mtg2-page .mtg2-spec-note {
	margin: 18px 0 0;
	color: var(--mtg2-muted);
	font-size: 12px;
	line-height: 1.7;
}
.mtg2-page .mtg2-spec-mobile {
	display: none;
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-spec {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-spec {
		margin-bottom: 60px;
	}
	.mtg2-page .mtg2-spec-scroll {
		display: none;
	}
	.mtg2-page .mtg2-spec-mobile {
		display: grid;
		gap: 14px;
	}
	.mtg2-page .mtg2-spec-card {
		margin: 0;
		overflow: hidden;
		border: 1px solid #343d48;
		border-radius: 16px;
		background: #0b1622;
	}
	.mtg2-page .mtg2-spec-card-title {
		margin: 0;
		padding: 15px 18px;
		color: #fff;
		background: #20384f;
		font-size: 16px;
		line-height: 1.45;
	}
	.mtg2-page .mtg2-spec-card-values {
		display: grid;
	}
	.mtg2-page .mtg2-spec-card-value {
		padding: 15px 18px;
		border-top: 1px solid #2c3d4e;
	}
	.mtg2-page .mtg2-spec-card-value:first-child {
		border-top: 0;
	}
	.mtg2-page .mtg2-spec-card-mode {
		display: block;
		margin-bottom: 6px;
		color: #64b7ff;
		font-size: 12px;
		font-weight: 800;
		line-height: 1.5;
	}
	.mtg2-page .mtg2-spec-card-value p {
		margin: 0;
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.7;
		word-break: break-word;
	}
	.mtg2-page .mtg2-spec-note {
		margin-top: 16px;
	}
}

/* お問い合わせ */
.mtg2-page .mtg2-contact {
	padding: 105px 0;
	position: relative;
	background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .56), rgba(0, 0, 0, .9)), url("/wp-content/themes/scantech/img/3devok-mt-gen2/hero.jpg") center 55% / cover no-repeat;
}
.mtg2-page .mtg2-contact-inner {
	max-width: 940px;
	text-align: center;
}
.mtg2-page .mtg2-contact-title {
	margin: 0;
	font-size: clamp(32px, 4vw, 58px);
	line-height: 1.3;
	letter-spacing: -.035em;
}
.mtg2-page .mtg2-contact-text {
	margin: 24px 0 35px;
	color: #d7e5ff;
	font-size: 16px;
	line-height: 1.8;
}
.mtg2-page .mtg2-contact-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}
.mtg2-page .mtg2-button-white {
	color: #095bd8;
	background: #fff;
}
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-contact {
		padding: 80px 0;
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-contact {
		padding: 60px 0;
	}
	.mtg2-page .mtg2-contact-actions {
		flex-direction: column;
	}
	.mtg2-page .mtg2-contact-actions .mtg2-button {
		width: 100%;
	}
}

/* 共通レスポンシブ */
@media screen and (max-width: 1024px) {
	.mtg2-page .mtg2-wide-inner {
		width: min(100% - 40px, 1540px);
	}
	.mtg2-page .mtg2-heading {
		margin-bottom: 48px;
		font-size: clamp(32px, 4.8vw, 50px);
	}
}
@media screen and (max-width: 768px) {
	.mtg2-page .mtg2-inner,
	.mtg2-page .mtg2-wide-inner {
		width: min(100% - 30px, 1240px);
	}
	.mtg2-page .mtg2-heading {
		margin-bottom: 34px;
		font-size: clamp(28px, 7vw, 40px);
	}
}
