@charset "UTF-8";

.wheel_list section {
	margin: 0 auto 5em;
}

.wheel_list .quick_nav .quick_nav_icon {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
	color: #369;
}

.wheel_list .quick_nav .quick_nav_icon svg {
	display: block;
	width: 2.875rem;
	height: auto;
	margin: 0 auto;
}

.wheel_list .quick_nav ul li .quick_nav_static {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	height: 100%;
	padding: 30px 8px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.02em;
	text-align: center;
	color: #222323;
}

.wheel_list h2 {
	margin-bottom: 2em;
}

.wheel_list .wheel_design_block {
	margin-bottom: 2.5em;
}

.wheel_list .wheel_design_block h3 {
	margin: 0 0 1em;
	padding: 0 0 0.5em 0.75em;
	border-left: 4px solid #369;
	font-size: 1.125rem;
	line-height: 1.4;
}

#generic.wheel_list .designlist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}

#generic.wheel_list .designlist > li {
	display: flex;
	min-width: 0;
	margin: 0;
	padding: 0.25em;
	box-sizing: border-box;
	list-style: none;
}

#generic.wheel_list .designlist_item {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 12px;
	text-align: left;
	color: #222323;
	overflow: hidden;
}

.wheel_list .designlist_thumb {
	display: block;
	margin: 0 0 10px;
	padding: 6px;
	background: #fff;
	border-radius: 4px;
	text-align: center;
}

#generic.wheel_list .designlist_thumb img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.wheel_list .designlist_name {
	display: block;
	margin-bottom: 0.4em;
	font-weight: bold;
	font-size: 1rem;
}

.wheel_list .designlist_desc {
	display: block;
	font-weight: normal;
	font-size: 0.85rem;
	line-height: 1.55;
	color: #555;
}

.wheel_compare_wrap {
	overflow-x: auto;
	margin: 0 0 1em;
}

.wheel_compare {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	font-size: 0.9rem;
}

.wheel_compare th,
.wheel_compare td {
	border: 1px solid #ddd;
	padding: 10px 8px;
	text-align: center;
}

.wheel_compare th {
	background: #eee;
	font-weight: bold;
}

.wheel_compare td:first-child,
.wheel_compare th:first-child {
	text-align: left;
	font-weight: bold;
	background: #f9f9f9;
}

@media (min-width: 768px) {
	#generic.wheel_list .designlist {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	#generic.wheel_list .designlist {
		grid-template-columns: minmax(0, 1fr);
	}
}

.wheel_list .designlist_link {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 12px;
	text-align: left;
	color: #222323;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.wheel_list .designlist_link:hover {
	border-color: #369;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.wheel_design_more {
	margin: 1.25em 0 0;
	text-align: right;
}

.wheel_design_more a {
	color: #369;
	font-weight: 700;
	text-decoration: none;
}

.wheel_design_more a:hover {
	text-decoration: underline;
}

.wheel_colorlist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5em;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wheel_colorlist_item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	color: #222323;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.wheel_colorlist_item:hover {
	border-color: #369;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.wheel_colorlist_swatch {
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.15);
	flex-shrink: 0;
}

