.product-page .part1 {
	padding: 48px 0 72px;
	background: #f3f3f3;
}

.product-elevator-layout {
	position: relative;
}

.product-elevator {
	position: fixed;
	z-index: 20;
	top: 50%;
	left: max(18px, calc((100vw - 1800px) / 2 - 170px));
	width: 142px;
	transform: translateY(-50%);
}

.product-elevator a {
	position: relative;
	display: block;
	min-height: 31px;
	box-sizing: border-box;
	padding: 6px 10px 6px 22px;
	color: #787878;
	font-size: 14px;
	line-height: 18px;
	transition: color .2s ease, font-weight .2s ease;
}

.product-elevator a:before {
	position: absolute;
	top: 50%;
	left: 2px;
	width: 9px;
	height: 1px;
	background: #8a8a8a;
	content: "";
	transform: translateY(-50%);
	transition: width .2s ease, background .2s ease;
}

.product-elevator a.is-active {
	color: #fff;
	font-weight: 700;
}

.product-elevator a.is-active:after {
	position: absolute;
	z-index: -1;
	top: 2px;
	right: 0;
	bottom: 2px;
	left: 14px;
	border-radius: 4px;
	background: #1268b3;
	content: "";
}

.product-elevator a.is-active:before {
	width: 22px;
	background: #1268b3;
	transform: translate(-22px, -50%);
}

.product-category-section {
	padding: 42px 0 78px;
	scroll-margin-top: 100px;
}

.product-category-section + .product-category-section {
	border-top: 1px solid rgba(0, 0, 0, .35);
}

.product-category-head {
	margin-bottom: 44px;
	text-align: center;
}

.product-category-head h2 {
	margin: 0;
	color: #303030;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}

.product-category-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 24px;
	margin-top: 26px;
}

.product-category-tabs:empty {
	display: none;
}

.product-category-tabs a {
	min-width: 168px;
	height: 38px;
	padding: 0 22px;
	border: 1px solid #777;
	border-radius: 20px;
	color: #444;
	font-size: 14px;
	line-height: 36px;
	text-align: center;
	transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.product-category-tabs a:hover {
	border-color: #1268b3;
	background: #1268b3;
	color: #fff;
}

.product-grid-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
	margin: 0;
	padding: 0;
}

.product-grid-list li {
	float: none;
	width: auto;
	margin: 0;
	background: #fff;
	transition: box-shadow .25s ease, transform .25s ease;
}

.product-grid-list li a {
	display: block;
	height: 100%;
}

.product-grid-list li .pic {
	height: 270px;
	overflow: hidden;
}

.product-grid-list li .pic em {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform .35s ease;
}

.product-grid-list li .info {
	padding: 22px 20px 28px;
	text-align: center;
}

