:root {
	--conv-text: #111111;
	--conv-muted: #667085;
	--conv-border: #e5e7eb;
	--conv-soft: #f7f7f5;
	--conv-soft-2: #fafafa;
	--conv-card: #ffffff;
	--conv-black: #111111;
	--conv-seven: #ff5a1f;
	--conv-family: #00a84f;
	--conv-lawson: #006de5;
	--conv-accent: #0068ff;
	--conv-accent-soft: #eef5ff;
	--conv-radius: 8px;
	--conv-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.conv-site {
	margin: 0;
	color: var(--conv-text);
	background: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.conv-container {
	width: min(100% - 48px, 1360px);
	margin-inline: auto;
}

.conv-global-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--conv-border);
	backdrop-filter: blur(12px);
}

.conv-header-inner {
	display: grid;
	grid-template-columns: auto minmax(280px, 430px) 1fr auto;
	align-items: center;
	gap: 28px;
	min-height: 70px;
	width: min(100% - 48px, 1480px);
	margin-inline: auto;
}

.conv-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 24px;
	white-space: nowrap;
}

.conv-brand-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.conv-site-nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 34px;
	font-size: 15px;
	font-weight: 700;
}

.conv-site-nav a {
	padding: 8px 0;
	border-bottom: 2px solid transparent;
}

.conv-site-nav a:focus-visible,
.conv-site-nav a:hover {
	border-color: var(--conv-black);
}

.conv-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 8px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.conv-menu-toggle__bar {
	display: block;
	height: 3px;
	margin: 6px 0;
	background: var(--conv-black);
}

.conv-header-search--sp {
	display: none;
	width: min(100% - 32px, 920px);
	margin: 0 auto 14px;
}

.conv-search-form {
	display: flex;
	width: 100%;
	border: 1px solid #d7dce3;
	border-radius: var(--conv-radius);
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(17, 24, 39, 0.04);
}

.conv-search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 0 18px;
	border: 0;
	background: transparent;
	font-size: 15px;
	outline: 0;
}

.conv-search-form button {
	width: 58px;
	border: 0;
	background: var(--conv-black);
	color: #ffffff;
	cursor: pointer;
}

.conv-search-form--hero input[type="search"] {
	height: 58px;
	font-size: 18px;
}

.conv-search-form--hero button {
	width: 78px;
}

.conv-search-icon {
	position: relative;
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 3px solid currentColor;
	border-radius: 50%;
}

.conv-search-icon::after {
	content: "";
	position: absolute;
	right: -8px;
	bottom: -7px;
	width: 11px;
	height: 3px;
	background: currentColor;
	transform: rotate(45deg);
	border-radius: 999px;
}

.conv-site-main {
	min-height: calc(100vh - 160px);
}

.conv-hero {
	padding: 46px 0 24px;
	text-align: center;
}

.conv-hero h1 {
	max-width: 960px;
	margin: 0 auto 10px;
	font-size: 40px;
	line-height: 1.25;
	white-space: nowrap;
}

.conv-hero p {
	margin: 0 0 22px;
	font-size: 20px;
}

.conv-hero-search {
	width: min(100%, 820px);
	margin-inline: auto;
}

.conv-top-layout {
	display: grid;
	gap: 18px;
	padding-bottom: 28px;
}

.conv-section,
.conv-info-note,
.conv-results-panel,
.conv-filter-panel,
.conv-info-panel,
.conv-compare-section,
.conv-detail-summary-card {
	background: var(--conv-card);
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
}

.conv-section {
	padding: 20px;
}

.conv-section h2,
.conv-info-note h2,
.conv-results-panel h1,
.conv-filter-panel h2,
.conv-info-panel h2,
.conv-compare-section h2 {
	margin: 0 0 14px;
	line-height: 1.35;
}

.conv-objective-grid {
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr));
	gap: 14px;
}

.conv-objective-card {
	display: grid;
	place-items: center;
	gap: 8px;
	min-height: 92px;
	padding: 12px 8px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	font-weight: 800;
	text-align: center;
	background: #ffffff;
	transition: border-color 0.16s ease, transform 0.16s ease;
}

