@charset "UTF-8";
/**
 * Dog'Ohana テーマスタイル
 *
 * ベージュとグリーンのオーガニックなトーン。
 * 色だけで状態を伝えず、必ずテキストを併記する。
 */

/* ---------------------------------------------------------------- *
 * 1. トークン
 * ---------------------------------------------------------------- */
:root {
	--dho-green: #1f3b2b;
	--dho-green-dark: #14261c;
	--dho-green-2: #48634b;
	--dho-gold: #d4bc78;
	--dho-gold-dark: #a98f4c;
	--dho-gold-text: #7a6428;
	--dho-beige: #e9dfc2;
	--dho-beige-soft: #f2ebd9;
	--dho-bg: #faf7ef;
	--dho-surface: #ffffff;
	--dho-text: #1d251f;
	--dho-muted: #5f685f;
	--dho-border: #d8d3c5;
	--dho-border-soft: #e8e3d6;
	--dho-error: #a33a31;
	--dho-warning: #8a5b18;
	--dho-success: #2f6b42;

	--dho-radius-s: 8px;
	--dho-radius: 14px;
	--dho-radius-l: 24px;
	--dho-shadow: 0 2px 10px rgba(31, 59, 43, 0.06);
	--dho-shadow-lg: 0 10px 32px rgba(31, 59, 43, 0.1);

	--dho-container: 1200px;
	--dho-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
		"BIZ UDPGothic", Meiryo, system-ui, -apple-system, sans-serif;
	--dho-font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
}

/* ---------------------------------------------------------------- *
 * 2. ベース
 * ---------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--dho-bg);
	color: var(--dho-text);
	font-family: var(--dho-font);
	font-size: 16px;
	line-height: 1.75;
	overflow-wrap: anywhere;
}

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

a {
	color: var(--dho-green);
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--dho-green-2);
}

h1,
h2,
h3,
h4 {
	line-height: 1.45;
	letter-spacing: 0.01em;
	margin: 0 0 0.6em;
	color: var(--dho-green);
}

p {
	margin: 0 0 1em;
}

ul,
ol {
	margin: 0 0 1em;
	padding-left: 1.3em;
}

:focus-visible {
	outline: 3px solid var(--dho-green);
	outline-offset: 2px;
	border-radius: 4px;
}

.dho-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.dho-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--dho-green);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 var(--dho-radius-s) 0;
}

.dho-skip-link:focus {
	left: 0;
	color: #fff;
}

.dho-container {
	width: min(100% - 32px, var(--dho-container));
	margin-inline: auto;
}

.dho-container--narrow {
	width: min(100% - 32px, 760px);
}

.dho-main {
	display: block;
	min-height: 40vh;
}

/* ---------------------------------------------------------------- *
 * 3. ボタン
 * ---------------------------------------------------------------- */
.dho-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 26px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.4;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.dho-btn--primary {
	background: var(--dho-green);
	border-color: var(--dho-green);
	color: #fff;
}

.dho-btn--primary:hover {
	background: var(--dho-green-2);
	border-color: var(--dho-green-2);
	color: #fff;
}

.dho-btn--ghost {
	background: transparent;
	border-color: var(--dho-green);
	color: var(--dho-green);
}

.dho-btn--ghost:hover {
	background: var(--dho-beige-soft);
	color: var(--dho-green);
}

.dho-btn--lg {
	min-height: 56px;
	padding: 14px 34px;
	font-size: 1.06rem;
}

.dho-btn--block {
	display: flex;
	width: 100%;
}

/* ---------------------------------------------------------------- *
 * 4. ヘッダー
 * ---------------------------------------------------------------- */
.dho-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--dho-border-soft);
	backdrop-filter: saturate(1.1) blur(6px);
}

.dho-header__inner {
	width: min(100% - 32px, var(--dho-container));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 72px;
}

.dho-header__brand {
	margin: 0;
	display: flex;
	align-items: center;
}

.dho-header__logo-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.dho-header__logo--wide {
	width: auto;
	height: 46px;
}

.dho-header__logo--symbol {
	display: none;
	width: 40px;
	height: 40px;
}

.dho-header__wordmark {
	display: none;
	font-family: var(--dho-font-serif);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--dho-green);
	letter-spacing: 0.02em;
}

.dho-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.dho-nav__list {
	display: flex;
	align-items: center;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dho-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--dho-text);
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
}

.dho-nav__list a:hover {
	color: var(--dho-green-2);
	text-decoration: underline;
}

.dho-nav__cta {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 20px;
	border-radius: 999px;
	background: var(--dho-green);
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
}

.dho-nav__cta:hover {
	background: var(--dho-green-2);
	color: #fff;
}

.dho-nav-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	min-width: 44px;
	padding: 8px 12px;
	background: transparent;
	border: 1px solid var(--dho-border);
	border-radius: var(--dho-radius-s);
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--dho-green);
	cursor: pointer;
}

.dho-nav-toggle__bars {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	width: 18px;
}

.dho-nav-toggle__bars span {
	display: block;
	height: 2px;
	background: var(--dho-green);
	border-radius: 2px;
}

.dho-testdata-banner {
	margin: 0;
	padding: 8px 16px;
	background: #f6efd8;
	border-bottom: 1px solid var(--dho-gold);
	color: var(--dho-warning);
	font-size: 0.85rem;
	text-align: center;
}

/* ---------------------------------------------------------------- *
 * 5. ヒーロー
 * ---------------------------------------------------------------- */