.wheel_colorlist_item--black .wheel_colorlist_swatch { background: linear-gradient(135deg, #2a2a2a, #0d0d0d); }
.wheel_colorlist_item--gunmetal .wheel_colorlist_swatch { background: linear-gradient(135deg, #5c6369, #353a3f); }
.wheel_colorlist_item--silver .wheel_colorlist_swatch { background: linear-gradient(135deg, #e8e8e8, #a8a8a8); }
.wheel_colorlist_item--white .wheel_colorlist_swatch { background: linear-gradient(135deg, #fff, #ececec); }
.wheel_colorlist_item--bronze .wheel_colorlist_swatch { background: linear-gradient(135deg, #c49a6c, #8b6914); }
.wheel_colorlist_item--gold .wheel_colorlist_swatch { background: linear-gradient(135deg, #e8c547, #b8860b); }
.wheel_colorlist_item--other .wheel_colorlist_swatch { background: linear-gradient(135deg, #d8dce6 50%, #9aa3b5 50%); }

.wheel_colorlist_name {
	font-weight: 700;
	font-size: 1rem;
}

.wheel_catalog .read {
	margin-bottom: 2em;
}

.wheel_catalog_back {
	margin: 1.5em 0 0;
}

.wheel_catalog_back a {
	color: #369;
	text-decoration: none;
	font-weight: 700;
}

.wheel_catalog_back a:hover {
	text-decoration: underline;
}

.wheel_catalog_hub {
	margin-bottom: 0;
}

.wheel_catalog_hub_item {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.wheel_catalog_hub_item:hover {
	border-color: #369;
}

.wheel_catalog_count {
	display: block;
	margin-top: auto;
	padding-top: 0.75em;
	font-size: 0.85rem;
	font-weight: 700;
	color: #369;
}

.wheel_catalog_swatch {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 10px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.wheel_catalog_color_black .wheel_catalog_swatch { background: linear-gradient(135deg, #2a2a2a, #0d0d0d); }
.wheel_catalog_color_gunmetal .wheel_catalog_swatch { background: linear-gradient(135deg, #5c6369, #353a3f); }
.wheel_catalog_color_silver .wheel_catalog_swatch { background: linear-gradient(135deg, #e8e8e8, #a8a8a8); }
.wheel_catalog_color_white .wheel_catalog_swatch { background: linear-gradient(135deg, #fff, #ececec); }
.wheel_catalog_color_bronze .wheel_catalog_swatch { background: linear-gradient(135deg, #c49a6c, #8b6914); }
.wheel_catalog_color_gold .wheel_catalog_swatch { background: linear-gradient(135deg, #e8c547, #b8860b); }
.wheel_catalog_color_other .wheel_catalog_swatch { background: linear-gradient(135deg, #d8dce6 50%, #9aa3b5 50%); }

.wheel_catalog_nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin: 0 0 2em;
	padding: 0;
	list-style: none;
}

.wheel_catalog_nav_link {
	display: inline-block;
	padding: 0.5em 1em;
	border: 1px solid #369;
	border-radius: 4px;
	color: #369;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 700;
}

.wheel_catalog_nav_link:hover,
.wheel_catalog_nav_link[aria-current="page"] {
	background: #369;
	color: #fff;
}

.wheel_catalog_sub {
	margin: 0.35em 0 0;
	font-size: 0.85rem;
	color: #666;
}

.wheel_catalog_empty {
	padding: 2em;
	text-align: center;
	color: #666;
	list-style: none;
}

/* デザイン/色別 ホイール一覧 — 横4列カタログ */
#generic.wheel_catalog .wheel_catalog_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1em;
	margin: 0;
	padding: 0;
	list-style: none;
}

#generic.wheel_catalog .wheel_catalog_grid > li {
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

#generic.wheel_catalog .wheel_catalog_card {
	display: flex;
	flex-direction: column;
	grid-template-columns: none;
	height: 100%;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
}

#generic.wheel_catalog .wheel_catalog_card:hover {
	border-color: #369;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

#generic.wheel_catalog .wheel_catalog_card .mk-series-img {
	border-right: none;
	border-bottom: 1px solid #eee;
	min-height: 0;
	padding: 0.75em;
}

#generic.wheel_catalog .wheel_catalog_card .mk-series-img-link img {
	max-height: 140px;
	width: 100%;
}

#generic.wheel_catalog .wheel_catalog_card .mk-series-body {
	padding: 0.75em 0.875em 1em;
	flex: 1 1 auto;
}

#generic.wheel_catalog .wheel_catalog_card .mk-series-name {
	font-size: 0.9375em;
	text-align: center;
	line-height: 1.4;
}

#generic.wheel_catalog .wheel_catalog_card .wheel_catalog_sub {
	text-align: center;
	line-height: 1.45;
	margin: 0;
}

#generic.wheel_catalog .wheel_catalog_card .mk-series-link {
	align-self: center;
	font-size: 0.8125em;
	padding: 0.5em 1em;
	margin-top: auto;
}

@media (min-width: 768px) {
	#generic.wheel_catalog .wheel_catalog_grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.125em;
	}
}

@media (max-width: 480px) {
	#generic.wheel_catalog .wheel_catalog_grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (min-width: 768px) {
	.wheel_colorlist {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.wheel_colorlist {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* ----- 分類レビュー画面 ----- */
.wheel_review_body {
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	background: #f0f2f5;
	color: #222;
}

.wheel_review_app {
	display: grid;
	grid-template-columns: 1fr 280px;
	grid-template-rows: auto auto 1fr;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 16px 40px;
	box-sizing: border-box;
}

.wheel_review_header {
	grid-column: 1 / -1;
}

.wheel_review_header h1 {
	margin: 0 0 0.35em;
	font-size: 1.5rem;
}

.wheel_review_meta,
.wheel_review_progress {
	margin: 0.25em 0;
	font-size: 0.9rem;
	color: #555;
}

.wheel_review_toolbar {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wheel_review_btn {
	padding: 0.55em 1em;
	border: 1px solid #369;
	border-radius: 4px;
	background: #fff;
	color: #369;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

.wheel_review_btn:hover {
	background: #eef5fa;
}

.wheel_review_btn--primary {
	background: #369;
	color: #fff;
}

.wheel_review_btn--primary:hover {
	background: #2a5a8a;
}

.wheel_review_btn--accent {
	border-color: #1a1a1a;
	color: #1a1a1a;
}

.wheel_review_main {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	min-height: 400px;
}

.wheel_review_side {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px;
	max-height: 80vh;
	overflow-y: auto;
}

.wheel_review_side h2 {
	margin: 0 0 0.75em;
	font-size: 1rem;
}

.wheel_review_side_tabs {
	display: flex;
	gap: 6px;
	margin: 0 0 12px;
}

.wheel_review_tab {
	flex: 1 1 50%;
	padding: 0.5em 0.35em;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #f8f8f8;
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
}

.wheel_review_tab.is-active {
	border-color: #369;
	background: #369;
	color: #fff;
}

.wheel_review_filter_label {
	display: block;
	margin: 0 0 0.35em;
	font-size: 0.78rem;
	color: #666;
}

.wheel_review_filter {
	width: 100%;
	margin: 0 0 12px;
	padding: 0.45em 0.6em;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 0.85rem;
	box-sizing: border-box;
}

.wheel_review_queue_empty {
	padding: 0.75em 0.5em;
	font-size: 0.82rem;
	color: #888;
	list-style: none;
}

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

.wheel_review_queue_item {
	display: block;
	width: 100%;
	margin: 0 0 4px;
	padding: 8px 10px;
	border: 1px solid transparent;
	border-radius: 4px;
	background: transparent;
	text-align: left;
	font-size: 0.82rem;
	cursor: pointer;
}

.wheel_review_queue_item.is-current {
	border-color: #369;
	background: #eef5fa;
	font-weight: 700;
}

.wheel_review_queue_item.is-done {
	color: #888;
	text-decoration: line-through;
}

.wheel_review_card h2 {
	margin: 0 0 0.5em;
	font-size: 1.25rem;
}

.wheel_review_path {
	margin: 0 0 1em;
	font-size: 0.8rem;
	color: #666;
	word-break: break-all;
}

.wheel_review_hero {
	text-align: center;
	margin: 0 0 1em;
}

.wheel_review_hero img {
	max-width: 100%;
	height: auto;
}

.wheel_review_choices {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 1.25em;
}

.wheel_review_choice {
	padding: 0.6em 1.1em;
	border: 2px solid #ccc;
	border-radius: 6px;
	background: #fff;
	font-weight: 700;
	cursor: pointer;
}

.wheel_review_choice.is-active {
	border-color: #369;
	background: #369;
	color: #fff;
}

.wheel_review_choice--sm {
	padding: 0.4em 0.75em;
	font-size: 0.85rem;
}

.wheel_review_reasons,
.wheel_review_flags {
	margin: 0.5em 0 1em;
	padding-left: 1.25em;
	font-size: 0.82rem;
	color: #444;
	line-height: 1.6;
}

.wheel_review_reason_empty {
	margin: 0.5em 0 1em;
	font-size: 0.82rem;
	color: #888;
}

.wheel_review_hint {
	margin: 0 0 0.75em;
	font-size: 0.85rem;
	color: #666;
}

.wheel_review_badge {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	border-radius: 4px;
	background: #fee;
	color: #a33;
	font-size: 0.75rem;
	font-weight: 700;
}

.wheel_review_badge--warn {
	background: #fff3cd;
	color: #856404;
}

.wheel_review_badge--ok {
	background: #e8f5e9;
	color: #2e7d32;
}

.wheel_review_hint--note {
	padding: 0.65em 0.85em;
	border-radius: 4px;
	background: #f5f8fb;
	border: 1px solid #d8e4ef;
}

.wheel_review_variant {
	display: flex;
	gap: 12px;
	margin: 0 0 1em;
	padding: 12px;
	border: 1px solid #eee;
	border-radius: 6px;
}

.wheel_review_variant_img img {
	display: block;
	width: 120px;
	height: auto;
}

.wheel_review_variant_name {
	margin: 0 0 0.35em;
	font-weight: 700;
}

.wheel_review_loading,
.wheel_review_done,
.wheel_review_error {
	padding: 2em;
	text-align: center;
	color: #666;
}

.wheel_review_error {
	color: #a33;
}

@media (max-width: 900px) {
	.wheel_review_app {
		grid-template-columns: 1fr;
	}

	.wheel_review_side {
		max-height: none;
	}
}