.conv-objective-card img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.conv-objective-card:hover,
.conv-category-card:hover,
.conv-post-card:hover {
	border-color: #b8bec8;
	transform: translateY(-1px);
}

.conv-category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px 14px;
}

.conv-category-card {
	display: grid;
	grid-template-columns: 54px 1fr;
	grid-template-rows: auto auto;
	align-items: center;
	min-height: 66px;
	padding: 8px 14px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	background: #ffffff;
	transition: border-color 0.16s ease, transform 0.16s ease;
}

.conv-category-card img {
	grid-row: 1 / span 2;
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.conv-category-card__name {
	font-weight: 800;
}

.conv-category-card__count {
	color: #344054;
	font-size: 14px;
}

.conv-info-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 22px;
	color: #24364a;
	background: #fbfcfd;
}

.conv-info-note ul {
	margin: 0;
	padding-left: 1.4em;
}

.conv-outline-button,
.conv-text-button,
.conv-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px 16px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	background: #ffffff;
	color: #26374d;
	font-weight: 700;
}

.conv-solid-button {
	min-height: 42px;
	padding: 8px 18px;
	border: 1px solid var(--conv-black);
	border-radius: var(--conv-radius);
	background: var(--conv-black);
	color: #ffffff;
	font-weight: 800;
	cursor: pointer;
}

.conv-footer-updated,
.conv-data-note {
	margin: 0;
	color: var(--conv-muted);
	font-size: 13px;
}

.conv-search-layout {
	display: block;
	padding: 22px 0 40px;
}

.conv-filter-drawer {
	padding: 0 24px;
	border-bottom: 0;
}

.conv-filter-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 46px;
	padding: 10px 14px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	background: #ffffff;
	color: var(--conv-text);
	font-weight: 800;
	cursor: pointer;
}

.conv-filter-toggle::after {
	content: "";
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.16s ease;
}

.conv-filter-toggle[aria-expanded="true"]::after {
	transform: rotate(225deg);
}

.conv-filter-panel {
	display: block;
	padding: 18px;
	margin-top: 10px;
	margin-bottom: 16px;
	background: #ffffff;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
}

.js .conv-filter-panel {
	display: none;
}

.js .conv-filter-panel.is-open {
	display: block;
}

.conv-filter-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px 18px;
}

.conv-filter-group {
	padding: 14px 0;
	border-top: 0;
	border-radius: 6px;
	transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.conv-filter-group.is-focused {
	background: #f7fbff;
	box-shadow: 0 0 0 2px rgba(0, 104, 255, 0.16);
}

.conv-filter-group h3 {
	margin: 0 0 8px;
	font-size: 15px;
}

.conv-filter-group label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin: 7px 0;
	font-size: 14px;
}

.conv-filter-group input[type="checkbox"],
.conv-filter-group input[type="radio"] {
	accent-color: var(--conv-black);
}

.conv-range-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 8px;
}

.conv-range-row input {
	width: 100%;
	min-height: 38px;
	padding: 6px 8px;
	border: 1px solid var(--conv-border);
	border-radius: 6px;
}

.conv-filter-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 14px;
}

.conv-results-panel {
	padding: 0;
	overflow: hidden;
}

.conv-results-head {
	padding: 24px 28px 10px;
}

.conv-results-head p {
	margin: 0;
	font-weight: 700;
}

.conv-results-head h1 {
	margin-bottom: 0;
	font-size: 32px;
}

.conv-result-toolbar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 0 28px 18px;
}

.conv-filter-button-row {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 10px 12px;
	min-width: 0;
}

.conv-filter-chip-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 18px;
	border: 1px solid #d7e2f2;
	border-radius: 8px;
	background: #ffffff;
	color: var(--conv-accent);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
}

.conv-filter-chip-button[data-filter-menu]::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.conv-filter-chip-button:hover,
.conv-filter-chip-button:focus-visible,
.conv-filter-chip-button[aria-expanded="true"],
.conv-column-toggle:hover,
.conv-column-toggle:focus-visible {
	background: #f8fbff;
	border-color: #9dc3ff;
	outline: none;
}

.conv-filter-chip-button--more {
	min-width: 160px;
}