.dho-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(120% 90% at 15% 10%, #f4eeda 0%, rgba(244, 238, 218, 0) 60%),
		linear-gradient(180deg, #f6f2e4 0%, var(--dho-bg) 100%);
	padding: clamp(40px, 6vw, 84px) 0 clamp(72px, 9vw, 132px);
}

.dho-hero::after {
	content: "";
	position: absolute;
	left: -8%;
	right: -8%;
	bottom: -60px;
	height: 180px;
	background: var(--dho-bg);
	border-radius: 50% 50% 0 0 / 60px 60px 0 0;
}

.dho-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100% - 32px, var(--dho-container));
	margin-inline: auto;
	display: grid;
	/* 左にビジュアル、右にコピー。DOM順はコピーが先で、order で入れ替えている。 */
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
}

.dho-hero__eyebrow {
	margin: 0 0 12px;
	color: var(--dho-gold-text);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.22em;
}

.dho-hero__title {
	/* 画面が狭いほど縮めて、1行目が途中で切れないようにする。
	   最小値は幅280px程度まで折り返し位置が崩れないところに置いている。 */
	font-size: clamp(1.25rem, 7.2vw, 3rem);
	line-height: 1.35;
	margin-bottom: 20px;
	/* body の overflow-wrap: anywhere を打ち消す。 */
	overflow-wrap: normal;
}

/* 改行タグを消したスマホでも、意味の切れ目で折り返すようにまとまりを作る。 */
.dho-hero__title-line {
	display: inline-block;
}

.dho-hero__lead {
	max-width: 34em;
	font-size: 1.02rem;
	color: #34402f;
}

.dho-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0 20px;
}

.dho-hero__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	font-size: 0.9rem;
	color: var(--dho-green-2);
}

.dho-hero__points li {
	position: relative;
	padding-left: 22px;
	font-weight: 700;
}

.dho-hero__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 12px;
	height: 6px;
	border-left: 2px solid var(--dho-gold-dark);
	border-bottom: 2px solid var(--dho-gold-dark);
	transform: rotate(-45deg);
}

.dho-hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
	/* PCでは左、1カラムになるスマホでは上に置く。 */
	order: -1;
}

.dho-hero__visual-frame {
	position: relative;
	width: min(100%, 380px);
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 50% 45%, #ffffff 0%, #f3edda 55%, #e7dcbe 100%);
	border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
	box-shadow: var(--dho-shadow-lg);
}

.dho-hero__visual-frame img {
	width: 74%;
	height: auto;
}

.dho-hero__leaf {
	position: absolute;
	border-radius: 0 70% 0 70%;
	background: rgba(72, 99, 75, 0.16);
}

.dho-hero__leaf--a {
	width: 74px;
	height: 74px;
	left: 2%;
	bottom: 8%;
	transform: rotate(18deg);
}

.dho-hero__leaf--b {
	width: 46px;
	height: 46px;
	right: 6%;
	top: 6%;
	background: rgba(212, 188, 120, 0.35);
	transform: rotate(-24deg);
}

/* ---------------------------------------------------------------- *
 * 6. 簡易検索
 * ---------------------------------------------------------------- */
.dho-quick {
	margin-top: clamp(-64px, -5vw, -40px);
	position: relative;
	z-index: 2;
}

.dho-quick__card {
	background: var(--dho-surface);
	border: 1px solid var(--dho-border-soft);
	border-radius: var(--dho-radius-l);
	box-shadow: var(--dho-shadow-lg);
	padding: clamp(20px, 3vw, 36px);
}

.dho-quick__title {
	margin-bottom: 4px;
	font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}

.dho-quick__note {
	margin: 0 0 20px;
	color: var(--dho-muted);
	font-size: 0.9rem;
}

.dho-quick__group {
	border: 0;
	border-top: 1px dashed var(--dho-border);
	margin: 0;
	padding: 18px 0 6px;
}

.dho-quick__group legend {
	padding: 0 10px 0 0;
	font-weight: 700;
	color: var(--dho-green);
	font-size: 0.98rem;
}

.dho-quick__hint {
	margin: 10px 0 0;
	font-size: 0.82rem;
	color: var(--dho-muted);
}

.dho-quick__submit {
	margin: 24px 0 0;
	text-align: center;
}

.dho-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.dho-chip {
	position: relative;
	display: inline-flex;
}

