@charset "UTF-8";
/* =========================================================
   GlassMart Japan — Design System
   1. Tokens
   2. Reset / Base
   3. Typography
   4. Layout shell
   5. Header / Global nav
   6. Sidebar
   7. Buttons / Links
   8. Hero
   9. Trust band
   10. Section framework
   11. Trouble cards
   12. Service cards
   13. Reason
   14. Area (region tabs)
   15. Case feed
   16. Flow
   17. FAQ excerpt
   18. CTA block
   19. Article body
   20. Archive / list
   21. Footer
   22. Floating CTA / SP bar
   23. Forms (CF7)
   24. Utilities / print
   ========================================================= */

/* =========================================================
   1. Tokens
   ========================================================= */
:root {
	/* brand */
	--c-navy:        #0f5f7d;
	--c-navy-deep:   #0e5573;
	--c-primary:     #0a8ab3;
	--c-primary-ink: #07718f;
	--c-primary-bg:  #e7f6fb;
	--c-accent:      #ef6c1a;
	--c-accent-dark: #d45a0d;
	--c-accent-bg:   #fdf1e7;
	--c-line:        #06c755;
	--c-line-dark:   #05a948;

	/* ink */
	--c-ink:   #16202b;
	--c-ink-2: #46525f;
	--c-ink-3: #78838f;
	--c-ink-inv: #ffffff;

	/* surface（白一色をやめ、生成りを土台にする） */
	--c-bg:      #ffffff;
	--c-bg-soft: #f6f2ec;
	--c-bg-warm: #fbf4ea;
	--c-bg-page: #fcfaf7;
	--c-border:  #e4ddd3;
	--c-border-soft: #efe9e0;
	--c-warm-ink: #6b5a49;

	/* spacing */
	--sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
	--sp-5: 24px; --sp-6: 32px; --sp-7: 40px; --sp-8: 56px;
	--sp-9: 72px; --sp-10: 96px;
	--section-y: clamp(56px, 6.5vw, 104px);

	/* shape */
	--r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
	--shadow-1: 0 1px 2px rgb(92 64 38 / .06), 0 2px 6px rgb(92 64 38 / .05);
	--shadow-2: 0 12px 30px rgb(92 64 38 / .11), 0 3px 8px rgb(92 64 38 / .07);

	/* layout */
	--sidebar-w: 264px;
	--content-max: 1080px;
	--gutter: clamp(16px, 4vw, 40px);

	/* type */
	--font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
	           "BIZ UDPGothic", Meiryo, system-ui, sans-serif;
	--font-num: "Noto Sans JP", system-ui, sans-serif;
	--font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho",
	              "MS PMincho", serif;
}

/* =========================================================
   2. Reset / Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
	margin: 0;
	background: var(--c-bg-page);
	color: var(--c-ink);
	font-family: var(--font-jp);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: .02em;
	font-feature-settings: "palt" 1;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary-ink); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--c-accent-dark); }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.5; font-weight: 700; letter-spacing: .01em; }
p { margin: 0; }
table { border-collapse: collapse; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 3px; }

.skip-link {
	position: absolute; inset-inline-start: -9999px; top: 0; z-index: 999;
	background: var(--c-navy); color: #fff; padding: .6rem 1rem;
}
.skip-link:focus { inset-inline-start: 0; }

/* Japanese-friendly wrapping */
.jp-wrap, h1, h2, h3, h4,
.trouble-card__title, .service-card__title, .case-card__title,
.section__title, .section__lead, .hero__title, .hero__lead {
	word-break: auto-phrase;
	line-break: strict;
	overflow-wrap: anywhere;
}
h1, h2, .section__title, .hero__title { text-wrap: balance; }
p, .section__lead { text-wrap: pretty; }

/* =========================================================
   3. Typography helpers
   ========================================================= */
.eyebrow {
	font-size: .75rem; font-weight: 700; letter-spacing: .22em;
	color: var(--c-accent); text-transform: uppercase;
}
.num { font-family: var(--font-num); font-feature-settings: normal; letter-spacing: 0; }

/* =========================================================
   4. Layout shell
   ========================================================= */
.layout { min-height: 100vh; }
.site { min-width: 0; }
.main { display: block; }
.wrap { max-width: var(--content-max); margin-inline: auto; padding-inline: var(--gutter); }

@media (min-width: 1100px) {
	.layout {
		display: grid;
		grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
		align-items: start;
	}
	.sidebar { position: sticky; top: 0; height: 100vh; }
}

/* =========================================================
   5. Header / Global nav
   ========================================================= */