.conv-filter-popover {
	position: absolute;
	left: 28px;
	top: 46px;
	z-index: 5;
	width: min(360px, calc(100% - 56px));
	padding: 14px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	background: #ffffff;
	box-shadow: var(--conv-shadow);
}

.conv-filter-popover[data-filter-panel="category"],
.conv-filter-popover[data-filter-panel="prefecture"] {
	width: min(420px, calc(100% - 56px));
}

.conv-filter-popover h2 {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 1.4;
}

.conv-filter-popover__choices {
	display: grid;
	gap: 8px;
}

.conv-filter-popover__choices--scroll {
	max-height: 320px;
	overflow: auto;
	padding-right: 4px;
}

.conv-filter-popover__choices label {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	min-height: 34px;
	font-size: 14px;
	font-weight: 700;
}

.conv-filter-popover__choices input {
	margin-right: 6px;
	accent-color: var(--conv-accent);
}

.conv-filter-popover__choices span {
	margin-left: auto;
	color: var(--conv-muted);
	font-size: 12px;
}

.conv-filter-popover .conv-range-row {
	margin-bottom: 12px;
}

.conv-filter-popover__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 14px;
}

.conv-filter-popover__actions .conv-text-button {
	font-size: 14px;
}

.conv-result-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 0 28px 18px;
	background: #ffffff;
}

.conv-result-stats div {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 8px 14px;
	border: 1px solid #e0e7f2;
	border-radius: 8px;
	background: #ffffff;
}

.conv-result-stats span {
	display: inline-flex;
	align-items: center;
	color: #344054;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.conv-result-stats strong {
	display: inline-flex;
	align-items: center;
	margin-left: auto;
	font-size: 18px;
	line-height: 1.2;
	white-space: nowrap;
}

.conv-result-stats .conv-stat-icon {
	position: relative;
	display: inline-flex;
	flex: 0 0 24px;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var(--conv-accent-soft);
	color: var(--conv-accent);
	font-size: 14px;
	font-weight: 900;
}

.conv-result-stats .conv-stat-icon--calorie::before {
	content: "";
	width: 9px;
	height: 14px;
	border-radius: 9px 9px 9px 2px;
	background: currentColor;
	transform: rotate(34deg);
}

.conv-result-stats .conv-stat-icon--protein::before {
	content: "";
	width: 13px;
	height: 9px;
	border: 2px solid currentColor;
	border-left-width: 4px;
	border-radius: 999px 999px 6px 6px;
	transform: rotate(-28deg);
}

.conv-result-stats .conv-stat-icon--count::before {
	content: "";
	width: 12px;
	height: 12px;
	border: 2px solid currentColor;
	border-radius: 3px;
	transform: rotate(45deg);
}

.conv-filter-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding: 14px 24px;
	border-bottom: 1px solid var(--conv-border);
}

.conv-filter-tag {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	min-height: 36px;
	padding: 6px 12px;
	border: 1px solid var(--conv-border);
	border-radius: 999px;
	background: #ffffff;
	font-weight: 700;
}

.conv-clear-link {
	color: var(--conv-black);
	font-weight: 700;
}

.conv-sort-row {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 24px;
	border-bottom: 1px solid var(--conv-border);
}

.conv-sort-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.conv-sort-tabs a {
	min-height: 38px;
	padding: 7px 16px;
	border: 1px solid var(--conv-border);
	border-radius: 999px;
	background: #ffffff;
	font-size: 14px;
	font-weight: 800;
}

.conv-sort-tabs a.is-active {
	border-color: #9aa1ad;
	background: #f1f2f4;
}

.conv-column-toggle {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 18px;
	border: 1px solid var(--conv-accent);
	border-radius: 8px;
	background: #ffffff;
	color: var(--conv-accent);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
	cursor: pointer;
}

.conv-settings-icon {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.conv-settings-icon::before,
.conv-settings-icon::after {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	border: 2px solid currentColor;
	border-radius: 999px;
	background: #ffffff;
}

.conv-settings-icon::before {
	left: 2px;
	top: -5px;
}

.conv-settings-icon::after {
	right: 2px;
	bottom: -5px;
}

.conv-column-options {
	position: absolute;
	right: 28px;
	top: 46px;
	z-index: 4;
	padding: 12px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	background: #ffffff;
	box-shadow: var(--conv-shadow);
}

.conv-column-options__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(130px, 1fr));
	gap: 8px 14px;
}

