/* ==========================================================================
   Daikin Genkin Theme CSS
   カンプ準拠: ネイビー基調 + DAIKINブルー + ゴールドCTA + 価格レッド
   見出し: Shippori Mincho / 本文: Noto Sans JP
   ========================================================================== */

:root {
	--navy: #0e3168;
	--navy-deep: #0a2450;
	--navy-ink: #081c3f;
	--blue: #0077c8;
	--sky: #eaf2fa;
	--bg: #f4f7fb;
	--line: #d9e3ef;
	--line-soft: #e6edf6;
	--gold: #b9862f;
	--gold-2: #d2a24c;
	--red: #cf2417;
	--ink: #1c2733;
	--text: #33404e;
	--muted: #64748b;
	--white: #fff;
	--radius: 14px;
	--radius-sm: 10px;
	--shadow: 0 10px 30px rgba(14, 49, 104, .10);
	--shadow-sm: 0 4px 14px rgba(14, 49, 104, .08);
	--font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
	--font-display: "Shippori Mincho", "Hiragino Mincho ProN", serif;
	--wrap: 1160px;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.85;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { opacity: .85; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
table { border-collapse: collapse; width: 100%; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.center { text-align: center; }
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--navy); color: #fff; padding: 10px 18px;
}
.skip-link:focus { left: 0; }

/* Buttons ---------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
	font-weight: 700; font-size: 15px; line-height: 1.4; transition: .25s;
}
.btn__arrow { font-weight: 400; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); opacity: 1; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--gold {
	background: linear-gradient(135deg, var(--gold), var(--gold-2));
	color: #fff; box-shadow: 0 8px 20px rgba(185, 134, 47, .35);
}
.btn--gold:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(185, 134, 47, .45); }
.btn--outline { background: #fff; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--sky); opacity: 1; }
.btn--outline-w { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn--outline-w:hover { background: rgba(255,255,255,.12); opacity: 1; }
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--block { width: 100%; }

/* Sections --------------------------------------------------------------- */
.sec { padding: 72px 0; }
.sec--flat { padding: 48px 0; }
.sec--tint { background: var(--bg); }
.sec-title {
	font-family: var(--font-display); font-weight: 600; color: var(--navy-ink);
	font-size: clamp(24px, 3.2vw, 32px); line-height: 1.4; text-align: center;
	margin-bottom: 14px; letter-spacing: .04em;
	display: flex; align-items: center; justify-content: center; gap: 10px;
}
.sec-title--left { justify-content: flex-start; text-align: left; }
.sec-title::after { content: none; }
.sec-lead { text-align: center; color: var(--muted); margin-bottom: 34px; }
.sec-head-row {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 16px; margin-bottom: 26px; flex-wrap: wrap;
}
.sec-head-row .sec-title { margin-bottom: 0; }
.sec-more { font-weight: 700; color: var(--navy); white-space: nowrap; }
.note-line { color: var(--muted); font-size: 13px; margin-top: 18px; }
.empty-note {
	background: var(--bg); border: 1px dashed var(--line); border-radius: var(--radius);
	padding: 28px; text-align: center; color: var(--muted);
}

/* Header ----------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 12px rgba(14,49,104,.08); }
.site-header__top {
	display: flex; align-items: center; gap: 20px; padding-block: 14px;
}
.site-header__logo { flex-shrink: 1; min-width: 0; }
.site-header__logo img { width: min(380px, 50vw); height: auto; }
.site-header__badge {
	margin-left: auto; text-align: center; line-height: 1.3;
	background: var(--sky); border: 1px solid var(--line);
	border-radius: var(--radius-sm); padding: 7px 14px; color: var(--navy);
}
.site-header__badge span { display: block; font-weight: 700; font-size: 13px; }
.site-header__badge small { font-size: 10px; color: var(--muted); }
.site-header__tel { text-align: right; line-height: 1.3; }
.site-header__tel a { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 700; font-size: 20px; font-family: var(--font-display); }
.site-header__tel small { display: block; font-size: 10px; color: var(--muted); }
.site-header__cart {
	position: relative; display: inline-flex; flex-direction: column; align-items: center;
	gap: 2px; color: var(--navy); font-size: 11px; font-weight: 700;
}
.site-header__cart-count {
	position: absolute; top: -6px; right: -2px; background: var(--red); color: #fff;
	font-style: normal; font-size: 10px; min-width: 17px; height: 17px; border-radius: 999px;
	display: grid; place-items: center; padding-inline: 4px;
}
.site-header__menu-btn {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 44px; height: 44px; background: var(--navy); border: 0; border-radius: 10px; padding: 10px;
}
.site-header__menu-btn span:not(.screen-reader-text) { display: block; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.site-header__menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.global-nav { background: var(--navy); }
.global-nav__list { display: flex; justify-content: center; flex-wrap: wrap; }
.global-nav__list a {
	display: block; color: #fff; font-size: 14px; font-weight: 500;
	padding: 13px 18px; transition: .2s;
}
.global-nav__list a:hover { background: rgba(255,255,255,.12); opacity: 1; }

/* Breadcrumb ------------------------------------------------------------- */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--line-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; padding-block: 10px; font-size: 12px; color: var(--muted); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--line); }
.breadcrumb a { color: var(--muted); }

/* Hero (front / フルワイド背景写真) --------------------------------------- */
.hero {
	position: relative; background-size: cover; background-position: right top;
	overflow: hidden;
}
.hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(244,249,255,.96) 0%, rgba(244,249,255,.82) 34%, rgba(244,249,255,.28) 62%, rgba(244,249,255,0) 100%);
}
.hero__in { position: relative; padding-block: 84px 56px; }
.hero__copy { max-width: 560px; }
.hero__title {
	font-family: var(--font-display); font-weight: 700; color: var(--navy-ink);
	font-size: clamp(30px, 4vw, 46px); line-height: 1.4; letter-spacing: .03em;
}
.hero__title em { font-style: normal; color: var(--red); }
.hero__lead { margin-top: 16px; font-size: 17px; color: var(--ink); font-weight: 500; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero .feature-strip {
	margin-top: 26px; max-width: 760px; gap: 0;
	background: rgba(255,255,255,.94); border: 1px solid var(--line);
	border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm);
}
.hero .feature-strip__item { background: transparent; border: 0; border-right: 1px solid var(--line-soft); border-radius: 0; box-shadow: none; }
.hero .feature-strip__item:last-child { border-right: 0; }

/* Feature strip ---------------------------------------------------------- */
.feature-strip {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 24px;
}
.feature-strip__item {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 14px 8px; text-align: center; display: flex; flex-direction: column;
	align-items: center; gap: 4px; color: var(--navy); box-shadow: var(--shadow-sm);
}
.feature-strip__t1 { font-weight: 700; font-size: 13px; line-height: 1.3; }
.feature-strip__t2 { font-size: 11px; color: var(--muted); line-height: 1.3; }

/* Page hero -------------------------------------------------------------- */
.page-hero {
	/* 画像の一番上がヒーローの開始位置 (ブレッドクラム直下) に必ず来るよう上端基準。切り抜きは下側のみ。 */
	position: relative; background-size: cover; background-position: center top;
	color: #fff;
	/* 会社概要と同等の写真ボリュームを全下層ページで確保 (タイトルのみのページでも高さが揃う)。 */
	min-height: clamp(320px, 26vw, 470px);
	display: flex; align-items: center;
}
.page-hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(8,28,63,.88) 0%, rgba(8,28,63,.55) 55%, rgba(8,28,63,.25) 100%);
}
.page-hero__in { position: relative; padding-block: 58px; max-width: var(--wrap); width: 100%; }
.page-hero__in--center { text-align: center; }
.page-hero__in--center .feature-strip { max-width: 760px; margin-inline: auto; }
.page-hero__title {
	font-family: var(--font-display); font-weight: 700;
	font-size: clamp(26px, 3.6vw, 40px); line-height: 1.35; letter-spacing: .04em;
}
.page-hero__title em { font-style: normal; color: #ffd98a; }
.page-hero__kw { font-size: .55em; font-weight: 500; margin-left: 10px; color: #cfe2ff; }
.page-hero__lead { margin-top: 12px; font-size: 15px; color: #e3ecf8; }
.page-hero .feature-strip__item { background: rgba(255,255,255,.96); }
.page-hero__alert {
	display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
	background: rgba(207,36,23,.92); border-radius: 999px; padding: 8px 20px;
	font-weight: 700; font-size: 13px;
}
.page-hero__alert span {
	display: grid; place-items: center; width: 20px; height: 20px;
	background: #fff; color: var(--red); border-radius: 50%; font-size: 13px;
}

/* Tatami cards (front) --------------------------------------------------- */
.tatami-grid {
	/* 8列の仮想グリッド。各カードは2列ぶん占有 = 実質4列。
	   下段3枚は開始位置を1列ずらして中央寄せにする (右にスライド)。 */
	display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px;
}
.tatami-grid > .tatami-card { grid-column: span 2; }
.tatami-grid > .tatami-card:nth-child(5) { grid-column: 2 / span 2; }
.tatami-grid > .tatami-card:nth-child(6) { grid-column: 4 / span 2; }
.tatami-grid > .tatami-card:nth-child(7) { grid-column: 6 / span 2; }
.tatami-card {
	position: relative; display: flex; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); overflow: hidden; min-height: 150px;
	box-shadow: var(--shadow-sm); transition: .25s; color: var(--navy-ink);
}
.tatami-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); opacity: 1; }
.tatami-card__body { flex: 1; padding: 18px 6px 18px 18px; display: flex; flex-direction: column; }
.tatami-card__num { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; color: var(--navy); }
.tatami-card__num small { font-size: 16px; margin-left: 2px; }
.tatami-card__num--biz { font-size: 26px; }
.tatami-card__kw { margin-top: 6px; font-size: 12px; color: var(--muted); line-height: 1.4; }
.tatami-card__arrow { margin-top: auto; color: var(--blue); font-weight: 700; }
.tatami-card__img { width: 42%; }
.tatami-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tatami-card__img--biz { display: grid; place-items: center; background: var(--bg); padding: 10px; }
.tatami-card__img--biz img { object-fit: contain; }
.tatami-card--biz { background: linear-gradient(120deg, #f6f9ff, #eef4fd); }

/* Product grid ----------------------------------------------------------- */
.product-grid, ul.products {
	display: grid; gap: 18px; margin: 0; padding: 0; list-style: none;
	grid-template-columns: repeat(4, 1fr);
}
.product-grid--5 { grid-template-columns: repeat(5, 1fr); }
.product-grid--4, ul.products.columns-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--3, ul.products.columns-3 { grid-template-columns: repeat(3, 1fr); }
ul.products::before, ul.products::after { content: none; }

.product-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; display: flex; flex-direction: column;
	box-shadow: var(--shadow-sm); transition: .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__head {
	display: flex; align-items: center; gap: 6px; padding: 10px 12px 0; flex-wrap: wrap;
}
.product-card__tatami {
	background: var(--navy); color: #fff; font-weight: 700; font-size: 12px;
	border-radius: 6px; padding: 3px 8px; line-height: 1.4;
}
.product-card__tatami small { font-weight: 400; font-size: 10px; margin-left: 4px; color: #cfe0f7; }
.product-card__year {
	background: var(--sky); color: var(--navy); font-size: 10px; font-weight: 700;
	border-radius: 6px; padding: 3px 8px;
}
.product-card__stock {
	margin-left: auto; color: #157347; background: #e3f4ea; font-size: 10px;
	font-weight: 700; border-radius: 6px; padding: 3px 8px;
}
.product-card__link { display: block; padding: 8px 16px 4px; color: var(--ink); }
.product-card__img img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-card__series { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; }
.product-card__sku { display: block; font-weight: 700; font-size: 16px; color: var(--navy-ink); letter-spacing: .02em; }
.product-card__actions { margin-top: auto; padding: 0 16px 16px; }
.product-card__detail { display: block; text-align: center; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--navy); }

/* Price ------------------------------------------------------------------ */
.price { display: flex; flex-direction: column; margin-top: 6px; }
.price__msrp { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.price__main { display: flex; align-items: baseline; gap: 6px; color: var(--red); }
.price__num { font-weight: 700; font-size: 22px; font-family: var(--font-display); letter-spacing: .01em; }
.price__num .woocommerce-Price-currencySymbol { font-size: .7em; margin-right: 1px; }
.price__tax { font-size: 11px; font-weight: 700; color: var(--red); }
.price__incl { font-size: 11px; color: var(--muted); }
.price--large .price__num { font-size: 40px; }
.price--large .price__msrp { font-size: 13px; }
.price--large .price__incl { font-size: 13px; }

/* Reason / flow ---------------------------------------------------------- */
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reason-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); color: var(--navy);
}
.reason-card h3 { font-size: 15px; margin: 12px 0 8px; color: var(--navy-ink); line-height: 1.5; }
.reason-card p { font-size: 13px; color: var(--muted); }

.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: flow; }
.flow-grid--5 { grid-template-columns: repeat(5, 1fr); }
.flow-card {
	position: relative; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 30px 18px 22px; text-align: center;
	box-shadow: var(--shadow-sm); color: var(--navy);
}
.flow-card__no {
	position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
	width: 30px; height: 30px; background: var(--navy); color: #fff; border-radius: 50%;
	display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
}
.flow-card h3 { font-size: 15px; color: var(--navy-ink); margin-bottom: 10px; }
.flow-card svg { margin-inline: auto; }
.flow-card p { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: left; }