.dho-chip input {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

.dho-chip span {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 18px;
	border: 1.5px solid var(--dho-border);
	border-radius: 999px;
	background: var(--dho-surface);
	font-size: 0.92rem;
	color: var(--dho-text);
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.dho-chip input:checked + span {
	background: var(--dho-green);
	border-color: var(--dho-green);
	color: #fff;
	font-weight: 700;
}

.dho-chip input:checked + span::before {
	content: "✓ ";
	margin-right: 4px;
}

.dho-chip input:focus-visible + span {
	outline: 3px solid var(--dho-green);
	outline-offset: 2px;
}

.dho-chip--allergy input:checked + span {
	background: var(--dho-green-2);
	border-color: var(--dho-green-2);
}

/* ---------------------------------------------------------------- *
 * 7. 汎用セクション
 * ---------------------------------------------------------------- */
.dho-section {
	padding: clamp(48px, 6vw, 84px) 0;
}

.dho-section--allergy {
	background: var(--dho-beige-soft);
}

.dho-section--policy {
	background: linear-gradient(180deg, var(--dho-bg) 0%, #f4eee0 100%);
}

.dho-section__eyebrow {
	margin: 0 0 6px;
	color: var(--dho-gold-text);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.dho-section__title {
	font-size: clamp(1.4rem, 3vw, 2rem);
	margin-bottom: 12px;
}

.dho-section__lead {
	max-width: 46em;
	color: #37423a;
}

.dho-section__more {
	margin-top: 28px;
	text-align: center;
}

.dho-callout {
	margin: 20px 0 0;
	padding: 14px 18px;
	border-radius: var(--dho-radius);
	font-size: 0.88rem;
	line-height: 1.7;
}

.dho-callout--caution {
	background: #fdf7e6;
	border: 1px solid var(--dho-gold);
	color: #5c4614;
}

.dho-callout--info {
	background: #eef4ec;
	border: 1px solid #b9cdb9;
	color: #29452f;
}

/* 選び方ステップ */
.dho-steps {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.dho-step {
	position: relative;
	background: var(--dho-surface);
	border: 1px solid var(--dho-border-soft);
	border-radius: var(--dho-radius-l);
	padding: 28px 24px 24px;
	box-shadow: var(--dho-shadow);
}

.dho-step__num {
	position: absolute;
	top: -18px;
	left: 24px;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--dho-gold);
	color: var(--dho-green-dark);
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: var(--dho-shadow);
}

.dho-step__title {
	margin-top: 12px;
	font-size: 1.1rem;
}

.dho-step p {
	font-size: 0.94rem;
	color: #3c463d;
}

.dho-step__link {
	font-weight: 700;
	font-size: 0.92rem;
}

/* アレルゲングリッド */
.dho-allergy-grid {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
}

.dho-allergy-grid a {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-height: 76px;
	justify-content: center;
	padding: 14px 18px;
	background: var(--dho-surface);
	border: 1px solid var(--dho-border);
	border-radius: var(--dho-radius);
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.dho-allergy-grid a:hover {
	border-color: var(--dho-green);
	transform: translateY(-2px);
}

.dho-allergy-grid__label {
	font-weight: 700;
	font-size: 1.02rem;
	color: var(--dho-green);
}

.dho-allergy-grid__sub {
	font-size: 0.78rem;
	color: var(--dho-muted);
}

/* 掲載方針 */
.dho-policy {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
}

.dho-policy__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.dho-policy__list li {
	background: var(--dho-surface);
	border: 1px solid var(--dho-border-soft);
	border-radius: var(--dho-radius);
	padding: 20px;
}

.dho-policy__list h3 {
	font-size: 1rem;
	margin-bottom: 6px;
}

.dho-policy__list p {
	margin: 0;
	font-size: 0.9rem;
	color: #3c463d;
}

/* 広告表示バンド */
.dho-disclosure-band {
	background: var(--dho-green-dark);
	color: #efe9d8;
	padding: 28px 0;
}

.dho-disclosure-band h2 {
	color: var(--dho-gold);
	font-size: 1rem;
	margin-bottom: 8px;
}

.dho-disclosure-band p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.8;
}

.dho-disclosure-band a {
	color: var(--dho-gold);
}

/* CTA */
.dho-cta {
	background: var(--dho-beige-soft);
	padding: clamp(32px, 5vw, 56px) 0;
}

.dho-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.dho-cta__title {
	margin-bottom: 4px;
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

.dho-cta__lead {
	margin: 0;
	color: #3c463d;
	font-size: 0.94rem;
}

.dho-cta__action {
	margin: 0;
}

/* ---------------------------------------------------------------- *
 * 8. 記事カード
 * ---------------------------------------------------------------- */
.dho-article-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 28px;
}

.dho-article-card {
	background: var(--dho-surface);
	border: 1px solid var(--dho-border-soft);
	border-radius: var(--dho-radius-l);
	overflow: hidden;
	box-shadow: var(--dho-shadow);
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.dho-article-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--dho-shadow-lg);
}

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

.dho-article-card__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--dho-beige-soft);
	overflow: hidden;
}

.dho-article-card__thumb img,
.dho-article-card__placeholder svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dho-article-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 20px 22px;
}

.dho-article-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dho-article-card__cat {
	display: inline-flex;
	align-items: center;
	padding: 3px 12px;
	border-radius: 999px;
	background: var(--dho-beige);
	color: var(--dho-green);
	font-size: 0.78rem;
	font-weight: 700;
}

.dho-pr-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border: 1px solid var(--dho-warning);
	border-radius: 4px;
	color: var(--dho-warning);
	background: #fdf6e5;
	font-size: 0.78rem;
	font-weight: 700;
}

.dho-article-card__title {
	font-weight: 700;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--dho-green);
}

.dho-article-card__date {
	font-size: 0.78rem;
	color: var(--dho-muted);
}

/* ---------------------------------------------------------------- *
 * 9. パンくず
 * ---------------------------------------------------------------- */
.dho-breadcrumbs {
	padding: 14px 0 0;
	font-size: 0.8rem;
	color: var(--dho-muted);
}

.dho-breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
}

.dho-breadcrumbs li + li::before {
	content: "›";
	margin-right: 6px;
	color: var(--dho-border);
}

/* ---------------------------------------------------------------- *
 * 10. 検索ページ
 * ---------------------------------------------------------------- */
.dho-searchpage {
	padding: 20px 0 80px;
}

.dho-searchpage__head h1 {
	font-size: clamp(1.5rem, 3.2vw, 2.1rem);
	margin-bottom: 8px;
}

.dho-searchpage__lead {
	max-width: 52em;
	color: #3c463d;
}

.dho-searchpage__layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	margin-top: 28px;
}

.dho-searchpage__results {
	min-width: 0;
}