.conv-table-shell {
	padding: 0 28px 12px;
}

.conv-scroll-hint {
	display: none;
	margin: 10px 0;
	color: var(--conv-muted);
	font-size: 13px;
	text-align: center;
}

.conv-table-scroll {
	overflow-x: auto;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
}

.conv-product-table {
	width: 100%;
	min-width: 1080px;
	border-collapse: collapse;
	background: #ffffff;
	font-size: 14px;
}

.conv-product-table--compare {
	min-width: 920px;
}

.conv-product-table th,
.conv-product-table td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--conv-border);
	border-left: 1px solid var(--conv-border);
	vertical-align: middle;
	text-align: center;
}

.conv-product-table th:first-child,
.conv-product-table td:first-child {
	border-left: 0;
}

.conv-product-table th {
	background: #f8fafc;
	font-weight: 800;
}

.conv-product-table th.conv-sortable-col {
	padding: 0;
}

.conv-product-table th.conv-sortable-col.is-active {
	background: #f1f2f4;
}

.conv-sortable-heading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	color: var(--conv-text);
	text-decoration: none;
	line-height: 1.25;
	white-space: nowrap;
	box-sizing: border-box;
}

.conv-sortable-heading:hover,
.conv-sortable-heading:focus-visible {
	background: #f6f7f8;
	color: var(--conv-text);
	outline: none;
}

.conv-sortable-heading.is-active {
	font-weight: 900;
}

.conv-sort-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	color: #344054;
	font-size: 13px;
	line-height: 1;
}

.conv-product-table td[data-col="name"] {
	min-width: 190px;
	text-align: left;
	font-weight: 700;
}

.conv-product-name-link {
	color: var(--conv-accent);
	font-weight: 800;
}

.conv-product-name-link:hover,
.conv-product-name-link:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.conv-product-row {
	cursor: pointer;
}

.conv-product-row:hover {
	background: #fafafa;
}

.conv-product-row.is-current {
	background: #fffdf5;
}

.conv-product-row.is-extra {
	display: none;
}

.conv-product-row.is-extra.is-open {
	display: table-row;
}

.conv-table-thumb {
	width: 72px;
	height: 54px;
	object-fit: cover;
	border-radius: 6px;
}

.conv-store-name {
	display: inline-block;
	font-weight: 900;
}

.conv-store--seven {
	color: var(--conv-seven);
}

.conv-store--familymart {
	color: var(--conv-family);
}

.conv-store--lawson {
	color: var(--conv-lawson);
}

.conv-store--default {
	color: var(--conv-text);
}

.conv-current-label {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	border-radius: 999px;
	background: #f1f2f4;
	color: #344054;
	font-size: 11px;
	font-weight: 700;
}

.conv-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 18px 24px 24px;
}

.conv-pagination .navigation {
	margin: 0;
}

.conv-pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.conv-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--conv-border);
	border-radius: 6px;
	background: #ffffff;
	color: var(--conv-text);
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	box-sizing: border-box;
}

.conv-pagination .page-numbers.prev,
.conv-pagination .page-numbers.next {
	min-width: 86px;
	padding: 0 16px;
}

.conv-pagination .page-numbers.current {
	background: var(--conv-black);
	color: #ffffff;
	border-color: var(--conv-black);
}

.conv-mobile-actionbar {
	display: none;
}

.conv-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 14px 0;
	font-size: 13px;
	font-weight: 700;
}

.conv-detail-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
	gap: 28px;
	align-items: stretch;
	margin-bottom: 16px;
}

.conv-detail-image {
	border-radius: var(--conv-radius);
	overflow: hidden;
	background: var(--conv-soft);
}

.conv-detail-main-image {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
}

.conv-detail-summary-card {
	padding: 24px;
}

.conv-detail-tags,
.conv-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.conv-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 5px 14px;
	border-radius: 8px;
	background: #f2f3f5;
	color: #1f2937;
	font-weight: 800;
	font-size: 14px;
}

.conv-detail-summary-card h1 {
	margin: 18px 0 16px;
	font-size: clamp(28px, 3vw, 44px);
	line-height: 1.25;
}