.site-head { border-bottom: 1px solid var(--c-border); background: #fff; }

.site-utility {
	background: var(--c-navy);
	color: #cfe0f3;
	font-size: .78rem;
	letter-spacing: .04em;
}
.site-utility__inner {
	max-width: 1320px; margin-inline: auto; padding: .35rem var(--gutter);
	display: flex; gap: 1.25rem; align-items: center; justify-content: space-between;
}
.site-utility p { margin: 0; }
.site-utility a { color: #fff; text-decoration: none; }
.site-utility a:hover { text-decoration: underline; }
.site-utility__links { display: flex; gap: 1rem; }

.site-head__main {
	max-width: 1320px; margin-inline: auto; padding: .9rem var(--gutter);
	display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
}
.site-head__brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.site-head__brand img { width: auto; max-height: 52px; }
.site-head__tagline {
	font-size: .72rem; color: var(--c-ink-3); letter-spacing: .06em; line-height: 1.6;
	display: none; white-space: nowrap; flex: 0 0 auto; word-break: normal;
}
@media (min-width: 1140px) { .site-head__tagline { display: block; } }

.site-head__contact { margin-inline-start: auto; display: flex; align-items: center; gap: .75rem; }
.head-tel { text-align: right; line-height: 1.3; text-decoration: none; color: inherit; }
.head-tel__label { display: block; font-size: .7rem; color: var(--c-ink-3); letter-spacing: .08em; }
.head-tel__num {
	display: flex; align-items: center; gap: .35rem; white-space: nowrap;
	font-size: clamp(1.35rem, 1.1rem + .8vw, 1.9rem); font-weight: 700;
	color: var(--c-navy); letter-spacing: .01em; font-feature-settings: normal;
}
.head-tel__num svg { flex: none; color: var(--c-accent); }
.head-tel__hours { display: block; font-size: .7rem; color: var(--c-ink-3); }
.head-cta { display: none; gap: .5rem; }
@media (min-width: 1260px) { .head-cta { display: flex; } }
.head-cta__btn {
	display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
	min-width: 116px; padding: .5rem .9rem; border-radius: var(--r-md);
	font-size: .82rem; font-weight: 700; line-height: 1.4; text-decoration: none; color: #fff;
	transition: transform .15s ease, filter .15s ease;
}
.head-cta__btn small { display: block; font-size: .68rem; font-weight: 500; opacity: .9; }
.head-cta__btn:hover { transform: translateY(-1px); filter: brightness(1.05); color: #fff; }
.head-cta__btn--line { background: var(--c-line); }
.head-cta__btn--form { background: var(--c-accent); }

/* global nav */
.gnav { border-top: 1px solid var(--c-border-soft); background: #fff; display: none; }
@media (min-width: 900px) { .gnav { display: block; } }
.gnav__list {
	max-width: 1320px; margin-inline: auto; padding-inline: var(--gutter);
	display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
}
.gnav__list > li + li { border-inline-start: 1px solid var(--c-border-soft); }
.gnav__list a {
	display: flex; flex-direction: column; align-items: center; gap: .3rem;
	padding: .75rem .3rem .7rem; text-decoration: none; color: var(--c-ink);
	font-size: clamp(.72rem, .58rem + .32vw, .86rem); font-weight: 700; letter-spacing: 0;
	border-bottom: 3px solid transparent; transition: background .15s ease, color .15s ease;
}
.gnav__list a > span { white-space: nowrap; }
.gnav__ico { flex: none; }
.gnav__list a:hover { background: var(--c-primary-bg); color: var(--c-primary-ink); border-bottom-color: var(--c-primary); }
.gnav__ico { width: 22px; height: 22px; color: var(--c-primary); }
.gnav__list a:hover .gnav__ico { color: var(--c-primary-ink); }

/* mobile header */
.mobile-header {
	display: flex; align-items: center; justify-content: space-between; gap: .75rem;
	padding: .6rem var(--gutter); border-bottom: 1px solid var(--c-border); background: #fff;
	position: sticky; top: 0; z-index: 60;
}
@media (min-width: 1100px) { .mobile-header { display: none; } }
.mobile-header__brand img { max-height: 40px; width: auto; }
.menu-toggle {
	display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
	background: none; border: 1px solid var(--c-border); border-radius: var(--r-sm);
	padding: .4rem .6rem; cursor: pointer;
}
.menu-toggle__bar { width: 20px; height: 2px; background: var(--c-ink); box-shadow: 0 6px 0 var(--c-ink), 0 -6px 0 var(--c-ink); }
.menu-toggle__text { font-size: .58rem; letter-spacing: .06em; margin-top: 6px; }
.mobile-header__brand { text-decoration: none; color: inherit; }
.mobile-header__brand .brand__name { font-size: 1.32rem; }

/* SPではヘッダーの重複を避け、電話番号だけを残す */
@media (max-width: 1099px) {
	.site-utility { display: none; }
	.site-head__brand { display: none; }
	.site-head { border-bottom: 0; }
	.site-head__main { padding: .55rem var(--gutter) .7rem; justify-content: center; }
	.site-head__contact { margin-inline-start: 0; }
	.head-tel { text-align: center; }
	.head-tel__num { justify-content: center; }
}

/* =========================================================
   6. Sidebar (knowledge index)
   ========================================================= */
.sidebar {
	background: var(--c-bg-soft);
	border-inline-end: 1px solid var(--c-border);
	overflow-y: auto;
	overscroll-behavior: contain;
}
.sidebar__inner { padding: var(--sp-5) var(--sp-4) var(--sp-8); }

.sidebar__brand { display: none; }
@media (min-width: 1100px) {
	.sidebar__brand { display: block; text-align: center; margin-block-end: var(--sp-5); }
	.sidebar__brand a { display: inline-block; text-decoration: none; }
	.sidebar__brand img { margin-inline: auto; max-height: 96px; width: auto; }
}
.brand__sub { display: block; font-size: .72rem; color: var(--c-ink-3); letter-spacing: .08em; }
.brand__name { display: block; font-size: 1.4rem; font-weight: 700; color: var(--c-navy); }
.brand__bang { color: var(--c-accent); }
.brand__tag {
	display: inline-block; margin-block-start: .4rem; padding: .1rem .6rem;
	background: var(--c-primary); color: #fff; border-radius: var(--r-pill);
	font-size: .7rem; font-weight: 700; letter-spacing: .08em;
}

.badges { display: grid; gap: var(--sp-2); margin-block-end: var(--sp-5); }
.badge {
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
	padding: .6rem .75rem; text-align: center;
}
.badge--split { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .6rem .5rem; }
.badge--split > div + div { border-inline-start: 1px solid var(--c-border-soft); }
.badge__label { display: block; font-size: .68rem; color: var(--c-ink-3); letter-spacing: .06em; }
.badge__value {
	display: block; font-size: 1.3rem; font-weight: 700; color: var(--c-navy);
	line-height: 1.3; font-feature-settings: normal;
}
.badge__value small { font-size: .7rem; margin-inline-start: .1em; color: var(--c-ink-2); }

.sidebar__tel {
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
	padding: .8rem .6rem; text-align: center; margin-block-end: var(--sp-5);
}
.sidebar__tel-label { display: block; font-size: .7rem; color: var(--c-ink-3); letter-spacing: .08em; }
.tel-number {
	display: inline-flex; align-items: center; gap: .3rem; text-decoration: none;
	font-size: 1.4rem; font-weight: 700; color: var(--c-navy); letter-spacing: .01em;
	font-feature-settings: normal;
}
.tel-number__icon { color: var(--c-accent); display: inline-flex; }
.sidebar__tel-hours { display: block; font-size: .7rem; color: var(--c-ink-3); }

.sidebar__nav-title {
	font-size: .76rem; font-weight: 700; letter-spacing: .12em; color: var(--c-ink-3);
	padding: 0 .25rem .4rem; border-bottom: 2px solid var(--c-border);
	margin-block: var(--sp-5) var(--sp-2);
}
.sidebar__nav-title:first-of-type { margin-block-start: 0; }
.nav-list { display: grid; }
.nav-list a {
	display: block; position: relative; padding: .55rem .25rem .55rem 1rem;
	font-size: .875rem; line-height: 1.6; color: var(--c-ink); text-decoration: none;
	border-bottom: 1px dashed var(--c-border);
}
.nav-list a::before {
	content: ""; position: absolute; inset-inline-start: 1px; top: 1.05em;
	width: 5px; height: 5px; border-top: 2px solid var(--c-accent);
	border-inline-end: 2px solid var(--c-accent); rotate: 45deg;
}
.nav-list a:hover { color: var(--c-primary-ink); background: #fff; }
.nav-list .current-menu-item > a { color: var(--c-primary-ink); font-weight: 700; }

.sidebar__banner { display: grid; gap: var(--sp-2); margin-block-start: var(--sp-5); }
.side-banner {
	display: block; text-decoration: none; border-radius: var(--r-md); overflow: hidden;
	border: 1px solid var(--c-border); background: #fff; padding: .8rem .9rem;
	transition: box-shadow .15s ease, transform .15s ease;
}
.side-banner:hover { box-shadow: var(--shadow-2); transform: translateY(-1px); }
.side-banner__label { display: block; font-size: .7rem; letter-spacing: .1em; color: var(--c-accent); font-weight: 700; }
.side-banner__title { display: block; font-size: .95rem; font-weight: 700; color: var(--c-ink); line-height: 1.6; }
.side-banner__text { display: block; font-size: .78rem; color: var(--c-ink-2); line-height: 1.7; margin-block-start: .2rem; }

/* SP drawer */
@media (max-width: 1099px) {
	.sidebar {
		position: fixed; inset-block: 0; inset-inline-start: 0; z-index: 80;
		width: min(86vw, 340px); translate: -100% 0; transition: translate .25s ease;
		box-shadow: var(--shadow-2);
	}
	.sidebar.is-open { translate: 0 0; }
	.sidebar-backdrop {
		position: fixed; inset: 0; background: rgb(8 18 30 / .5); z-index: 70;
		opacity: 0; pointer-events: none; transition: opacity .25s ease;
	}
	.sidebar-backdrop.is-open { opacity: 1; pointer-events: auto; }
}

/* =========================================================
   7. Buttons / Links
   ========================================================= */
.btn {
	display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
	gap: .1rem; min-height: 68px; padding: .75rem 1.6rem; border-radius: var(--r-pill);
	text-decoration: none; color: #fff; font-weight: 700; line-height: 1.4;
	box-shadow: var(--shadow-1); transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-2); filter: brightness(1.04); }
.btn__label { font-size: .74rem; font-weight: 500; opacity: .92; letter-spacing: .06em; }
.btn__main { font-size: clamp(1.05rem, .95rem + .4vw, 1.4rem); letter-spacing: .02em; font-feature-settings: normal; }
.btn__sub { font-size: .7rem; font-weight: 500; opacity: .85; }
.btn--tel  { background: linear-gradient(180deg, #11748f, #0a5570); }
.btn--line { background: linear-gradient(180deg, #16d364, var(--c-line-dark)); }
.btn--form { background: linear-gradient(180deg, #f5813a, var(--c-accent-dark)); }

.link-more {
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .7rem 2rem; border: 1.5px solid var(--c-primary); border-radius: var(--r-pill);
	color: var(--c-primary-ink); font-weight: 700; text-decoration: none; background: #fff;
	transition: background .15s ease, color .15s ease;
}
.link-more::after { content: "›"; font-size: 1.1em; line-height: 1; }
.link-more:hover { background: var(--c-primary); color: #fff; }

/* =========================================================
   8. Hero
   ========================================================= */
.hero {
	position: relative;
	background:
		radial-gradient(120% 90% at 82% 8%, rgb(53 188 223 / .45) 0%, rgb(53 188 223 / 0) 60%),
		linear-gradient(165deg, #13758f 0%, var(--c-navy-deep) 48%, #0a4257 100%);
	color: #fff;
	overflow: hidden;
}
.hero::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background-image:
		linear-gradient(rgb(255 255 255 / .045) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / .045) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: linear-gradient(180deg, rgb(0 0 0 / .8), transparent 72%);
}
.hero__inner {
	position: relative; z-index: 2;
	max-width: 1320px; margin-inline: auto;
	padding: clamp(34px, 4.6vw, 76px) var(--gutter) clamp(40px, 5vw, 84px);
	display: grid; gap: clamp(28px, 4vw, 56px);
	grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
	align-items: center;
}
@media (max-width: 899px) {
	.hero__inner { grid-template-columns: minmax(0, 1fr); }
}

/* --- copy --- */
.hero__copy { display: grid; gap: var(--sp-4); align-content: start; }
.hero__eyebrow {
	justify-self: start;
	display: inline-flex; align-items: baseline; gap: .35em;
	background: rgb(255 255 255 / .1);
	border: 1px solid rgb(255 255 255 / .26);
	color: #e7f6fb;
	font-size: .8rem; font-weight: 700; letter-spacing: .04em;
	padding: .38rem 1.05rem; border-radius: var(--r-pill);
	backdrop-filter: blur(2px);
}
.hero__eyebrow-num {
	font-size: 1.16rem; font-weight: 700; color: #fff;
	font-feature-settings: "tnum"; letter-spacing: 0;
}

.hero__title {
	font-size: clamp(1.72rem, 1.02rem + 2.9vw, 3.1rem);
	line-height: 1.34;
	letter-spacing: .004em;
	color: #fff;
	text-wrap: initial;
}
.hero__title .np { display: inline-block; }
.hero__title-sub {
	display: block;
	font-size: .62em;
	font-weight: 700;
	color: #b7cbe4;
	margin-block-end: .34em;
	letter-spacing: .02em;
}
.hero__title-main { display: block; }
.hero__title-main .np {
	box-shadow: inset 0 -.17em 0 var(--c-accent);
	padding-inline: .04em;
}

.hero__lead {
	max-width: 30em;
	color: #c9d8ea;
	font-size: clamp(.94rem, .9rem + .2vw, 1.02rem);
	line-height: 1.95;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero .btn--tel {
	background: linear-gradient(180deg, #f5813a, var(--c-accent-dark));
	box-shadow: 0 12px 28px rgb(239 108 26 / .34);
}
.hero .btn--line { box-shadow: 0 12px 28px rgb(6 199 85 / .3); }
.hero .btn { min-height: 74px; }

.hero__points {
	display: grid; gap: .5rem;
	margin: 0; padding: 0; list-style: none;
	font-size: .87rem; color: #c9d8ea;
}
.hero__points li { position: relative; padding-inline-start: 1.5em; }
.hero__points li::before {
	content: ""; position: absolute; inset-inline-start: 0; inset-block-start: .46em;
	inline-size: .82em; block-size: .46em;
	border-inline-start: 2px solid var(--c-line);
	border-block-end: 2px solid var(--c-line);
	transform: rotate(-45deg);
}
.hero__points strong { color: #fff; font-weight: 700; }

/* --- visual --- */
.hero__visual { position: relative; justify-self: stretch; }
.hero__photo {
	margin: 0;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: 0 26px 60px rgb(0 0 0 / .42), 0 0 0 1px rgb(255 255 255 / .1);
	aspect-ratio: 14 / 9;
	background: var(--c-navy-deep);
}
.hero__photo img { inline-size: 100%; block-size: 100%; object-fit: cover; display: block; }
.hero__photo--empty {
	display: grid; place-items: center;
	color: rgb(255 255 255 / .4); font-size: .85rem;
}
.hero__badge {
	position: absolute;
	inset-block-end: -18px; inset-inline-start: -14px;
	background: #fff; color: var(--c-ink);
	border-radius: var(--r-md);
	padding: .8rem 1.1rem;
	box-shadow: 0 14px 34px rgb(0 0 0 / .3);
	display: grid; gap: .1rem;
	border-block-start: 4px solid var(--c-line);
	min-inline-size: 11.5rem;
}
.hero__badge-label { font-size: .74rem; font-weight: 700; color: var(--c-line-dark); letter-spacing: .04em; }
.hero__badge-value { font-size: 1.14rem; font-weight: 700; line-height: 1.2; }
.hero__badge-value em {
	font-style: normal; font-size: 1.9rem; color: var(--c-accent);
	margin-inline: .06em; letter-spacing: -.01em;
}
.hero__badge-note { font-size: .74rem; color: var(--c-ink-3); }

@media (max-width: 899px) {
	.hero__visual { order: -1; }
	.hero__photo { aspect-ratio: 16 / 10; }
	.hero__badge {
		position: static;
		margin-block-start: .7rem; margin-inline-start: auto; margin-inline-end: 0;
		inline-size: fit-content; min-inline-size: 0;
		display: grid; gap: .08rem;
	}
}
@media (max-width: 560px) {
	.hero__badge { padding: .6rem .85rem; min-inline-size: 9.8rem; }
	.hero__badge-value em { font-size: 1.55rem; }
	.hero__actions .btn { inline-size: 100%; }
}

/* =========================================================
   9. Trust band
   ========================================================= */
.trust-band { background: #fff; border-block-end: 1px solid var(--c-border); }
.trust-band__inner {
	max-width: 1320px; margin-inline: auto; padding: clamp(14px, 2vw, 22px) var(--gutter);
	display: grid; gap: 1px; grid-template-columns: repeat(2, 1fr);
	background: var(--c-border);
}
@media (min-width: 760px) { .trust-band__inner { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 760px) and (max-width: 979px) { .trust-band__inner { grid-template-columns: repeat(3, 1fr); } }
.trust-item { background: #fff; text-align: center; padding: .55rem .5rem; }
.trust-item__label {
	display: block; font-size: .72rem; font-weight: 700;
	letter-spacing: .1em; color: var(--c-ink-3);
}
.trust-item__value {
	display: block; color: var(--c-navy);
	font-size: clamp(1.3rem, 1.05rem + .95vw, 1.95rem); font-weight: 700;
	line-height: 1.3; font-feature-settings: "tnum";
}
.trust-item__value small {
	font-size: .58em; margin-inline-start: .15em; font-weight: 700; color: var(--c-ink-2);
}

.free-band {
	background: var(--c-accent); color: #fff; text-align: center;
	padding: .65rem var(--gutter); font-weight: 700; letter-spacing: .04em;
	font-size: clamp(.9rem, .82rem + .35vw, 1.1rem);
}
.free-band strong { font-size: 1.25em; }

/* =========================================================
   10. Section framework
   ========================================================= */
.section { padding-block: var(--section-y); background: var(--c-bg); }
.section > * { max-width: var(--content-max); margin-inline: auto; padding-inline: var(--gutter); }
.section--soft { background: var(--c-bg-soft); }
.section--warm { background: var(--c-bg-warm); }

.section__head { text-align: center; margin-block-end: var(--sp-7); display: grid; gap: .4rem; }
.section__eyebrow {
	font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--c-accent-dark);
	display: inline-flex; align-items: center; gap: .55rem; justify-self: center;
}
.section__eyebrow::before,
.section__eyebrow::after {
	content: ""; width: 22px; height: 2px; border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--c-accent));
}
.section__eyebrow::after { background: linear-gradient(90deg, var(--c-accent), transparent); }
.section__title {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: clamp(1.5rem, 1.15rem + 1.6vw, 2.25rem);
	line-height: 1.55; color: var(--c-ink);
	letter-spacing: .03em;
}
.section__title .nb,
.section__title .np { font-family: inherit; }
.section__lead { color: var(--c-ink-2); font-size: .95rem; max-width: 44em; margin-inline: auto; }
.section__more { text-align: center; margin-block-start: var(--sp-6); }

/* =========================================================
   11. Trouble cards
   ========================================================= */
.trouble-grid {
	display: grid; gap: var(--sp-3);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.trouble-card { display: flex; }
.trouble-card > a {
	display: grid; grid-template-columns: 96px minmax(0, 1fr) 20px; align-items: center;
	gap: var(--sp-3); width: 100%; padding: .7rem 1rem .7rem .7rem;
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
	text-decoration: none; color: var(--c-ink); box-shadow: var(--shadow-1);
	transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.trouble-card > a:hover {
	box-shadow: var(--shadow-2); transform: translateY(-2px);
	border-color: var(--c-primary);
}
.trouble-card__media { display: block; border-radius: var(--r-sm); overflow: hidden; background: var(--c-bg-soft); }
.trouble-card__media img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.trouble-card__title { font-size: .94rem; font-weight: 700; line-height: 1.6; }
.trouble-card__arrow { color: var(--c-accent); font-weight: 700; justify-self: end; }

/* =========================================================
   12. Service cards
   ========================================================= */
.service-grid {
	display: grid; gap: var(--sp-5);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.service-card > a {
	display: flex; flex-direction: column; height: 100%;
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
	overflow: hidden; text-decoration: none; color: var(--c-ink);
	box-shadow: var(--shadow-1); transition: box-shadow .2s ease, transform .2s ease;
}
.service-card > a:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.service-card__media { display: block; background: var(--c-bg-soft); }
.service-card__media img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.service-card__body { display: grid; gap: .45rem; padding: var(--sp-4) var(--sp-4) var(--sp-5); }
.service-card__title {
	font-size: 1.06rem; font-weight: 700; line-height: 1.55; color: var(--c-navy);
	display: flex; align-items: baseline; gap: .4rem;
}
.service-card__title::after { content: "›"; color: var(--c-accent); font-size: 1.1em; }
.service-card__excerpt { font-size: .86rem; line-height: 1.85; color: var(--c-ink-2); }
.service-card__placeholder { display: block; aspect-ratio: 16 / 10; background: var(--c-bg-soft); }

/* =========================================================
   13. Reason
   ========================================================= */
.section--reason { background: var(--c-bg-soft); }
.reason-list {
	display: grid; gap: var(--sp-4);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
}
.reason-item {
	position: relative; background: #fff; border: 1px solid var(--c-border);
	border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-4) var(--sp-5);
	display: grid; gap: .5rem; align-content: start;
}
.reason-item__num {
	position: absolute; top: -16px; inset-inline-start: var(--sp-4);
	width: 44px; height: 44px; display: grid; place-items: center;
	background: var(--c-navy); color: #fff; border-radius: 50%;
	font-size: .95rem; font-weight: 700; font-feature-settings: normal;
	box-shadow: 0 0 0 4px #fff;
}
.reason-item__title { font-size: 1.02rem; color: var(--c-navy); }
.reason-item__text { font-size: .86rem; line-height: 1.9; color: var(--c-ink-2); }

/* =========================================================
   14. Area — region tabs
   ========================================================= */
.area-tabs {
	display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center;
	margin-block-end: var(--sp-5);
}
.area-tab {
	padding: .45rem 1.1rem; border-radius: var(--r-pill); border: 1.5px solid var(--c-border);
	background: #fff; color: var(--c-ink-2); font-size: .86rem; font-weight: 700;
	cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.area-tab:hover { border-color: var(--c-primary); color: var(--c-primary-ink); }
.area-tab[aria-selected="true"] { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }

.area-region + .area-region { margin-block-start: var(--sp-6); }
.area-region__name {
	font-size: .82rem; font-weight: 700; letter-spacing: .1em; color: var(--c-ink-3);
	display: flex; align-items: center; gap: .75rem; margin-block-end: var(--sp-3);
}
.area-region__name::after { content: ""; flex: 1; height: 1px; background: var(--c-border); }
.area-list {
	display: grid; gap: .5rem;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
}
.area-list a {
	display: flex; align-items: center; justify-content: space-between; gap: .4rem;
	padding: .65rem .9rem; background: #fff; border: 1px solid var(--c-border);
	border-radius: var(--r-md); text-decoration: none; color: var(--c-ink);
	font-weight: 700; font-size: .95rem; white-space: nowrap;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.area-list a::after { content: "›"; color: var(--c-accent); font-weight: 700; }
.area-list a:hover { background: var(--c-primary-bg); border-color: var(--c-primary); color: var(--c-primary-ink); }
.area-note { text-align: center; font-size: .88rem; color: var(--c-ink-2); margin-block-start: var(--sp-6); }

/* =========================================================
   15. Case feed
   ========================================================= */
.case-grid {
	display: grid; gap: var(--sp-5);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}
.case-card > a {
	display: flex; flex-direction: column; height: 100%; background: #fff;
	border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden;
	text-decoration: none; color: var(--c-ink); box-shadow: var(--shadow-1);
	transition: box-shadow .2s ease, transform .2s ease;
}
.case-card > a:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.case-card__media img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.case-card__meta {
	display: flex; gap: .5rem; align-items: center; flex-wrap: wrap;
	padding: var(--sp-3) var(--sp-4) 0; font-size: .74rem; color: var(--c-ink-3);
}
.case-card__tag {
	background: var(--c-accent-bg); color: var(--c-accent-dark);
	padding: .1rem .55rem; border-radius: var(--r-sm); font-weight: 700;
}
.case-card__title {
	padding: .35rem var(--sp-4) var(--sp-4);
	font-size: .95rem; font-weight: 700; line-height: 1.7;
}

/* =========================================================
   16. Flow
   ========================================================= */
.flow-list {
	display: grid; gap: var(--sp-4);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
	counter-reset: flow;
}
.flow-item {
	position: relative; background: #fff; border: 1px solid var(--c-border);
	border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-4) var(--sp-5);
	display: grid; gap: .5rem; align-content: start;
}
.flow-item__num {
	position: absolute; top: -15px; inset-inline-start: var(--sp-4);
	width: 40px; height: 40px; display: grid; place-items: center;
	background: var(--c-accent); color: #fff; border-radius: 50%;
	font-weight: 700; font-feature-settings: normal; box-shadow: 0 0 0 4px #fff;
}
.flow-item__title { font-size: 1rem; color: var(--c-navy); }
.flow-item__text { font-size: .86rem; line-height: 1.9; color: var(--c-ink-2); }

/* =========================================================
   17. FAQ excerpt (home)
   ========================================================= */
.faq-list { display: grid; gap: var(--sp-3); max-width: 780px; margin-inline: auto; }
.faq-item {
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
	overflow: hidden;
}
.faq-item > summary {
	cursor: pointer; list-style: none; padding: 1rem 2.6rem 1rem 3rem;
	font-weight: 700; position: relative; font-size: .96rem; line-height: 1.7;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::before {
	content: "Q"; position: absolute; inset-inline-start: 1rem; top: .95rem;
	width: 24px; height: 24px; display: grid; place-items: center;
	background: var(--c-navy); color: #fff; border-radius: 50%; font-size: .78rem;
}
.faq-item > summary::after {
	content: ""; position: absolute; inset-inline-end: 1.1rem; top: 1.35rem;
	width: 9px; height: 9px; border-inline-end: 2px solid var(--c-accent);
	border-bottom: 2px solid var(--c-accent); rotate: 45deg; transition: rotate .2s ease;
}
.faq-item[open] > summary::after { rotate: -135deg; }
.faq-item__body {
	padding: 0 1.2rem 1.1rem 3rem; font-size: .9rem; line-height: 1.95; color: var(--c-ink-2);
	border-top: 1px dashed var(--c-border);
	padding-block-start: 1rem;
}

/* =========================================================
   18. CTA block
   ========================================================= */
.cta-block {
	background:
		linear-gradient(180deg, rgb(14 85 115 / .90), rgb(14 85 115 / .95)),
		var(--c-navy-deep);
	color: #fff; text-align: center; padding-block: var(--section-y);
	padding-inline: var(--gutter);
}
.cta-block__title { font-size: clamp(1.4rem, 1.15rem + 1.2vw, 2rem); }
.cta-block__lead { margin-block: .75rem var(--sp-5); color: #cfe0f3; font-size: .95rem; }
.cta-block__actions {
	display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center;
	max-width: 960px; margin-inline: auto;
}
.cta-block .btn--tel { background: #fff; color: var(--c-navy); }
.cta-block .btn--tel:hover { color: var(--c-navy); }
.cta-block .btn--tel .btn__label,
.cta-block .btn--tel .btn__sub { color: var(--c-ink-2); opacity: 1; }

/* =========================================================
   19. Article body
   ========================================================= */
.entry { max-width: var(--content-max); margin-inline: auto; padding: var(--sp-6) var(--gutter) var(--sp-9); }
.breadcrumb { font-size: .78rem; color: var(--c-ink-3); padding: .9rem var(--gutter) 0; max-width: var(--content-max); margin-inline: auto; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; }
.breadcrumb li + li::before { content: "›"; margin-inline-end: .4rem; color: var(--c-ink-3); }
.breadcrumb a { color: var(--c-ink-2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.entry__header { margin-block-end: var(--sp-5); display: grid; gap: .6rem; }
.entry__meta { font-size: .76rem; color: var(--c-ink-3); letter-spacing: .06em; }
.entry__title {
	font-size: clamp(1.45rem, 1.15rem + 1.5vw, 2.15rem); line-height: 1.5;
	padding-block-end: var(--sp-4); border-bottom: 3px solid var(--c-navy);
}
.entry__lead { font-size: 1rem; color: var(--c-ink-2); background: var(--c-bg-soft);
	border-inline-start: 4px solid var(--c-primary); border-radius: 0 var(--r-sm) var(--r-sm) 0;
	padding: var(--sp-4); }
.entry__thumb { margin-block-end: var(--sp-5); border-radius: var(--r-lg); overflow: hidden; }
.entry__thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.entry__body { font-size: 1rem; line-height: 2.0; }
.entry__body > * + * { margin-block-start: 1.4em; }
.entry__body h2 {
	font-size: clamp(1.2rem, 1.05rem + .7vw, 1.55rem); line-height: 1.55;
	margin-block-start: 2.4em; padding: .55rem 0 .55rem 1rem;
	border-inline-start: 6px solid var(--c-navy); background: var(--c-bg-soft);
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.entry__body h3 {
	font-size: 1.1rem; margin-block-start: 2em; padding-block-end: .4rem;
	border-bottom: 2px dotted var(--c-border); color: var(--c-navy);
}
.entry__body h4 { font-size: 1rem; margin-block-start: 1.8em; color: var(--c-navy); }
.entry__body ul, .entry__body ol { padding-inline-start: 1.4em; display: grid; gap: .5em; }
.entry__body ul > li { list-style: disc; }
.entry__body ol > li { list-style: decimal; }
.entry__body ul > li::marker { color: var(--c-accent); }
.entry__body ol > li::marker { color: var(--c-accent); font-weight: 700; }
.entry__body strong { font-weight: 700; background: linear-gradient(transparent 64%, #ffe9b8 64%); }
.entry__body a { font-weight: 500; }
.entry__body blockquote {
	margin: 0; padding: var(--sp-4) var(--sp-5); background: var(--c-bg-soft);
	border-inline-start: 4px solid var(--c-border); color: var(--c-ink-2);
}
.entry__body table { width: 100%; font-size: .92rem; }
.entry__body th, .entry__body td {
	border: 1px solid var(--c-border); padding: .7rem .9rem; text-align: start; vertical-align: top;
}
.entry__body th { background: var(--c-bg-soft); font-weight: 700; white-space: nowrap; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.entry__body img { border-radius: var(--r-md); }
.entry__body .case-meta {
	display: inline-block; background: var(--c-accent-bg); color: var(--c-accent-dark);
	padding: .3rem .9rem; border-radius: var(--r-pill); font-size: .85rem; font-weight: 700;
}
.entry__body .case-note { color: var(--c-ink-3); font-size: .82rem; }

/* FAQ inside articles */
.entry__body .faq-q {
	margin-block-start: 1.8em; padding: .7rem 1rem .7rem 2.8rem; position: relative;
	background: var(--c-primary-bg); border-radius: var(--r-sm); font-size: 1rem;
	border: 0; color: var(--c-ink);
}
.entry__body .faq-q::before {
	content: "Q"; position: absolute; inset-inline-start: .9rem; top: .75rem;
	width: 22px; height: 22px; display: grid; place-items: center;
	background: var(--c-navy); color: #fff; border-radius: 50%; font-size: .74rem;
}
.entry__body .faq-a {
	margin-block-start: .6em; padding-inline-start: 2.8rem; position: relative; color: var(--c-ink-2);
}
.entry__body .faq-a::before {
	content: "A"; position: absolute; inset-inline-start: .9rem; top: .15rem;
	width: 22px; height: 22px; display: grid; place-items: center;
	background: var(--c-accent); color: #fff; border-radius: 50%; font-size: .74rem; font-weight: 700;
}

.related { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter) var(--sp-9); }
.related__title { font-size: 1.1rem; margin-block-end: var(--sp-4); color: var(--c-navy); }
.related__list { display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.related__list a {
	display: block; padding: .8rem 1rem; background: #fff; border: 1px solid var(--c-border);
	border-radius: var(--r-md); text-decoration: none; color: var(--c-ink); font-size: .9rem; font-weight: 700;
}
.related__list a:hover { border-color: var(--c-primary); color: var(--c-primary-ink); }
.child-areas { display: flex; flex-wrap: wrap; gap: .5rem; }

/* =========================================================
   20. Archive / list
   ========================================================= */
.archive { max-width: var(--content-max); margin-inline: auto; padding: var(--sp-6) var(--gutter) var(--sp-9); }
.archive__header { text-align: center; margin-block-end: var(--sp-7); display: grid; gap: .6rem; }
.archive__title { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
.archive__desc { color: var(--c-ink-2); font-size: .95rem; max-width: 46em; margin-inline: auto; }
.post-list { display: grid; gap: var(--sp-3); }
.post-list__item > a {
	display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: var(--sp-4);
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
	padding: var(--sp-3); text-decoration: none; color: var(--c-ink);
	transition: box-shadow .18s ease, border-color .18s ease;
}
.post-list__item > a:hover { box-shadow: var(--shadow-2); border-color: var(--c-primary); }
.post-list__item img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; border-radius: var(--r-sm); }
.post-list__title { font-size: 1rem; font-weight: 700; line-height: 1.65; }
.post-list__excerpt { font-size: .85rem; color: var(--c-ink-2); line-height: 1.85; margin-block-start: .3rem; }
.no-posts { text-align: center; color: var(--c-ink-2); padding-block: var(--sp-8); }

/* =========================================================
   21. Footer
   ========================================================= */
.site-footer { background: var(--c-navy-deep); color: #c3e4ef; margin-block-start: 0; }

/* フッターの上端：やわらかい波で抜く（ガラス・水のイメージ。建物は帯の画像で出しているので、ここは別の絵にする） */
.site-footer { position: relative; overflow: hidden; }
.site-footer::before {
	content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 46px; z-index: 0;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1200 V26 C1050 54 950 6 800 32 C650 58 550 4 400 30 C250 56 150 0 0 28 Z' fill='%23fcfaf7'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
	pointer-events: none;
}
/* ガラスに差し込む光の帯 */
.site-footer::after {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background:
		linear-gradient(112deg, transparent 0 16%, rgb(255 255 255 / .055) 16% 21%, transparent 21% 27%, rgb(255 255 255 / .075) 27% 30%, transparent 30%),
		linear-gradient(112deg, transparent 0 66%, rgb(255 255 255 / .045) 66% 73%, transparent 73%);
}
.site-footer__inner, .copyright { position: relative; z-index: 1; }
.site-footer__inner {
	max-width: 1180px; margin-inline: auto; padding: var(--sp-9) var(--gutter) var(--sp-6);
	display: grid; gap: var(--sp-7);
}
@media (min-width: 860px) { .site-footer__inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr); } }
.site-footer__brand .brand__name { color: #fff; }
.site-footer__brand img { max-height: 46px; width: auto; filter: brightness(0) invert(1); }
.site-footer__desc { font-size: .86rem; line-height: 1.9; margin-block: var(--sp-3); }
.tel-number--footer { color: #fff; font-size: 1.6rem; }
.site-footer__hours { display: block; font-size: .76rem; color: #95cadb; }
.footer-nav {
	list-style: none; margin: 0; padding: 0;
	display: grid; gap: 0 var(--sp-5);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) { .footer-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.footer-nav li { border-block-end: 1px solid rgb(255 255 255 / .12); }
.footer-nav a {
	display: block; position: relative;
	padding: .62rem .2rem .62rem 1.05rem;
	color: #d6eef6; text-decoration: none; font-size: .86rem; line-height: 1.5;
	transition: color .15s ease;
}
.footer-nav a::before {
	content: "›"; position: absolute; inset-inline-start: .15rem; inset-block-start: .58rem;
	color: var(--c-accent); font-size: 1.05em;
}
.footer-nav a:hover { color: #fff; }
.site-footer__company { grid-column: 1 / -1; border-top: 1px solid rgb(255 255 255 / .16); padding-block-start: var(--sp-5); font-size: .8rem; line-height: 1.9; }
.site-footer__company-name { font-weight: 700; color: #fff; }
.site-footer__license, .site-footer__tm { color: #95cadb; }
.copyright { text-align: center; font-size: .76rem; padding: var(--sp-4) var(--gutter); background: rgb(0 0 0 / .22); color: #95cadb; }

/* =========================================================
   22. Floating CTA / SP bar
   ========================================================= */
.floating-cta { position: fixed; inset-inline-end: 0; top: 50%; translate: 0 -50%; z-index: 55; display: none; }
@media (min-width: 1100px) { .floating-cta { display: grid; gap: 2px; } }
.floating-cta__item {
	display: grid; justify-items: center; gap: .15rem; width: 78px; padding: .7rem .4rem;
	color: #fff; text-decoration: none; font-size: .68rem; font-weight: 700; line-height: 1.35;
	border-radius: var(--r-md) 0 0 var(--r-md); box-shadow: var(--shadow-1);
	transition: translate .15s ease;
}
.floating-cta__item:hover { color: #fff; translate: -3px 0; }
.floating-cta__item--line { background: var(--c-line); }
.floating-cta__item--form { background: var(--c-accent); }
.floating-cta__icon { display: grid; place-items: center; }

.sp-bar {
	position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
	display: grid; grid-template-columns: repeat(3, 1fr);
	background: #fff; border-top: 1px solid var(--c-border);
	padding-bottom: env(safe-area-inset-bottom);
	box-shadow: 0 -4px 16px rgb(16 32 48 / .12);
}
@media (min-width: 1100px) { .sp-bar { display: none; } }
.sp-bar__item {
	display: grid; justify-items: center; gap: .1rem; padding: .5rem .25rem;
	text-decoration: none; font-size: .68rem; font-weight: 700; color: #fff; line-height: 1.3;
}
.sp-bar__item--tel  { background: var(--c-navy); }
.sp-bar__item--line { background: var(--c-line); }
.sp-bar__item--form { background: var(--c-accent); }
.sp-bar__item:hover { color: #fff; }
@media (max-width: 1099px) { body { padding-bottom: 62px; } }

/* =========================================================
   23. Forms (Contact Form 7)
   ========================================================= */
.wpcf7 { max-width: 46rem; }
.cf7-field { margin-block: 1.35rem; }
.cf7-field label {
	display: flex; align-items: center; gap: .55rem; font-weight: 700;
	font-size: .95rem; margin-block-end: .45rem;
}
.cf7-req {
	flex: none; background: var(--c-accent); color: #fff; font-size: .68rem; font-weight: 700;
	letter-spacing: .04em; padding: .12rem .5rem; border-radius: var(--r-sm); line-height: 1.6;
}
.cf7-note { display: block; margin-block-start: .35rem; font-size: .8rem; color: var(--c-ink-3); line-height: 1.7; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"],
.wpcf7 input[type="url"], .wpcf7 select, .wpcf7 textarea {
	inline-size: 100%; min-block-size: 50px; padding: .7rem .85rem;
	font-size: 16px; font-family: inherit; color: var(--c-ink);
	border: 1.5px solid var(--c-border); border-radius: var(--r-md); background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.wpcf7 textarea { min-block-size: 11rem; line-height: 1.9; }
.wpcf7 :is(input, select, textarea):focus {
	border-color: var(--c-primary); box-shadow: 0 0 0 3px var(--c-primary-bg); outline: none;
}
.wpcf7 select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--c-ink-2) 50%),
	                  linear-gradient(135deg, var(--c-ink-2) 50%, transparent 50%);
	background-position: calc(100% - 1.15rem) 1.45rem, calc(100% - .8rem) 1.45rem;
	background-size: .38rem .38rem, .38rem .38rem; background-repeat: no-repeat;
	padding-inline-end: 2.4rem;
}
.cf7-privacy {
	background: var(--c-bg-soft); border-radius: var(--r-md); padding: .9rem 1.1rem;
	font-size: .84rem; line-height: 1.8; color: var(--c-ink-2);
}
.cf7-submit { margin-block-start: 1.8rem; text-align: center; }
.wpcf7 input[type="submit"] {
	inline-size: 100%; max-inline-size: 24rem; min-block-size: 58px;
	background: linear-gradient(180deg, #f5813a, var(--c-accent-dark)); color: #fff;
	border: none; border-radius: var(--r-pill); font-size: 1.05rem; font-weight: 700;
	cursor: pointer; box-shadow: var(--shadow-1); transition: filter .15s ease, transform .15s ease;
}
.wpcf7 input[type="submit"]:hover { filter: brightness(1.05); transform: translateY(-1px); }
.wpcf7-not-valid-tip { color: #c0392b; font-size: .82rem; }
.wpcf7-response-output { border-radius: var(--r-md); padding: .85rem 1.1rem !important; }
.wpcf7-spinner { display: block; margin: .8rem auto 0; }

/* 折り返し禁止ユーティリティ（数値+単位などを割らない） */
.nb { white-space: nowrap; }
.brand__name, .head-tel__num, .tel-number { white-space: nowrap; }

/* =========================================================
   24. Utilities / print
   ========================================================= */
.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
@media print {
	.sidebar, .floating-cta, .sp-bar, .mobile-header, .cta-block,
	.site-utility, .gnav, .head-cta { display: none !important; }
	.layout { display: block; }
	body { font-size: 11pt; padding-bottom: 0; }
}

/* =========================================================
   25. LINE写真見積り（3ステップ）
   ========================================================= */
.section--quote {
	background:
		radial-gradient(1200px 400px at 15% 0%, #e9fbf0 0%, transparent 70%),
		var(--c-bg-soft);
}
.quote-lead {
	display: grid; gap: .5rem; justify-items: center; text-align: center;
	margin-block-end: var(--sp-6);
}
.quote-badge {
	display: inline-flex; align-items: center; gap: .45rem;
	background: var(--c-line); color: #fff; font-weight: 700;
	padding: .35rem 1.1rem; border-radius: var(--r-pill); font-size: .9rem;
}
.quote-steps {
	display: grid; gap: var(--sp-4);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	counter-reset: qstep;
}
.quote-step {
	position: relative; background: #fff; border: 1px solid var(--c-border);
	border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-4) var(--sp-5);
	text-align: center; display: grid; gap: .5rem; align-content: start;
}
.quote-step::before {
	counter-increment: qstep; content: "STEP " counter(qstep);
	position: absolute; top: -13px; inset-inline: 0; margin-inline: auto;
	width: max-content; padding: .15rem .9rem; border-radius: var(--r-pill);
	background: var(--c-navy); color: #fff; font-size: .7rem; font-weight: 700;
	letter-spacing: .1em; font-feature-settings: normal;
}
.quote-step__ico {
	width: 56px; height: 56px; margin-inline: auto; display: grid; place-items: center;
	border-radius: 50%; background: var(--c-primary-bg); color: var(--c-primary-ink);
}
.quote-step__title { font-size: 1.02rem; color: var(--c-navy); }
.quote-step__text { font-size: .86rem; line-height: 1.9; color: var(--c-ink-2); }
.quote-cta { text-align: center; margin-block-start: var(--sp-6); }

/* =========================================================
   26. 料金の目安カード
   ========================================================= */
.price-cards {
	display: grid; gap: var(--sp-4);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.price-card {
	background: #fff; border: 2px solid var(--c-border); border-radius: var(--r-lg);
	padding: var(--sp-5) var(--sp-4); text-align: center; display: grid; gap: .3rem;
	align-content: start;
}
.price-card__name { font-size: 1rem; font-weight: 700; color: var(--c-navy); }
.price-card__size { font-size: .78rem; color: var(--c-ink-3); }
.price-card__value {
	font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.3rem); font-weight: 700;
	color: var(--c-accent-dark); line-height: 1.3; font-feature-settings: normal;
	margin-block-start: .3rem;
}
.price-card__value small { font-size: .46em; font-weight: 700; color: var(--c-ink-2); margin-inline-start: .15em; }
.price-card__note { font-size: .78rem; color: var(--c-ink-2); line-height: 1.8; }
.price-breakdown {
	display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
	max-width: 780px; margin: var(--sp-6) auto 0;
}
.price-breakdown li {
	background: #fff; border: 1px dashed var(--c-border); border-radius: var(--r-md);
	padding: .7rem .9rem; text-align: center; font-size: .86rem; font-weight: 700; color: var(--c-ink-2);
}
.price-breakdown li span { display: block; font-size: .72rem; font-weight: 500; color: var(--c-ink-3); }
.price-foot { text-align: center; font-size: .84rem; color: var(--c-ink-2); margin-block-start: var(--sp-4); }

/* =========================================================
   27. こんな業者にご注意
   ========================================================= */
.section--caution { background: #fff; }
.caution-box {
	border: 2px solid #f0c7a6; background: var(--c-accent-bg);
	border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-5);
}
.caution-list { display: grid; gap: var(--sp-4); }
@media (min-width: 820px) { .caution-list { grid-template-columns: 1fr 1fr; } }
.caution-item {
	background: #fff; border-radius: var(--r-md); padding: var(--sp-4);
	display: grid; gap: .35rem;
}
.caution-item__ng {
	font-weight: 700; color: #c0392b; font-size: .95rem; line-height: 1.7;
	padding-inline-start: 1.7rem; position: relative;
}
.caution-item__ng::before {
	content: "×"; position: absolute; inset-inline-start: 0; top: 0;
	width: 20px; height: 20px; display: grid; place-items: center; margin-block-start: .25em;
	background: #c0392b; color: #fff; border-radius: 50%; font-size: .74rem;
}
.caution-item__ok {
	font-size: .86rem; line-height: 1.9; color: var(--c-ink-2);
	padding-inline-start: 1.7rem; position: relative;
}
.caution-item__ok::before {
	content: "○"; position: absolute; inset-inline-start: 0; top: 0;
	color: var(--c-line-dark); font-weight: 700;
}
.caution-note { margin-block-start: var(--sp-4); font-size: .86rem; color: var(--c-ink-2); text-align: center; }

/* =========================================================
   28. 保険・保証の帯
   ========================================================= */
.assure-list {
	display: grid; gap: var(--sp-3);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.assure-item {
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
	padding: var(--sp-4); display: grid; gap: .3rem; text-align: center;
}
.assure-item__ico { width: 40px; height: 40px; margin-inline: auto; color: var(--c-primary); }
.assure-item__title { font-size: .96rem; font-weight: 700; color: var(--c-navy); }
.assure-item__text { font-size: .82rem; line-height: 1.85; color: var(--c-ink-2); }

/* =========================================================
   29. バナー（CSSで描く。画像を増やさず、文言変更も即反映）
   ========================================================= */
.promo-grid {
	display: grid; gap: var(--sp-4);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.promo {
	position: relative; display: grid; gap: .3rem; align-content: center;
	min-height: 132px; padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-5);
	border-radius: var(--r-lg); overflow: hidden; text-decoration: none;
	color: #fff; isolation: isolate;
	transition: transform .18s ease, box-shadow .18s ease;
	box-shadow: var(--shadow-1);
}
.promo:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); color: #fff; }
.promo::after {
	content: ""; position: absolute; inset-block: -40%; inset-inline-end: -14%;
	width: 58%; background: rgb(255 255 255 / .10); rotate: 14deg; z-index: -1;
}
.promo__label {
	font-size: .68rem; font-weight: 700; letter-spacing: .16em;
	background: rgb(255 255 255 / .22); padding: .12rem .6rem; border-radius: var(--r-sm);
	width: max-content;
}
.promo__title {
	font-size: clamp(1.02rem, .94rem + .42vw, 1.28rem); font-weight: 700; line-height: 1.55;
	word-break: auto-phrase; line-break: strict; overflow-wrap: anywhere; text-wrap: pretty;
}
.promo__title em { font-style: normal; color: #ffd86b; }
.promo__text { font-size: .8rem; line-height: 1.75; opacity: .92; }
.promo__more {
	margin-block-start: .35rem; font-size: .78rem; font-weight: 700;
	display: inline-flex; align-items: center; gap: .3rem;
}
.promo__more::after { content: "›"; font-size: 1.15em; }
.promo__ico { position: absolute; inset-inline-end: 14px; bottom: 10px; opacity: .22; z-index: -1; }

.promo--line   { background: linear-gradient(135deg, #12c15c, #059c45); }
.promo--price  { background: linear-gradient(135deg, #1c9cc4, #0c5f7c); }
.promo--hoken  { background: linear-gradient(135deg, #f0883f, #cf5a0c); }
.promo--dannetsu { background: linear-gradient(135deg, #1f9fc4, #0b647f); }
.promo--bohan  { background: linear-gradient(135deg, #5a5fd0, #2f3488); }
.promo--partner{ background: linear-gradient(135deg, #37424f, #1b232c); }
.promo--tenpo  { background: linear-gradient(135deg, #c0468b, #7c1f56); }
.promo--case   { background: linear-gradient(135deg, #0f8a6a, #075443); }

/* サイドバー内は縦長に詰める */
.sidebar .promo { min-height: 0; padding: .9rem 1rem; border-radius: var(--r-md); }
.sidebar .promo__title { font-size: .98rem; }
.sidebar .promo__text { font-size: .74rem; }

/* =========================================================
   30. 目次 / 記事内バナー / ページャ
   ========================================================= */
.toc {
	background: var(--c-bg-soft); border: 1px solid var(--c-border);
	border-radius: var(--r-lg); padding: var(--sp-5) var(--sp-5) var(--sp-4);
	margin-block-end: var(--sp-6);
}
.toc__title {
	font-weight: 700; color: var(--c-navy); font-size: 1rem;
	padding-block-end: .6rem; margin-block-end: .6rem;
	border-bottom: 2px solid var(--c-border);
	display: flex; align-items: center; gap: .5rem;
}
.toc__title::before {
	content: ""; width: 4px; height: 1.1em; background: var(--c-accent); border-radius: 2px;
}
.toc__list { counter-reset: toc; display: grid; gap: .25rem; }
.toc__list li { counter-increment: toc; }
.toc__list a {
	display: grid; grid-template-columns: 1.9em 1fr; gap: .3rem;
	padding: .3rem 0; font-size: .92rem; line-height: 1.7;
	color: var(--c-ink); text-decoration: none;
}
.toc__list a::before {
	content: counter(toc) "."; color: var(--c-accent); font-weight: 700;
	font-feature-settings: normal;
}
.toc__list a:hover { color: var(--c-primary-ink); text-decoration: underline; }

.entry-promo { margin-block-start: var(--sp-8); }

.child-areas { margin-block-start: var(--sp-8); }
.child-areas h2 { font-size: 1.15rem; color: var(--c-navy); margin-block-end: var(--sp-4); }

.pagination { margin-block-start: var(--sp-7); }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.pagination .page-numbers {
	display: grid; place-items: center; min-width: 42px; height: 42px; padding-inline: .75rem;
	border: 1px solid var(--c-border); border-radius: var(--r-md); background: #fff;
	color: var(--c-ink); text-decoration: none; font-weight: 700; font-size: .9rem;
}
.pagination .page-numbers:hover { border-color: var(--c-primary); color: var(--c-primary-ink); }
.pagination .page-numbers.current { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }

.post-list__media { display: block; }
.post-list__media:empty { display: none; }
.post-list__item > a:has(.post-list__media:empty) { grid-template-columns: 1fr; }

/* =========================================================
   31. お客様の声（kintone アンケートが原本）
   ========================================================= */
.section--voice { background: var(--c-bg-warm); }

/* 星（小数点以下も塗り分ける） */
.stars { position: relative; display: inline-block; line-height: 1; letter-spacing: .02em; white-space: nowrap; }
.stars__base { color: #dfe4ea; }
.stars__fill {
	position: absolute; inset-block-start: 0; inset-inline-start: 0;
	inline-size: var(--fill, 0%); overflow: hidden; color: #f5a623; white-space: nowrap;
}

/* 集計帯 */
.voice-summary {
	display: grid; gap: var(--sp-5);
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
	padding: var(--sp-6) var(--sp-5);
	box-shadow: var(--shadow-1);
	margin-block-end: var(--sp-4);
}
@media (min-width: 760px) {
	.voice-summary { grid-template-columns: minmax(0, 250px) minmax(0, 1fr); align-items: center; gap: var(--sp-7); }
}
.voice-summary__lead { text-align: center; }
.voice-summary__count {
	color: var(--c-navy); font-weight: 700; line-height: 1;
	font-size: clamp(2.6rem, 2rem + 2.4vw, 3.8rem); font-feature-settings: "tnum";
}
.voice-summary__count small { font-size: .34em; margin-inline-start: .18em; }
.voice-summary__note { font-size: .82rem; color: var(--c-ink-2); line-height: 1.85; margin-block-start: .35rem; }
.voice-summary__note strong { color: var(--c-accent-dark); }

.voice-summary__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.voice-summary__list li {
	display: grid; grid-template-columns: 7.2em 1fr auto; align-items: center; gap: .6rem;
	padding-block: .42rem;
	border-block-end: 1px dashed var(--c-border);
}
.voice-summary__list li:last-child { border-block-end: 0; }
.voice-summary__label { font-size: .86rem; font-weight: 700; color: var(--c-ink-2); }
.voice-summary .stars { font-size: 1.12rem; }
.voice-summary__score {
	font-size: 1.1rem; font-weight: 700; color: var(--c-navy);
	font-feature-settings: "tnum"; min-inline-size: 2.4em; text-align: end;
}
.voice-summary__disclaimer {
	font-size: .8rem; color: var(--c-ink-2); line-height: 1.9;
	margin-block-end: var(--sp-6);
}

/* カード */
.voice-grid {
	display: grid; gap: var(--sp-4);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.voice-card {
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
	padding: var(--sp-5); display: grid; gap: .7rem; align-content: start;
	box-shadow: var(--shadow-1);
	position: relative; overflow: hidden;
}
.voice-card::before {
	content: "”"; position: absolute; inset-block-start: -.32em; inset-inline-end: .18em;
	font-size: 5.5rem; line-height: 1; color: var(--c-primary-bg); font-family: Georgia, serif;
	pointer-events: none;
}
.voice-card__head { display: grid; gap: .35rem; position: relative; }
.voice-card__stars { display: flex; align-items: center; gap: .45rem; }
.voice-card__stars .stars { font-size: 1.02rem; }
.voice-card__score { font-size: .84rem; font-weight: 700; color: var(--c-ink-3); font-feature-settings: "tnum"; }
.voice-card__title {
	font-size: 1.02rem; line-height: 1.6; color: var(--c-navy);
	word-break: auto-phrase; line-break: strict; overflow-wrap: anywhere;
}
.voice-card__body {
	font-size: .88rem; line-height: 1.95; color: var(--c-ink-2);
	white-space: pre-line;
	word-break: auto-phrase; line-break: strict; overflow-wrap: anywhere;
}
.voice-card__reason {
	font-size: .82rem; line-height: 1.85; color: var(--c-ink-2);
	background: var(--c-primary-bg); border-radius: var(--r-md);
	padding: .6rem .8rem;
}
.voice-card__reason span {
	display: block; font-size: .7rem; font-weight: 700; letter-spacing: .06em;
	color: var(--c-primary-ink); margin-block-end: .15rem;
}
.voice-card__meta {
	display: flex; flex-wrap: wrap; gap: .35rem .5rem;
	font-size: .74rem; color: var(--c-ink-3);
	border-block-start: 1px solid var(--c-border); padding-block-start: .7rem;
}
.voice-card__meta span { display: inline-flex; align-items: center; }
.voice-card__area {
	flex-basis: 100%; font-weight: 700; font-size: .8rem; color: var(--c-ink-2);
}
.voice-card__work, .voice-card__date {
	background: var(--c-bg-soft); border-radius: var(--r-sm);
	padding: .16rem .5rem;
}

/* =========================================================
   32. 5年保証
   ========================================================= */
.section--warranty { background: var(--c-navy-deep); color: #fff; }
.warranty {
	max-width: var(--content-max); margin-inline: auto;
	display: grid; gap: var(--sp-5);
}
.warranty__head { display: grid; gap: var(--sp-3); justify-items: center; text-align: center; }
.warranty__eyebrow {
	font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--c-accent-dark);
	background: var(--c-accent-bg); border: 1px solid #f6dcc4;
	padding: .34rem 1.05rem .38rem; border-radius: var(--r-pill);
	display: inline-block;
}
.warranty__badge {
	inline-size: clamp(88px, 12vw, 116px); aspect-ratio: 1;
	display: grid; place-content: center; border-radius: 50%;
	background: linear-gradient(150deg, #f5a623, var(--c-accent-dark));
	color: #fff; line-height: 1; box-shadow: 0 12px 30px rgb(239 108 26 / .35);
}
.warranty__badge strong { font-size: clamp(2.4rem, 2rem + 1.6vw, 3.2rem); font-weight: 700; }
.warranty__badge small { font-size: .9rem; font-weight: 700; margin-inline-start: .1em; }
.warranty__title {
	font-size: clamp(1.32rem, 1.05rem + 1.3vw, 2.05rem); line-height: 1.5; color: #fff;
	word-break: auto-phrase; line-break: strict;
}
.warranty__lead {
	max-width: 42em; color: #c9d8ea; font-size: .95rem; line-height: 1.95;
}
.warranty__lead strong { color: #ffd86b; }

.warranty__spec {
	margin: 0; display: grid; gap: 1px;
	background: rgb(255 255 255 / .16);
	border: 1px solid rgb(255 255 255 / .16); border-radius: var(--r-lg); overflow: hidden;
	grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 700px) { .warranty__spec { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .warranty__spec { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.warranty__spec > div {
	background: rgb(255 255 255 / .05); padding: var(--sp-4) var(--sp-4);
	display: grid; gap: .25rem; align-content: start;
}
.warranty__spec dt { font-size: .74rem; font-weight: 700; letter-spacing: .06em; color: #95cadb; }
.warranty__spec dd { margin: 0; font-size: 1rem; font-weight: 700; line-height: 1.65; color: #fff; }

.warranty__note {
	font-size: .78rem; line-height: 1.95; color: #95cadb;
	border-block-start: 1px solid rgb(255 255 255 / .14); padding-block-start: var(--sp-4);
}
.warranty__cta { display: flex; justify-content: center; }

/* =========================================================
   33. 施工前 / 施工後
   ========================================================= */
.ba {
	display: grid; gap: var(--sp-3);
	grid-template-columns: minmax(0, 1fr);
	margin-block: var(--sp-5);
}
@media (min-width: 620px) { .ba { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ba__item {
	margin: 0; position: relative;
	border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden;
	background: #fff;
}
.ba__item img {
	display: block; inline-size: 100%; block-size: auto;
	aspect-ratio: 4 / 3; object-fit: cover;
}
.ba__label {
	position: absolute; inset-block-start: 0; inset-inline-start: 0; z-index: 2;
	font-size: .76rem; font-weight: 700; letter-spacing: .08em; color: #fff;
	padding: .3rem .85rem; border-end-end-radius: var(--r-md);
}
.ba__item--before .ba__label { background: var(--c-ink-2); }
.ba__item--after  .ba__label { background: var(--c-line-dark); }
.ba__item figcaption {
	font-size: .78rem; line-height: 1.75; color: var(--c-ink-2);
	padding: .6rem .8rem; border-block-start: 1px solid var(--c-border);
}
.entry-body .ba__item img { margin: 0; }
.entry-body p.note { font-size: .78rem; color: var(--c-ink-3); line-height: 1.85; }

/* =========================================================
   34. 料金の注意表示（要確認は赤で出す）
   ========================================================= */
.price-ask {
	color: #c62828; font-weight: 700;
	display: inline-flex; align-items: baseline; gap: .35em; flex-wrap: wrap;
}
.price-ask::before {
	content: "！"; font-size: .9em;
	color: #fff; background: #c62828; border-radius: 50%;
	inline-size: 1.35em; block-size: 1.35em; display: inline-grid; place-content: center;
	font-weight: 700; line-height: 1; flex: none; align-self: center;
}
.price-ask small { display: block; inline-size: 100%; font-size: .8rem; font-weight: 500; color: var(--c-ink-2); }
.price-breakdown { font-size: .86rem; line-height: 1.9; color: var(--c-ink-2); }
.price-breakdown strong { color: var(--c-ink); font-weight: 700; }

/* =========================================================
   35. バナー（Canva 制作物）
   ========================================================= */
.gm-banner {
	margin: 0;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-1);
}
.gm-banner__img { width: 100%; height: auto; }
.gm-banner__cap {
	padding: .6rem .9rem .75rem;
	font-size: .8rem; line-height: 1.75; color: var(--c-warm-ink);
	background: var(--c-bg-warm);
}
.gm-banner__zoom { position: relative; display: block; }
.gm-banner__zoom-label {
	position: absolute; inset-block-end: .6rem; inset-inline-end: .6rem;
	background: rgb(22 32 43 / .78); color: #fff;
	font-size: .72rem; font-weight: 700; letter-spacing: .04em;
	padding: .3rem .7rem; border-radius: var(--r-pill);
	backdrop-filter: blur(2px);
}
.gm-banner--center { max-width: 620px; margin-inline: auto; margin-block-start: var(--sp-7); }
.gm-banner--wide {
	max-width: 900px; margin-inline: auto;
	margin-block: var(--sp-7) var(--sp-6); box-shadow: var(--shadow-2);
}
/* 1:1 の図版。本文幅いっぱいに伸ばすと巨大になるので上限をかける */
.gm-banner--square {
	max-width: 560px; margin-inline: auto;
	margin-block: var(--sp-7) var(--sp-6); box-shadow: var(--shadow-2);
}
/* 図版はブロック要素として扱う（inline由来の余白ズレを断つ） */
.gm-banner__img { display: block; }
.gm-banner__zoom img { display: block; }
/* 縦長の図版は途中で切って「全体を見る」に逃がす */
.gm-banner--tall { position: relative; }
.gm-banner--tall .gm-banner__zoom {
	max-height: 560px; overflow: hidden;
}
.gm-banner--tall .gm-banner__zoom::after {
	content: ""; position: absolute; inset-inline: 0; inset-block-end: 0; height: 130px;
	background: linear-gradient(to bottom, rgb(255 255 255 / 0), rgb(255 255 255 / .96));
	pointer-events: none;
}
.gm-banner--tall .gm-banner__zoom-label {
	inset-block-end: 1rem; inset-inline: 50%; transform: translateX(-50%);
	width: max-content; z-index: 1;
	background: var(--c-navy); padding: .5rem 1.4rem; font-size: .8rem;
	box-shadow: var(--shadow-2);
}
.gm-banner--tall .gm-banner__zoom:hover .gm-banner__zoom-label { background: var(--c-primary); }
.flow-figs .gm-banner { align-self: start; }

/* キャンペーン帯 ------------------------------------------------ */
.banner-strip {
	max-width: 960px; margin-inline: auto;
	padding: var(--sp-6) var(--gutter) 0;
}
.gm-banner--strip { box-shadow: var(--shadow-2); border-radius: var(--r-md); }
.banner-strip__note {
	margin-block-start: .5rem;
	font-size: .78rem; color: var(--c-ink-3); text-align: center;
}

/* 受賞（運営元セクション内） -------------------------------------- */
.maker-award {
	margin-block-start: var(--sp-7);
	display: grid; gap: var(--sp-5);
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	background: #fff; border-radius: var(--r-xl);
	padding: var(--sp-5); box-shadow: var(--shadow-1);
}
@media (min-width: 880px) {
	.maker-award { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: var(--sp-6); padding: var(--sp-6); }
}
.gm-banner--award { box-shadow: var(--shadow-2); }
.maker-award__lead {
	font-family: var(--font-serif); font-weight: 600; letter-spacing: .03em;
	font-size: clamp(1.1rem, .95rem + .7vw, 1.4rem);
	line-height: 1.6; color: var(--c-navy); margin-block-end: .7rem;
}
.maker-award__text { font-size: .93rem; line-height: 1.95; color: var(--c-ink-2); }
.maker-award__note {
	margin-block-start: .7rem; font-size: .78rem; line-height: 1.8; color: var(--c-ink-3);
}

/* 人（お問合せ・コールセンター） -------------------------------- */
.human {
	display: grid; gap: var(--sp-5);
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
	margin-block: var(--sp-7) var(--sp-6);
	padding: var(--sp-5);
	background: var(--c-bg-warm);
	border-radius: var(--r-xl);
}
@media (min-width: 860px) {
	.human { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: var(--sp-6); padding: var(--sp-6); }
}
.gm-banner--human { box-shadow: var(--shadow-2); border-radius: var(--r-lg); }
.human__body { display: grid; gap: .85rem; }
.human__lead {
	font-size: clamp(1.15rem, 1rem + .8vw, 1.5rem); font-weight: 700;
	line-height: 1.6; color: var(--c-navy);
}
.human__text { font-size: .94rem; line-height: 2; color: var(--c-ink-2); }
.human__text strong { color: var(--c-accent-dark); }
.human__sign {
	margin-block-start: .3rem; padding-block-start: .8rem;
	border-block-start: 1px dashed var(--c-border);
	font-size: .82rem; color: var(--c-ink-3);
}

/* 運営元・責任施工 ---------------------------------------------- */
.section--maker { background: var(--c-bg-soft); }
.maker {
	display: grid; gap: var(--sp-5);
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
}
@media (min-width: 900px) {
	.maker { grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: var(--sp-7); }
}
.maker__body { display: grid; gap: .9rem; }
.maker__lead {
	font-size: clamp(1.2rem, 1rem + .9vw, 1.6rem); font-weight: 700;
	line-height: 1.55; color: var(--c-navy);
}
.maker__text { font-size: .95rem; line-height: 2.05; color: var(--c-ink-2); }
.maker__facts {
	margin-block-start: .4rem; display: grid; gap: .1rem;
	background: #fff; border-radius: var(--r-md); padding: .85rem 1rem;
	box-shadow: var(--shadow-1);
}
.maker__facts li {
	display: grid; grid-template-columns: 3.6em minmax(0, 1fr); gap: .8rem;
	padding-block: .45rem; font-size: .84rem; line-height: 1.8;
}
.maker__facts li + li { border-block-start: 1px solid var(--c-border-soft); }
.maker__facts-k { font-weight: 700; color: var(--c-accent-dark); }
.maker__facts-v { color: var(--c-ink-2); }

/* 流れの図版 ---------------------------------------------------- */
.flow-figs {
	display: grid; gap: var(--sp-5);
	grid-template-columns: minmax(0, 1fr);
	margin-block-start: var(--sp-7);
}
@media (min-width: 760px) {
	.flow-figs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); }
}
.flow-figs .gm-banner { box-shadow: var(--shadow-2); }

.pc-only { display: none; }
@media (min-width: 760px) { .pc-only { display: inline; } }

/* =========================================================
   36. 手ざわり（明朝・紙・区切り）
   ========================================================= */
.human__lead,
.maker__lead,
.maker-award__lead,
.warranty__title,
.voice-summary__title {
	font-family: var(--font-serif);
	font-weight: 600;
	letter-spacing: .03em;
}

/* 紙のような、ごく薄い地の粒子 */
body::before {
	content: "";
	position: fixed; inset: 0; z-index: -1; pointer-events: none;
	opacity: .5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

/* セクション見出しの下に、手で引いたような線 */
.section__head { position: relative; }
.section__title::after {
	content: "";
	display: block; width: 46px; height: 3px; margin: .85rem auto 0;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--c-accent), #f0a45c);
	transform: rotate(-.6deg);
}

/* カードは線ではなく影で浮かせる */
.trouble-card > a,
.service-card > a,
.price-card,
.case-card > a,
.voice-card {
	border-color: var(--c-border-soft);
}
.price-card { border-radius: var(--r-lg); }

/* 数字は明朝にしない（読み違いを避ける） */
.trust-item__value,
.price-card__value,
.hero__badge-value { font-family: var(--font-num); }

/* =========================================================
   37. ヒーローのバナー / 現場の帯
   ========================================================= */
.hero__banner {
	margin: 0;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: 0 18px 40px rgb(8 24 44 / .35);
	transform: rotate(-.5deg);
}
.hero__banner img { width: 100%; height: auto; display: block; }

/* 現場の帯（実際にうかがった現場を横一列に） */
.site-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--c-navy);
}
@media (min-width: 720px) {
	.site-strip { grid-template-columns: repeat(6, 1fr); }
}
.site-strip__item { margin: 0; overflow: hidden; background: var(--c-navy-deep); }
.site-strip__item img {
	width: 100%; height: 100%; object-fit: cover;
	aspect-ratio: 4 / 3;
	transition: transform .4s ease, filter .3s ease;
	filter: saturate(.96);
}
.site-strip__item:hover img { transform: scale(1.06); filter: saturate(1.06); }
@media (min-width: 720px) {
	.site-strip__item img { aspect-ratio: 5 / 4; }
}
.site-strip__note {
	max-width: var(--content-max); margin-inline: auto;
	padding: .8rem var(--gutter) 0;
	font-size: .82rem; color: var(--c-ink-3); text-align: center;
}
.site-strip__note a { color: var(--c-primary-ink); }

/* 帯まわりの間 */
.free-band { margin-block-end: 0; }
.site-strip { margin-block-start: 0; }
.hero__visual { align-self: center; }
@media (min-width: 900px) {
	.hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; }
}

/* =========================================================
   38. サイドバーのバナー / 見出しのバッジ
   ========================================================= */
.sidebar__ads {
	display: grid; gap: var(--sp-3);
	margin-block: var(--sp-5) var(--sp-4);
}
.gm-banner--ad {
	border-radius: var(--r-md);
	box-shadow: var(--shadow-1);
	transition: transform .2s ease, box-shadow .2s ease;
}
.gm-banner--ad:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.gm-banner--ad a { display: block; }

/* 見出しの小見出しをバッジに */
.section__eyebrow {
	background: var(--c-accent-bg);
	padding: .34rem 1.05rem .38rem;
	border-radius: var(--r-pill);
	border: 1px solid #f6dcc4;
}
.section__eyebrow::before,
.section__eyebrow::after { display: none; }

/* セクションごとに色の表情を変える */
.section--price   .section__eyebrow { background: #fdf1e7; border-color: #f6dcc4; color: var(--c-accent-dark); }
.section--trouble .section__eyebrow { background: #fdecec; border-color: #f6cccc; color: #c0392b; }
.section--service .section__eyebrow { background: #e7f6fb; border-color: #c3e5f0; color: var(--c-primary-ink); }
.section--voice   .section__eyebrow { background: #e9f7ee; border-color: #c9e9d5; color: #1e7a45; }
.section--maker   .section__eyebrow { background: #eef1f7; border-color: #d3dae7; color: var(--c-navy); }
.section--area    .section__eyebrow { background: #e7f6fb; border-color: #c3e5f0; color: var(--c-primary-ink); }
.section--flow    .section__eyebrow { background: #fff6e6; border-color: #f3e0bd; color: #9a6b12; }
.section--faq     .section__eyebrow { background: #f1eff8; border-color: #ddd6ee; color: #55418f; }

.section--price   .section__title::after { background: linear-gradient(90deg, var(--c-accent), #f0a45c); }
.section--trouble .section__title::after { background: linear-gradient(90deg, #c0392b, #e8776a); }
.section--service .section__title::after { background: linear-gradient(90deg, var(--c-primary), #6fcfe8); }
.section--voice   .section__title::after { background: linear-gradient(90deg, #1e7a45, #63b585); }
.section--maker   .section__title::after { background: linear-gradient(90deg, var(--c-navy), #5fa9bd); }
.section--flow    .section__title::after { background: linear-gradient(90deg, #9a6b12, #d8ac4a); }
.section--faq     .section__title::after { background: linear-gradient(90deg, #55418f, #8f7bc9); }

/* 現場の帯：キャプション */
.site-strip__item { position: relative; }
.site-strip__item a { display: block; height: 100%; }
.site-strip__cap {
	position: absolute; inset-inline: 0; inset-block-end: 0;
	padding: .8rem .6rem .45rem;
	background: linear-gradient(to top, rgb(10 26 44 / .82), rgb(10 26 44 / 0));
	color: #fff; font-size: .68rem; line-height: 1.5;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	opacity: 0; transition: opacity .2s ease;
}
.site-strip__item:hover .site-strip__cap { opacity: 1; }
@media (max-width: 719px) { .site-strip__cap { display: none; } }

/* フッター上の帯 */
.footer-lead {
	max-width: 960px; margin-inline: auto;
	padding: var(--sp-8) var(--gutter);
}
.gm-banner--footer {
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-2);
}
.gm-banner--footer .gm-banner__img { width: 100%; }

/* =========================================================
   39. 参考施工（地域ページ）
   ========================================================= */
.ref-cases { margin-block-start: var(--sp-8); }
.ref-cases > h2 {
	font-family: var(--font-serif); font-weight: 600; letter-spacing: .03em;
	font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
	padding-inline-start: .8rem;
	border-inline-start: 5px solid var(--c-accent);
	line-height: 1.5;
}
.ref-cases__note {
	margin-block: .9rem var(--sp-5);
	font-size: .88rem; line-height: 1.95; color: var(--c-ink-2);
	background: var(--c-bg-warm); border-radius: var(--r-md);
	padding: .9rem 1.1rem;
}
.ref-cases__note strong { color: var(--c-accent-dark); }
.ref-cases .case-grid {
	display: grid; gap: var(--sp-4);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.ref-cases .case-card > a {
	display: grid; gap: .5rem; text-decoration: none; color: var(--c-ink);
	background: #fff; border-radius: var(--r-lg); overflow: hidden;
	box-shadow: var(--shadow-1); transition: box-shadow .2s ease, transform .2s ease;
	padding-block-end: .9rem;
}
.ref-cases .case-card > a:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.ref-cases .case-card__media { display: block; background: var(--c-bg-soft); }
.ref-cases .case-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ref-cases .case-card__type {
	justify-self: start; margin-inline-start: .9rem;
	font-size: .72rem; font-weight: 700; color: var(--c-primary-ink);
	background: var(--c-primary-bg); border-radius: var(--r-pill);
	padding: .22rem .7rem .26rem;
}
.ref-cases .case-card__title {
	padding-inline: .9rem; font-size: .9rem; font-weight: 700; line-height: 1.6;
}

/* =========================================================
   40. 2026-09-26 の指摘対応
   ========================================================= */
/* フッターの「運営：株式会社オンコード」がリンク色(#07718f)で背景に埋もれていた */
.site-footer__company-name a {
	color: #fff; text-decoration: underline; text-underline-offset: 3px;
	text-decoration-thickness: 1px; text-decoration-color: rgb(255 255 255 / .45);
}
.site-footer__company-name a:hover { text-decoration-color: #fff; }

/* 図版は最初から全体を表示する（「全体を見る」ボタンは廃止） */
.gm-banner--tall .gm-banner__zoom { max-height: none; overflow: visible; }
.gm-banner--tall .gm-banner__zoom::after { content: none; }
.gm-banner__zoom-label { display: none; }

/* ロゴ画像（カスタマイザーで設定したとき） */
.custom-logo{display:block;width:auto;max-width:100%;height:auto}
.mobile-header__brand .custom-logo{max-height:36px}
.sidebar__brand .custom-logo{max-height:64px}
.site-head__brand .custom-logo{max-height:52px}

/* =================================================
 * トップの新ヒーロー「パリン→ピカッ」… gmj_hero_v3()
 * 7秒で1周：0% 割れる → 22〜52% 拭き取り → 58% 代表が登場
 * ================================================= */
.hb { --hb-navy: var(--c-navy); --hb-deep: var(--c-navy-deep); --hb-acc: var(--c-accent);
	background: #fff8f1; padding: 18px 16px 26px; overflow: hidden; }
.hb__in { max-width: 1120px; margin: 0 auto; }
.hb-stage { position: relative; padding-bottom: 6px; }
.hb-pane { position: relative; aspect-ratio: 4 / 3.1; border-radius: 26px; border: 10px solid #fff; overflow: hidden; isolation: isolate;
	box-shadow: 0 0 0 2px #f1dcc8, 0 22px 40px -20px rgb(120 70 20 / .45); animation: hb-shake 7s linear infinite; }
.hb-pane__view { position: absolute; inset: 0; background: linear-gradient(180deg, #8fd6ec 0%, #c8ecf6 58%, #e9f7fb 100%); }
.hb-pane__view svg { position: absolute; inset: auto 0 0 0; width: 100%; height: auto; }
.hb-pane__broken { position: absolute; inset: 0; z-index: 2; background: rgb(210 225 232 / .35); }
.hb-pane__broken svg { position: absolute; inset: 0; width: 100%; height: 100%; transform-origin: 62% 48%; animation: hb-crack 7s ease-out infinite; }
.hb-pane__clean { position: absolute; inset: 0; z-index: 3; clip-path: inset(0 100% 0 0); animation: hb-wipe 7s ease-in-out infinite; }
.hb-pane__clean .hb-pane__view { background: linear-gradient(180deg, #6fcbe6 0%, #bfe9f5 58%, #eefafd 100%); }
.hb-snd { position: absolute; z-index: 4; left: 7%; top: 10%; font-family: "Zen Maru Gothic", var(--font-jp); font-weight: 900; line-height: 1;
	letter-spacing: .02em; font-size: clamp(40px, 12vw, 76px); text-shadow: 3px 3px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff; }
.hb-snd--pa { color: var(--hb-navy); rotate: -9deg; animation: hb-crack 7s ease-out infinite; }
.hb-snd--pk { color: var(--hb-acc); rotate: -7deg; }
.hb-glint { position: absolute; left: 78%; top: 4%; width: 9px; height: 26%; background: #fff; border-radius: 4px; transform: rotate(38deg); opacity: .9; }
.hb-spark { position: absolute; z-index: 4; width: 26px; height: 26px; }
.hb-spark::before, .hb-spark::after { content: ""; position: absolute; left: 50%; top: 0; width: 4px; height: 100%; background: #fff; border-radius: 3px; transform: translateX(-50%); }
.hb-spark::after { transform: translateX(-50%) rotate(90deg); }
.hb-spark--1 { right: 30%; top: 44%; }
.hb-spark--2 { right: 14%; top: 56%; transform: scale(.6); }
.hb-spark--3 { left: 38%; top: 30%; transform: scale(.5); }
.hb-decal { position: absolute; z-index: 4; left: 5%; bottom: 8%; width: 46%; background: #fff; border-radius: 12px; padding: 8px 12px; transform: rotate(-3deg);
	box-shadow: 0 4px 0 rgb(10 74 99 / .18), 0 10px 18px -8px rgb(10 74 99 / .45); }
.hb-decal img { display: block; width: 100%; height: auto; }
.hb-squeegee { position: absolute; z-index: 5; top: -6%; bottom: -6%; left: -20px; width: 16px; background: var(--hb-acc); border-radius: 10px;
	box-shadow: 0 0 0 3px #fff; animation: hb-sq 7s ease-in-out infinite; }
.hb-squeegee::after { content: ""; position: absolute; left: 50%; top: 50%; width: 46px; height: 16px; background: var(--hb-deep); border-radius: 8px;
	transform: translate(-50%, -50%) rotate(90deg); }


.hb-oops, .hb-staff { position: absolute; z-index: 7; bottom: -4px; margin: 0; pointer-events: none; transform-origin: bottom center; }
.hb-oops { left: -8px; width: 38%; animation: hb-oops 7s ease-in-out infinite; }
.hb-staff { right: -10px; width: 50%; animation: hb-pop 7s ease-in-out infinite; }
.hb-oops img, .hb-staff img { display: block; width: 100%; height: auto; filter: drop-shadow(0 10px 14px rgb(40 30 10 / .28)); }
.hb-staff__name { position: absolute; right: 10px; bottom: 10px; background: var(--hb-navy); color: #fff; border-radius: 6px;
	font: 700 10.5px/1.3 "Zen Maru Gothic", var(--font-jp); padding: 4px 8px; white-space: nowrap; }
.hb-oops__say, .hb-say { background: #fff; color: var(--hb-deep); border: 2.5px solid var(--hb-navy); font-family: "Zen Maru Gothic", var(--font-jp);
	font-weight: 700; box-shadow: 0 3px 0 var(--hb-navy); }
.hb-oops__say { position: absolute; left: 78%; top: 4%; white-space: nowrap; border-radius: 14px; font-size: 12.5px; line-height: 1.3; padding: 6px 10px; }
.hb-oops__say::after { content: ""; position: absolute; left: -8px; top: 12px; width: 11px; height: 11px; background: #fff;
	border-left: 2.5px solid var(--hb-navy); border-bottom: 2.5px solid var(--hb-navy); transform: rotate(45deg); }
.hb-say { position: absolute; z-index: 8; right: 46%; bottom: 44%; margin: 0; border-radius: 16px; font-size: 12.5px; line-height: 1.45; padding: 7px 11px;
	opacity: 0; animation: hb-say 7s ease-in-out infinite; }
.hb-say b { color: var(--hb-acc); }
.hb-say::after { content: ""; position: absolute; right: -9px; bottom: 14px; width: 13px; height: 13px; background: #fff;
	border-top: 2.5px solid var(--hb-navy); border-right: 2.5px solid var(--hb-navy); transform: rotate(45deg); }

@keyframes hb-crack { 0% { opacity: 0; transform: scale(1.08); } 3% { opacity: 1; transform: none; } 100% { opacity: 1; } }
@keyframes hb-shake { 0%, 1% { transform: none; } 2% { transform: translate(-5px, 2px) rotate(-.6deg); } 3% { transform: translate(5px, -2px) rotate(.5deg); } 4% { transform: translate(-3px, 1px); } 5%, 100% { transform: none; } }
@keyframes hb-wipe { 0%, 22% { clip-path: inset(0 100% 0 0); } 52%, 100% { clip-path: inset(0 0 0 0); } }
@keyframes hb-sq { 0%, 22% { left: -20px; opacity: 1; } 52% { left: calc(100% + 4px); opacity: 1; } 56%, 100% { left: calc(100% + 4px); opacity: 0; } }
@keyframes hb-oops { 0%, 3% { transform: translateY(40%) scale(.9); opacity: 0; } 9%, 30% { transform: none; opacity: 1; } 37%, 100% { transform: translateY(40%) scale(.9); opacity: 0; } }
@keyframes hb-pop { 0%, 50% { transform: translateY(40%) scale(.9); opacity: 0; } 58%, 94% { transform: none; opacity: 1; } 100% { transform: translateY(40%) scale(.9); opacity: 0; } }
@keyframes hb-say { 0%, 54% { opacity: 0; transform: translateY(6px); } 60%, 94% { opacity: 1; transform: none; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
	.hb-pane, .hb-pane__broken svg, .hb-snd--pa { animation: none; }
	.hb-pane__clean { animation: none; clip-path: none; }
	.hb-squeegee, .hb-oops { display: none; }
	.hb-staff, .hb-say { animation: none; opacity: 1; transform: none; }
}

.hb__copy { margin-top: 22px; }
.hb__kicker { display: inline-block; margin: 0 0 10px; font: 700 12px/1 "Zen Maru Gothic", var(--font-jp); letter-spacing: .08em;
	color: var(--hb-navy); background: #fff; border: 2px solid #cfe9f2; padding: 7px 11px; border-radius: 999px; }
.hb__title { font-family: "Zen Maru Gothic", var(--font-jp); font-weight: 700; color: var(--hb-deep); font-size: clamp(27px, 7.6vw, 46px);
	line-height: 1.4; margin: 0; text-wrap: initial; }
.hb__title em { font-style: normal; color: var(--hb-acc); }
.hb__u { background: linear-gradient(transparent 64%, #cdeef8 64%); }
.hb__lead { margin: 10px 0 0; font-size: 14.5px; line-height: 1.85; color: #465a63; }
.hb-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.hb-chips a { display: inline-block; text-decoration: none; color: var(--hb-navy); background: #fff; border: 2px solid #cfe9f2; border-radius: 999px;
	font: 700 13px/1 "Zen Maru Gothic", var(--font-jp); padding: 9px 14px; }
.hb-chips a::after { content: " ›"; color: var(--c-primary); }
.hb-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.hb-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; text-decoration: none;
	border-radius: 16px; padding: 12px 6px; font-family: "Zen Maru Gothic", var(--font-jp); font-weight: 700; color: #fff; box-shadow: 0 4px 0 rgb(0 0 0 / .16); }
.hb-btn:hover { color: #fff; filter: brightness(1.05); }
.hb-btn small { font-size: 10.5px; font-weight: 500; }
.hb-btn b { font-size: 19px; line-height: 1.3; }
.hb-btn--tel { background: var(--hb-acc); }
.hb-btn--line { background: #06c755; }

@media (min-width: 900px) {
	.hb { padding: 48px 32px 56px; }
	.hb__in { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
	.hb__copy { margin: 0; order: -1; }
	.hb__lead { font-size: 16px; }
	.hb-btn b { font-size: 22px; }
	.hb-say, .hb-oops__say { font-size: 15px; }
	.hb-staff__name { font-size: 12px; }
}
/* 右端の固定ボタン（かんたん見積り・お問い合わせ／幅78px）に窓が重ならないよう、右に逃げ場を作る */
@media (min-width: 1100px) {
	.hb { padding-right: 110px; }
}
@media (min-width: 900px) {
	.hb__title { font-size: clamp(30px, 2.9vw, 46px); }
}

/* ---- 新ヒーロー：最短即日スタンプ／ほかとの違い／割れたガラスの集合写真 ---- */
.hb-stamp { position: absolute; z-index: 9; left: -6px; top: -10px; margin: 0; width: 82px; height: 82px; border-radius: 50%;
	display: grid; place-content: center; text-align: center; background: var(--c-accent); color: #fff; rotate: -10deg;
	font: 900 22px/1 "Zen Maru Gothic", var(--font-jp); box-shadow: 0 0 0 3px #fff, 0 8px 16px -6px rgb(120 50 0 / .55);
	animation: hb-stamp 7s ease-in-out infinite; }
.hb-stamp small { display: block; font-size: 11px; font-weight: 700; margin: 2px 0; }
@keyframes hb-stamp { 0%, 52% { scale: 1; } 56% { scale: 1.15; } 60%, 100% { scale: 1; } }

.hb-diff { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.hb-diff li { display: grid; grid-template-columns: 38px 1fr; column-gap: 10px; align-items: center; background: #fff;
	border-radius: 14px; padding: 9px 12px; box-shadow: 0 0 0 2px #f1dcc8 inset; }
.hb-diff__ic { grid-row: span 2; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #e7f6fb; color: var(--c-primary); }
.hb-diff__ic svg { width: 22px; height: 22px; }
.hb-diff b { font: 700 15px/1.3 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.hb-diff small { font-size: 12px; line-height: 1.5; color: #5a6d75; }
.hb-chips { margin-top: 14px; }
.hb-chips a { font-size: 12.5px; padding: 8px 12px; }

.hb-wall { background: var(--c-navy-deep); color: #fff; padding: 26px 0 18px; overflow: hidden; }
.hb-wall__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding: 0 16px 14px; max-width: 1120px; margin: 0 auto; }
.hb-wall__title { margin: 0; font: 700 clamp(20px, 5.6vw, 30px)/1.4 "Zen Maru Gothic", var(--font-jp); color: #fff; }
.hb-wall__title em { font-style: normal; color: #ffb27a; }
.hb-wall__more { flex: none; font-size: 12.5px; color: #bfe9f5; text-decoration: none; }
.hb-wall__rail { overflow: hidden; padding: 5px 0; }
.hb-wall__track { display: flex; gap: 10px; width: max-content; animation: hb-wall 60s linear infinite; }
.hb-wall__track--rev { animation-direction: reverse; animation-duration: 70s; }
.hb-wall__rail:hover .hb-wall__track { animation-play-state: paused; }
@keyframes hb-wall { to { transform: translateX(calc(-50% - 5px)); } }
.hb-wall__tile { flex: none; width: 128px; height: 128px; border-radius: 10px; overflow: hidden; background: #0a4a63; }
.hb-wall__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hb-wall__note { margin: 10px auto 0; padding: 0 16px; max-width: 1120px; font-size: 11.5px; color: #9fcfdf; }
.hb-br-sp { display: inline; }
@media (prefers-reduced-motion: reduce) { .hb-stamp, .hb-wall__track { animation: none; } .hb-wall__rail { overflow-x: auto; } }
@media (min-width: 900px) {
	.hb-stamp { width: 98px; height: 98px; font-size: 27px; left: -14px; top: -16px; }
	.hb-stamp small { font-size: 12.5px; }
	.hb-diff { grid-template-columns: repeat(3, 1fr); }
	.hb-diff li { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 12px 8px; row-gap: 4px; }
	.hb-diff__ic { grid-row: auto; }
	.hb-diff small { font-size: 11.5px; }
	.hb-wall { padding: 34px 0 22px; }
	.hb-wall__head { padding: 0 32px 16px; }
	.hb-wall__tile { width: 160px; height: 160px; }
	.hb-br-sp { display: none; }
}
/* スタンプと擬音が重ならないよう、擬音を少し下げる */
.hb-snd { top: 25%; left: 8%; }
.hb-say { bottom: 30%; }

/* =================================================
 * メディア化：新しい見出しの帯（body.gmj-look2）・ガラス辞典・YouTube
 * ================================================= */
.gmj-look2 .entry__header, .gmj-look2 .archive__header {
	position: relative; overflow: hidden; background: #fff8f1; border-radius: 22px; padding: 22px 20px 20px;
	box-shadow: 0 0 0 2px #f1dcc8 inset; text-align: left; }
.gmj-look2 .entry__header::after, .gmj-look2 .archive__header::after {
	content: ""; position: absolute; right: 18px; top: 16px; width: 44px; height: 44px; opacity: .9;
	background: linear-gradient(38deg, transparent 44%, #bfe9f5 44% 52%, transparent 52% 62%, #d8f2fa 62% 67%, transparent 67%); }
.gmj-look2 .entry__meta { justify-self: start; margin: 0; font: 700 12px/1 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy);
	background: #fff; border: 2px solid #cfe9f2; border-radius: 999px; padding: 6px 11px; letter-spacing: .06em; }
.gmj-look2 .entry__title, .gmj-look2 .archive__title { font-family: "Zen Maru Gothic", var(--font-jp); font-weight: 700; color: var(--c-navy-deep);
	line-height: 1.4; padding-right: 50px; }
.gmj-look2 .entry__lead { background: #fff; border-radius: 14px; margin: 4px 0 0; }
.gmj-look2 .archive__desc { margin-inline: 0; }
.entry__reading { margin: 0; font: 700 13px/1 "Zen Maru Gothic", var(--font-jp); color: var(--c-accent); letter-spacing: .08em; }
.gmj-look2 .entry__body h2 { font-family: "Zen Maru Gothic", var(--font-jp); }

/* 辞典の一覧 */
.jiten-group { margin-block: var(--sp-6); }
.jiten-group__name { font: 700 1.15rem/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); margin: 0 0 12px;
	display: flex; align-items: center; gap: 8px; }
.jiten-group__name::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--c-accent); rotate: 45deg; }
.jiten-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); }
.jiten-card a { display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: center; height: 100%; text-decoration: none; color: inherit;
	background: #fff; border-radius: 16px; padding: 10px; box-shadow: 0 0 0 2px #e6f0f3 inset; transition: box-shadow .15s ease, translate .15s ease; }
.jiten-card a:hover { box-shadow: 0 0 0 2px var(--c-primary) inset; translate: 0 -2px; }
.jiten-card__media { display: block; aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: linear-gradient(160deg, #eefafd, #bfe9f5); }
.jiten-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jiten-card__ph { display: block; width: 100%; height: 100%;
	background: linear-gradient(38deg, transparent 40%, #fff 40% 47%, transparent 47% 56%, rgb(255 255 255 / .7) 56% 60%, transparent 60%); }
.jiten-card__body { display: grid; gap: 3px; }
.jiten-card__reading { font-size: 11px; color: var(--c-accent); font-weight: 700; letter-spacing: .06em; }
.jiten-card__title { font: 700 16px/1.35 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.jiten-card__excerpt { font-size: 12px; line-height: 1.6; color: #5a6d75; }

/* 辞典の項目ページ */
.jiten-box { background: #e7f6fb; border-radius: 16px; padding: 14px 16px; margin-block: var(--sp-4); }
.jiten-box__label { display: inline-block; font: 700 12px/1 "Zen Maru Gothic", var(--font-jp); color: #fff; background: var(--c-primary);
	border-radius: 999px; padding: 5px 10px; margin-bottom: 8px; }
.jiten-box p { margin: 0; font-weight: 500; }
.jiten-spec { width: 100%; border-collapse: collapse; }
.jiten-spec th { width: 34%; background: #f6fbfd; text-align: left; }
.jiten-video, .jiten-cases { margin-block: var(--sp-6); }
.jiten-video__title, .jiten-cases__title { font: 700 1.2rem/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); margin: 0 0 12px; }
.jiten-cases__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr)); }
.jiten-cases__grid a { display: grid; gap: 6px; text-decoration: none; color: var(--c-ink-2); font-size: 12px; line-height: 1.5; }
.jiten-cases__grid img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; display: block; }
.jiten-cases__more { margin: 12px 0 0; font-size: 14px; }

/* YouTube */
.yt { margin: var(--sp-4) 0; }
.yt__btn { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0; border-radius: 14px; overflow: hidden;
	cursor: pointer; background: #000; }
.yt__btn img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .92; }
.yt__play { position: absolute; left: 50%; top: 50%; width: 68px; height: 48px; translate: -50% -50%; border-radius: 12px; background: #f00; }
.yt__play::after { content: ""; position: absolute; left: 27px; top: 14px; border-style: solid; border-width: 10px 0 10px 17px; border-color: transparent transparent transparent #fff; }
.yt__btn:hover .yt__play { filter: brightness(1.1); }
.yt__frame { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 14px; }
.yt__cap { margin-top: 6px; font-size: 13px; color: var(--c-ink-3); }

/* 辞典の分類タブ（カプセル型。選択中の背景がすべって移動する） */
.jiten-tabs { position: sticky; top: 8px; z-index: 20; margin-block: var(--sp-5) 0; }
.jiten-tabs__list { position: relative; z-index: 1; display: flex; gap: 4px; margin: 0; padding: 5px; list-style: none; overflow-x: auto;
	scrollbar-width: none; background: rgb(255 255 255 / .92); backdrop-filter: blur(6px); border-radius: 999px; box-shadow: 0 0 0 2px #e6f0f3 inset, 0 6px 16px -10px rgb(14 85 115 / .4); }
.jiten-tabs__list::-webkit-scrollbar { display: none; }
.jiten-tabs__tab { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; text-decoration: none;
	padding: 9px 14px; border-radius: 999px; font: 700 13px/1 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy); transition: color .25s ease; }
.jiten-tabs__tab small { font-size: 11px; color: var(--c-ink-3); transition: color .25s ease; }
.jiten-tabs__tab.is-active, .jiten-tabs__tab.is-active small { color: #fff; }
.jiten-tabs__pill { position: absolute; z-index: 1; left: 0; top: 5px; height: calc(100% - 10px); width: 0; border-radius: 999px;
	background: var(--c-primary); transition: transform .35s cubic-bezier(.3, .7, .2, 1), width .35s cubic-bezier(.3, .7, .2, 1); pointer-events: none; }
.jiten-tabs__list { isolation: isolate; }
.jiten-group { scroll-margin-top: 80px; }
@media (prefers-reduced-motion: reduce) { .jiten-tabs__pill { transition: none; } }

/* =================================================
 * 割れる原因・対策（/wareru/ とシリーズ記事） v2.9.0
 * 見分け：カード型のラジオ（21st.dev の Radio Card Group を参考に CSS だけで作り直し）
 * 記事一覧：ベントーグリッド（21st.dev の Bento Grid を参考に作り直し）
 * ================================================= */
.wr-h2 { font: 700 clamp(20px, 2.2vw, 26px)/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); margin: 0 0 8px; }
.wr-note { color: var(--c-ink-2); margin: 0 0 16px; font-size: 15px; }
.wr-diag, .wr-list, .wr-prevent { margin: 40px 0 0; }

.wr-diag__box { position: relative; display: grid; gap: 16px; background: var(--c-primary-bg); border-radius: 22px; padding: 16px; }
@media (min-width: 900px) { .wr-diag__box { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); padding: 22px; gap: 22px; align-items: start; } }
.wr-diag__radio { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.wr-diag__choices { display: grid; gap: 8px; }
.wr-diag__choice { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; background: #fff; border: 2px solid transparent; border-radius: 14px;
	padding: 12px 14px; font-weight: 700; line-height: 1.5; cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
.wr-diag__choice:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(15, 95, 125, .10); }
.wr-diag__num { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--c-primary-bg); color: var(--c-primary-ink);
	font: 700 14px/1 "Zen Maru Gothic", var(--font-jp); transition: background .2s, color .2s; }
.wr-diag__ans { display: none; background: #fff; border-radius: 16px; padding: 18px 20px; box-shadow: 0 6px 22px rgba(15, 95, 125, .10); }
.wr-diag__ans p { margin: 0 0 10px; }
.wr-diag__a { font: 700 19px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-accent-dark); }
.wr-diag__go { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.wr-diag__go a { display: block; background: var(--c-navy); color: #fff; border-radius: 999px; padding: 10px 16px; font-weight: 700; text-decoration: none; }
.wr-diag__go a:hover { background: var(--c-navy-deep); }
@keyframes wr-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
#wr-q0:checked ~ .wr-diag__choices [for="wr-q0"] { border-color: var(--c-primary); box-shadow: 0 4px 14px rgba(10, 138, 179, .18); }
#wr-q0:checked ~ .wr-diag__choices [for="wr-q0"] .wr-diag__num { background: var(--c-primary); color: #fff; }
#wr-q0:focus-visible ~ .wr-diag__choices [for="wr-q0"] { outline: 3px solid var(--c-accent); outline-offset: 2px; }
#wr-q0:checked ~ .wr-diag__answers .wr-diag__ans--0 { display: block; animation: wr-in .35s ease both; }
#wr-q1:checked ~ .wr-diag__choices [for="wr-q1"] { border-color: var(--c-primary); box-shadow: 0 4px 14px rgba(10, 138, 179, .18); }
#wr-q1:checked ~ .wr-diag__choices [for="wr-q1"] .wr-diag__num { background: var(--c-primary); color: #fff; }
#wr-q1:focus-visible ~ .wr-diag__choices [for="wr-q1"] { outline: 3px solid var(--c-accent); outline-offset: 2px; }
#wr-q1:checked ~ .wr-diag__answers .wr-diag__ans--1 { display: block; animation: wr-in .35s ease both; }
#wr-q2:checked ~ .wr-diag__choices [for="wr-q2"] { border-color: var(--c-primary); box-shadow: 0 4px 14px rgba(10, 138, 179, .18); }
#wr-q2:checked ~ .wr-diag__choices [for="wr-q2"] .wr-diag__num { background: var(--c-primary); color: #fff; }
#wr-q2:focus-visible ~ .wr-diag__choices [for="wr-q2"] { outline: 3px solid var(--c-accent); outline-offset: 2px; }
#wr-q2:checked ~ .wr-diag__answers .wr-diag__ans--2 { display: block; animation: wr-in .35s ease both; }
#wr-q3:checked ~ .wr-diag__choices [for="wr-q3"] { border-color: var(--c-primary); box-shadow: 0 4px 14px rgba(10, 138, 179, .18); }
#wr-q3:checked ~ .wr-diag__choices [for="wr-q3"] .wr-diag__num { background: var(--c-primary); color: #fff; }
#wr-q3:focus-visible ~ .wr-diag__choices [for="wr-q3"] { outline: 3px solid var(--c-accent); outline-offset: 2px; }
#wr-q3:checked ~ .wr-diag__answers .wr-diag__ans--3 { display: block; animation: wr-in .35s ease both; }
#wr-q4:checked ~ .wr-diag__choices [for="wr-q4"] { border-color: var(--c-primary); box-shadow: 0 4px 14px rgba(10, 138, 179, .18); }
#wr-q4:checked ~ .wr-diag__choices [for="wr-q4"] .wr-diag__num { background: var(--c-primary); color: #fff; }
#wr-q4:focus-visible ~ .wr-diag__choices [for="wr-q4"] { outline: 3px solid var(--c-accent); outline-offset: 2px; }
#wr-q4:checked ~ .wr-diag__answers .wr-diag__ans--4 { display: block; animation: wr-in .35s ease both; }

@media (min-width: 900px) { .wr-diag__answers { position: sticky; top: 90px; } }
@media (prefers-reduced-motion: reduce) { .wr-diag__ans, .wr-diag__choice { animation: none !important; transition: none; } }

.wr-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .wr-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } .wr-card:first-child { grid-column: span 2; grid-row: span 2; } }
.wr-card a { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 18px; overflow: hidden;
	text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.wr-card a:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(15, 95, 125, .14); }
.wr-card__img { display: block; aspect-ratio: 4 / 3; background: var(--c-bg-soft); overflow: hidden; }
.wr-card:first-child .wr-card__img { aspect-ratio: auto; flex: 1; min-height: 200px; }
.wr-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wr-card__body { display: grid; gap: 4px; padding: 12px 14px 14px; }
.wr-card__title { font: 700 15px/1.5 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.wr-card:first-child .wr-card__title { font-size: 18px; }
.wr-card__text { font-size: 13px; color: var(--c-ink-2); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.wr-chips { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.wr-chips a { display: grid; gap: 2px; background: var(--c-bg-warm); border-radius: 14px; padding: 12px 16px; text-decoration: none; color: inherit; transition: box-shadow .2s; }
.wr-chips a:hover { box-shadow: 0 0 0 2px var(--c-accent) inset; }
.wr-chips strong { font: 700 15px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.wr-chips span { font-size: 13px; color: var(--c-warm-ink); }

/* 記事の最後のシリーズ目次 */
.wr-series { margin: 40px 0 0; background: var(--c-primary-bg); border-radius: 20px; padding: 20px 22px; }
.wr-series__kicker { margin: 0; font: 700 12px/1 "Zen Maru Gothic", var(--font-jp); color: var(--c-primary-ink); letter-spacing: .08em; }
.wr-series__title { margin: 6px 0 12px; font: 700 20px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); border: 0; padding: 0; }
.wr-series__list { margin: 0; padding: 0; list-style: none; counter-reset: wr; display: grid; gap: 6px; }
.wr-series__list li { counter-increment: wr; }
.wr-series__list a { display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: center; background: #fff; border-radius: 12px; padding: 9px 12px; text-decoration: none; color: var(--c-ink); font-weight: 500; }
.wr-series__list a::before { content: counter(wr); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--c-primary-bg); color: var(--c-primary-ink); font-weight: 700; font-size: 13px; }
.wr-series__list .is-current a { box-shadow: 0 0 0 2px var(--c-primary) inset; font-weight: 700; }
.wr-series__list .is-current a::before { background: var(--c-primary); color: #fff; }
.wr-series__hub { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--c-primary-ink); }

/* 記事中の「ひとことで言うと」と写真 */
.wr-box { background: var(--c-bg-warm); border-radius: 16px; padding: 16px 18px; margin: 0 0 24px; }
.wr-box__label { display: inline-block; font: 700 12px/1 "Zen Maru Gothic", var(--font-jp); color: #fff; background: var(--c-accent); border-radius: 999px; padding: 5px 10px; margin-bottom: 8px; }
.wr-box p { margin: 0; }
.entry__body .wr-fig { margin: 20px auto; max-width: 520px; }
.entry__body .wr-fig img { width: 100%; height: auto; border-radius: 14px; display: block; }
.entry__body .wr-fig figcaption { font-size: 13px; color: var(--c-ink-3); margin-top: 6px; text-align: center; }

/* 割れる原因・対策：動画（v2.9.1） */
.wr-videos { margin: 40px 0 0; }
.wr-videos__grid { display: grid; gap: 18px; }
@media (min-width: 900px) { .wr-videos__grid { grid-template-columns: 1fr 1fr; } }
.wr-video { background: #fff; border: 1px solid var(--c-border-soft); border-radius: 18px; padding: 12px 12px 14px; }
.wr-video .yt { margin: 0 0 8px; }
.wr-video p { margin: 0; font-size: 14px; color: var(--c-ink-2); line-height: 1.7; }
.entry__body .yt { max-width: 640px; margin: 18px auto; }

/* =================================================
 * 動画ページ /movie/（v2.10.0）
 * 21st.dev の Media Carousel を参考に、scroll-snap の横列で作り直し
 * ================================================= */
.mv-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 8px; }
.mv-nav a { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--c-border); border-radius: 999px; padding: 8px 14px;
	font: 700 14px/1.2 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); text-decoration: none; transition: border-color .2s, background .2s; }
.mv-nav a:hover { border-color: var(--c-primary); background: var(--c-primary-bg); }
.mv-nav span { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--c-primary-bg); color: var(--c-primary-ink); font-size: 12px; }
.mv-sec { margin: 36px 0 0; scroll-margin-top: 90px; }
.mv-row { list-style: none; margin: 0 -16px; padding: 4px 16px 14px; display: grid; grid-auto-flow: column; grid-auto-columns: 82%; gap: 14px;
	overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: thin; }
@media (min-width: 700px) { .mv-row { grid-auto-columns: 46%; } }
@media (min-width: 1100px) { .mv-row { margin: 0; padding: 4px 0 14px; grid-auto-flow: row; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; } }
.mv-card { scroll-snap-align: start; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 18px; padding: 10px 10px 14px; }
.mv-card .yt { margin: 0; }
.mv-card .yt__cap { font: 700 15px/1.5 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.mv-card__meta { margin: 6px 4px 0; }
.mv-card__len { display: inline-block; font-size: 12px; font-weight: 700; color: var(--c-warm-ink); background: var(--c-bg-warm); border-radius: 999px; padding: 3px 10px; }
.mv-card__text { margin: 6px 4px 0; font-size: 14px; line-height: 1.7; color: var(--c-ink-2); }
.mv-more { margin: 32px 0 0; color: var(--c-ink-2); }

/* =================================================
 * メディア掲載 /media/（v2.10.0）
 * 21st.dev の Timeline を参考に作り直し
 * ================================================= */
.md-tv, .md-press, .md-yt { margin: 40px 0 0; }
.md-tv__grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .md-tv__grid { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.md-tv__card { background: #fff; border: 1px solid var(--c-border-soft); border-radius: 20px; padding: 18px 20px; }
.md-tv__card--news { background: var(--c-primary-bg); border-color: transparent; }
.md-tv__card p { margin: 0 0 10px; }
.md-tv__label { display: inline-block; font: 700 12px/1 "Zen Maru Gothic", var(--font-jp); color: #fff; background: var(--c-accent); border-radius: 999px; padding: 5px 10px; }
.md-tv__title { font: 700 18px/1.5 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); margin: 4px 0 10px; }
.md-tv__list { list-style: none; margin: 0 0 12px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
@media (min-width: 700px) { .md-tv__list { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); } }
.md-tv__list li { background: #fff; border-radius: 10px; padding: 8px 10px; font-weight: 700; font-size: 14px; line-height: 1.4; }
.md-tv__list span { display: block; font-size: 11px; font-weight: 500; color: var(--c-ink-3); }
.md-tv__img { display: block; width: 100%; height: auto; border-radius: 12px; margin: 0 0 10px; }
.md-tl { list-style: none; margin: 0; padding: 0 0 0 22px; position: relative; }
.md-tl::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--c-primary), var(--c-primary-bg)); }
.md-tl__item { position: relative; padding: 0 0 28px 14px; }
.md-tl__item::before { content: ""; position: absolute; left: -21px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--c-primary); }
.md-tl__date { margin: 0 0 6px; font: 700 16px/1.3 "Zen Maru Gothic", var(--font-jp); color: var(--c-primary-ink); }
.md-tl__date span { margin-left: 8px; font-size: 12px; color: var(--c-warm-ink); background: var(--c-bg-warm); border-radius: 999px; padding: 3px 9px; vertical-align: 2px; }
.md-tl__body { background: #fff; border: 1px solid var(--c-border-soft); border-radius: 16px; padding: 14px 16px; }
.md-tl__title { margin: 0 0 10px; font: 700 16px/1.6 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.md-tl__imgs { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; overflow-x: auto; }
.md-tl__imgs a { display: block; width: 110px; border-radius: 8px; overflow: hidden; border: 1px solid var(--c-border); transition: transform .2s; }
.md-tl__imgs a:hover { transform: translateY(-2px); }
.md-tl__imgs img { display: block; width: 100%; height: 150px; object-fit: cover; object-position: top; }
.md-yt__box { display: grid; gap: 14px; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 20px; padding: 14px; }
@media (min-width: 900px) { .md-yt__box { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.md-yt__box .yt { margin: 0; }
.md-yt__box p { margin: 0; color: var(--c-ink-2); }
.entry__body .wr-fig--s { max-width: 300px; }

/* 5年保証 /warranty/（v2.13.0） */
.wt-hero { display: grid; gap: 18px; align-items: center; margin: 28px 0 0; background: linear-gradient(135deg, var(--c-primary-bg), #fff); border-radius: 24px; padding: 22px; }
@media (min-width: 800px) { .wt-hero { grid-template-columns: 200px 1fr; padding: 28px 32px; } }
.wt-hero__badge { justify-self: center; display: grid; place-items: center; width: 180px; height: 180px; border-radius: 50%; background: var(--c-navy); color: #fff;
	box-shadow: 0 0 0 8px #fff, 0 0 0 11px var(--c-accent); text-align: center; line-height: 1; }
.wt-hero__num { font: 900 88px/1 "Zen Maru Gothic", var(--font-jp); }
.wt-hero__unit { font: 700 20px/1 "Zen Maru Gothic", var(--font-jp); margin-top: -30px; }
.wt-hero__text { margin: 0; font-size: 18px; line-height: 1.9; color: var(--c-ink); }
.wt-hero__text strong { color: var(--c-accent-dark); }
.wt-sec { margin: 40px 0 0; }
.wt-terms { margin: 0; display: grid; gap: 8px; }
.wt-terms div { display: grid; grid-template-columns: 9em 1fr; gap: 12px; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 14px; padding: 14px 18px; }
.wt-terms dt { font: 700 15px/1.6 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.wt-terms dd { margin: 0; font-weight: 700; }
.wt-steps { margin: 0; padding: 0; list-style: none; counter-reset: wt; display: grid; gap: 10px; }
.wt-steps li { counter-increment: wt; display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 14px; padding: 14px 16px; }
.wt-steps li::before { content: counter(wt); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--c-primary); color: #fff; font-weight: 700; }
.entry__body .wr-fig--w { max-width: 760px; }

/* =================================================
 * リニューアル案（?look=3）v2.14.0 ／ 5サイト共通部品の見本
 * 相談の入口：21st.dev の CTA with Avatar、読みもの：Bento Grid、辞典：Category Cards を参考に作り直し
 * ================================================= */
.l3 { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.l3-sec { margin: 56px 0 0; }
.l3-head { display: flex; flex-wrap: wrap; align-items: end; gap: 6px 16px; margin: 0 0 16px; }
.l3-kicker { width: 100%; margin: 0; font: 700 13px/1 "Zen Maru Gothic", var(--font-jp); color: var(--c-accent-dark); letter-spacing: .08em; }
.l3-title { margin: 0; font: 700 clamp(22px, 2.6vw, 30px)/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.l3-more { margin-left: auto; font-weight: 700; color: var(--c-primary-ink); text-decoration: none; }
.l3-note { color: var(--c-ink-2); font-size: 14px; margin: 10px 0 0; }
.l3-diag__chips { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.l3-diag__chips a { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; background: #fff; border: 2px solid var(--c-primary-bg); border-radius: 16px; padding: 14px; font-weight: 700; color: var(--c-ink); text-decoration: none; transition: border-color .2s, transform .2s; }
.l3-diag__chips a:hover { border-color: var(--c-primary); transform: translateY(-2px); }
.l3-diag__chips span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--c-primary); color: #fff; font-size: 14px; }
.l3-read__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .l3-read__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } .l3-card--big { grid-column: span 2; grid-row: span 2; } }
@media (max-width: 899px) { .l3-card--big { grid-column: span 2; } }
.l3-card a { display: flex; flex-direction: column; height: 100%; background: #fff; border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: 0 1px 0 var(--c-border-soft); transition: transform .2s, box-shadow .2s; }
.l3-card a:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15, 95, 125, .14); }
.l3-card__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-bg-soft); }
.l3-card--big .l3-card__img { aspect-ratio: auto; flex: 1; min-height: 240px; }
.l3-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.l3-card__body { display: grid; gap: 4px; padding: 12px 14px 16px; }
.l3-card__by { font-size: 11px; font-weight: 700; color: var(--c-primary-ink); }
.l3-card__title { font: 700 15px/1.5 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.l3-card--big .l3-card__title { font-size: 20px; }
.l3-jiten__band { position: relative; border-radius: 24px; padding: 40px 28px 56px; background: var(--c-navy) center / cover no-repeat; color: #fff; overflow: hidden; }
.l3-jiten__band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 85, 115, .92), rgba(14, 85, 115, .35)); }
.l3-jiten__band > * { position: relative; }
.l3-jiten__band .l3-title, .l3-jiten__band .l3-kicker { color: #fff; }
.l3-jiten__cats { list-style: none; margin: -30px 16px 0; padding: 0; position: relative; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.l3-jiten__cats a { display: grid; gap: 2px; background: #fff; border-radius: 16px; padding: 14px 16px; box-shadow: 0 8px 22px rgba(15, 95, 125, .12); text-decoration: none; color: inherit; }
.l3-jiten__cats strong { font: 700 16px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.l3-jiten__cats span { font-size: 12px; color: var(--c-ink-3); }
.gmj-look3.home .section--quote, .gmj-look3.home .section--trouble, .gmj-look3.home .section--case, .gmj-look3.home .section--promo,
.gmj-look3.home .section--caution, .gmj-look3.home .section--assure, .gmj-look3.home .section--maker { display: none; }

/* 共通部品：相談の入口 */
.gc { display: grid; gap: 18px; align-items: center; margin: 48px auto 0; max-width: 1120px; background: linear-gradient(135deg, #fff, var(--c-primary-bg)); border: 1px solid var(--c-border-soft); border-radius: 28px; padding: 24px; }
@media (min-width: 860px) { .gc { grid-template-columns: 190px 1fr; padding: 28px 36px; } }
.gc__who { display: grid; justify-items: center; gap: 6px; }
.gc__photo { display: block; width: 150px; height: 150px; border-radius: 50%; overflow: hidden; background: var(--c-primary-bg); box-shadow: 0 0 0 6px #fff, 0 0 0 8px var(--c-primary); }
.gc__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gc__name { margin: 0; font-size: 12px; font-weight: 700; color: var(--c-navy); }
.gc__title { margin: 0 0 6px; font: 700 clamp(20px, 2.2vw, 26px)/1.45 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); border: 0; padding: 0; }
.gc__lead { margin: 0 0 10px; color: var(--c-ink-2); }
.gc__points { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.gc__points li { background: #fff; border: 1px solid var(--c-accent); color: var(--c-accent-dark); border-radius: 999px; padding: 4px 12px; font-size: 13px; font-weight: 700; }
.gc__actions { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .gc__actions { grid-template-columns: 1.2fr 1.2fr 1fr; } }
.gc__btn { display: grid; gap: 2px; text-align: center; border-radius: 16px; padding: 12px 10px; color: #fff; text-decoration: none; font: 700 19px/1.2 "Zen Maru Gothic", var(--font-jp); transition: transform .15s, filter .15s; }
.gc__btn:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.gc__btn small { font: 700 12px/1.2 var(--font-jp); opacity: .92; }
.gc__btn--line { background: var(--c-line); }
.gc__btn--tel { background: var(--c-accent); }
.gc__btn--form { background: var(--c-navy); }

/* 共通部品：編集部の名義 */
.gb { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; margin: 8px 0 0; font-size: 13px; color: var(--c-ink-2); }
.gb__who { font-weight: 700; color: var(--c-navy); }
.gb__who::before { content: "✎ "; color: var(--c-primary); }

/* 共通部品：施工事例カード */
.gcase { margin: 40px 0 0; }
.gcase__title { font: 700 20px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); margin: 0 0 12px; border: 0; padding: 0; }
.l3 .gcase__title { font-size: clamp(22px, 2.6vw, 30px); }
.gcase__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.gcase__card a { display: grid; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s; }
.gcase__card a:hover { transform: translateY(-2px); }
.gcase__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.gcase__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gcase__type { margin: 10px 12px 0; justify-self: start; font-size: 11px; font-weight: 700; color: var(--c-primary-ink); background: var(--c-primary-bg); border-radius: 999px; padding: 3px 9px; }
.gcase__name { margin: 6px 12px 12px; font-size: 13px; line-height: 1.5; font-weight: 700; }
.gcase__more { margin: 10px 0 0; text-align: right; font-weight: 700; }

/* 共通部品：辞典の「できること・できないこと」 */
.gcan { margin: 36px 0 0; }
.gcan__title { font: 700 20px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); margin: 0 0 12px; border: 0; padding: 0; }
.gcan__grid { display: grid; gap: 10px; }
@media (min-width: 700px) { .gcan__grid { grid-template-columns: 1fr 1fr; } }
.gcan__grid > div { border-radius: 16px; padding: 14px 16px; }
.gcan__grid p { margin: 0; }
.gcan__can { background: var(--c-primary-bg); }
.gcan__cannot { background: var(--c-bg-soft); }
.gcan__label { font: 700 13px/1 "Zen Maru Gothic", var(--font-jp) !important; margin: 0 0 8px !important; }
.gcan__can .gcan__label { color: var(--c-primary-ink); }
.gcan__cannot .gcan__label { color: var(--c-warm-ink); }

/* 共通部品の見本ページ /design-kit/ */
.kit-sec { margin: 36px 0 0; }
.kit-code { margin: 10px 0 0; font: 12px/1.6 ui-monospace, Consolas, monospace; background: #f3f5f7; border-radius: 10px; padding: 8px 12px; color: #33414e; overflow-x: auto; }
.kit-flow { margin: 0; padding: 0; list-style: none; counter-reset: kf; display: grid; gap: 6px; }
.kit-flow li { counter-increment: kf; display: grid; grid-template-columns: 32px 9em 1fr; gap: 10px; align-items: center; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 12px; padding: 10px 12px; font-size: 14px; }
.kit-flow li::before { content: counter(kf); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--c-primary); color: #fff; font-weight: 700; }
@media (max-width: 600px) { .kit-flow li { grid-template-columns: 32px 1fr; } .kit-flow li strong { grid-column: 2; } .kit-flow li { font-size: 13px; } }
.kit-narrow { max-width: 560px; }
.kit-colors { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.kit-colors li { color: #fff; border-radius: 12px; padding: 18px 12px; font-weight: 700; font-size: 13px; }

/* =================================================
 * 共通部品「選ぶと目安の合計 → 写真と一緒に送る」（全体方針 6-5）v2.15.0
 * 21st.dev の Pricing Calculator・Sticky Bottom Bar を参考に作り直し
 * ================================================= */
.est { max-width: 980px; margin: 8px auto 40px; background: #fff; border: 2px solid var(--c-primary-bg); border-radius: 28px; padding: 22px; box-shadow: 0 10px 30px rgba(15, 95, 125, .08); }
@media (min-width: 800px) { .est { padding: 30px 34px; } }
.est__kicker { margin: 0; font: 700 13px/1 "Zen Maru Gothic", var(--font-jp); color: var(--c-accent-dark); letter-spacing: .06em; }
.est__title { margin: 6px 0 8px; font: 700 clamp(21px, 2.4vw, 28px)/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); border: 0; padding: 0; }
.est__lead { margin: 0 0 16px; color: var(--c-ink-2); }
.est__area { display: flex; flex-wrap: wrap; gap: 8px 16px; border: 0; margin: 0 0 14px; padding: 12px 14px; background: var(--c-bg-warm); border-radius: 14px; }
.est__area legend { float: left; margin-right: 8px; font-weight: 700; color: var(--c-navy); padding: 0; }
.est__area label { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; cursor: pointer; }
.est__rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; counter-reset: er; }
.est-row { counter-increment: er; position: relative; display: grid; gap: 8px 12px; background: var(--c-primary-bg); border-radius: 18px; padding: 14px 44px 14px 14px; }
@media (min-width: 800px) { .est-row { grid-template-columns: 1.4fr 1.4fr auto 9em; align-items: end; } }
.est-row__f { display: grid; gap: 4px; margin: 0; }
.est-row__f > span { font-size: 12px; font-weight: 700; color: var(--c-navy); }
.est-row select { width: 100%; min-height: 44px; border: 1px solid var(--c-border); border-radius: 12px; padding: 6px 10px; background: #fff; font-size: 15px; }
.est-row__num { display: inline-grid; grid-template-columns: 40px 56px 40px; border: 1px solid var(--c-border); border-radius: 12px; overflow: hidden; background: #fff; }
.est-row__num button { border: 0; background: #fff; font-size: 20px; font-weight: 700; color: var(--c-primary-ink); cursor: pointer; min-height: 44px; }
.est-row__num input { border: 0; border-inline: 1px solid var(--c-border); text-align: center; font-size: 16px; font-weight: 700; -moz-appearance: textfield; }
.est-row__num input::-webkit-inner-spin-button { -webkit-appearance: none; }
.est-row__price { margin: 0; text-align: right; font: 700 18px/1.3 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); align-self: center; }
.est-row__del { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; border-radius: 50%; border: 0; background: #fff; color: var(--c-ink-3); font-size: 16px; cursor: pointer; }
.est__add { margin: 10px 0 0; border: 2px dashed var(--c-primary); background: #fff; color: var(--c-primary-ink); border-radius: 14px; padding: 10px 16px; font-weight: 700; cursor: pointer; width: 100%; }
.est__result { margin: 18px 0 0; text-align: center; background: linear-gradient(135deg, var(--c-navy), var(--c-primary)); color: #fff; border-radius: 20px; padding: 18px 16px; }
.est__total-label { margin: 0; font-weight: 700; font-size: 14px; opacity: .9; }
.est__total { margin: 4px 0 8px; font: 900 clamp(30px, 4vw, 42px)/1.2 "Zen Maru Gothic", var(--font-jp); }
.est__note { margin: 0 auto; max-width: 720px; font-size: 12px; line-height: 1.7; opacity: .92; text-align: left; }
.est__send { margin: 22px 0 0; }
.est__send-title { margin: 0 0 10px; font: 700 18px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.est__send-grid { display: grid; gap: 10px; }
@media (min-width: 700px) { .est__send-grid { grid-template-columns: 1fr 1fr; } }
.est__way { border-radius: 18px; padding: 14px 16px; }
.est__way p { margin: 0 0 10px; font-size: 14px; }
.est__way--line { background: #eafaf0; }
.est__way--form { background: var(--c-bg-warm); }
.est__way-name { font: 700 16px/1.3 "Zen Maru Gothic", var(--font-jp) !important; color: var(--c-navy-deep); }
.est__btn { display: block; width: 100%; text-align: center; border: 0; border-radius: 14px; padding: 13px 10px; font: 700 17px/1.2 "Zen Maru Gothic", var(--font-jp); color: #fff; text-decoration: none; cursor: pointer; }
.est__btn--line { background: var(--c-line); }
.est__btn--form { background: var(--c-navy); }
.est__btn:hover { filter: brightness(1.06); color: #fff; }
.est__copied { color: var(--c-line-dark); font-weight: 700; }
.est__shots { margin: 12px 0 0; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 16px; padding: 12px 16px; font-size: 14px; }
.est__shots-title { margin: 0 0 6px; font-weight: 700; color: var(--c-accent-dark); }
.est__shots ol { margin: 0 0 6px 1.2em; padding: 0; }
.est__shots p { margin: 0; color: var(--c-ink-2); }
.est__form { margin: 20px 0 0; padding: 18px; background: var(--c-bg-warm); border-radius: 18px; }
.est__form input[type=file] { width: 100%; padding: 10px; background: #fff; border: 1px dashed var(--c-primary); border-radius: 12px; }
/* 画面下の帯（選んだ内容と目安の合計を出し続ける） */
.est-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px); box-shadow: 0 -6px 20px rgba(15, 95, 125, .15); }
.est-bar[hidden] { display: none; }
.est-bar__info { display: grid; line-height: 1.2; }
.est-bar__items { font-size: 11px; color: var(--c-ink-3); font-weight: 700; }
.est-bar__total { font: 900 20px/1.2 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.est-bar__btn { border-radius: 12px; padding: 10px 14px; color: #fff; font-weight: 700; text-decoration: none; font-size: 14px; }
.est-bar__btn--line { background: var(--c-line); }
.est-bar__btn--form { background: var(--c-navy); }
@media (min-width: 900px) { .est-bar { left: 50%; right: auto; bottom: 16px; transform: translateX(-50%); width: min(720px, 92vw); border-radius: 18px; } }
.has-est .sp-bar { display: none !important; }
.has-est .site-footer { padding-bottom: 80px; }
.entry__body .est .est__title, .entry__body .est .est__send-title { background: none; border: 0; padding: 0; box-shadow: none; }
.entry__body .est .est__title::before, .entry__body .est .est__title::after, .entry__body .est .est__send-title::before { display: none; }

/* 現場の記録（6-6）v2.16.0 */
.gk-lead { background: var(--c-bg-warm); border-radius: 16px; padding: 14px 18px; margin: 0 0 20px; }
.gk-lead p { margin: 0; }
.gk-facts { display: grid; grid-template-columns: 8em 1fr; gap: 0; margin: 12px 0 20px; border: 1px solid var(--c-border-soft); border-radius: 14px; overflow: hidden; background: #fff; }
.gk-facts dt, .gk-facts dd { margin: 0; padding: 10px 14px; border-bottom: 1px solid var(--c-border-soft); font-size: 14px; }
.gk-facts dt { background: var(--c-primary-bg); font-weight: 700; color: var(--c-navy); }
.gk-facts dt:last-of-type, .gk-facts dd:last-of-type { border-bottom: 0; }
.gk-pair { display: grid; gap: 10px; margin: 16px 0; }
@media (min-width: 640px) { .gk-pair { grid-template-columns: 1fr 1fr; } }
.gk-pair figure { margin: 0; }
.gk-pair img { width: 100%; height: auto; border-radius: 12px; display: block; }
.gk-pair figcaption { font-size: 12px; color: var(--c-ink-3); margin-top: 4px; }
.gk-links { margin: 40px 0 0; display: grid; gap: 28px; }
.gk-links__title { font: 700 19px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); margin: 0 0 10px; border: 0; padding: 0; }
.gk-links__title span { margin-left: 10px; font-size: 13px; color: var(--c-primary-ink); background: var(--c-primary-bg); border-radius: 999px; padding: 3px 10px; vertical-align: 2px; }
.gk-links__none { color: var(--c-ink-3); font-size: 14px; margin: 0; }
.gk-links__rel { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.gk-links__rel a { display: block; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 12px; padding: 12px 14px; font-weight: 700; text-decoration: none; color: var(--c-navy-deep); }

/* ===== ?look=3 トップの組み立て（2026-09-27 クラシアン・街の屋根やさんの並べ方を参考に作り直し） ===== */
.l3-place__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .l3-place__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
.l3-place__item a { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.l3-place__item a:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15, 95, 125, .14); }
.l3-place__img { display: block; aspect-ratio: 4 / 3; background: var(--c-bg-soft); overflow: hidden; }
.l3-place__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.l3-place__body { display: grid; gap: 2px; padding: 10px 12px 14px; }
.l3-place__name { font: 700 16px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.l3-place__sub { font-size: 12px; color: var(--c-ink-3); }
.l3-place__price { margin-top: 6px; font: 700 20px/1.2 var(--font-num, inherit); color: var(--c-accent-dark); }
.l3-place__price small { font-size: 11px; font-weight: 700; margin-left: 2px; }
.l3-place__price--ask { font-size: 14px; color: var(--c-primary-ink); }
.l3-sym__groups { display: grid; gap: 16px; }
@media (min-width: 900px) { .l3-sym__groups { grid-template-columns: 3fr 2fr; } }
.l3-sym__group { background: #fff; border: 1px solid var(--c-border-soft); border-radius: 16px; padding: 16px; }
.l3-sym__h { margin: 0 0 10px; font: 700 15px/1.4 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.l3-sym__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.l3-sym__list a { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 48px; padding: 10px 14px; border-radius: 12px; background: var(--c-bg-soft); color: var(--c-ink); font-weight: 700; font-size: 14px; text-decoration: none; }
.l3-sym__list a::after { content: "›"; color: var(--c-primary); font-size: 18px; }
.l3-sym__list a:hover { background: var(--c-primary-bg); }
.l3-calc__box { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; border-radius: 20px; background: var(--c-primary-bg); }
.l3-calc__title { margin: 6px 0 4px; font: 700 clamp(18px, 2vw, 22px)/1.5 "Zen Maru Gothic", var(--font-jp); color: var(--c-navy-deep); }
.l3-calc__text { margin: 0; font-size: 14px; color: var(--c-ink-2); }
.l3-calc__btn { display: inline-flex; align-items: center; min-height: 52px; padding: 0 26px; border-radius: 999px; background: var(--c-primary); color: #fff; font-weight: 700; text-decoration: none; }
.l3-news__list { list-style: none; margin: 0; padding: 0; background: #fff; border: 1px solid var(--c-border-soft); border-radius: 16px; }
.l3-news__list li + li { border-top: 1px solid var(--c-border-soft); }
.l3-news__list a { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 6px 12px; padding: 14px 16px; text-decoration: none; color: var(--c-ink); }
@media (max-width: 640px) { .l3-news__list a { grid-template-columns: auto 1fr; } .l3-news__title { grid-column: 1 / -1; } }
.l3-news__list time { font-size: 13px; color: var(--c-ink-3); font-variant-numeric: tabular-nums; }
.l3-news__lab { justify-self: start; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: var(--c-bg-soft); color: var(--c-primary-ink); }
.l3-news__lab--voice { background: #fdf1e3; color: #9a5a12; }
.l3-news__lab--trouble { background: #eef3e6; color: #4d6b1f; }
.l3-news__title { font-weight: 700; font-size: 15px; line-height: 1.5; }
.l3-news__list a:hover .l3-news__title { color: var(--c-primary-ink); }
.mh-quick { display: flex; gap: 4px; margin-left: auto; }
.mh-quick__item { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; width: 50px; height: 46px; border-radius: 10px; font-size: 10px; font-weight: 700; text-decoration: none; color: #fff; }
.mh-quick__item--area { background: var(--c-navy); }
.mh-quick__item--tel { background: var(--c-accent-dark); }
.mh-quick__item--line { background: #06c755; }
.mh-quick__item svg { width: 18px; height: 18px; }
.l3-fmap { display: grid; gap: 18px 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .l3-fmap { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.l3-fmap__h { margin: 0 0 8px; font-weight: 700; font-size: 14px; }
.l3-fmap ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.l3-fmap a { font-size: 13px; color: inherit; text-decoration: none; opacity: .88; }
.l3-fmap a:hover { text-decoration: underline; opacity: 1; }
.gmj-look3 .sp-bar { grid-template-columns: repeat(4, 1fr); }
.sp-bar__item--area { background: var(--c-navy); }
.gmj-look3 .menu-toggle__text { white-space: nowrap; font-size: 10px; }
.gmj-look3 .mobile-header { gap: .4rem; }
@media (max-width: 360px) { .mh-quick__item { width: 44px; } }
.l3-sym__groups { align-items: start; }
.maker__photo { margin: 0; }
.maker__photo img { width: 100%; height: auto; border-radius: 16px; display: block; }
.maker__photo figcaption { margin-top: 8px; font-size: 13px; color: var(--c-ink-3); }
.maker-award--ykk { margin-top: 24px; }
.maker-award__photo { margin: 0; }
.maker-award__photo img { width: 100%; height: auto; border-radius: 16px; display: block; }
.gc__photo img[src*="gm-takagi-entrance-face"] { object-position: 58% 20%; }
.trust-band__tm { max-width: 1120px; margin: 8px auto 0; padding: 0 16px; font-size: 11px; color: var(--c-ink-3); text-align: right; }