/* --- フィルター --- */
.dho-filters {
	position: sticky;
	top: 88px;
	max-height: calc(100vh - 104px);
	display: flex;
	flex-direction: column;
	background: var(--dho-surface);
	border: 1px solid var(--dho-border-soft);
	border-radius: var(--dho-radius-l);
	box-shadow: var(--dho-shadow);
	overflow: hidden;
}

.dho-filters__drawerhead {
	display: none;
}

.dho-filters__form {
	display: flex;
	flex-direction: column;
	min-height: 0;
	flex: 1;
}

.dho-filters__scroll {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 20px 18px 8px;
}

.dho-filters__block {
	margin-bottom: 16px;
}

.dho-filters__label {
	display: block;
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 6px;
	color: var(--dho-green);
}

.dho-input,
.dho-select {
	width: 100%;
	min-height: 44px;
	padding: 8px 12px;
	border: 1.5px solid var(--dho-border);
	border-radius: var(--dho-radius-s);
	background: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--dho-text);
}

.dho-select {
	width: auto;
	min-width: 190px;
}

.dho-filters__heading {
	margin: 18px 0 8px;
	padding-top: 14px;
	border-top: 2px solid var(--dho-beige);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--dho-green);
}

.dho-filters__heading-note {
	display: block;
	font-weight: 400;
	font-size: 0.78rem;
	color: var(--dho-muted);
}

.dho-filters__group {
	border-bottom: 1px solid var(--dho-border-soft);
}

.dho-filters__group > summary {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 46px;
	padding: 8px 4px;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--dho-text);
	cursor: pointer;
	list-style: none;
}

.dho-filters__group > summary::-webkit-details-marker {
	display: none;
}

.dho-filters__group > summary::before {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--dho-green-2);
	border-bottom: 2px solid var(--dho-green-2);
	transform: rotate(45deg);
	transition: transform 0.15s ease;
	flex: none;
}

.dho-filters__group[open] > summary::before {
	transform: rotate(-135deg);
}

.dho-filters__badge {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--dho-green);
	color: #fff;
	font-size: 0.78rem;
}

.dho-filters__group fieldset {
	border: 0;
	margin: 0;
	padding: 0 4px 14px;
}

.dho-filters__note {
	margin: 0 0 10px;
	font-size: 0.78rem;
	color: var(--dho-muted);
	line-height: 1.65;
}

.dho-checks {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dho-check {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 4px 6px;
	border-radius: var(--dho-radius-s);
	font-size: 0.92rem;
	cursor: pointer;
}

.dho-check:hover {
	background: var(--dho-beige-soft);
}

.dho-check input {
	width: 20px;
	height: 20px;
	accent-color: var(--dho-green);
	flex: none;
}

.dho-price {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin-bottom: 10px;
}

.dho-price__field {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	min-width: 0;
}

.dho-price__field label {
	font-size: 0.78rem;
	color: var(--dho-muted);
	flex: none;
}

.dho-price__field .dho-input {
	min-width: 0;
}

.dho-price__unit {
	font-size: 0.82rem;
	color: var(--dho-muted);
	flex: none;
}

.dho-price__sep {
	padding-bottom: 10px;
	color: var(--dho-muted);
}

.dho-filters__actions {
	padding: 14px 18px;
	border-top: 1px solid var(--dho-border-soft);
	background: #fbf9f3;
	text-align: center;
}

.dho-filters__clear {
	display: inline-block;
	margin-top: 10px;
	font-size: 0.85rem;
	color: var(--dho-muted);
}

.dho-filters__drawerfoot {
	display: none;
}

/* --- 件数・条件タグ --- */
.dho-summary {
	margin-bottom: 18px;
}

.dho-summary__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.dho-summary__count {
	margin: 0;
	font-size: 1rem;
}

.dho-summary__count strong {
	color: var(--dho-green);
	font-size: 1.15rem;
}

.dho-summary__sort {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 0.88rem;
}

.dho-summary__desired {
	margin: 10px 0 0;
	font-size: 0.85rem;
	color: var(--dho-muted);
}

.dho-chipbar {
	margin-top: 14px;
	padding: 12px 14px;
	background: #f4f0e4;
	border-radius: var(--dho-radius);
}

.dho-chipbar__title {
	margin: 0 0 8px;
	font-size: 0.8rem;
	color: var(--dho-muted);
	font-weight: 700;
}

.dho-chipbar__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 8px;
	padding: 0;
}

.dho-activechip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 4px 12px;
	border: 1px solid var(--dho-border);
	border-radius: 999px;
	background: #fff;
	font-size: 0.83rem;
	color: var(--dho-text);
	text-decoration: none;
}

.dho-activechip:hover {
	border-color: var(--dho-green);
	background: #fff;
}

.dho-activechip--allergy {
	border-color: var(--dho-green-2);
	background: #eef3ee;
}

.dho-activechip__x {
	font-size: 1rem;
	color: var(--dho-muted);
}

.dho-chipbar__clear {
	font-size: 0.82rem;
}

/* --- 比較表 --- */
.dho-table-wrap {
	background: var(--dho-surface);
	border: 1px solid var(--dho-border-soft);
	border-radius: var(--dho-radius-l);
	box-shadow: var(--dho-shadow);
	overflow-x: auto;
}

.dho-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.dho-table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: var(--dho-beige-soft);
	color: var(--dho-green);
	font-size: 0.82rem;
	text-align: left;
	padding: 12px 14px;
	border-bottom: 2px solid var(--dho-beige);
	white-space: nowrap;
}

.dho-table tbody tr + tr {
	border-top: 1px solid var(--dho-border-soft);
}