.conv-detail-kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 16px;
}

.conv-detail-kpis div {
	padding: 14px 10px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	text-align: center;
}

.conv-detail-kpis span {
	display: block;
	font-weight: 800;
	font-size: 13px;
}

.conv-detail-kpis strong {
	display: block;
	margin-top: 4px;
	font-size: 30px;
	line-height: 1.15;
}

.conv-detail-region-line {
	margin: 0;
	padding: 14px 0;
	border-bottom: 1px solid var(--conv-border);
	font-weight: 700;
}

.conv-detail-summary-text h2 {
	margin: 14px 0 4px;
	font-size: 16px;
}

.conv-detail-summary-text p {
	margin: 0;
}

.conv-detail-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 16px;
}

.conv-info-panel {
	padding: 16px;
}

.conv-info-panel h2 small {
	color: var(--conv-muted);
	font-size: 12px;
}

.conv-spec-list {
	margin: 0;
}

.conv-spec-list div {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 12px;
	padding: 7px 0;
	border-bottom: 1px solid var(--conv-border);
}

.conv-spec-list dt {
	font-weight: 800;
}

.conv-spec-list dd {
	margin: 0;
}

.conv-source-link {
	color: #5d6675;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.conv-muted {
	color: var(--conv-muted);
}

.conv-compare-section {
	padding: 16px;
	margin: 16px 0;
}

.conv-compare-section .conv-table-shell {
	padding: 0;
}

.conv-more-link {
	display: inline-flex;
	gap: 8px;
	width: fit-content;
	margin: 10px auto 0;
	min-height: 44px;
	padding: 8px 18px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	background: #ffffff;
	transition: background-color 0.16s ease, border-color 0.16s ease;
}

.conv-more-link:hover,
.conv-more-link:focus-visible {
	background: #f5f6f7;
	border-color: #cdd2da;
}

.conv-chevron {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-top: -3px;
}

.conv-data-note {
	padding: 0 24px 12px;
}

.conv-product-detail > .conv-data-note {
	padding: 0 0 24px;
}

.conv-global-footer {
	border-top: 1px solid var(--conv-border);
	background: #fbfbfc;
}

.conv-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: min(100% - 48px, 1360px);
	min-height: 64px;
	margin-inline: auto;
}

.conv-footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	color: #334155;
	font-weight: 700;
}

.conv-fixed-page {
	display: grid;
	gap: 18px;
	padding: 34px 0 54px;
}

.conv-fixed-hero,
.conv-fixed-section {
	background: #ffffff;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
}