.product-grid-list li .tit {
	display: block;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.product-grid-list li .tit:after {
	display: block;
	width: 18px;
	height: 3px;
	margin: 12px auto 0;
	background: #1268b3;
	content: "";
}

.product-grid-list li .txt {
	display: -webkit-box;
	overflow: hidden;
	min-height: 44px;
	margin-top: 8px;
	color: #666;
	font-size: 14px;
	line-height: 22px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.product-grid-list li .btns {
	justify-content: center;
	margin-top: 18px;
}

.product-grid-list li:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
	transform: translateY(-4px);
}

.product-grid-list li:hover .pic em {
	transform: scale(1.04);
}

.product-category-more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 44px;
	margin: 46px auto 0;
	border: 1px solid #c7c7c7;
	border-radius: 23px;
	color: #1268b3;
	font-size: 15px;
	font-weight: 700;
	transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.product-category-more i {
	width: 10px;
	height: 10px;
	margin-left: 18px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.product-category-more:hover {
	border-color: #1268b3;
	background: #1268b3;
	color: #fff;
}

@media (max-width: 1680px) {
	.product-elevator {
		left: 18px;
	}
}

@media (max-width: 1500px) {
	.product-elevator {
		display: none;
	}
}

@media (max-width: 1024px) {
	.product-page .part1 {
		padding: 38px 0 50px;
	}

	.product-category-section {
		padding: 28px 0 48px;
	}

	.product-category-head h2 {
		font-size: 30px;
	}

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

@media (max-width: 640px) {
	.product-category-head {
		margin-bottom: 28px;
	}

	.product-category-head h2 {
		font-size: 24px;
	}

	.product-category-tabs {
		gap: 10px;
		margin-top: 18px;
	}

	.product-category-tabs a {
		min-width: 0;
		height: 34px;
		padding: 0 14px;
		font-size: 12px;
		line-height: 32px;
	}

	.product-grid-list {
		grid-template-columns: 1fr;
	}

	.product-grid-list li .pic {
		height: 230px;
	}

	.product-category-more {
		width: 210px;
		margin-top: 30px;
	}
}

/* product-list */
@charset "utf-8";

.product-list-page {
	padding: 0;
	background: #f5f5f5;
}

.product-list-page .part1 {
	padding: 52px 0 18px;
}

.product-list-title {
	margin-bottom: 28px;
	color: #2a2a2a;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.18;
	text-align: center;
	letter-spacing: 0;
}

.product-list-page .inpage-third-nav {
	margin-bottom: 70px;
}

.product-list-page .inpage-third-nav .item {
	min-width: 170px;
	padding: 0 26px;
	border: 1px solid #8a8a8a;
	border-radius: 22px;
	background: #f7f7f7;
	color: #444;
	font-size: 14px;
	line-height: 42px;
  margin: 0 15px;
}

.product-list-page .inpage-third-nav .item:hover,
.product-list-page .inpage-third-nav .item.on {
	border-color: #1f63b5;
	background: #1f63b5;
	color: #fff;
}

.product-card-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px 28px;
	margin: 0;
	padding: 0 0 24px;
}

.product-card-list li {
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .02);
	transition: transform .25s ease, box-shadow .25s ease;
}

.product-card__panel {
	height: 100%;
	background: #fff;
}

.product-card__media-wrap {
	position: relative;
	overflow: hidden;
}

.product-card__link {
	display: block;
}

.product-card__media {
	height: 330px;
	padding: 34px 36px 0;
	box-sizing: border-box;
	text-align: center;
}

.product-card__media em {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform .35s ease;
}

.product-card__preview {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 42px;
	border: 0;
	background: #1f63b5;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	cursor: pointer;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.product-card__preview img {
	width: 15px;
	height: 15px;
	filter: brightness(0) invert(1);
}

.product-card__body {
	padding: 16px 24px 28px;
	text-align: center;
}

.product-card__type {
	color: #4d4d4d;
	font-size: 15px;
	line-height: 20px;
}

.product-card__title {
	margin-top: 10px;
	color: #222;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}

.product-card__line {
	width: 18px;
	height: 3px;
	margin: 14px auto 0;
	background: #1f63b5;
}

.product-card-list li:hover {
	box-shadow: 0 16px 30px rgba(0, 0, 0, .08);
	transform: translateY(-5px);
}

.product-card-list li:hover .product-card__media em {
	transform: scale(1.035);
}

.product-card-list li:hover .product-card__preview {
	opacity: 1;
	transform: translateY(0);
}

.product-card__preview:hover {
	background: #194f91;
}

.page {
	padding: 20px 0 56px;
}

.product-preview-modal {
	z-index: 11;
	position: fixed;
	left: 50%;
	top: 50%;
	width: min(960px, calc(100vw - 32px));
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
	transform: translate(-50%, -50%);
	overflow: hidden;
}

.product-preview-modal__close {
	z-index: 2;
	position: absolute;
	right: 16px;
	top: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	background: rgba(255, 255, 255, .92);
	border-radius: 50%;
	color: #1d1d1d;
	font-size: 28px;
	line-height: 34px;
	cursor: pointer;
}

.product-preview-modal__media {
	position: relative;
	background: #101010;
	aspect-ratio: 16 / 10;
}

.product-preview-modal__video,
.product-preview-modal__empty {
	width: 100%;
	height: 100%;
}

.product-preview-modal__video {
	display: block;
	object-fit: contain;
	background: #101010;
}

.product-preview-modal__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .7);
	font-size: 16px;
	letter-spacing: 0;
}

.product-preview-modal__content {
	padding: 28px 30px 32px;
}

.product-preview-modal__eyebrow {
	color: #1f63b5;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.product-preview-modal__title {
	margin: 10px 0 30px;
	color: #222;
	font-size: 26px;
	line-height: 1.2;
}

.product-preview-modal__info {
	max-height: 370px;
  padding-right: 20px;
	overflow: auto;
	color: #666;
	font-size: 15px;
	line-height: 1.8;
}

.product-preview-modal__info p {
	margin: 0 0 10px;
}

.product-preview-modal__detail {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	padding: 0 22px;
	height: 42px;
	border: 1px solid #1f63b5;
	border-radius: 21px;
	color: #1f63b5;
	font-size: 14px;
	font-weight: 700;
}

.product-preview-modal__detail i {
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

@media (min-width: 769px) {
	.product-preview-modal {
		display: grid;
		grid-template-columns: 1.15fr .85fr;
	}

	.product-preview-modal__media {
		aspect-ratio: auto;
		min-height: 520px;
	}
}

@media (max-width: 1440px) {
	.product-card-list {
		gap: 28px 22px;
	}
}

@media (max-width: 1024px) {
	.product-list-page .part1 {
		padding: 36px 0 12px;
	}

	.product-list-title {
		font-size: 34px;
	}

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

	.product-card__media {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.product-list-page .inpage-third-nav {
		margin-bottom: 28px;
		overflow-x: auto;
		white-space: nowrap;
    padding-bottom: 30px;
	}

	.product-list-title {
		margin-bottom: 20px;
		font-size: 26px;
	}

	.product-list-page .inpage-third-nav .item {
		min-width: 0;
		line-height: 34px;
		padding: 0 18px;
		font-size: 12px;
    margin: 0 6px;
	}

	.product-card-list {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.product-card__media {
		height: 280px;
	}

	.product-card__title {
		font-size: 18px;
	}

	.product-preview-modal {
		width: calc(100vw - 20px);
	}

	.product-preview-modal__content {
		padding: 22px 20px 24px;
	}

	.product-preview-modal__title {
		font-size: 22px;
	}

	.product-preview-modal__info {
		max-height: 32vh;
		font-size: 14px;
	}
}