.dho-table tbody tr:hover {
	background: #fdfcf7;
}

.dho-table td,
.dho-table tbody th {
	padding: 16px 14px;
	vertical-align: top;
	text-align: left;
	font-weight: 400;
}

.dho-table__col-product {
	width: 26%;
}

.dho-table__col-match {
	width: 16%;
}

.dho-table__col-spec {
	width: 22%;
}

.dho-table__col-price {
	width: 18%;
}

.dho-table__col-buy {
	width: 18%;
}

.dho-table__product {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* 画像と商品名をまとめて1つのリンクにする。行全体はリンクにしない。 */
.dho-table__link,
.dho-card__link {
	display: flex;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}

.dho-table__link:hover .dho-table__name,
.dho-card__link:hover .dho-card__name {
	text-decoration: underline;
}

.dho-table__link:focus-visible,
.dho-card__link:focus-visible {
	outline: 2px solid var(--dho-gold-dark);
	outline-offset: 2px;
	border-radius: var(--dho-radius-s);
}

.dho-table__detail,
.dho-card__detail {
	font-size: 0.82rem;
}

.dho-card__detail {
	margin: 10px 0 0;
}

.dho-table__thumb {
	flex: none;
}

.dho-product-img {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: var(--dho-radius-s);
	overflow: hidden;
	background: var(--dho-beige-soft);
}

.dho-product-img svg,
img.dho-product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dho-table__names {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.dho-table__brand {
	font-size: 0.78rem;
	color: var(--dho-muted);
}

.dho-table__name {
	font-weight: 700;
	color: var(--dho-green);
	font-size: 0.98rem;
	line-height: 1.5;
}

.dho-table__recipe {
	font-size: 0.85rem;
	color: #3c463d;
}

.dho-spec {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.83rem;
}

.dho-spec > div {
	display: flex;
	gap: 8px;
}

.dho-spec dt {
	flex: none;
	width: 4.6em;
	color: var(--dho-muted);
}

.dho-spec dd {
	margin: 0;
}

.dho-tags {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 10px 0 0;
	padding: 0;
}

.dho-tag {
	display: inline-flex;
	align-items: center;
	padding: 2px 10px;
	border-radius: 999px;
	background: var(--dho-beige-soft);
	border: 1px solid var(--dho-beige);
	color: var(--dho-green-2);
	font-size: 0.75rem;
}

.dho-note-vet {
	margin: 10px 0 0;
	padding: 6px 10px;
	border-left: 3px solid var(--dho-warning);
	background: #fdf6e5;
	color: var(--dho-warning);
	font-size: 0.78rem;
	line-height: 1.6;
}

/* 条件一致 */
.dho-match {
	margin: 0;
}

.dho-match__count {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 0 0 4px;
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--dho-green-2);
}

.dho-match--full .dho-match__count {
	color: var(--dho-success);
}

.dho-match__count strong {
	font-size: 1.15rem;
}

.dho-match__mark {
	font-size: 1rem;
}

.dho-match--absolute {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: #eef4ec;
	border: 1px solid #b9cdb9;
	color: var(--dho-success);
	font-size: 0.8rem;
	font-weight: 700;
}

.dho-match__detail summary {
	font-size: 0.78rem;
	color: var(--dho-muted);
	cursor: pointer;
	min-height: 32px;
	display: flex;
	align-items: center;
}

.dho-match__list {
	margin: 4px 0 0;
	font-size: 0.78rem;
	line-height: 1.6;
}

.dho-match__listlabel {
	font-weight: 700;
}

.dho-match__list--ok {
	color: var(--dho-success);
}

.dho-match__list--ng {
	color: var(--dho-muted);
}

/* 価格 */
.dho-price-block {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dho-price-block__value {
	display: flex;
	align-items: baseline;
	gap: 2px;
	color: var(--dho-green);
}

.dho-price-block__value strong {
	font-size: 1.3rem;
}

.dho-price-block__unit {
	font-size: 0.82rem;
}

.dho-price-block__meta {
	font-size: 0.78rem;
	color: var(--dho-muted);
	line-height: 1.55;
}

.dho-price-block__none {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border: 1px dashed var(--dho-border);
	border-radius: var(--dho-radius-s);
	color: var(--dho-muted);
	font-size: 0.82rem;
}

/* 販売先ボタン */
.dho-offer-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	min-height: 44px;
	margin-bottom: 8px;
	padding: 8px 14px;
	border: 1.5px solid var(--dho-green);
	border-radius: 999px;
	background: #fff;
	color: var(--dho-green);
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
}

.dho-offer-btn:hover {
	background: var(--dho-green);
	color: #fff;
}

.dho-offer-btn--rakuten {
	border-color: var(--dho-gold-dark);
	color: #7a6428;
}

.dho-offer-btn--rakuten:hover {
	background: var(--dho-gold-dark);
	color: #fff;
}

.dho-offer-btn__ext {
	font-size: 0.9rem;
}

.dho-offer-none {
	margin: 0;
	padding: 8px 12px;
	border: 1px dashed var(--dho-border);
	border-radius: var(--dho-radius-s);
	color: var(--dho-muted);
	font-size: 0.8rem;
}

/* モバイルカード */
.dho-cards {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 14px;
}

.dho-card {
	background: var(--dho-surface);
	border: 1px solid var(--dho-border-soft);
	border-radius: var(--dho-radius-l);
	box-shadow: var(--dho-shadow);
	padding: 16px;
}

.dho-card__head {
	margin-bottom: 12px;
}

.dho-card__names {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dho-card__thumb {
	flex: none;
}

.dho-card__names {
	min-width: 0;
}

.dho-card__brand {
	margin: 0;
	font-size: 0.78rem;
	color: var(--dho-muted);
}

.dho-card__name {
	margin: 0 0 2px;
	font-size: 1.02rem;
	line-height: 1.5;
}

.dho-card__recipe {
	margin: 0;
	font-size: 0.86rem;
	color: #3c463d;
}

.dho-spec--card {
	margin-top: 12px;
}

.dho-card__buy {
	margin-top: 12px;
}

/* 0件 */
.dho-empty {
	background: var(--dho-surface);
	border: 1px solid var(--dho-border-soft);
	border-radius: var(--dho-radius-l);
	padding: clamp(24px, 4vw, 40px);
	text-align: center;
}

.dho-empty__title {
	font-size: 1.2rem;
}

.dho-empty__lead,
.dho-empty__sub {
	color: #3c463d;
	font-size: 0.94rem;
}

.dho-empty__chips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
}

.dho-empty__note {
	margin: 0 auto 18px;
	max-width: 40em;
	font-size: 0.82rem;
	color: var(--dho-muted);
}

/* ページネーション */
.dho-pagination {
	margin-top: 28px;
}

.dho-pagination ul,
.dho-pagination .nav-links {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.dho-pagination__link,
.dho-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid var(--dho-border);
	border-radius: var(--dho-radius-s);
	background: #fff;
	color: var(--dho-green);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
}

.dho-pagination__link.is-current,
.dho-pagination .page-numbers.current {
	background: var(--dho-green);
	border-color: var(--dho-green);
	color: #fff;
}

.dho-pagination__gap {
	display: grid;
	place-items: center;
	min-width: 24px;
	color: var(--dho-muted);
}

/* 読み込み中 */
.dho-results-wrap {
	position: relative;
	min-height: 120px;
}

.dho-results-wrap.is-loading::after {
	content: "更新中…";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(250, 247, 239, 0.72);
	color: var(--dho-green);
	font-weight: 700;
	border-radius: var(--dho-radius-l);
}

.dho-error {
	margin-bottom: 16px;
	padding: 14px 18px;
	border: 1px solid var(--dho-error);
	border-radius: var(--dho-radius);
	background: #fbeeed;
	color: var(--dho-error);
	font-size: 0.9rem;
}

.dho-error button {
	margin-left: 12px;
	min-height: 40px;
	padding: 6px 18px;
	border: 1.5px solid var(--dho-error);
	border-radius: 999px;
	background: #fff;
	color: var(--dho-error);
	font-family: inherit;
	font-weight: 700;
	cursor: pointer;
}

/* モバイルバー・ドロワー */
.dho-mobilebar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 45;
	gap: 10px;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.97);
	border-top: 1px solid var(--dho-border);
	box-shadow: 0 -4px 16px rgba(31, 59, 43, 0.08);
}