.conv-fixed-hero {
	display: grid;
	gap: 12px;
	padding: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

.conv-fixed-eyebrow {
	width: fit-content;
	margin: 0;
	padding: 4px 10px;
	border: 1px solid #cae8d6;
	border-radius: 999px;
	background: #f0fbf4;
	color: #166534;
	font-size: 13px;
	font-weight: 800;
}

.conv-fixed-hero h1 {
	margin: 0;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.25;
}

.conv-fixed-hero p {
	max-width: 820px;
	margin: 0;
	color: #344054;
	font-size: 17px;
	font-weight: 600;
}

.conv-fixed-search {
	width: min(100%, 760px);
	margin-top: 8px;
}

.conv-fixed-section {
	padding: 22px;
}

.conv-fixed-section h2 {
	margin: 0 0 14px;
	line-height: 1.35;
}

.conv-fixed-category-grid,
.conv-fixed-store-grid,
.conv-fixed-ranking-grid,
.conv-fixed-link-grid,
.conv-fixed-product-grid {
	display: grid;
	gap: 14px;
}

.conv-fixed-category-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.conv-fixed-category-card,
.conv-fixed-store-card,
.conv-fixed-ranking-card,
.conv-fixed-link-card,
.conv-fixed-product-card {
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	background: #ffffff;
	transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.conv-fixed-category-card:hover,
.conv-fixed-store-card:hover,
.conv-fixed-ranking-card:hover,
.conv-fixed-link-card:hover,
.conv-fixed-product-card:hover {
	border-color: #b8bec8;
	background: #fbfbfc;
	transform: translateY(-1px);
}

.conv-fixed-category-card {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	grid-template-rows: auto auto auto;
	gap: 2px 12px;
	min-height: 116px;
	padding: 14px;
}

.conv-fixed-category-card img {
	grid-row: 1 / span 3;
	width: 48px;
	height: 48px;
	object-fit: contain;
	align-self: center;
}

.conv-fixed-category-card__name,
.conv-fixed-ranking-card__label {
	color: var(--conv-text);
	font-weight: 900;
}

.conv-fixed-category-card__description,
.conv-fixed-ranking-card__description,
.conv-fixed-product-card__meta {
	color: var(--conv-muted);
	font-size: 13px;
}

.conv-fixed-category-card__count,
.conv-fixed-ranking-card__count {
	color: #166534;
	font-size: 13px;
	font-weight: 800;
}

.conv-fixed-link-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.conv-fixed-link-card {
	display: grid;
	gap: 4px;
	min-height: 72px;
	padding: 14px;
	font-weight: 900;
}

.conv-fixed-link-card small {
	color: var(--conv-muted);
	font-size: 13px;
	font-weight: 600;
}

.conv-fixed-store-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.conv-fixed-store-card {
	padding: 18px;
}

.conv-fixed-store-card h2 {
	margin: 0 0 8px;
	font-size: 24px;
}

.conv-fixed-store-card p {
	margin: 0 0 12px;
	color: #344054;
}

.conv-fixed-stat-list {
	display: grid;
	gap: 8px;
	margin: 0 0 14px;
}

.conv-fixed-stat-list div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid var(--conv-border);
}

.conv-fixed-stat-list dt {
	color: var(--conv-muted);
	font-weight: 800;
}

.conv-fixed-stat-list dd {
	margin: 0;
	font-weight: 900;
}

.conv-fixed-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.conv-fixed-card-actions a {
	min-height: 34px;
	padding: 5px 10px;
	border: 1px solid var(--conv-border);
	border-radius: 999px;
	background: #ffffff;
	font-size: 13px;
	font-weight: 800;
}

.conv-fixed-compare-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	background: #ffffff;
}

.conv-fixed-compare-table th,
.conv-fixed-compare-table td {
	padding: 12px 14px;
	border: 1px solid var(--conv-border);
	text-align: left;
	vertical-align: top;
}

.conv-fixed-compare-table thead th {
	background: #fbfbfc;
	color: var(--conv-text);
}

.conv-fixed-section .conv-table-shell {
	padding: 0;
}

.conv-fixed-section .conv-data-note {
	padding: 10px 0 0;
}

.conv-fixed-ranking-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.conv-fixed-ranking-card {
	display: grid;
	gap: 7px;
	min-height: 178px;
	padding: 16px;
}

.conv-fixed-ranking-card strong {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.45;
}

.conv-fixed-ranking-card small {
	color: #166534;
	font-weight: 900;
}

.conv-fixed-note {
	margin: 16px 0 0;
	color: var(--conv-muted);
	font-size: 13px;
}

.conv-fixed-product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.conv-fixed-product-card {
	display: grid;
	gap: 7px;
	padding: 12px;
}

.conv-fixed-product-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	background: var(--conv-soft);
}

.conv-fixed-prose {
	max-width: 920px;
}

.conv-fixed-prose h2 {
	margin-top: 24px;
}

.conv-fixed-prose h2:first-child {
	margin-top: 0;
}

.conv-fixed-prose p {
	margin: 0 0 12px;
	color: #344054;
}

.conv-placeholder-form {
	display: grid;
	gap: 12px;
	margin-top: 18px;
	padding: 18px;
	border: 1px dashed #cbd5e1;
	border-radius: var(--conv-radius);
	background: #fbfbfc;
}

.conv-placeholder-form label {
	display: grid;
	gap: 6px;
	font-weight: 800;
}

.conv-placeholder-form input,
.conv-placeholder-form select,
.conv-placeholder-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--conv-border);
	border-radius: 6px;
	background: #ffffff;
	font: inherit;
}

.conv-generic-page {
	padding: 36px 0 56px;
}

.conv-page-content,
.conv-post-card {
	max-width: 860px;
	padding: 22px;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	background: #ffffff;
}