/* Notice band (金枠白地・カンプ準拠) --------------------------------------- */
.notice-band {
	background: #fff; border: 2px solid var(--gold); border-radius: var(--radius);
	color: var(--navy-ink); padding: 30px 30px 22px; margin-block: 26px;
}
.notice-band__title {
	font-family: var(--font-display); text-align: center; font-size: 20px;
	font-weight: 600; letter-spacing: .06em; margin-bottom: 22px; color: var(--navy-ink);
}
.notice-band__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; }
.notice-band__item {
	padding: 12px 8px; text-align: center; border-right: 1px solid var(--line-soft);
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	font-size: 11px; font-weight: 700; line-height: 1.55; color: var(--navy-ink);
}
.notice-band__item:last-child { border-right: 0; }
.notice-band__item svg { color: var(--navy); }
.notice-band__foot { text-align: center; font-size: 12px; color: var(--muted); margin-top: 16px; }

/* Alert band ------------------------------------------------------------- */
.alert-band {
	display: flex; gap: 18px; align-items: flex-start;
	background: #fdf1f0; border: 2px solid var(--red); border-radius: var(--radius);
	padding: 24px 28px; margin-block: 26px;
}
.alert-band--slim { padding: 18px 24px; }
.alert-band__icon {
	flex-shrink: 0; width: 34px; height: 34px; background: var(--red); color: #fff;
	border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 19px;
}
.alert-band__t1 { font-weight: 700; color: var(--red); font-size: 16px; }
.alert-band__t2 { font-weight: 700; color: var(--ink); }
.alert-band__t3 { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* CTA band --------------------------------------------------------------- */
.cta-band { background: linear-gradient(110deg, var(--navy-deep), var(--navy)); color: #fff; overflow: hidden; }
.cta-band__in { display: flex; align-items: center; gap: 30px; padding-block: 38px; flex-wrap: wrap; }
.cta-band__title { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 27px); font-weight: 600; letter-spacing: .04em; }
.cta-band__sub { color: #c9d8ef; font-size: 14px; margin-top: 4px; }
.cta-band .btn { margin-left: auto; }
.cta-band__img img { width: 260px; }

/* Company band ----------------------------------------------------------- */
.sec--company { background: var(--bg); }
.company-band__in { display: grid; grid-template-columns: 320px 1fr 1fr; gap: 26px; align-items: start; }
.company-band__img img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }
.company-band__table div { display: grid; grid-template-columns: 108px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.company-band__table dt { color: var(--navy); font-weight: 700; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--navy-ink); color: #d6e1f1; margin-top: 0; }
.site-footer a { color: #d6e1f1; }
.site-footer__main {
	display: grid; grid-template-columns: 1.2fr 1.8fr 1fr; gap: 40px; padding-block: 54px 40px;
}
.site-footer__logo { opacity: .95; }
.site-footer__tag { font-size: 12px; margin-top: 10px; color: #9db2d1; }
.site-footer__addr { font-size: 12.5px; margin-top: 14px; line-height: 1.9; }
.site-footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.site-footer__head { font-weight: 700; color: #fff; font-size: 13px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.15); }
.site-footer__col li { margin-bottom: 8px; font-size: 13px; }
.site-footer__tel { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; }
.site-footer__hours { font-size: 11.5px; color: #9db2d1; margin: 6px 0 16px; }
.site-footer__company {
	display: flex; gap: 26px; align-items: center; border-top: 1px solid rgba(255,255,255,.12);
	padding-block: 26px;
}
.site-footer__company-img img { border-radius: var(--radius-sm); width: 180px; }
.site-footer__company-info { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 6px 30px; flex: 1; }
.site-footer__company-info div { display: flex; gap: 12px; font-size: 12.5px; }
.site-footer__company-info dt { color: #9db2d1; min-width: 84px; }
.site-footer__bottom { background: rgba(0,0,0,.25); }
.site-footer__bottom-in { display: flex; align-items: center; gap: 20px; padding-block: 16px; flex-wrap: wrap; }
.site-footer__legal { display: flex; gap: 18px; font-size: 12px; }
.site-footer__copy { margin-left: auto; font-size: 11.5px; color: #9db2d1; }
.site-footer__credit { font-size: 11.5px; color: #9db2d1; }
.site-footer__credit a { color: #c9d8ef; }

/* ==========================================================================
   下層ページ・WooCommerce
   ========================================================================== */

/* Shop layout ------------------------------------------------------------ */
.page-hero--shop .feature-strip { max-width: 720px; }
.shop-layout { padding-block: 40px 10px; }
.shop-filter {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-sm); padding: 22px 26px; margin-bottom: 30px;
}
.shop-filter__group { margin-bottom: 16px; }
.shop-filter__group:last-child { margin-bottom: 0; }
.shop-filter__label { font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 8px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
	border: 1px solid var(--line); background: #fff; color: var(--text);
	border-radius: 999px; padding: 7px 16px; font-size: 13px; font-weight: 500; transition: .2s;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 700; }
.shop-filter__group--sort { display: flex; align-items: center; gap: 14px; }
.shop-filter__group--sort .shop-filter__label { margin-bottom: 0; }
.shop-filter__sort {
	border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 9px 14px; font-size: 13px; font-family: inherit; background: #fff;
}
.shop-result__count { font-weight: 700; color: var(--navy-ink); margin-bottom: 18px; }
.shop-result__count small { font-weight: 400; color: var(--muted); margin-left: 10px; }

.woocommerce-pagination { text-align: center; margin-top: 34px; }
.woocommerce-pagination ul { display: inline-flex; gap: 8px; }
.woocommerce-pagination a, .woocommerce-pagination span {
	display: grid; place-items: center; min-width: 40px; height: 40px; padding-inline: 8px;
	border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--navy); font-weight: 700;
}
.woocommerce-pagination span.current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Single product --------------------------------------------------------- */
.single-product-layout {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 44px; padding-block: 44px 20px;
}
.gallery-main { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.gallery-main img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.gallery-thumbs li { text-align: center; font-size: 11px; color: var(--muted); }
.gallery-thumbs__btn {
	display: block; border: 1px solid var(--line); border-radius: var(--radius-sm);
	background: #fff; padding: 4px; width: 86px; transition: .2s;
}
.gallery-thumbs__btn:hover, .gallery-thumbs__btn.is-active { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(0,119,200,.15); }
.gallery-thumbs__btn img { width: 100%; aspect-ratio: 1; object-fit: contain; }

.sp-summary__tags { display: flex; gap: 8px; margin-bottom: 10px; }
.tag { background: var(--sky); color: var(--navy); font-size: 11.5px; font-weight: 700; border-radius: 6px; padding: 4px 10px; }
.sp-summary__sku { font-family: var(--font-display); font-size: clamp(28px, 3vw, 36px); color: var(--navy-ink); letter-spacing: .02em; line-height: 1.2; }
.sp-summary__name { color: var(--muted); font-size: 14px; margin-top: 6px; }
.sp-summary__tatami { font-weight: 700; color: var(--navy); margin-top: 8px; }
.sp-summary__badges { display: flex; gap: 8px; margin-top: 10px; }
.badge { font-size: 11px; font-weight: 700; border-radius: 6px; padding: 4px 10px; }
.badge--stock { background: #e3f4ea; color: #157347; }
.badge--year { background: var(--sky); color: var(--navy); }

.sp-summary .price--large { margin: 16px 0 6px; padding: 16px 20px; background: #fdf7f6; border: 1px solid #f3ddda; border-radius: var(--radius); }
.sp-summary__cart { margin-top: 14px; }
.sp-summary__cart form.cart { display: flex; gap: 12px; align-items: stretch; }
.sp-summary__cart .quantity { display: flex; }
.sp-summary__cart .quantity .qty {
	width: 84px; text-align: center; border: 1px solid var(--line);
	border-radius: var(--radius-sm); font-size: 16px; font-family: inherit; padding: 12px 8px;
}
.sp-summary__cart .single_add_to_cart_button {
	flex: 1; border: 0; border-radius: 999px; font-size: 16px; font-weight: 700;
	background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff;
	box-shadow: 0 8px 20px rgba(185,134,47,.35); transition: .25s; padding: 14px 20px;
}
.sp-summary__cart .single_add_to_cart_button:hover { transform: translateY(-2px); }
.sp-summary__ask { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: underline; }

.sp-ship { margin-top: 22px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.sp-ship__title { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--navy-ink); margin-bottom: 10px; }
.sp-ship ul li { position: relative; padding-left: 16px; font-size: 13px; margin-bottom: 4px; }
.sp-ship ul li::before { content: "・"; position: absolute; left: 0; color: var(--blue); }
.sp-ship__alert { margin-top: 14px; background: #fff; border: 1px solid #f3ddda; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 13px; color: var(--red); font-weight: 700; line-height: 1.7; }
.sp-ship__alert small { color: var(--muted); font-weight: 400; }

.sp-spec { margin-top: 20px; }
.sp-spec__tables { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; margin-top: 18px; }
.spec-table th, .spec-table td { border-bottom: 1px solid var(--line); padding: 12px 10px; font-size: 13.5px; text-align: left; vertical-align: top; }
.spec-table th { width: 130px; color: var(--navy); background: var(--bg); font-weight: 700; }
.sp-spec__desc { margin-top: 18px; color: var(--text); font-size: 14px; background: var(--bg); border-radius: var(--radius); padding: 18px 22px; }

/* Accordion -------------------------------------------------------------- */
.accordion-group { margin-top: 26px; display: grid; gap: 12px; }
.accordion { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.accordion summary {
	display: flex; align-items: center; gap: 12px; padding: 16px 22px;
	font-weight: 700; color: var(--navy-ink); cursor: pointer; list-style: none; font-size: 15px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; margin-left: auto; font-size: 20px; color: var(--blue); }
.accordion[open] summary::after { content: "−"; }
.accordion__icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--sky); color: var(--navy); font-weight: 700; }
.accordion--caution .accordion__icon { background: #fdeceb; color: var(--red); }
.accordion__body { padding: 0 24px 20px; }
.accordion__body li { position: relative; padding-left: 16px; font-size: 13.5px; margin-bottom: 6px; }
.accordion__body li::before { content: "・"; position: absolute; left: 0; color: var(--blue); }

/* Cart / Checkout -------------------------------------------------------- */
.woocommerce-cart .site-main > .wrap, .woocommerce-checkout .site-main > .wrap { padding-block: 40px; }
.woocommerce table.shop_table { border: 1px solid var(--line); border-radius: var(--radius); border-collapse: separate; border-spacing: 0; overflow: hidden; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-bottom: 1px solid var(--line-soft); padding: 14px 16px; font-size: 14px; }
.woocommerce table.shop_table thead th { background: var(--navy); color: #fff; font-size: 13px; }
.woocommerce a.remove { color: var(--red) !important; font-size: 20px; }
.woocommerce .quantity .qty { width: 74px; text-align: center; border: 1px solid var(--line); border-radius: 8px; padding: 8px; }
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button, .woocommerce #respond input#submit {
	background: var(--navy); color: #fff; border-radius: 999px; font-weight: 700; padding: 12px 24px; border: 0;
}
.woocommerce button.button:hover, .woocommerce a.button:hover { background: var(--navy-deep); color: #fff; }
.woocommerce button.button.alt, .woocommerce a.button.alt, .woocommerce #place_order {
	background: linear-gradient(135deg, var(--gold), var(--gold-2)); box-shadow: 0 8px 20px rgba(185,134,47,.35);
	font-size: 16px; padding: 15px 30px;
}
.woocommerce .cart_totals h2, .woocommerce #order_review_heading, .woocommerce-billing-fields h3 {
	font-family: var(--font-display); color: var(--navy-ink); font-size: 20px;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
	border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; font-family: inherit; font-size: 14px;
}
.woocommerce form .form-row label { font-weight: 700; font-size: 13px; color: var(--navy-ink); }
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info {
	border-top-color: var(--blue); background: var(--sky); border-radius: var(--radius-sm); color: var(--navy-ink);
}
.woocommerce .woocommerce-error { border-top-color: var(--red); border-radius: var(--radius-sm); }

.cart-notice { margin-top: 34px; background: #fff; border: 2px solid var(--navy); border-radius: var(--radius); padding: 26px 30px; }
.cart-notice__title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 19px; color: var(--navy-ink); margin-bottom: 18px; }
.cart-notice__grid { display: grid; grid-template-columns: 260px 1fr; gap: 26px; align-items: start; }
.cart-notice__fee { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 20px; text-align: center; }
.cart-notice__fee-label { display: block; font-size: 13px; }
.cart-notice__fee-label em { font-style: normal; color: #ffd98a; font-weight: 700; }
.cart-notice__fee-num { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1.2; }
.cart-notice__fee-num small { font-size: 14px; margin-left: 4px; }
.cart-notice__fee-note { display: block; font-size: 11px; color: #c9d8ef; margin-top: 6px; }
.cart-notice__list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; color: var(--ink); }
.cart-notice__list li svg { color: var(--navy); flex-shrink: 0; }
.cart-notice__foot { margin-top: 14px; font-size: 12px; color: var(--muted); }

.cart-guest { margin-top: 18px; background: var(--sky); border-radius: var(--radius); padding: 22px 28px; }
.cart-guest h2 { font-size: 16px; color: var(--navy-ink); margin-bottom: 6px; }
.cart-guest p { font-size: 13.5px; color: var(--muted); }

.checkout-lead {
	display: flex; align-items: center; gap: 16px; background: var(--sky);
	border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 26px; margin-bottom: 28px; color: var(--navy);
}
.checkout-lead h2 { font-size: 17px; color: var(--navy-ink); }
.checkout-lead p { font-size: 13px; color: var(--muted); margin-top: 4px; }

.checkout-agree { background: #fdf7f6; border: 1px solid #f3ddda; border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px; }
.checkout-agree h3 { font-size: 15px; color: var(--navy-ink); margin-bottom: 12px; }
.checkout-agree .req { background: var(--red); color: #fff; font-size: 11px; border-radius: 5px; padding: 2px 8px; margin-left: 8px; vertical-align: middle; }
.checkout-agree label { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; margin-bottom: 10px; line-height: 1.7; }
.checkout-agree input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--navy); }

/* Thankyou --------------------------------------------------------------- */
.thanks-flow { margin-top: 40px; }
.thanks-flow__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.thanks-flow__steps li {
	position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 26px 14px 18px; text-align: center; box-shadow: var(--shadow-sm);
	display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.thanks-flow__no { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; background: var(--navy); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; }
.thanks-flow__ic { color: var(--navy); }
.thanks-flow__t1 { font-weight: 700; font-size: 14px; color: var(--navy-ink); }
.thanks-flow__t2 { font-size: 12px; color: var(--muted); }
.thanks-flow__note, .thanks-flow__support {
	display: flex; gap: 14px; align-items: flex-start; background: var(--bg);
	border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 24px; margin-top: 16px; color: var(--navy);
}
.thanks-flow__note p, .thanks-flow__support p { font-size: 13.5px; color: var(--text); }

/* Tatami page ------------------------------------------------------------ */
.tatami-layout { display: grid; grid-template-columns: 230px 1fr; gap: 36px; padding-block: 44px 10px; align-items: start; }
.tatami-side { position: sticky; top: 130px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.tatami-side__head { font-weight: 700; color: var(--navy-ink); font-size: 14px; margin: 14px 0 8px; padding-bottom: 6px; border-bottom: 2px solid var(--navy); }
.tatami-side__head:first-child { margin-top: 0; }
.tatami-side__list li { border-bottom: 1px dashed var(--line-soft); }
.tatami-side__list a { display: block; padding: 8px 4px; font-size: 13px; color: var(--text); }
.tatami-side__list a:hover { color: var(--blue); }

.tatami-guide { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; background: var(--bg); border-radius: var(--radius); padding: 26px 30px; margin-bottom: 34px; }
.tatami-guide__text h2 { font-family: var(--font-display); font-size: 20px; color: var(--navy-ink); margin-bottom: 10px; }
.tatami-guide__text p { font-size: 13.5px; color: var(--text); margin-bottom: 16px; }
.tatami-guide__pdf { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; text-align: center; }
.tatami-guide__pdf img { margin-inline: auto; border-radius: 6px; }
.tatami-guide__pdf p { font-size: 13px; font-weight: 700; color: var(--navy-ink); margin-block: 10px; }
.tatami-guide__pdf small { font-weight: 400; color: var(--muted); }

.tatami-row { margin-bottom: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 240px 1fr; }
.tatami-row__intro { position: relative; display: flex; flex-direction: column; padding: 24px; background: linear-gradient(160deg, var(--sky), #fff); color: var(--navy-ink); }
.tatami-row__num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1; }
.tatami-row__num small { font-size: 18px; }
.tatami-row__kw { font-weight: 700; color: var(--blue); margin-top: 6px; font-size: 14px; }
.tatami-row__lead { font-size: 12.5px; color: var(--muted); margin-top: 10px; line-height: 1.7; }
.tatami-row__img { margin-top: auto; padding-top: 14px; }
.tatami-row__img img { border-radius: var(--radius-sm); width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.tatami-row__products { padding: 20px 24px; }
.product-grid--mini .product-card__actions { display: none; }
.tatami-row__more { text-align: right; margin-top: 12px; font-weight: 700; font-size: 13.5px; }

.biz-band { display: grid; grid-template-columns: 300px 1fr; gap: 26px; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 30px 34px; align-items: center; }
.biz-band__copy h2 { font-family: var(--font-display); font-size: 22px; line-height: 1.4; }
.biz-band__copy h2 small { display: block; font-size: 13px; font-family: var(--font-body); color: #c9d8ef; }
.biz-band__copy p { font-size: 13px; color: #c9d8ef; margin-block: 10px 16px; }
.biz-band__types { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.biz-band__types li { background: #fff; border-radius: var(--radius-sm); padding: 12px 8px; text-align: center; color: var(--navy-ink); font-size: 11.5px; font-weight: 700; }
.biz-band__types img { margin: 0 auto 8px; height: 64px; object-fit: contain; }

/* Tatami size page ------------------------------------------------------- */
.tatami-size-guide { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 16px; margin-block: 10px 20px; }
.tatami-size-guide__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.tatami-size-guide__label { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.tatami-size-guide__value { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--navy-ink); line-height: 1.2; }
.tatami-size-guide__value small { font-size: 13px; color: var(--muted); margin-left: 6px; font-family: var(--font-body); font-weight: 400; }
.tatami-size-guide__text { font-size: 13.5px; color: var(--text); }

.tatami-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tatami-links a { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--navy-ink); transition: .2s; }
.tatami-links a:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); opacity: 1; }
.tatami-links .is-current a { background: var(--navy); border-color: var(--navy); color: #fff; }
.tatami-links .is-current .tatami-links__kw { color: #c9d8ef; }
.tatami-links__label { font-weight: 700; display: block; }
.tatami-links__kw { font-size: 12px; color: var(--muted); }
.tatami-links__biz a { background: var(--sky); }

/* Business page ---------------------------------------------------------- */
.biz-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.biz-cat-grid a {
	display: grid; grid-template-columns: 96px 1fr auto; align-items: center; gap: 16px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 16px 22px; color: var(--navy-ink); font-weight: 700; box-shadow: var(--shadow-sm); transition: .2s;
}
.biz-cat-grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow); opacity: 1; }
.biz-cat-grid img { height: 76px; object-fit: contain; margin-inline: auto; }
.biz-cat-grid em { font-style: normal; color: var(--blue); }

.biz-usage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.biz-usage { background: var(--bg); border-radius: var(--radius); padding: 24px 26px; }
.biz-usage h3 { font-size: 15px; color: var(--navy-ink); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--navy); }
.biz-usage li { position: relative; padding-left: 18px; font-size: 13.5px; margin-bottom: 6px; }
.biz-usage li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

.tel-band { display: flex; align-items: center; gap: 24px; background: linear-gradient(110deg, var(--navy-deep), var(--navy)); color: #fff; border-radius: var(--radius); padding: 28px 34px; margin-block: 26px; flex-wrap: wrap; }
.tel-band > svg { flex-shrink: 0; }
.tel-band__copy { flex: 1; min-width: 260px; }
.tel-band__copy h2 { font-family: var(--font-display); font-size: 20px; }
.tel-band__copy p { font-size: 13px; color: #c9d8ef; margin-top: 6px; }
.tel-band__contact { text-align: center; }
.tel-band__tel { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: #fff; }
.tel-band__contact p { font-size: 11.5px; color: #c9d8ef; margin-block: 4px 12px; }

/* Guide page -------------------------------------------------------------- */
.guide-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-block: 20px; }
.guide-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow-sm); }
.guide-panel__in { display: flex; gap: 20px; align-items: center; }
.guide-panel__in img { width: 200px; border-radius: 8px; flex-shrink: 0; }
.guide-panel__in p { font-size: 13.5px; margin-bottom: 12px; }
.guide-panel__icon { flex-shrink: 0; color: var(--navy); background: var(--sky); border-radius: 50%; width: 84px; height: 84px; display: grid; place-items: center; }

.faq-4grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-mini { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px 20px 60px; box-shadow: var(--shadow-sm); }
.faq-mini__q { position: absolute; left: 20px; top: 22px; width: 28px; height: 28px; background: var(--navy); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.faq-mini h3 { font-size: 14.5px; color: var(--navy-ink); margin-bottom: 8px; }
.faq-mini p { font-size: 13px; color: var(--text); }
.faq-mini p strong { color: var(--red); margin-right: 6px; }

/* Shipping page ----------------------------------------------------------- */
.ship-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ship-steps li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 16px 18px; text-align: center; box-shadow: var(--shadow-sm); color: var(--navy); }
.ship-steps__no { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; background: var(--navy); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; }
.ship-steps h3 { font-size: 14.5px; color: var(--navy-ink); margin-block: 8px 6px; }
.ship-steps p { font-size: 12px; color: var(--muted); }
.ship-steps svg { margin-inline: auto; }

/* Support page ----------------------------------------------------------- */
.faq-list { max-width: 880px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.faq-item summary { display: flex; align-items: center; gap: 14px; padding: 18px 24px; cursor: pointer; font-weight: 700; color: var(--navy-ink); font-size: 15px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; margin-left: auto; color: var(--blue); font-size: 22px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item__q { flex-shrink: 0; width: 30px; height: 30px; background: var(--navy); color: #fff; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); }
.faq-item__a { display: flex; gap: 14px; padding: 0 24px 20px; }
.faq-item__a > span { flex-shrink: 0; width: 30px; height: 30px; background: #fdeceb; color: var(--red); border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.faq-item__a p { font-size: 14px; padding-top: 3px; }

.company-detail { display: grid; grid-template-columns: 420px 1fr; gap: 32px; align-items: start; }
.company-detail__img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.company-detail__table th, .company-detail__table td { border-bottom: 1px solid var(--line); padding: 14px 12px; font-size: 14px; text-align: left; vertical-align: top; }
.company-detail__table th { width: 130px; color: var(--navy); background: var(--bg); font-weight: 700; }

.contact-form { max-width: 760px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 38px; box-shadow: var(--shadow-sm); }
.contact-form .wpcf7 p { margin-bottom: 18px; }
.contact-form label { display: block; font-weight: 700; font-size: 13.5px; color: var(--navy-ink); margin-bottom: 6px; }
.contact-form .req { background: var(--red); color: #fff; font-size: 10.5px; border-radius: 4px; padding: 2px 7px; margin-left: 8px; vertical-align: middle; font-weight: 700; }
.contact-form .opt { background: var(--line); color: var(--muted); font-size: 10.5px; border-radius: 4px; padding: 2px 7px; margin-left: 8px; vertical-align: middle; font-weight: 700; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea, .contact-form select {
	width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 12px 14px; font-family: inherit; font-size: 14px; background: var(--bg);
}
.contact-form textarea { min-height: 160px; }
.contact-form .wpcf7-quiz { max-width: 220px; }
.contact-form .wpcf7-submit {
	display: block; width: 100%; max-width: 340px; margin: 26px auto 0;
	background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; border: 0;
	border-radius: 999px; padding: 15px 20px; font-size: 16px; font-weight: 700;
	box-shadow: 0 8px 20px rgba(185,134,47,.35); transition: .25s;
}
.contact-form .wpcf7-submit:hover { transform: translateY(-2px); }
.contact-form .wpcf7-not-valid-tip { color: var(--red); font-size: 12px; margin-top: 4px; }
.contact-form .wpcf7-response-output { border-radius: var(--radius-sm); padding: 14px 18px; margin: 20px 0 0; border-color: var(--navy); }

/* Entry (privacy / tokushoho) -------------------------------------------- */
.entry--page { max-width: 860px; margin-inline: auto; }
.entry__body { margin-top: 26px; }
.entry__body h2 { font-family: var(--font-display); font-size: 21px; color: var(--navy-ink); margin: 34px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--navy); }
.entry__body h3 { font-size: 16px; color: var(--navy-ink); margin: 24px 0 8px; }
.entry__body p { margin-bottom: 14px; }
.entry__body ul, .entry__body ol { margin: 0 0 14px 22px; }
.entry__body ul { list-style: disc; }
.entry__body ol { list-style: decimal; }
.entry__body li { margin-bottom: 5px; }
.entry__body table th, .entry__body table td { border: 1px solid var(--line); padding: 12px 14px; font-size: 14px; text-align: left; vertical-align: top; }
.entry__body table th { background: var(--bg); color: var(--navy); width: 190px; }

/* 404 -------------------------------------------------------------------- */
.notfound { text-align: center; }
.notfound__code { font-family: var(--font-display); font-size: 96px; font-weight: 700; color: var(--line); line-height: 1; }
.notfound .btn { margin: 6px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* シリーズから選ぶ ------------------------------------------------------- */
.tatami-side__head--gap { margin-top: 22px; }
.tatami-side__list--series a { display: flex; align-items: center; gap: 8px; }
.tatami-side__code { flex-shrink: 0; min-width: 30px; padding: 2px 5px; border-radius: 4px; background: var(--navy); color: #fff; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-align: center; line-height: 1.5; }
.tatami-side__list--series a:hover .tatami-side__code { background: var(--blue); }

.series-select { margin-bottom: 46px; }
.series-select__head { padding-bottom: 16px; margin-bottom: 24px; border-bottom: 2px solid var(--navy); }
.series-select__title { font-family: var(--font-display); font-size: 25px; color: var(--navy-ink); letter-spacing: .03em; }
.series-select__lead { margin-top: 10px; font-size: 14px; line-height: 1.95; color: var(--text); }

.series-group { margin-bottom: 30px; }
.series-group:last-child { margin-bottom: 0; }
.series-group__head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 14px; margin-bottom: 14px; }
.series-group__title { position: relative; padding-left: 13px; font-size: 16px; font-weight: 700; color: var(--navy-ink); letter-spacing: .02em; }
.series-group__title::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 17px; border-radius: 2px; background: var(--gold); }
.series-group__desc { font-size: 12.5px; color: var(--muted); line-height: 1.8; }

.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.series-card { display: flex; }
.series-card__link { display: grid; grid-template-columns: 58px 1fr; grid-template-areas: "code body" "go go"; gap: 0 14px; width: 100%; padding: 18px 18px 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); color: var(--text); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.series-card__link:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.series-card__code { grid-area: code; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 10px; background: linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: .05em; }
.series-card__link:hover .series-card__code { background: linear-gradient(140deg, var(--blue) 0%, var(--navy) 100%); }
.series-card__body { grid-area: body; display: block; min-width: 0; }
.series-card__name { display: block; font-size: 14.5px; font-weight: 700; color: var(--navy-ink); line-height: 1.5; }
.series-card__catch { display: block; margin-top: 6px; font-size: 12.5px; line-height: 1.75; color: var(--muted); }
.series-card__count { display: inline-block; margin-top: 8px; padding: 2px 9px; border-radius: 20px; background: var(--sky); color: var(--navy); font-size: 11.5px; font-weight: 700; letter-spacing: .02em; }
.series-card__go { grid-area: go; margin-top: 13px; padding-top: 11px; border-top: 1px dashed var(--line-soft); font-size: 12.5px; font-weight: 700; color: var(--blue); text-align: right; }

.series-divider { padding-bottom: 16px; margin-bottom: 24px; border-bottom: 2px solid var(--navy); }
.series-divider__title { font-family: var(--font-display); font-size: 25px; color: var(--navy-ink); letter-spacing: .03em; }
.series-divider__lead { margin-top: 10px; font-size: 14px; line-height: 1.95; color: var(--text); }


/* 返品・不具合時の対応 --------------------------------------------------- */
.return-notice { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px 28px; }
.return-notice__lead { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; margin-bottom: 24px; background: #fdf3f2; border: 1px solid #f0c9c5; border-radius: var(--radius-sm); }
.return-notice__icon { flex-shrink: 0; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 700; font-size: 15px; line-height: 1; }
.return-notice__lead p { font-size: 14.5px; font-weight: 700; line-height: 1.9; color: #93221a; }
.return-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.return-step { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; padding: 18px 18px 16px; background: var(--bg); border-radius: var(--radius-sm); }
.return-step__no { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.return-step__body h3 { font-size: 14.5px; font-weight: 700; color: var(--navy-ink); line-height: 1.6; margin-bottom: 7px; }
.return-step__body p { font-size: 13.5px; line-height: 1.9; color: var(--text); }
.return-notice__foot { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line); font-size: 13.5px; line-height: 1.9; color: var(--muted); text-align: center; }

@media (max-width: 1080px) {
	.product-grid--5 { grid-template-columns: repeat(3, 1fr); }
	.product-grid, ul.products, .product-grid--4, ul.products.columns-4 { grid-template-columns: repeat(3, 1fr); }
	.notice-band__grid { grid-template-columns: repeat(4, 1fr); }
	.company-band__in { grid-template-columns: 1fr 1fr; }
	.company-band__img { grid-column: span 2; max-width: 420px; }
	.site-footer__main { grid-template-columns: 1fr 1fr; }
	.thanks-flow__steps, .ship-steps, .flow-grid--5 { grid-template-columns: repeat(3, 1fr); }
	.tatami-grid { grid-template-columns: repeat(3, 1fr); }
	.tatami-grid > .tatami-card,
	.tatami-grid > .tatami-card:nth-child(5),
	.tatami-grid > .tatami-card:nth-child(6),
	.tatami-grid > .tatami-card:nth-child(7) { grid-column: auto; }
	.biz-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.tatami-layout { grid-template-columns: 1fr; }
	.tatami-side { position: static; }
	.company-detail { grid-template-columns: 1fr; }
	.company-detail__img { max-width: 460px; }
}

@media (max-width: 860px) {
	body { font-size: 14.5px; }
	.sec { padding: 52px 0; }
	/* シリーズカード: 3列から2列へ */
	.series-grid { grid-template-columns: repeat(2, 1fr); }
	.series-select__title, .series-divider__title { font-size: 21px; }
	/* 会社情報帯: 2列だと本文が数十pxまで潰れるため1列に戻す */
	.company-band__in { grid-template-columns: 1fr; gap: 18px; }
	.company-band__img { grid-column: auto; max-width: 100%; }
	.company-band__table { max-width: 100%; }
	.company-band__table div { grid-template-columns: 120px 1fr; gap: 12px; }
	/* 会社概要テーブル: 見出し列を圧縮 */
	.company-detail__table th, .company-detail__table--wide th { width: 128px; }
	.hero__in { padding-block: 56px 40px; }
	.hero { background-position: right top; }
	.single-product-layout { grid-template-columns: 1fr; gap: 28px; }
	.sp-spec__tables { grid-template-columns: 1fr; gap: 0; }
	.feature-strip { grid-template-columns: repeat(2, 1fr); }
	.reason-grid, .flow-grid { grid-template-columns: repeat(2, 1fr); }
	.tatami-grid { grid-template-columns: repeat(2, 1fr); }
	.tatami-grid > .tatami-card,
	.tatami-grid > .tatami-card:nth-child(5),
	.tatami-grid > .tatami-card:nth-child(6),
	.tatami-grid > .tatami-card:nth-child(7) { grid-column: auto; }
	.product-grid, ul.products, .product-grid--5, .product-grid--4, .product-grid--3,
	ul.products.columns-4, ul.products.columns-3 { grid-template-columns: repeat(2, 1fr); }
	.tatami-row { grid-template-columns: 1fr; }
	.tatami-row__img { max-width: 340px; }
	.tatami-guide, .guide-2col, .faq-4grid,
	.cart-notice__grid, .biz-band { grid-template-columns: 1fr; }
	.biz-band__types { grid-template-columns: repeat(3, 1fr); }
	.tatami-links { grid-template-columns: repeat(2, 1fr); }
	.tatami-size-guide { grid-template-columns: 1fr 1fr; }
	.tatami-size-guide__item--wide { grid-column: span 2; }
	.site-footer__company { flex-direction: column; align-items: flex-start; }
	.site-footer__company-info { grid-template-columns: 1fr; }
	.cta-band .btn { margin-left: 0; }
	.cta-band__img { display: none; }

	/* Header mobile */
	.site-header__badge, .site-header__tel { display: none; }
	.site-header__menu-btn { display: flex; }
	.site-header__cart { margin-left: auto; }
	.global-nav { display: none; }
	.global-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; box-shadow: 0 20px 30px rgba(8,28,63,.25); }
	.global-nav__list { flex-direction: column; }
	.global-nav__list a { padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 560px) {
	.wrap { padding-inline: 18px; }
	/* 返品・不具合時の対応: 2列から1列へ */
	.return-notice { padding: 20px 18px; }
	.return-steps { grid-template-columns: 1fr; gap: 12px; }
	.return-step { grid-template-columns: 32px 1fr; gap: 12px; padding: 15px 15px 14px; }
	.return-step__no { width: 32px; height: 32px; font-size: 14px; }
	.return-notice__lead { padding: 14px 15px; }
	.return-notice__lead p { font-size: 13.5px; }
	/* シリーズカード: 1列に戻し、記号を小さくして本文幅を確保 */
	.series-grid { grid-template-columns: 1fr; gap: 12px; }
	.series-card__link { grid-template-columns: 48px 1fr; gap: 0 12px; padding: 15px 15px 12px; }
	.series-card__code { width: 48px; height: 48px; font-size: 16px; }
	.series-card__name { font-size: 14px; }
	.series-select__title, .series-divider__title { font-size: 19px; }
	.series-group__head { display: block; }
	.series-group__desc { margin-top: 4px; }
	/* 会社情報帯: 見出しを上、本文を下に縦積みして可読性を確保 */
	.company-band__table div { display: block; padding: 12px 0; }
	.company-band__table dt { display: block; font-size: 12.5px; letter-spacing: .02em; margin-bottom: 5px; }
	.company-band__table dd { display: block; font-size: 14px; line-height: 1.85; }
	/* 会社概要テーブル: 行を縦積みにして横潰れを解消 */
	.company-detail__table, .company-detail__table tbody, .company-detail__table tr { display: block; width: 100%; }
	.company-detail__table th, .company-detail__table td { display: block; width: auto; }
	.company-detail__table th, .company-detail__table--wide th { width: auto; border-bottom: 0; padding: 12px 14px 6px; font-size: 12.5px; }
	.company-detail__table td { padding: 0 14px 14px; font-size: 14px; line-height: 1.9; background: #fff; }
	.company-detail__table tr { border-bottom: 1px solid var(--line); }
	.product-grid, ul.products, .product-grid--5, .product-grid--4, .product-grid--3,
	ul.products.columns-4, ul.products.columns-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.product-card__link { padding: 8px 12px 4px; }
	.product-card__actions { padding: 0 12px 14px; }
	.price__num { font-size: 19px; }
	.notice-band { padding: 26px 20px 20px; }
	.notice-band__grid { grid-template-columns: repeat(2, 1fr); }
	.thanks-flow__steps, .ship-steps, .flow-grid--5, .flow-grid, .reason-grid { grid-template-columns: 1fr 1fr; }
	.biz-cat-grid, .biz-usage-grid { grid-template-columns: 1fr; }
	.feature-strip__t1 { font-size: 12px; }
	.hero__btns .btn { width: 100%; }
	.sp-summary__cart form.cart { flex-direction: column; }
	.sp-summary__cart .quantity .qty { width: 100%; }
	.guide-panel__in { flex-direction: column; text-align: center; }
	.tatami-size-guide { grid-template-columns: 1fr; }
	.tatami-size-guide__item--wide { grid-column: auto; }
	.contact-form { padding: 26px 20px; }
	.site-footer__nav { grid-template-columns: 1fr; }
	.site-footer__main { grid-template-columns: 1fr; gap: 28px; }
	.site-footer__copy { margin-left: 0; }
}

/* ==========================================================================
   カンプ準拠 追加コンポーネント (下層ヒーロー / 案内カード / 支払 / 帯 / 手続き)
   ========================================================================== */

/* 薄色ヒーロー (右写真) --------------------------------------------------- */
.page-hero--light { background: linear-gradient(100deg, #dfeaf6 0%, #eef4fb 55%, #f7fafd 100%); }
.page-hero--light::before { content: none; }
.page-hero--plain { background: #fff; }
.page-hero--plain::before { content: none; }
.page-hero--plain .page-hero__in { padding-block: 44px 30px; }
.page-hero__in--split {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 30px; align-items: center; padding-block: 0; min-height: 250px;
}
.page-hero__title--navy { color: var(--navy-ink); }
.page-hero__lead--navy { color: var(--text); }
.page-hero__photo { align-self: stretch; }
.page-hero__photo img { width: 100%; height: 100%; object-fit: cover; }

/* 見出し (アイコン + 罫線) ------------------------------------------------ */
.sec-title--rule { position: relative; gap: 12px; }
.sec-title--rule::before, .sec-title--rule::after {
	content: ""; flex: 1; height: 1px; background: var(--line);
}
.sec-title--rule.sec-title--left::before { content: none; }
.sec-title__icon { display: inline-grid; place-items: center; color: var(--navy); }

/* 案内カード (送料・配送) ------------------------------------------------- */
.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-card-grid--2 { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
.info-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 30px 26px; text-align: center; box-shadow: var(--shadow-sm); color: var(--navy);
}
.info-card h3 {
	font-family: var(--font-display); font-size: 17px; color: var(--navy-ink);
	line-height: 1.5; margin: 14px 0 10px; letter-spacing: .03em;
}
.info-card h3 em { font-style: normal; display: block; font-size: 19px; color: var(--navy); }
.info-card p { font-size: 13px; color: var(--text); text-align: left; }
.info-card svg { margin-inline: auto; }
.info-card--wide {
	display: flex; gap: 20px; align-items: center; text-align: left;
}
.info-card--wide svg { margin: 0; flex-shrink: 0; }
.info-card--wide h3 { margin: 0 0 6px; }

/* お支払い方法 (4ボックス行) ---------------------------------------------- */
.pay-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pay-box {
	position: relative; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 24px 16px 20px; text-align: center;
	box-shadow: var(--shadow-sm);
}
.pay-box h3 { font-size: 14.5px; color: var(--navy-ink); margin-bottom: 12px; }
.pay-box svg { margin-inline: auto; color: var(--navy); }
.pay-box p { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.7; }
.pay-box--active { border: 2px solid var(--navy); padding-bottom: 44px; }
.pay-box--na { opacity: .55; }
.pay-box--na h3 { color: var(--muted); }
.pay-box--na svg { color: var(--muted); }
.pay-box__badge {
	position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
	background: var(--navy); color: #fff; font-size: 11px; font-weight: 700;
	border-radius: 999px; padding: 4px 14px; white-space: nowrap;
}
.pay-detail {
	margin-top: 18px; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 22px 28px;
}
.pay-detail h3 { display: flex; align-items: center; gap: 10px; color: var(--navy-ink); font-size: 16px; margin-bottom: 12px; }
.pay-detail li { position: relative; padding-left: 18px; font-size: 13.5px; margin-bottom: 6px; }
.pay-detail li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* 問い合わせ帯 (金枠) ------------------------------------------------------ */
.contact-band {
	display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
	background: #fff; border: 2px solid var(--gold); border-radius: var(--radius);
	padding: 26px 32px; margin-block: 26px;
}
.contact-band__lead { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 300px; }
.contact-band__icon {
	flex-shrink: 0; display: grid; place-items: center; width: 62px; height: 62px;
	background: var(--navy); color: #fff; border-radius: var(--radius-sm);
}
.contact-band__lead h2 { font-family: var(--font-display); font-size: 19px; color: var(--navy-ink); }
.contact-band__lead p { font-size: 13px; color: var(--muted); margin-top: 4px; }
.contact-band__act { text-align: center; }
.contact-band__tel { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy-ink); }
.contact-band__act p { font-size: 11.5px; color: var(--muted); margin-block: 4px 10px; }

/* 重要なお知らせ (金枠アイコン帯) ------------------------------------------ */
.notice-gold {
	background: #fff; border: 2px solid var(--gold); border-radius: var(--radius);
	padding: 28px 30px 22px; margin-block: 26px;
}
.notice-gold__title {
	font-family: var(--font-display); text-align: center; font-size: 20px;
	font-weight: 600; color: var(--navy-ink); letter-spacing: .06em; margin-bottom: 22px;
}
.notice-gold__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.notice-gold__item {
	text-align: center; padding: 12px 8px; border-right: 1px solid var(--line-soft);
	color: var(--navy);
}
.notice-gold__item:last-child { border-right: 0; }
.notice-gold__item svg { margin-inline: auto; }
.notice-gold__item p { font-size: 12px; font-weight: 700; color: var(--navy-ink); margin-top: 10px; line-height: 1.6; }
.notice-gold__item small { display: block; font-weight: 400; font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.notice-gold__foot { text-align: center; font-size: 12px; color: var(--muted); margin-top: 16px; }

.contact-form--panel { border: 0; padding: 0; box-shadow: none; max-width: none; }

/* 購入手続き (タイトル + ステップバー) ------------------------------------- */
.checkout-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.checkout-head__title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 30px); color: var(--navy-ink); letter-spacing: .05em; }
.checkout-steps { display: flex; align-items: center; gap: 8px; }
.checkout-steps li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--muted); }
.checkout-steps li + li::before { content: "›"; color: var(--line); margin-right: 8px; font-size: 16px; }
.checkout-steps__no, .checkout-steps__ic {
	display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
	background: var(--line-soft); color: var(--muted); font-family: var(--font-display);
}
.checkout-steps .is-done { color: var(--navy); }
.checkout-steps .is-done .checkout-steps__ic { background: var(--sky); color: var(--navy); }
.checkout-steps .is-current { color: var(--navy-ink); }
.checkout-steps .is-current .checkout-steps__no { background: var(--navy); color: #fff; }

/* 注文完了ヘッダー --------------------------------------------------------- */
.thanks-head { text-align: center; padding-block: 14px 30px; }
.thanks-head__check {
	display: inline-grid; place-items: center; width: 64px; height: 64px;
	border: 2px solid var(--navy); border-radius: 50%; color: var(--navy); margin-bottom: 14px;
}
.thanks-head__title { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 34px); color: var(--navy-ink); letter-spacing: .05em; }
.thanks-head__lead { color: var(--muted); font-size: 14px; margin-top: 12px; }
.thanks-head__no {
	display: inline-block; margin-top: 18px; background: var(--sky);
	border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 12px 26px; font-size: 15px; color: var(--navy-ink);
}
.thanks-head__no strong { font-family: var(--font-display); font-size: 19px; letter-spacing: .04em; margin-left: 6px; }

/* 追加レスポンシブ --------------------------------------------------------- */
@media (max-width: 1080px) {
	.notice-gold__grid { grid-template-columns: repeat(3, 1fr); }
	.notice-gold__item:nth-child(3n) { border-right: 0; }
	.pay-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
	.info-card-grid { grid-template-columns: repeat(2, 1fr); }
	.info-card-grid--2 { grid-template-columns: 1fr; }
	.page-hero__in--split { grid-template-columns: 1fr; min-height: 0; padding-block: 34px 0; }
	.page-hero--light .page-hero__photo { margin-inline: -24px; }
	.checkout-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 560px) {
	.info-card-grid { grid-template-columns: 1fr; }
	.pay-row { grid-template-columns: 1fr 1fr; gap: 10px; }
	.notice-gold__grid { grid-template-columns: repeat(2, 1fr); }
	.notice-gold__item:nth-child(3n) { border-right: 1px solid var(--line-soft); }
	.notice-gold__item:nth-child(2n) { border-right: 0; }
	.contact-band { flex-direction: column; text-align: center; }
	.contact-band__lead { flex-direction: column; min-width: 0; }
}

/* ダイキン公式カタログ (外部リンク) ---------------------------------------- */
.official-catalog {
	display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
	background: linear-gradient(120deg, #f8fafd, var(--sky));
	border: 1px solid var(--line); border-radius: var(--radius);
	padding: 26px 32px; margin-block: 26px;
}
.official-catalog__pdf {
	flex-shrink: 0; display: grid; place-items: center; width: 68px; height: 68px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	color: var(--red);
}
.official-catalog__body { flex: 1; min-width: 260px; }
.official-catalog__body h2 { font-family: var(--font-display); font-size: 19px; color: var(--navy-ink); margin-bottom: 6px; }
.official-catalog__body p { font-size: 13px; color: var(--muted); }
.tatami-guide__sub { display: block; margin-top: 10px; font-size: 12px; font-weight: 700; }
.biz-catalog-row {
	display: flex; align-items: center; gap: 10px 22px; flex-wrap: wrap;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 16px 24px; margin-block: 26px; font-size: 13.5px;
}
.biz-catalog-row__label { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy-ink); }
.biz-catalog-row__label svg { color: var(--red); }
.biz-catalog-row a { font-weight: 700; }
@media (max-width: 560px) {
	.official-catalog { flex-direction: column; text-align: center; }
	.official-catalog .btn { width: 100%; }
	.biz-catalog-row { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   カンプ第3弾 (ガイド / 送料 / 会社概要 / お問い合わせ 下層部品)
   ========================================================================== */

/* 見出し (左バー) ---------------------------------------------------------- */
.sec-title--bar { justify-content: flex-start; text-align: left; padding-left: 16px; position: relative; }
.sec-title--bar::before { content: ""; position: absolute; left: 0; top: 8%; bottom: 8%; width: 4px; background: var(--navy); border-radius: 2px; }
.sec-lead--left { text-align: left; }

/* ガイド: 畳数タイル -------------------------------------------------------- */
.tatami-tile-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.tatami-tile {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	overflow: hidden; color: var(--navy-ink); box-shadow: var(--shadow-sm); transition: .2s;
	display: flex; flex-direction: column;
}
.tatami-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); opacity: 1; }
.tatami-tile__head { display: block; text-align: center; padding: 14px 6px 10px; font-size: 12px; }
.tatami-tile__head em { font-style: normal; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy); }
.tatami-tile__head small { display: block; color: var(--muted); font-size: 10.5px; margin-top: 2px; }
.tatami-tile__img { display: block; margin-top: auto; }
.tatami-tile__img img { width: 100%; height: 180px; object-fit: cover; }
.tatami-tile__img--biz { display: grid; place-items: center; background: var(--bg); height: 150px; padding: 8px; }
.tatami-tile__img--biz img { height: 100%; width: auto; object-fit: contain; }
.tatami-tile--biz { background: var(--sky); }
.tatami-tile-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.tatami-tile-foot .note-line { margin-top: 0; }

/* ガイド: 注文・支払 -------------------------------------------------------- */
.order-pay-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 18px; }
.order-pay-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.order-pay-panel h3 { font-size: 16px; color: var(--navy-ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.mini-flow { display: flex; gap: 4px; align-items: flex-start; justify-content: space-between; }
.mini-flow li { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; font-size: 10.5px; color: var(--text); position: relative; padding-inline: 2px; }
.mini-flow li svg { color: var(--navy); }
.mini-flow li + li::before { content: "▶"; position: absolute; left: -7px; top: 8px; font-size: 8px; color: var(--line); }
.pay-line { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 10px; }
.pay-line svg { flex-shrink: 0; margin-top: 2px; }
.pay-line strong { display: block; font-size: 14px; color: var(--navy-ink); margin-bottom: 4px; }
.pay-line p { font-size: 12.5px; color: var(--muted); }
.pay-line--ok { background: var(--sky); border: 1px solid var(--line); color: var(--navy); }
.pay-line--na { background: var(--bg); opacity: .75; color: var(--muted); }
.pay-line--na strong { color: var(--muted); }

/* ガイド: 送料タイル・注意帯・3パネル -------------------------------------- */
.ship-tile-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.ship-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 14px; text-align: center; box-shadow: var(--shadow-sm); color: var(--navy); }
.ship-tile__t { font-weight: 700; font-size: 13px; color: var(--navy-ink); line-height: 1.5; margin-bottom: 8px; }
.ship-tile__num { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--navy); line-height: 1.2; }
.ship-tile__num small { font-size: 12px; }
.ship-tile__em { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--red); }
.ship-tile__d { font-size: 11.5px; color: var(--muted); margin-top: 8px; text-align: left; }
.ship-tile svg { margin-inline: auto; }
.caution-line {
	display: flex; gap: 14px; align-items: center; background: var(--sky);
	border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 14px 22px; margin-top: 16px; font-size: 13px; color: var(--navy-ink);
}
.caution-line__icon { flex-shrink: 0; display: grid; place-items: center; width: 26px; height: 26px; background: var(--navy); color: #fff; border-radius: 50%; font-weight: 700; }
.guide-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.guide-3col__panel { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px 20px; box-shadow: var(--shadow-sm); }
.guide-3col__panel h3 { font-size: 15px; color: var(--navy-ink); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.guide-3col__panel p { font-size: 12.5px; color: var(--text); padding-right: 44px; }
.guide-3col__panel li { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; margin-bottom: 6px; }
.guide-3col__panel li svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.guide-3col__ic { position: absolute; right: 18px; bottom: 16px; color: var(--navy); opacity: .8; }
.guide-panel--catalog .guide-panel__in { align-items: flex-start; }
.faq-lines div { border-bottom: 1px dashed var(--line); padding: 10px 0; }
.faq-lines dt { font-weight: 700; font-size: 13.5px; color: var(--navy-ink); }
.faq-lines dd { font-size: 13px; color: var(--muted); margin-top: 3px; }
.faq-lines { margin-bottom: 16px; }
.merit-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-block: 26px; }
.merit { text-align: center; padding: 22px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); color: var(--navy); }
.merit h3 { font-size: 13.5px; color: var(--navy-ink); margin-block: 10px 8px; line-height: 1.6; }
.merit p { font-size: 12px; color: var(--muted); text-align: left; }
.merit svg { margin-inline: auto; }

/* 送料ページ: ワイド送料枠・エリア ------------------------------------------ */
.ship-hero-box {
	display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; align-items: center;
	background: #fff; border: 2px solid var(--navy); border-radius: var(--radius);
	padding: 28px 34px; margin-block: 22px;
}
.ship-hero-box__left { display: flex; gap: 20px; align-items: center; justify-content: center; color: var(--navy); }
.ship-hero-box__label { font-weight: 700; font-size: 14px; color: var(--navy-ink); }
.ship-hero-box__num { font-family: var(--font-display); font-weight: 700; font-size: 52px; color: var(--navy); line-height: 1.15; }
.ship-hero-box__num small { font-size: 16px; margin-left: 4px; }
.ship-hero-box__right { border-left: 1px solid var(--line); padding-left: 28px; font-size: 14.5px; }
.ship-hero-box__right strong { color: var(--navy-ink); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-block: 8px 10px; }
.area-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow-sm); }
.area-panel__title { font-family: var(--font-display); text-align: center; font-size: 19px; color: var(--navy-ink); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.area-panel__in { display: flex; gap: 20px; align-items: center; justify-content: space-between; }
.area-panel__in p { font-size: 13.5px; }
.area-panel__map { width: 200px; flex-shrink: 0; height: auto; }
.area-panel__list li { display: flex; gap: 10px; align-items: center; font-size: 14px; font-weight: 700; color: var(--navy-ink); padding: 8px 0; border-bottom: 1px dashed var(--line-soft); }
.area-panel__list svg { color: var(--blue); flex-shrink: 0; }
.contact-band__lead--center { justify-content: center; text-align: center; }
.contact-band__act--row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: center; }
.contact-band__act--row .contact-band__tel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 24px; }

/* 会社概要 ------------------------------------------------------------------ */
.greeting-box { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-block: 22px; background: #fff; }
.greeting-box__text { padding: 34px 38px; }
.greeting-box__text h2 { font-family: var(--font-display); font-size: 21px; color: var(--navy-ink); margin-bottom: 16px; }
.greeting-box__text p { font-size: 14px; line-height: 2.1; margin-bottom: 10px; }
.greeting-box__img img { width: 100%; height: 100%; object-fit: cover; }
.company-detail__table--wide { max-width: 900px; margin-inline: auto; }
.company-detail__table--wide th { width: 180px; }
.biz-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.biz-icon-grid--3 { grid-template-columns: repeat(3, 1fr); margin-top: 14px; max-width: 880px; margin-inline: auto; }
.biz-icon-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); color: var(--navy); }
.biz-icon-card svg { margin-inline: auto; }
.biz-icon-card h3 { font-size: 15px; color: var(--navy-ink); margin-block: 12px 8px; }
.biz-icon-card p { font-size: 12.5px; color: var(--muted); text-align: left; }
.hq-grid { display: grid; grid-template-columns: 420px 1fr; gap: 30px; align-items: center; max-width: 980px; margin-inline: auto; }
.hq-grid__img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.hq-grid__info h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy-ink); margin-bottom: 8px; }
.hq-grid__info > p { font-size: 14px; margin-bottom: 14px; }
.hq-grid__info li { display: flex; gap: 10px; align-items: center; font-size: 14px; padding: 6px 0; color: var(--navy-ink); }
.hq-grid__info li svg { color: var(--navy); flex-shrink: 0; }
.group-box { display: grid; grid-template-columns: 1fr 340px; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); max-width: 980px; margin-inline: auto; }
.group-box__text { padding: 30px 34px; display: flex; flex-direction: column; justify-content: center; }
.group-box__text h3 { font-family: var(--font-display); font-size: 19px; color: var(--navy-ink); margin-bottom: 8px; }
.group-box__text p { font-size: 13.5px; color: var(--muted); }
.group-box__img img { width: 100%; height: 100%; object-fit: cover; }

/* お問い合わせページ -------------------------------------------------------- */
.contact-top-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 18px; margin-block: 22px; }
.contact-tel-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-tel-box__label { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--navy-ink); margin-bottom: 8px; }
.contact-tel-box__tel { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--navy-ink); }
.contact-tel-box__hours { font-size: 12px; color: var(--muted); margin-block: 4px 12px; }
.contact-tel-box__note { font-size: 12.5px; color: var(--text); border-top: 1px dashed var(--line); padding-top: 12px; }
.contact-feature-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-feature { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px 12px; border-right: 1px solid var(--line-soft); color: var(--navy); }
.contact-feature:last-child { border-right: 0; }
.contact-feature p { font-weight: 700; font-size: 13px; color: var(--navy-ink); line-height: 1.5; }
.contact-feature small { font-weight: 400; font-size: 11px; color: var(--muted); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.contact-form-grid .contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 34px; box-shadow: var(--shadow-sm); }
.contact-type-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); position: sticky; top: 130px; }
.contact-type-box h3 { font-size: 14.5px; color: var(--navy-ink); text-align: center; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.contact-type-box li { position: relative; padding: 7px 0 7px 16px; font-size: 13px; border-bottom: 1px dashed var(--line-soft); }
.contact-type-box li::before { content: "・"; position: absolute; left: 0; color: var(--blue); }
.contact-form__privacy { font-size: 12px; color: var(--muted); }
.contact-form .wpcf7-acceptance label { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; font-size: 13.5px; }
.contact-form .wpcf7-acceptance input { width: 17px; height: 17px; accent-color: var(--navy); }
.contact-note-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; margin-block: 10px 8px; }
.contact-note-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.contact-note-box h3 { font-size: 15px; color: var(--navy-ink); margin-bottom: 12px; }
.contact-note-box li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; margin-bottom: 8px; }
.contact-note-box li svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.contact-hours-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-hours-box__label { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy-ink); }
.contact-hours-box__time { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: var(--navy-ink); line-height: 1.3; }
.contact-hours-box__time span { font-size: 22px; }
.contact-hours-box__sub { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.faq-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.faq-cat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 16px 20px; box-shadow: var(--shadow-sm); color: var(--navy); transition: .2s; }
.faq-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow); opacity: 1; }
.faq-cat h3 { font-size: 14.5px; color: var(--navy-ink); }
.faq-cat p { font-size: 11.5px; color: var(--muted); }
.faq-cat__more { margin-top: 6px; display: inline-block; border: 1px solid var(--navy); border-radius: 6px; padding: 7px 18px; font-size: 12px; font-weight: 700; color: var(--navy); }
.company-strip { display: grid; grid-template-columns: 300px 1fr; gap: 26px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; margin-block: 26px; align-items: center; }
.company-strip__img img { border-radius: var(--radius-sm); }
.company-strip__body h2 { font-family: var(--font-display); font-size: 20px; color: var(--navy-ink); margin-bottom: 8px; }
.company-strip__body > p { font-size: 13.5px; margin-bottom: 14px; }
.company-strip__info { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 26px; }
.company-strip__info div { display: flex; gap: 12px; font-size: 12.5px; }
.company-strip__info dt { color: var(--muted); min-width: 64px; flex-shrink: 0; }
.company-strip__info dd { margin: 0; }

/* 第3弾レスポンシブ --------------------------------------------------------- */
@media (max-width: 1080px) {
	.tatami-tile-grid { grid-template-columns: repeat(4, 1fr); }
	.ship-tile-grid { grid-template-columns: repeat(3, 1fr); }
	.biz-icon-grid { grid-template-columns: repeat(2, 1fr); }
	.faq-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.merit-row { grid-template-columns: repeat(2, 1fr); }
	.hq-grid { grid-template-columns: 1fr; }
	.hq-grid__img { max-width: 460px; }
	.contact-form-grid { grid-template-columns: 1fr; }
	.contact-type-box { position: static; }
}
@media (max-width: 860px) {
	.order-pay-grid, .area-grid, .ship-hero-box, .greeting-box, .group-box,
	.contact-top-grid, .contact-note-grid, .company-strip { grid-template-columns: 1fr; }
	.ship-hero-box__right { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 18px; }
	.guide-3col { grid-template-columns: 1fr; }
	.mini-flow { flex-wrap: wrap; }
	.mini-flow li { min-width: 30%; }
	.mini-flow li + li::before { content: none; }
}
@media (max-width: 560px) {
	.tatami-tile-grid { grid-template-columns: repeat(2, 1fr); }
	.ship-tile-grid { grid-template-columns: 1fr 1fr; }
	.biz-icon-grid, .biz-icon-grid--3, .faq-cat-grid, .merit-row { grid-template-columns: 1fr; }
	.contact-feature-box { grid-template-columns: 1fr; }
	.contact-feature { border-right: 0; border-bottom: 1px solid var(--line-soft); }
	.area-panel__in { flex-direction: column; }
	.company-strip__info { grid-template-columns: 1fr; }
}

/* トップ: 品番カタログ帯 (カンプ準拠) --------------------------------------- */
.catalog-front {
	display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
	background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 30px 36px; margin-block: 26px;
}
.catalog-front__img { flex-shrink: 0; }
.catalog-front__img img { width: 380px; max-width: 100%; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.catalog-front__pdf {
	flex-shrink: 0; display: grid; place-items: center; width: 76px; height: 76px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--red);
}
.catalog-front__body { flex: 1; min-width: 280px; }
.catalog-front__body h2 { font-family: var(--font-display); font-size: 22px; color: var(--navy-ink); margin-bottom: 8px; }
.catalog-front__body p { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
@media (max-width: 860px) {
	.notice-band__grid { grid-template-columns: repeat(4, 1fr); }
	.notice-band__item:nth-child(4n) { border-right: 0; }
	.catalog-front { flex-direction: column; text-align: center; }
	.catalog-front__pdf { display: none; }
}

/* WooCommerce標準スタイルの残骸を無効化 (カンプ準拠カードの保護) ------------ */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product-card {
	float: none !important; width: auto !important; margin: 0 !important; clear: none !important;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none !important; }
.product-card .add_to_cart_button.loading { opacity: .6; pointer-events: none; }
.product-card .added_to_cart {
	display: block; text-align: center; margin-top: 8px; font-size: 12.5px; font-weight: 700; color: var(--navy);
}
.product-card__volt {
	display: inline-block; margin-top: 6px; background: var(--navy-ink); color: #fff;
	font-size: 10.5px; font-weight: 700; border-radius: 5px; padding: 3px 9px;
}
.product-card__actions .btn { font-size: 14px; padding: 12px 16px; }
.onsale { display: none !important; } /* セールバッジは価格側で表現済み */

/* ==========================================================================
   レスポンシブカンプ準拠 (SPドロワー / SP微調整)
   ========================================================================== */

/* デスクトップではドロワー用パーツを隠す */
.drawer-head, .drawer-foot { display: none; }
body.drawer-open { overflow: hidden; }

@media (max-width: 860px) {
	/* SPドロワー: 白全面パネル (カンプ準拠) */
	.global-nav { display: none; }
	.global-nav.is-open {
		display: flex; flex-direction: column;
		position: fixed; inset: 0; z-index: 300; background: #fff;
		box-shadow: none; overflow-y: auto;
	}
	.drawer-head {
		display: flex; align-items: center; justify-content: space-between;
		padding: 16px 20px; border-bottom: 1px solid var(--line-soft);
	}
	.drawer-head img { width: 178px; height: auto; }
	.drawer-close {
		width: 40px; height: 40px; border: 0; background: transparent;
		font-size: 30px; line-height: 1; color: var(--navy-ink); cursor: pointer;
	}
	.global-nav__wrap { flex: 1; padding-inline: 0; max-width: none; }
	.global-nav.is-open .global-nav__list { flex-direction: column; }
	.global-nav.is-open .global-nav__list a {
		position: relative; display: block; color: var(--navy-ink);
		font-size: 15px; font-weight: 500; padding: 17px 44px 17px 24px;
		border-bottom: 1px solid var(--line-soft);
	}
	.global-nav.is-open .global-nav__list a::after {
		content: "›"; position: absolute; right: 22px; top: 50%;
		transform: translateY(-50%); color: var(--line); font-size: 20px;
	}
	.global-nav.is-open .global-nav__list a:hover { background: var(--bg); opacity: 1; }
	.drawer-foot {
		display: grid; grid-template-columns: 1fr 1fr; gap: 0;
		border-top: 1px solid var(--line-soft);
	}
	.drawer-foot__item {
		display: flex; flex-direction: column; align-items: center; gap: 6px;
		padding: 16px 10px 18px; color: var(--navy-ink); font-size: 12px; font-weight: 700;
	}
	.drawer-foot__item + .drawer-foot__item { border-left: 1px solid var(--line-soft); }
	.drawer-foot__cart { position: relative; display: inline-block; }
	.drawer-foot__cart em {
		position: absolute; top: -7px; right: -10px; background: var(--red); color: #fff;
		font-style: normal; font-size: 10px; min-width: 17px; height: 17px;
		border-radius: 999px; display: grid; place-items: center; padding-inline: 4px;
	}

	/* ヒーロー特徴帯: SPは2x2 (一体枠のまま内側罫線) */
	.hero .feature-strip { grid-template-columns: 1fr 1fr; max-width: none; }
	.hero .feature-strip__item { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
	.hero .feature-strip__item:nth-child(2n) { border-right: 0; }
	.hero .feature-strip__item:nth-child(n+3) { border-bottom: 0; }

	/* 購入手続きステップ: SPは中央寄せコンパクト */
	.checkout-steps { width: 100%; justify-content: center; }
	.checkout-steps li { font-size: 12px; }
	.checkout-steps__no, .checkout-steps__ic { width: 26px; height: 26px; }
}

@media (max-width: 560px) {
	.page-hero__in { padding-block: 40px; }
	.page-hero .feature-strip { grid-template-columns: 1fr 1fr; }
	.thanks-head__no { font-size: 13.5px; padding: 10px 18px; }
	.thanks-head__no strong { font-size: 16px; display: block; margin: 4px 0 0; }
	.sec-title { font-size: 21px; }
	.tatami-row__products .product-grid--mini { grid-template-columns: 1fr 1fr; }
}



/* ==========================================================================
   畳数別・業務用: カンプ準拠 薄色スプリットヒーロー / 目安ボックス
   ========================================================================== */
.split-hero {
	position: relative;
	background-size: cover; background-position: right center; background-repeat: no-repeat;
	overflow: hidden;
}
/* 左半分を薄いグラデーションで覆い、テキストの可読性を確保 (カンプ準拠) */
.split-hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(100deg,
		#eef4fb 0%, rgba(238,244,251,.98) 34%,
		rgba(238,244,251,.72) 46%, rgba(238,244,251,0) 60%);
}
.split-hero__in {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: minmax(0, 560px); gap: 0;
	align-items: center; min-height: clamp(320px, 26vw, 440px); padding-block: 40px;
}
.split-hero__copy { max-width: 520px; }
.split-hero__title {
	font-family: var(--font-display); font-weight: 700; color: var(--navy-ink);
	font-size: clamp(26px, 3.4vw, 40px); line-height: 1.4; letter-spacing: .03em;
}
.split-hero__title em { font-style: normal; color: var(--gold); }
.split-hero__pillkw {
	display: inline-block; vertical-align: middle; margin-left: 12px;
	background: var(--navy); color: #fff; font-family: var(--font-body);
	font-size: 14px; font-weight: 700; border-radius: 7px; padding: 5px 14px; letter-spacing: .02em;
}
.split-hero__lead { margin-top: 14px; font-size: 14.5px; color: var(--text); line-height: 2; }
.split-hero .feature-strip { margin-top: 22px; }
.split-hero .hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.split-hero__alert {
	display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
	background: rgba(207,36,23,.95); color: #fff; border-radius: 8px;
	padding: 10px 16px; font-weight: 700; font-size: 13px;
}
.split-hero__alert span { flex-shrink: 0; display: grid; place-items: center; width: 20px; height: 20px; background: #fff; color: var(--red); border-radius: 50%; font-size: 13px; }

/* 目安ボックス (畳数の目安 + このページの畳数) */
.meyasu-box {
	display: grid; grid-template-columns: 1.6fr 1fr; gap: 0;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; box-shadow: var(--shadow-sm); margin-block: 22px 6px;
}
.meyasu-box__left { display: flex; gap: 18px; align-items: flex-start; padding: 26px 30px; }
.meyasu-box__ic {
	flex-shrink: 0; display: grid; place-items: center; width: 54px; height: 54px;
	background: var(--sky); color: var(--navy); border-radius: var(--radius-sm);
}
.meyasu-box__left h2 { font-family: var(--font-display); font-size: 18px; color: var(--navy-ink); margin-bottom: 8px; }
.meyasu-box__left p { font-size: 13.5px; line-height: 1.9; }
.meyasu-box__right {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 6px; background: var(--sky); border-left: 1px solid var(--line); padding: 20px;
	text-align: center;
}
.meyasu-box__right p { font-size: 12.5px; font-weight: 700; color: var(--navy); }
.meyasu-box__right strong { font-family: var(--font-display); font-size: 26px; color: var(--navy-ink); }
.meyasu-box__right small { font-size: 14px; color: var(--muted); font-weight: 400; }

/* 現在ページのタイル強調 */
.tatami-tile.is-current { border: 2px solid var(--navy); }
.tatami-tile.is-current .tatami-tile__head { background: var(--navy); }
.tatami-tile.is-current .tatami-tile__head em,
.tatami-tile.is-current .tatami-tile__head small { color: #fff; }

@media (max-width: 860px) {
	.split-hero__in { grid-template-columns: 1fr; padding-block: 34px; gap: 24px; }
			.split-hero .feature-strip { grid-template-columns: 1fr 1fr; }
	.split-hero .hero__btns .btn { width: 100%; }
	.meyasu-box { grid-template-columns: 1fr; }
	.meyasu-box__right { border-left: 0; border-top: 1px solid var(--line); }
}

/* 並べ替えセレクト (畳数別・業務用の一覧見出し右) --------------------------- */
.sort-select { display: inline-flex; align-items: center; gap: 10px; }
.sort-select__label { font-size: 12.5px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.sort-select select {
	appearance: none; -webkit-appearance: none;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230e3168' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
	border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 9px 34px 9px 14px; font-size: 13.5px; color: var(--navy-ink);
	font-family: inherit; cursor: pointer; min-width: 160px;
}
.sort-select select:focus { outline: 2px solid var(--navy); outline-offset: 1px; }
@media (max-width: 560px) {
	.sec-head-row { flex-wrap: wrap; gap: 12px; }
	.sort-select { width: 100%; justify-content: space-between; }
	.sort-select select { flex: 1; }
}

/* お知らせ帯 注記の赤太字 (カンプ準拠) ------------------------------------- */
.notice-band__foot--alert,
.notice-gold__foot--alert { color: var(--red); font-weight: 700; }

/* 送料枠の注記 (土日祝発送休業) ------------------------------------------- */
.ship-hero-box__note { margin-top: 8px; font-size: 12.5px; font-weight: 700; color: var(--red); }

.tatami-size-guide__sub { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
