.harvia-lineup-archive {
	background: #fff;
	color: #111;
}

.harvia-bgwhite {
	background: #fff;
}

.harvia-wrap {
	width: min(1200px, calc(100% - 40px));
	margin: 0 auto;
}

/* -------------------------
   HERO
------------------------- */
.harvia-hero {
	position: relative;
	height: 520px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.harvia-hero__bg {
	position: absolute;
	inset: 0;
	margin: 0;
}

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

.harvia-hero__title {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	margin: 0;
	padding: 0 20px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.harvia-hero__title .en {
	display: block;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.harvia-hero__title .ja {
	display: block;
	margin-top: 10px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.6;
}

/* -------------------------
   BREADCRUMB
------------------------- */
.harvia-breadcrumb {
	padding: 24px 0;
	border-bottom: 1px solid #e5e5e5;
}

.harvia-breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.harvia-breadcrumb li {
	position: relative;
}

.harvia-breadcrumb li + li::before {
	content: "/";
	margin-right: 14px;
	color: #999;
}

.harvia-breadcrumb a {
	color: #111;
	text-decoration: none;
}

.harvia-breadcrumb a:hover {
	text-decoration: underline;
}

/* -------------------------
   TITLES
------------------------- */
.harvia-ttl {
	margin: 0 0 40px;
	text-align: center;
}

.harvia-ttl .en {
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.4;
}

.harvia-ttl .ja {
	display: block;
	margin-top: 10px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.harvia-ttl--01 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-align: center;
}

.harvia-ttl--02 .en {
	color: #666;
}

/* -------------------------
   PRODUCTS
------------------------- */
.harvia-products {
	padding: 80px 0 100px;
}

.harvia-term-description {
	max-width: 900px;
	margin: 0 auto 40px;
	font-size: 15px;
	line-height: 2;
	color: #444;
	text-align: center;
}

.harvia-product-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px 28px;
}

.harvia-product-item {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #111;
}

.harvia-product-item__image {
	margin: 0;
	background: #f7f7f7;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.harvia-product-item__image img {
	width: 80%;
	height: 80%;
	object-fit: contain;
	display: block;
	transition: transform 0.4s ease;
}

.harvia-product-item:hover .harvia-product-item__image img {
	transform: scale(1.04);
}

.harvia-product-item__name {
	margin-top: 18px;
	text-align: center;
}

.harvia-product-item__name .ja {
	display: block;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.harvia-product-item__name .en {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.5;
	color: #555;
	text-transform: uppercase;
}

.harvia-product-item__category {
	margin-top: 18px;
	text-align: center;
}

.harvia-product-item__category > div {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #d8d8d8;
	font-size: 13px;
	line-height: 1.8;
	color: #444;
	background: #fff;
}

.harvia-product-item__btn {
	margin-top: 22px;
	text-align: center;
}

.btn-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 48px;
	padding: 0 24px;
	border: 1px solid #111;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1;
	transition: all 0.3s ease;
	background: #fff;
	color: #111;
}

.harvia-product-item:hover .btn-more,
.harvia-category-item:hover .btn-more {
	background: #111;
	color: #fff;
}

.harvia-no-posts {
	text-align: center;
	padding: 40px 20px;
	font-size: 16px;
	color: #666;
}

/* -------------------------
   CATEGORIES
------------------------- */
.harvia-categories {
	padding: 0 0 100px;
}

.harvia-category-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.harvia-category-item {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #111;
	border: 1px solid #e5e5e5;
	background: #fff;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.harvia-category-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.harvia-category-item.is-current {
	border-color: #111;
}

.harvia-category-item__image {
	margin: 0;
	aspect-ratio: 1.2 / 1;
	overflow: hidden;
	background: #f7f7f7;
}

.harvia-category-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.harvia-category-item__text {
	padding: 20px 18px 10px;
	text-align: center;
}

.harvia-category-item__text .en {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.5;
	color: #666;
	text-transform: uppercase;
}

.harvia-category-item__text .ja {
	margin-top: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #111;
}

.harvia-category-item__btn {
	padding: 0 18px 22px;
	text-align: center;
	margin-top: auto;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media screen and (max-width: 1024px) {
	.harvia-product-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.harvia-hero {
		height: 420px;
	}

	.harvia-hero__title .en {
		font-size: 38px;
	}
}

@media screen and (max-width: 767px) {
	.harvia-wrap {
		width: calc(100% - 30px);
	}

	.harvia-hero {
		height: 300px;
	}

	.harvia-hero__title .en {
		font-size: 28px;
		letter-spacing: 0.06em;
	}

	.harvia-hero__title .ja {
		font-size: 15px;
	}

	.harvia-breadcrumb {
		padding: 18px 0;
	}

	.harvia-breadcrumb ul {
		font-size: 12px;
	}

	.harvia-products {
		padding: 50px 0 70px;
	}

	.harvia-categories {
		padding: 0 0 70px;
	}

	.harvia-ttl {
		margin-bottom: 30px;
	}

	.harvia-ttl .en {
		font-size: 12px;
	}

	.harvia-ttl .ja {
		font-size: 22px;
	}

	.harvia-ttl--01 {
		font-size: 28px;
	}

	.harvia-product-list,
	.harvia-category-list {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.harvia-product-item__name .ja {
		font-size: 20px;
	}

	.harvia-product-item__name .en {
		font-size: 13px;
	}

	.btn-more {
		min-width: 140px;
		height: 44px;
		font-size: 12px;
	}
}

/* =========================
   single harvia lineup
========================= */
.harvia-single {
	background: #fff;
	color: #111;
}

.harvia-single__bgwhite {
	background: #fff;
}

.harvia-single__hero {
	position: relative;
	height: 520px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.harvia-single__hero-bg {
	position: absolute;
	inset: 0;
	margin: 0;
}

.harvia-single__hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.harvia-single__hero-title {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	margin: 0;
	padding: 0 20px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.harvia-single__hero-title .en {
	display: block;
	font-size: 46px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.harvia-single__hero-title .jp {
	display: block;
	margin-top: 10px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.6;
}

.harvia-single__breadcrumb {
	padding: 24px 0;
	border-bottom: 1px solid #e5e5e5;
}

.harvia-single__breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.harvia-single__breadcrumb li + li::before {
	content: "/";
	margin-right: 14px;
	color: #999;
}

.harvia-single__breadcrumb a {
	color: #111;
	text-decoration: none;
}

.harvia-single__detail {
	padding: 70px 0 100px;
}

.harvia-single__gallery {
	margin-bottom: 50px;
}

.harvia-single__gallery-main {
	background: #f7f7f7;
	text-align: center;
	padding: 20px;
}

.harvia-single__gallery-main img {
	max-width: 100%;
	max-height: 600px;
	object-fit: contain;
	display: inline-block;
}

.harvia-single__gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.harvia-single__thumb {
	border: 1px solid #ddd;
	background: #fff;
	padding: 6px;
	cursor: pointer;
	transition: border-color 0.3s ease, opacity 0.3s ease;
}

.harvia-single__thumb.is-active {
	border-color: #111;
}

.harvia-single__thumb img {
	width: 100%;
	height: 90px;
	object-fit: cover;
	display: block;
}

.harvia-single__data {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 50px;
	align-items: start;
}

.harvia-single__category-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.harvia-single__category-list .category {
	padding: 6px 12px;
	border: 1px solid #dcdcdc;
	font-size: 13px;
	line-height: 1.5;
	background: #fff;
}

.harvia-single__name .ja {
	display: block;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.06em;
}

.harvia-single__name .en {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.12em;
	color: #555;
	text-transform: uppercase;
}

.harvia-single__temperature {
	margin-top: 20px;
	font-size: 14px;
	font-weight: 700;
	color: #333;
}

.harvia-single__catch {
	margin-top: 28px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.04em;
}

.harvia-single__note {
	margin-top: 20px;
	font-size: 13px;
	line-height: 1.9;
	color: #666;
}

.harvia-single__section-label {
	margin-bottom: 18px;
}

.harvia-single__section-label .en {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #555;
}

.harvia-single__section-label .ja {
	margin-top: 6px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}

.harvia-single__included {
	margin-bottom: 50px;
}

.harvia-single__included-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 20px;
}

.harvia-single__included-link {
	text-decoration: none;
	color: #111;
}

.harvia-single__included-item {
	margin: 0;
	text-align: center;
}

.harvia-single__included-item img {
	width: 100%;
	max-width: 180px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	display: inline-block;
	background: #f7f7f7;
}

.harvia-single__included-item figcaption {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.7;
}

.harvia-single__spec {
	margin-bottom: 40px;
}

.harvia-single__spec-list {
	margin: 0;
	border-top: 1px solid #ddd;
}

.harvia-single__spec-list dt,
.harvia-single__spec-list dd {
	margin: 0;
	padding: 16px 14px;
	border-bottom: 1px solid #ddd;
}

.harvia-single__spec-list dt {
	font-weight: 700;
	background: #fafafa;
}

.harvia-single__download {
	margin-top: 10px;
	text-decoration: none;
}

.harvia-single__buy {
	margin-top: 40px;
	padding: 30px;
	background: #fafafa;
	text-align: center;
}

.harvia-single__buy .sauna-note {
	margin: 0 0 20px;
	font-size: 13px;
	line-height: 1.9;
	color: #666;
	text-align: left;
}

.harvia-single__buy p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.9;
}

.harvia-single__buy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	height: 52px;
	padding: 0 24px;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.harvia-single__related {
	margin-top: 60px;
}

.harvia-single__related-label {
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

.harvia-single__related-label .en {
	margin-right: 0.4em;
}

.harvia-single__related-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.harvia-single__related-item {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #111;
	border: 1px solid #e5e5e5;
	padding: 20px;
}

.harvia-single__related-item .image {
	margin: 0;
	text-align: center;
	background: #f7f7f7;
}

.harvia-single__related-item .image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	display: block;
}

.harvia-single__related-item .name {
	margin-top: 14px;
	text-align: center;
	font-weight: 700;
	line-height: 1.6;
}

.harvia-single__categories {
	padding: 0 0 100px;
}

@media screen and (max-width: 1024px) {
	.harvia-single__data {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

@media screen and (max-width: 767px) {
	.harvia-single__hero {
		height: 300px;
	}

	.harvia-single__hero-title .en {
		font-size: 28px;
	}

	.harvia-single__hero-title .jp {
		font-size: 16px;
	}

	.harvia-single__detail {
		padding: 50px 0 70px;
	}

	.harvia-single__gallery-main img {
		max-height: 360px;
	}

	.harvia-single__name .ja {
		font-size: 28px;
	}

	.harvia-single__catch {
		font-size: 20px;
	}

	.harvia-single__section-label .ja,
	.harvia-single__related-label {
		font-size: 20px;
	}

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

	.harvia-single__buy {
		padding: 24px 18px;
	}

	.harvia-single__buy-btn {
		min-width: 100%;
	}
}