.dho-mobilebar__btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	border: 1.5px solid var(--dho-green);
	border-radius: 999px;
	background: var(--dho-green);
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
}

.dho-mobilebar__btn--sort {
	background: #fff;
	color: var(--dho-green);
}

.dho-mobilebar__count {
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--dho-gold);
	color: var(--dho-green-dark);
	font-size: 0.78rem;
}

/* ---------------------------------------------------------------- *
 * 11. 記事・固定ページ本文
 * ---------------------------------------------------------------- */
.dho-single,
.dho-page {
	padding: 20px 0 64px;
}

.dho-single__title,
.dho-page__title {
	font-size: clamp(1.5rem, 3.6vw, 2.2rem);
	line-height: 1.5;
}

.dho-single__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.dho-single__cat {
	display: inline-flex;
	padding: 4px 14px;
	border-radius: 999px;
	background: var(--dho-beige);
	color: var(--dho-green);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
}

.dho-single__dates {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0 0 6px;
	font-size: 0.82rem;
	color: var(--dho-muted);
}

.dho-single__byline {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0 0 16px;
	font-size: 0.88rem;
	color: #3c463d;
}

.dho-single__pr {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid var(--dho-gold);
	border-radius: var(--dho-radius);
	background: #fdf7e6;
	font-size: 0.86rem;
	color: #5c4614;
}

.dho-single__thumb {
	margin: 20px 0 0;
}

.dho-single__thumb img {
	border-radius: var(--dho-radius-l);
}

.dho-single__body,
.dho-page__body {
	margin-top: 28px;
	font-size: 1.02rem;
}

