@charset "UTF-8";

/* ????????? */

.hardware-page {
	padding-bottom: 96px;
}

/* Hero layout: shared via products.css (.product-detail-hero) */

/* Content blocks */

.hardware-block {
	margin: 0 0 88px;
}

.hardware-block__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin: 0 0 36px;
	text-align: center;
}

.hardware-block__icon {
	display: block;
	width: 32px;
	height: auto;
}

.hardware-block__title {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(2.4rem, 2.8vw, 3.2rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

/* ??????????????????? */
.hardware-block__icon.is-reveal {
	opacity: 0;
	transform: translate3d(0, -32px, 0);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.hardware-block__title.is-reveal {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.hardware-block__heading.is-inview .hardware-block__icon.is-reveal {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition-delay: 0.06s;
}

.hardware-block__heading.is-inview .hardware-block__title.is-reveal {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
	.hardware-block__icon.is-reveal,
	.hardware-block__title.is-reveal {
		opacity: 1;
		transform: none;
		transition: none;
		will-change: auto;
	}
}

.hardware-block__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 0 56px;
}

.hardware-block--reverse .hardware-block__body {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hardware-block--reverse .hardware-block__figure {
	order: 2;
}

.hardware-block--reverse .hardware-block__text {
	order: 1;
}

.hardware-block__figure {
	margin: 0;
	background: #e8eef2;
}

.hardware-block__image {
	display: block;
	width: 100%;
	height: auto;
}

.hardware-block__text {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	color: #333;
	background: transparent;
	box-shadow: none;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	line-height: 2;
}

.hardware-block__text p {
	margin: 0 0 1.4em;
}

.hardware-block__text p:last-child {
	margin-bottom: 0;
}

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

.hardware-block__list li {
	position: relative;
	margin: 0;
	padding-left: 1.1em;
	line-height: 2;
}

.hardware-block__list li::before {
	content: "\30FB";
	position: absolute;
	left: 0;
	top: 0;
}

.hardware-block__text > .hardware-block__list + p,
.hardware-block__text > p + .hardware-block__list {
	margin-top: 0.2em;
}

.hardware-block__text > .hardware-block__list + p {
	margin-top: 0.4em;
}

/* Back button */

.hardware-page__action {
	display: flex;
	justify-content: center;
	margin: 16px 0 0;
}

.hardware-page__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 56px;
	padding: 14px 48px;
	border: 1px solid var(--color-navy);
	border-radius: 999px;
	color: #fff;
	background: var(--color-navy);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition: opacity 0.2s;
}

@media screen and (min-width: 768px) {
	.hardware-page__back {
		position: relative;
		overflow: hidden;
		isolation: isolate;
		min-width: 360px;
		background: #fff;
		color: #fff;
		transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.hardware-page__back::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: -1;
		background: var(--color-navy);
		transform: scaleY(1);
		transform-origin: top center;
		transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
	}

	@media (hover: hover) and (pointer: fine) {
		.hardware-page__back:hover,
		.hardware-page__back:focus-visible {
			color: var(--color-navy);
			opacity: 1;
		}

		.hardware-page__back:hover::before,
		.hardware-page__back:focus-visible::before {
			transform: scaleY(0);
		}
	}
}

/* SP */

@media screen and (max-width: 767px) {
	.hardware-page {
		padding-bottom: 64px;
		overflow-x: clip;
	}

	.hardware-page .products-breadcrumb {
		justify-content: flex-end;
	}

	/* SP: ??????????????????? */

	.hardware-block {
		margin: 0 0 56px;
		overflow-x: clip;
	}

	.hardware-block__heading {
		gap: 10px;
		margin: 0 0 20px;
	}

	.hardware-block__icon {
		width: 26px;
	}

	.hardware-block__title {
		font-size: 2rem;
	}

	.hardware-block__body {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.hardware-block--reverse .hardware-block__figure,
	.hardware-block--reverse .hardware-block__text {
		order: initial;
	}

	.hardware-block__figure {
		width: 100%;
	}

	/* SP: ????????????1??=??? / 2??=???? */
	.hardware-block__text {
		position: relative;
		z-index: 1;
		width: 100%;
		margin-top: 0;
		padding: 0;
		background: transparent;
		font-size: 1.3rem;
		line-height: 1.9;
	}

	.hardware-block:not(.hardware-block--reverse) .hardware-block__text {
		align-self: stretch;
		margin-left: 0;
		margin-right: 0;
	}

	.hardware-block--reverse .hardware-block__text {
		align-self: stretch;
		margin-left: 0;
		margin-right: 0;
	}

	.hardware-page__back {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		min-height: 52px;
		font-size: 1.4rem;
	}
}