.conv-page-content h1,
.conv-generic-page > h1 {
	margin-top: 0;
}

.conv-post-list {
	display: grid;
	gap: 14px;
}

.conv-post-card h2 {
	margin: 0 0 8px;
}

.conv-entry-meta {
	color: var(--conv-muted);
	margin-bottom: 18px;
}

[data-col].is-hidden,
th[data-col].is-hidden,
td[data-col].is-hidden {
	display: none;
}

@media (max-width: 1180px) {
	.conv-header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.conv-header-search--pc {
		display: none;
	}

	.conv-header-search--sp {
		display: block;
	}

	.conv-objective-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.conv-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.conv-results-head,
	.conv-detail-hero {
		grid-template-columns: 1fr;
	}

	.conv-detail-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.conv-fixed-category-grid,
	.conv-fixed-ranking-grid,
	.conv-fixed-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.conv-fixed-store-grid,
	.conv-fixed-link-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.conv-container {
		width: min(100% - 28px, 760px);
	}

	.conv-header-inner {
		width: min(100% - 28px, 760px);
		min-height: 64px;
		gap: 12px;
	}

	.conv-brand {
		font-size: 24px;
	}

	.conv-brand-logo {
		width: 38px;
		height: 38px;
	}

	.conv-menu-toggle {
		display: block;
		justify-self: end;
	}

	.conv-site-nav {
		display: none;
		position: absolute;
		left: 14px;
		right: 14px;
		top: 64px;
		z-index: 60;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		border: 1px solid var(--conv-border);
		border-radius: var(--conv-radius);
		background: #ffffff;
		box-shadow: var(--conv-shadow);
	}

	.conv-site-nav.is-open {
		display: flex;
	}

	.conv-site-nav a {
		padding: 12px;
	}

	.conv-hero {
		padding: 28px 0 20px;
		text-align: left;
	}

	.conv-hero h1 {
		font-size: 30px;
		white-space: normal;
	}

	.conv-hero p {
		font-size: 18px;
	}

	.conv-search-form--hero input[type="search"] {
		height: 62px;
	}

	.conv-search-form--hero button {
		width: 70px;
	}

	.conv-section {
		padding: 0;
		border: 0;
	}

	.conv-section h2 {
		margin-top: 20px;
		font-size: 26px;
	}

	.conv-objective-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 0;
		border: 1px solid var(--conv-border);
		border-radius: var(--conv-radius);
		overflow: hidden;
	}

	.conv-objective-card {
		min-height: 110px;
		border: 0;
		border-right: 1px solid var(--conv-border);
		border-bottom: 1px solid var(--conv-border);
		border-radius: 0;
		font-size: 15px;
	}

	.conv-category-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0;
		border: 1px solid var(--conv-border);
		border-radius: var(--conv-radius);
		overflow: hidden;
	}

	.conv-category-card {
		display: grid;
		grid-template-columns: 1fr;
		place-items: center;
		min-height: 120px;
		padding: 12px 6px;
		border: 0;
		border-right: 1px solid var(--conv-border);
		border-bottom: 1px solid var(--conv-border);
		border-radius: 0;
		text-align: center;
	}

	.conv-category-card img {
		grid-row: auto;
		width: 50px;
		height: 50px;
	}

	.conv-info-note {
		display: block;
		padding: 18px;
	}

	.conv-info-note .conv-outline-button {
		width: 100%;
		margin-top: 12px;
	}

	.conv-search-layout {
		display: block;
		padding-top: 18px;
	}

	.conv-filter-panel {
		max-height: 72vh;
		overflow: auto;
	}

	.conv-filter-grid {
		grid-template-columns: 1fr 1fr;
	}

	.conv-results-head {
		padding: 18px 14px;
	}

	.conv-results-head h1 {
		font-size: 30px;
	}

	.conv-result-toolbar {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 0 14px 14px;
	}

	.conv-filter-button-row {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.conv-filter-chip-button {
		flex: 0 0 auto;
	}

	.conv-filter-popover,
	.conv-filter-popover[data-filter-panel="category"],
	.conv-filter-popover[data-filter-panel="prefecture"] {
		position: static;
		width: 100%;
		box-shadow: none;
	}

	.conv-filter-popover__choices--scroll {
		max-height: 42vh;
	}

	.conv-result-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 0 14px 14px;
	}

	.conv-result-stats div {
		min-height: 44px;
		padding: 7px 10px;
	}

	.conv-result-stats span {
		font-size: 12px;
	}

	.conv-result-stats strong {
		font-size: 16px;
	}

	.conv-filter-tags {
		padding: 12px 14px;
	}

	.conv-sort-row {
		display: block;
	}

	.conv-sort-tabs {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 10px;
	}

	.conv-sort-tabs a {
		min-height: 48px;
		padding: 10px 6px;
		text-align: center;
	}

	.conv-column-toggle {
		display: inline-flex;
		width: 100%;
		min-height: 50px;
		border: 1px solid var(--conv-accent);
		border-radius: var(--conv-radius);
		background: #ffffff;
	}

	.conv-column-options {
		position: static;
		margin-top: 10px;
		box-shadow: none;
	}

	.conv-table-shell {
		padding: 0 14px 12px;
	}

	.conv-scroll-hint {
		display: block;
	}

	.conv-product-table {
		min-width: 860px;
		font-size: 13px;
	}

	.conv-table-thumb {
		width: 78px;
		height: 58px;
	}

	.conv-mobile-actionbar {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: 10px;
		z-index: 80;
		display: grid;
		grid-template-columns: 1fr 1fr 44px;
		border: 1px solid var(--conv-border);
		border-radius: var(--conv-radius);
		background: #ffffff;
		box-shadow: var(--conv-shadow);
		overflow: hidden;
	}

	.conv-mobile-actionbar button {
		min-height: 54px;
		border: 0;
		border-left: 1px solid var(--conv-border);
		background: #ffffff;
		font-weight: 800;
	}

	.conv-mobile-actionbar button:first-child {
		border-left: 0;
	}

	.conv-detail-main-image {
		min-height: 220px;
	}

	.conv-detail-summary-card {
		border: 0;
		padding: 0;
	}

	.conv-detail-kpis {
		grid-template-columns: repeat(3, 1fr);
	}

	.conv-detail-kpis strong {
		font-size: 26px;
	}

	.conv-detail-grid {
		grid-template-columns: 1fr 1fr;
	}

	.conv-compare-section {
		padding: 12px;
	}

	.conv-footer-inner {
		display: grid;
		justify-items: center;
		width: min(100% - 28px, 760px);
		padding: 16px 0 76px;
	}

	.conv-footer-nav {
		justify-content: center;
		gap: 18px 28px;
	}

	.conv-fixed-page {
		padding: 20px 0 44px;
	}

	.conv-fixed-hero,
	.conv-fixed-section {
		padding: 18px;
	}

	.conv-fixed-hero h1 {
		font-size: 30px;
	}

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

	.conv-fixed-category-card {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.conv-fixed-category-card img {
		grid-row: auto;
	}
}

@media (max-width: 560px) {
	.conv-container {
		width: min(100% - 24px, 480px);
	}

	.conv-brand-name {
		font-size: 22px;
	}

	.conv-hero h1 {
		font-size: 28px;
	}

	.conv-filter-grid {
		grid-template-columns: 1fr;
	}

	.conv-objective-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.conv-objective-card {
		min-height: 96px;
		font-size: 13px;
	}

	.conv-objective-card img {
		width: 38px;
		height: 38px;
	}

	.conv-category-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.conv-category-card {
		min-height: 104px;
		font-size: 14px;
	}

	.conv-category-card__count {
		display: none;
	}

	.conv-result-stats strong {
		font-size: 15px;
	}

	.conv-detail-kpis {
		gap: 8px;
	}

	.conv-detail-kpis div {
		padding: 10px 6px;
	}

	.conv-detail-kpis strong {
		font-size: 22px;
	}

	.conv-detail-grid {
		grid-template-columns: 1fr;
	}

	.conv-spec-list div {
		grid-template-columns: 104px minmax(0, 1fr);
	}

	.conv-fixed-ranking-grid,
	.conv-fixed-product-grid {
		grid-template-columns: 1fr;
	}

	.conv-fixed-section {
		padding: 16px;
	}
}