.dho-single__body h2,
.dho-page__body h2 {
	margin-top: 2em;
	padding: 10px 0 10px 16px;
	border-left: 5px solid var(--dho-gold);
	font-size: 1.3rem;
	background: linear-gradient(90deg, #f5f0e2 0%, rgba(245, 240, 226, 0) 100%);
}

.dho-single__body h3,
.dho-page__body h3 {
	margin-top: 1.8em;
	font-size: 1.12rem;
}

.dho-single__body ul,
.dho-single__body ol,
.dho-page__body ul,
.dho-page__body ol {
	padding-left: 1.5em;
}

.dho-single__body li,
.dho-page__body li {
	margin-bottom: 0.4em;
}

.dho-single__refs {
	margin-top: 40px;
	padding: 20px 22px;
	background: #f4f0e4;
	border-radius: var(--dho-radius);
}

.dho-single__refs h2 {
	font-size: 1rem;
	margin-bottom: 8px;
}

.dho-single__refs p {
	margin: 0;
	font-size: 0.86rem;
	color: #3c463d;
}

.dho-single__disclosure {
	margin-top: 24px;
	padding: 12px 16px;
	border: 1px solid var(--dho-border);
	border-radius: var(--dho-radius);
	font-size: 0.82rem;
	color: var(--dho-muted);
}

.dho-page__date {
	font-size: 0.82rem;
	color: var(--dho-muted);
}

.dho-placeholder {
	padding: 12px 16px;
	border: 1px dashed var(--dho-warning);
	border-radius: var(--dho-radius-s);
	background: #fdf7e6;
	color: var(--dho-warning);
	font-size: 0.88rem;
}

.dho-archive__head h1 {
	font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}

.dho-archive__eyebrow {
	margin: 0 0 4px;
	color: var(--dho-gold-text);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.dho-archive__lead {
	color: #3c463d;
}

.dho-catnav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
}

.dho-catnav a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 8px 18px;
	border: 1px solid var(--dho-border);
	border-radius: 999px;
	background: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.dho-catnav a:hover {
	border-color: var(--dho-green);
}

.dho-catnav__count {
	font-size: 0.78rem;
	color: var(--dho-muted);
	font-weight: 400;
}

.dho-404__links {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dho-section--404 {
	text-align: center;
}

.dho-section--404 .dho-404__links {
	align-items: center;
}

/* ---------------------------------------------------------------- *
 * 12. フッター
 * ---------------------------------------------------------------- */
.dho-footer {
	background: var(--dho-green-dark);
	color: #e6e0cf;
	padding: clamp(36px, 5vw, 56px) 0 24px;
	margin-top: 0;
}

.dho-footer__inner {
	width: min(100% - 32px, var(--dho-container));
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 32px;
}

.dho-footer__wordmark {
	display: block;
	font-family: var(--dho-font-serif);
	font-size: 1.7rem;
	font-weight: 700;
	color: #f5f1e4;
	letter-spacing: 0.02em;
}

.dho-footer__tagline {
	display: block;
	margin-top: 4px;
	color: var(--dho-gold);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
}

.dho-footer__lead {
	margin: 14px 0 0;
	font-size: 0.88rem;
	color: #cfc9b6;
}

.dho-footer__list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4px 24px;
	margin: 0;
	padding: 0;
}

.dho-footer__list a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: #e6e0cf;
	font-size: 0.9rem;
	text-decoration: none;
}

.dho-footer__list a:hover {
	color: var(--dho-gold);
	text-decoration: underline;
}

.dho-footer__disclosure {
	width: min(100% - 32px, var(--dho-container));
	margin: 28px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(230, 224, 207, 0.22);
	font-size: 0.78rem;
	line-height: 1.8;
	color: #c4beac;
}

.dho-footer__disclosure p {
	margin: 0 0 8px;
}

.dho-footer__copyright {
	margin: 20px 0 0;
	text-align: center;
	font-size: 0.78rem;
	color: #a9a394;
}

/* ---------------------------------------------------------------- *
 * 13. レスポンシブ
 * ---------------------------------------------------------------- */
@media (max-width: 1080px) {
	.dho-searchpage__layout {
		grid-template-columns: 260px minmax(0, 1fr);
	}

	.dho-table {
		font-size: 0.85rem;
	}
}

@media (max-width: 960px) {
	.dho-hero__inner {
		grid-template-columns: 1fr;
	}

	.dho-hero__visual-frame {
		width: min(100%, 260px);
	}

	.dho-steps,
	.dho-article-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dho-policy {
		grid-template-columns: 1fr;
	}

	.dho-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.dho-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 16px 16px;
		background: #fff;
		border-bottom: 1px solid var(--dho-border);
		box-shadow: var(--dho-shadow-lg);
		display: none;
	}

	.dho-nav.is-open {
		display: flex;
	}

	.dho-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.dho-nav__list li + li {
		border-top: 1px solid var(--dho-border-soft);
	}

	.dho-nav__list a {
		min-height: 52px;
	}

	.dho-nav__cta {
		margin-top: 12px;
		justify-content: center;
	}

	.dho-nav-toggle {
		display: inline-flex;
	}

	.dho-header {
		position: relative;
	}

	.dho-header__inner {
		min-height: 64px;
	}

	.dho-header__logo--wide {
		display: none;
	}

	.dho-header__logo--symbol,
	.dho-header__wordmark {
		display: block;
	}

	/* 比較表 → 縦型カード */
	.dho-table-wrap {
		display: none;
	}

	.dho-cards {
		display: grid;
	}

	.dho-searchpage__layout {
		grid-template-columns: 1fr;
	}

	.dho-searchpage {
		padding-bottom: 96px;
	}

	.dho-mobilebar {
		display: flex;
	}

	/* フィルターはドロワー化 */
	.dho-filters {
		position: fixed;
		inset: 0;
		z-index: 60;
		max-height: none;
		height: 100%;
		border-radius: 0;
		border: 0;
		transform: translateY(100%);
		visibility: hidden;
		transition: transform 0.22s ease, visibility 0.22s ease;
	}

	.dho-filters.is-open {
		transform: translateY(0);
		visibility: visible;
	}

	.dho-filters__drawerhead {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 12px 16px;
		border-bottom: 1px solid var(--dho-border);
		background: #fbf9f3;
	}

	.dho-filters__drawertitle {
		margin: 0;
		font-size: 1.05rem;
	}

	.dho-filters__close {
		min-height: 44px;
		padding: 8px 16px;
		border: 1px solid var(--dho-border);
		border-radius: 999px;
		background: #fff;
		font-family: inherit;
		font-size: 0.88rem;
		color: var(--dho-text);
		cursor: pointer;
	}

	.dho-filters__actions {
		display: none;
	}

	.dho-filters__drawerfoot {
		display: block;
		padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
		border-top: 1px solid var(--dho-border);
		background: #fbf9f3;
	}

	body.dho-drawer-open {
		overflow: hidden;
	}
}

@media (max-width: 640px) {
	.dho-steps,
	.dho-article-grid,
	.dho-policy__list {
		grid-template-columns: 1fr;
	}

	/* スマホでは手動の改行を無効にし、幅に合わせて自然に折り返す。 */
	.dho-hero__title-br {
		display: none;
	}

	.dho-hero__actions .dho-btn {
		width: 100%;
	}

	.dho-quick {
		margin-top: -32px;
	}

	.dho-footer__list {
		grid-template-columns: 1fr;
	}

	.dho-summary__row {
		align-items: flex-start;
		flex-direction: column;
	}

	.dho-select {
		width: 100%;
	}
}

/* ---------------------------------------------------------------- *
 * 14. モーション設定への配慮
 * ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

/* 印刷 */
@media print {
	.dho-header,
	.dho-footer,
	.dho-mobilebar,
	.dho-filters {
		display: none;
	}
}

/* ==========================================================================
   商品詳細ページ
   ========================================================================== */

.dho-detail {
	padding-block: 24px 56px;
}

.dho-breadcrumb {
	margin-bottom: 20px;
	font-size: 0.82rem;
	color: var(--dho-muted);
}

.dho-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dho-breadcrumb__list li + li::before {
	content: "›";
	margin-right: 6px;
	color: var(--dho-border);
}

.dho-detail__body {
	max-width: 860px;
	/* 読みやすい幅に絞ったうえで、ページの中央に置く。 */
	margin-inline: auto;
}

.dho-detail__head {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--dho-border-soft);
}

.dho-detail__visual {
	flex: none;
	width: 200px;
}

.dho-detail__visual .dho-product-img {
	width: 200px;
	height: 200px;
}

.dho-detail__intro {
	min-width: 0;
}

.dho-detail__brand {
	margin: 0 0 4px;
	font-size: 0.86rem;
	color: var(--dho-muted);
}

.dho-detail__title {
	margin: 0 0 8px;
	font-size: 1.6rem;
	line-height: 1.4;
}

.dho-detail__recipe {
	margin: 0 0 12px;
	color: var(--dho-green-2);
}

.dho-detail__summary {
	margin: 0 0 16px;
	line-height: 1.8;
}

.dho-detail__meta {
	margin: 0;
	font-size: 0.88rem;
}

.dho-detail__meta > div {
	display: flex;
	gap: 8px;
	margin-bottom: 4px;
}

.dho-detail__meta dt {
	flex: none;
	color: var(--dho-muted);
}

.dho-detail__meta dd {
	margin: 0;
}

.dho-detail__section {
	margin-bottom: 36px;
}

.dho-detail__section h2 {
	margin: 0 0 12px;
	font-size: 1.15rem;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--dho-beige);
}

.dho-detail__ingredients {
	margin: 0 0 12px;
	line-height: 1.9;
	word-break: break-word;
}

.dho-detail__text {
	line-height: 1.9;
}

.dho-spec--detail > div {
	display: flex;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid var(--dho-border-soft);
}

.dho-spec--detail dt {
	flex: none;
	width: 9em;
	color: var(--dho-muted);
}

.dho-spec--detail dd {
	margin: 0;
}

/* 表は横に長くなりうるため、はみ出しはこの中だけで解決する。 */
.dho-tablewrap {
	overflow-x: auto;
}

.dho-detail__table {
	width: 100%;
	border-collapse: collapse;
}

.dho-detail__table th,
.dho-detail__table td {
	padding: 10px 12px;
	text-align: left;
	border-bottom: 1px solid var(--dho-border-soft);
	vertical-align: top;
}

.dho-detail__table thead th {
	font-size: 0.82rem;
	color: var(--dho-muted);
	background: var(--dho-beige-soft);
}

.dho-detail__weight {
	display: block;
	font-size: 0.78rem;
	font-weight: normal;
	color: var(--dho-muted);
}

.dho-allergen--free_from {
	color: var(--dho-success);
	font-weight: 600;
}

.dho-allergen--contains {
	color: var(--dho-error);
}

.dho-allergen--unknown,
.dho-allergen--may_contain {
	color: var(--dho-muted);
}

.dho-detail__pending {
	margin: 0;
	padding: 14px 16px;
	background: var(--dho-beige-soft);
	border-radius: var(--dho-radius-s);
	line-height: 1.8;
}

.dho-detail__caution,
.dho-detail__note,
.dho-detail__source {
	margin: 12px 0 0;
	font-size: 0.82rem;
	color: var(--dho-muted);
	line-height: 1.7;
}

.dho-detail__source span {
	margin-left: 10px;
}

.dho-detail__sources {
	margin: 0;
	padding-left: 1.2em;
	font-size: 0.88rem;
}

.dho-detail__back {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--dho-border-soft);
}

@media (max-width: 767px) {
	.dho-detail__head {
		flex-direction: column;
		gap: 16px;
	}

	.dho-detail__visual,
	.dho-detail__visual .dho-product-img {
		width: 100%;
		height: auto;
		max-width: 320px;
	}

	.dho-detail__title {
		font-size: 1.3rem;
	}

	.dho-spec--detail > div {
		flex-direction: column;
		gap: 2px;
	}

	.dho-spec--detail dt {
		width: auto;
		font-size: 0.82rem;
	}
}
