/* ==========================================================================
   NOBORDERS Fudosan — main stylesheet
   色やフォントを変えるときは、最初の :root の値だけを変えます。
   ========================================================================== */

:root {
	/* Studio版から引き継いだブランド色 */
	--c-navy: #063d58;         /* ロゴ・ボタンの濃紺 */
	--c-ink: #161616;          /* 本文の文字 */
	--c-ink-soft: #555a5e;     /* 補足の文字 */
	--c-muted: #666b70;        /* 日付など（白地・薄いグレー地の両方で読める濃さ） */
	--c-line: #e1e1e1;         /* 罫線 */
	--c-bg: #ffffff;           /* 地 */
	--c-bg-soft: #f4f4f3;      /* 薄いグレーの地 */
	--c-bg-deep: #063d58;      /* 濃い地 */
	--c-primary: #063d58;      /* ボタン */
	--c-primary-hover: #0b5578;
	--c-teal: #29c5b6;         /* ロゴの家の色（線・アイコン用） */
	--c-link: #1a5999;         /* 文章中のリンク */
	--c-accent-text: #0a6a61;  /* ティール系の文字（白地で読める濃さ） */
	--c-orange: #eea617;       /* ロゴの丸の色 */
	--c-accent-num: #bdbdbd;   /* 01 02 などの番号 */
	--c-danger: #c2412d;
	--c-navy-tint: #e5eef3;    /* 紺を薄めた地 */
	--c-teal-tint: #dff3ef;    /* ティールを薄めた地 */
	--c-sand: #f5eddc;         /* 黄色を薄めた温かい地 */
	--c-teal-line: #29c5b6;    /* ティールの線 */

	--font-ja: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
	--font-en: "Barlow Condensed", "DIN Condensed", "Arial Narrow", sans-serif;
	--font-num: "Jost", "Century Gothic", "Futura"; /* 金額の数字。「万円」は後ろに続く --font-ja が受け持つ */
	--font-brand: "Lexend", "Helvetica Neue", Arial, sans-serif; /* 社名の英字 */

	--radius-lg: 0;            /* 写真や大きな面：角を丸めない */
	--radius-md: 0;            /* カード */
	--radius-sm: 2px;          /* 入力欄・ボタン */
	--shadow: none;

	--container: 1180px;
	--gutter: clamp(20px, 5vw, 48px);
	--header-h: 100px;
	--section-y: clamp(80px, 11vw, 144px);
}

@media (max-width: 899px) {
	:root { --header-h: 72px; }
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	background: var(--c-bg);
	color: var(--c-ink);
	font-family: var(--font-ja);
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: .03em;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg, video, iframe { max-width: 100%; }
img { height: auto; vertical-align: middle; }
a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--c-link); }
h1, h2, h3, h4 { line-height: 1.5; margin: 0; font-weight: 700; letter-spacing: .06em; }
p { margin: 0; }
ul, ol { padding: 0; margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; letter-spacing: inherit; }
:focus-visible { outline: 3px solid var(--c-link); outline-offset: 2px; border-radius: 4px; }
.site-footer :focus-visible, .fp-akiya :focus-visible { outline-color: #fff; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--c-ink); color: #fff; padding: 8px 16px; border-radius: var(--radius-sm); }
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--content { max-width: calc(960px + var(--gutter) * 2); }
.container--narrow { max-width: calc(800px + var(--gutter) * 2); }

.icon { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .6em;
	min-height: 52px; padding: .7em 2em;
	border: 1px solid transparent; border-radius: 999px;
	font-weight: 700; font-size: 15px; line-height: 1.4; text-decoration: none; text-align: center;
	cursor: pointer; transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-hover); color: #fff; }
.btn--outline { background: #fff; border-color: var(--c-ink); color: var(--c-ink); }
.btn--outline:hover { background: var(--c-ink); color: #fff; }
.btn--sm { min-height: 42px; padding: .5em 1.4em; font-size: 14px; }
.btn--block { display: flex; width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: .6em; min-height: 44px; font-weight: 700; letter-spacing: .06em; text-decoration: none; border-bottom: 1px solid currentColor; }
.link-arrow .icon { transition: transform .2s; }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	height: var(--header-h);
	background: rgba(255, 255, 255, .96);
	backdrop-filter: saturate(1.2) blur(8px);
	transition: box-shadow .25s;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--c-line), 0 6px 20px rgba(6, 61, 88, .05); }
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 24px; padding-inline: var(--gutter); max-width: 1440px; margin-inline: auto; }
.site-logo { display: block; flex: none; padding-block: 4px; }
.site-logo img { width: auto; height: 48px; }
.global-nav { margin-left: auto; }
.menu--primary { display: flex; gap: clamp(20px, 2.4vw, 28px); list-style: none; }
.menu--primary a { display: block; padding: 12px 0; font-size: clamp(14px, 1.3vw, 16px); font-weight: 700; text-decoration: none; white-space: nowrap; position: relative; }
.menu--primary a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.menu--primary a:hover::after, .menu--primary .current-menu-item > a::after, .menu--primary a[aria-current]::after { transform: scaleX(1); height: 2px; background: var(--c-navy); }
.site-header__actions { display: flex; align-items: center; gap: 16px; }
.header-tel { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-en); font-weight: 500; font-size: 17px; letter-spacing: .06em; text-decoration: none; white-space: nowrap; }
.header-tel .icon { color: var(--c-teal); }
.global-nav__sp { display: none; }
.menu-toggle { display: none; }

@media (max-width: 1359px) {
	.header-tel { display: none; }
}
@media (max-width: 1099px) {
	.site-logo img { height: 50px; }
	.site-header__actions { margin-left: auto; gap: 10px; }
	.header-cta { min-height: 44px; padding-inline: 1.1em; font-size: 14px; }
	.menu-toggle {
		display: inline-flex; align-items: center; justify-content: center;
		width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 0;
	}
	.menu-toggle__bar, .menu-toggle__bar::before, .menu-toggle__bar::after {
		display: block; width: 24px; height: 2px; background: var(--c-ink); border-radius: 2px; position: relative; transition: transform .25s, background-color .25s;
	}
	.menu-toggle__bar::before, .menu-toggle__bar::after { content: ""; position: absolute; left: 0; }
	.menu-toggle__bar::before { top: -7px; }
	.menu-toggle__bar::after { top: 7px; }
	.is-menu-open .menu-toggle__bar { background: transparent; }
	.is-menu-open .menu-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
	.is-menu-open .menu-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

	.global-nav {
		position: fixed; inset: var(--header-h) 0 0 0; margin: 0;
		/* ヘッダーが横並び（flex）のため、上下の指定だけでは高さが伸びない。
		   画面いっぱいの高さを明示する。dvhはスマホのアドレスバー分を考慮した単位。 */
		height: calc(100vh - var(--header-h));
		height: calc(100dvh - var(--header-h));
		background: #fff; padding: 24px var(--gutter) 120px; overflow-y: auto;
		opacity: 0; visibility: hidden; transform: translateY(-8px);
		transition: opacity .25s, transform .25s, visibility .25s;
	}
	.is-menu-open { overflow: hidden; }
	.is-menu-open .global-nav { opacity: 1; visibility: visible; transform: none; }
	.menu--primary { flex-direction: column; gap: 0; }
	.menu--primary a { padding: 18px 4px; font-size: 17px; border-bottom: 1px solid var(--c-line); }
	.menu--primary a::after { display: none; }
	.global-nav__sp { display: grid; gap: 16px; margin-top: 32px; }
	.global-nav__tel { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-en); font-size: 22px; font-weight: 500; text-decoration: none; }
}

/* ---------- section heading ---------- */
.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head__en {
	font-family: var(--font-en); font-weight: 500; color: var(--c-navy);
	font-size: clamp(30px, 5vw, 52px); line-height: 1.1; letter-spacing: .08em;
}
.sec-head__ja { margin-top: 12px; font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; letter-spacing: .1em; display: flex; align-items: center; gap: 12px; }
.sec-head__ja::before { content: ""; width: 24px; height: 2px; background: var(--c-teal); flex: none; }
.sec-head--center { text-align: center; }
.sec-head--center .sec-head__ja { justify-content: center; }
h1.sec-head__ja { font-size: clamp(24px, 3.2vw, 34px); line-height: 1.45; }

/* ---------- page hero（下層ページ上部） ---------- */
.page-hero { position: relative; padding: clamp(24px, 4vw, 40px) 0 clamp(8px, 2vw, 16px); }
.page-hero .sec-head { margin-bottom: 24px; }
.page-hero__lead { color: var(--c-ink-soft); margin-top: -8px; margin-bottom: 24px; }
.page-hero--image { padding-bottom: clamp(32px, 6vw, 64px); }
.page-hero--image .page-hero__bg { margin: 0 var(--gutter) 32px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 6; order: 2; }
.page-hero--image .page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--image { display: flex; flex-direction: column-reverse; }
@media (max-width: 639px) { .page-hero--image .page-hero__bg { aspect-ratio: 4 / 3; } }

.breadcrumb { margin-bottom: clamp(20px, 3vw, 32px); font-size: 13px; color: var(--c-muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin: 0 10px; color: var(--c-line); }
.breadcrumb a { text-decoration: none; }
.breadcrumb [aria-current] { color: var(--c-ink-soft); }
.breadcrumb a { display: inline-block; padding-block: 6px; }
@media (max-width: 639px) {
	.breadcrumb ol { flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
	.breadcrumb ol::-webkit-scrollbar { display: none; }
	.breadcrumb li:last-child span { display: inline-block; max-width: 16em; overflow: hidden; text-overflow: ellipsis; vertical-align: bottom; }
}

/* ---------- front: hero ---------- */
.fp-hero { position: relative; padding: 0 var(--gutter); }
.fp-hero__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: min(calc(100svh - var(--header-h) - 24px), 820px); min-height: 480px; background: var(--c-bg-soft); }
.fp-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
.fp-hero__slide.is-active { opacity: 1; }
.fp-hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 7s ease-out; }
.fp-hero__slide.is-active img { transform: scale(1); }
.fp-hero__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 25, 35, 0) 30%, rgba(10, 25, 35, .68) 100%); pointer-events: none; }
.fp-hero__copy { position: absolute; left: clamp(24px, 6vw, 72px); right: clamp(24px, 6vw, 72px); bottom: clamp(32px, 7vw, 80px); z-index: 2; color: #fff; }
@media (min-width: 900px) { .fp-hero__copy { bottom: calc(clamp(40px, 5vw, 64px) + 72px); } }
.fp-hero__en { font-family: var(--font-en); font-weight: 500; font-size: clamp(13px, 1.4vw, 15px); letter-spacing: .3em; margin-bottom: 14px; }
.fp-hero__title { font-size: clamp(32px, 5.2vw, 64px); line-height: 1.35; letter-spacing: .1em; font-weight: 700; text-shadow: 0 2px 16px rgba(0, 0, 0, .3); }
.fp-hero__lead { margin-top: 16px; font-size: clamp(15px, 1.6vw, 18px); font-weight: 500; line-height: 1.9; max-width: 34em; text-shadow: 0 1px 10px rgba(0, 0, 0, .4); }
.fp-hero__side { position: absolute; top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; font-family: var(--font-en); font-size: 11px; letter-spacing: .4em; color: var(--c-ink-soft); }
.fp-hero__side--left { left: calc(var(--gutter) / 2 - 6px); }
.fp-hero__side--right { right: calc(var(--gutter) / 2 - 6px); font-family: var(--font-ja); }
@media (max-width: 639px) {
	.fp-hero__side { display: none; }
	.fp-hero { padding: 0 12px; }
	.fp-hero__frame { height: calc(100svh - var(--header-h) - 120px); min-height: 460px; }
}

/* ---------- 相談の入口カード ---------- */
.entry-cards { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.entry-card {
	position: relative; display: flex; flex-direction: column; gap: 10px; height: 100%;
	padding: 28px 28px 56px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md);
	text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.entry-card:hover { color: inherit; border-color: var(--c-ink); box-shadow: var(--shadow); transform: translateY(-2px); }
.entry-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--c-bg-soft); color: var(--c-teal); }
.entry-card__icon .icon { width: 26px; height: 26px; }
.entry-card__label { font-size: 18px; font-weight: 700; letter-spacing: .06em; }
.entry-card__text { font-size: 15px; line-height: 1.8; color: var(--c-ink-soft); }
.entry-card__arrow { position: absolute; right: 22px; bottom: 20px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--c-navy); color: #fff; transition: background-color .2s; }
.entry-card:hover .entry-card__arrow { background: var(--c-primary-hover); }
.entry-card__arrow .icon { width: 16px; height: 16px; }
@media (max-width: 899px) { .entry-cards { grid-template-columns: 1fr; gap: 12px; } .entry-card { padding: 20px 64px 20px 20px; } .entry-card__icon { display: none; } .entry-card__arrow { top: 50%; bottom: auto; transform: translateY(-50%); } }

.fp-entry { position: relative; z-index: 3; margin-top: clamp(-72px, -6vw, -40px); }
@media (max-width: 899px) { .fp-entry { margin-top: 20px; } }

/* ---------- front: sections ---------- */
.fp-section { padding-block: var(--section-y); position: relative; }
.fp-section--soft { background: var(--c-bg-soft); }
.fp-section__head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 5vw, 56px); }
.fp-section__head-row .sec-head { margin-bottom: 0; }

.fp-services { display: grid; gap: clamp(64px, 9vw, 120px); }
.fp-service { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.fp-service:nth-child(even) .fp-service__media { order: 2; }
.fp-service__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--c-bg-soft); }
.fp-service__media img { width: 100%; height: 100%; object-fit: cover; }
.fp-service__num { font-family: var(--font-en); font-size: clamp(40px, 5vw, 56px); line-height: 1; color: var(--c-accent-num); font-weight: 500; }
.fp-service__title { margin-top: 12px; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.55; }
.fp-service__lead { margin-top: 16px; font-weight: 700; color: var(--c-accent-text); }
.fp-service__text { margin-top: 16px; color: var(--c-ink-soft); font-size: 16px; }
.fp-service__text p + p { margin-top: 1em; }
.fp-service .link-arrow { margin-top: 24px; }
@media (max-width: 899px) { .fp-service { grid-template-columns: 1fr; } .fp-service:nth-child(even) .fp-service__media { order: 0; } }

.fp-reason__lead { font-size: clamp(22px, 3vw, 34px); line-height: 1.6; font-weight: 700; }
.fp-reason__text { margin-top: 24px; color: var(--c-ink-soft); max-width: 46em; }
.fp-reason__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: clamp(40px, 6vw, 64px); }
.reason-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; }
.reason-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.reason-card__media img { width: 100%; height: 100%; object-fit: cover; }
.reason-card__body { padding: 28px; }
.reason-card__num { font-family: var(--font-en); color: var(--c-accent-num); font-size: 32px; line-height: 1; }
.reason-card__title { margin-top: 8px; font-size: 20px; }
.reason-card__text { margin-top: 12px; font-size: 16px; color: var(--c-ink-soft); }
@media (max-width: 899px) { .fp-reason__cards { grid-template-columns: 1fr; } }

.fp-concept { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.fp-concept__title { font-size: clamp(24px, 3.2vw, 38px); line-height: 1.6; }
.fp-concept__text { margin-top: 20px; color: var(--c-ink-soft); }
.fp-concept__text p + p { margin-top: 1em; }
/* 集合写真は横4：縦3。正方形で切り抜くと人物が大きく見えるため、写真全体を見せる。 */
.fp-concept__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.fp-concept__media img { width: 100%; height: 100%; object-fit: cover; }
.fp-concept .link-arrow { margin-top: 28px; }
@media (max-width: 899px) { .fp-concept { grid-template-columns: 1fr; } .fp-concept__media { aspect-ratio: 4 / 3; } }

.fp-akiya { background: var(--c-bg-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 7vw, 88px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.fp-akiya .sec-head__en, .fp-akiya a:not(.btn) { color: #fff; }
.fp-akiya .sec-head__en { font-size: clamp(26px, 3.6vw, 40px); }
.fp-akiya .sec-head__ja::before { background: var(--c-orange); }
.fp-akiya__text { color: rgba(255, 255, 255, .92); }
.fp-akiya__options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; list-style: none; }
.fp-akiya__options li { border: 1px solid rgba(255, 255, 255, .5); border-radius: 999px; padding: 4px 16px; font-size: 15px; }
.fp-akiya__actions { display: grid; gap: 12px; }
.fp-akiya .btn--primary { background: var(--c-orange); color: var(--c-ink); }
.fp-akiya .btn--primary:hover { background: #fff; }
.fp-akiya .btn--outline { background: transparent; border-color: rgba(255, 255, 255, .6); color: #fff; }
.fp-akiya .btn--outline:hover { background: #fff; color: var(--c-ink); }
@media (max-width: 899px) { .fp-akiya { grid-template-columns: 1fr; } }

.fp-company { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 80px); }
.fp-company__text { color: var(--c-ink-soft); }
.fp-company__text p + p { margin-top: 1em; }
@media (max-width: 899px) { .fp-company { grid-template-columns: 1fr; } }

/* ---------- estate cards / grid ---------- */
.estate-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 36px) clamp(16px, 2.4vw, 28px); }
@media (max-width: 1023px) { .estate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 639px) { .estate-grid { grid-template-columns: 1fr; } }
.estate-card { height: 100%; }
.estate-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.estate-card__link:hover { color: inherit; }
.estate-card__media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-md); overflow: hidden; background: var(--c-bg-soft); }
.estate-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.estate-card__link:hover .estate-card__media img { transform: scale(1.04); }
.estate-card__noimage { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-en); color: var(--c-muted); letter-spacing: .2em; }
.estate-card .badges { position: absolute; top: 12px; left: 12px; }
.estate-card__body { padding: 16px 4px 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.estate-card__meta { font-size: 13px; color: var(--c-ink-soft); letter-spacing: .04em; }
.estate-card__title { font-size: 17px; line-height: 1.6; }
.estate-card__link:hover .estate-card__title { color: var(--c-link); text-decoration: underline; text-underline-offset: .2em; }
.estate-card__catch { font-size: 14px; line-height: 1.7; color: var(--c-ink-soft); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.estate-card__foot { margin-top: auto; padding-top: 10px; display: grid; gap: 2px; border-top: 1px solid var(--c-line); }
.estate-card__price { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-num), var(--font-ja); font-weight: 600; font-size: 22px; line-height: 1.4; letter-spacing: .02em; color: var(--c-navy); font-variant-numeric: tabular-nums; }
.estate-card__price-label { font-family: var(--font-ja); font-size: 13px; font-weight: 700; color: var(--c-ink-soft); }
.estate-card__price-label:empty { display: none; }
.estate-card__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.estate-card__facts li { padding: 2px 10px; border-radius: 4px; background: var(--c-bg-soft); font-size: 14px; font-weight: 700; }
.estate-card__access { display: flex; align-items: flex-start; gap: 4px; font-size: 14px; line-height: 1.6; color: var(--c-ink-soft); }
.estate-card__access .icon { flex: none; margin-top: .2em; color: var(--c-accent-text); }
.estate-card__more { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--c-line); display: flex; align-items: center; justify-content: flex-end; gap: 6px; font-size: 14px; font-weight: 700; color: var(--c-navy); }
.estate-card__more .icon { transition: transform .2s; }
.estate-card__link:hover .estate-card__more .icon { transform: translateX(4px); }
.estate-card__spec { font-size: 13px; color: var(--c-ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.estate-card.is-sold .estate-card__media img { filter: grayscale(.4) brightness(.92); }
.estate-card.is-sold .estate-card__price { font-size: 16px; color: var(--c-ink-soft); }

.badges { display: flex; flex-wrap: wrap; gap: 6px; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .08em; line-height: 1.8; background: #fff; color: var(--c-ink); }
.badge--new { background: var(--c-orange); color: var(--c-ink); font-family: var(--font-en); }
.badge--sold { background: var(--c-ink); color: #fff; }
.badge--nego { background: #fff; color: var(--c-danger); }
.badge--exclusive { background: var(--c-navy); color: #fff; }
.badge--vr { background: #fff; color: var(--c-accent-text); }

/* ---------- estate archive ---------- */
.estate-archive { padding-bottom: var(--section-y); }
.estate-search {
	display: grid; grid-template-columns: 1fr 1fr 1.8fr auto; gap: 16px; align-items: end;
	padding: 24px; background: var(--c-bg-soft); border-radius: var(--radius-md); margin-bottom: 32px;
}
.estate-search__field label, .estate-search__label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; letter-spacing: .06em; }
.estate-search select {
	width: 100%; height: 50px; padding: 0 36px 0 14px; border: 1px solid #c4cad0; border-radius: var(--radius-sm); background-color: #fff; font-size: 16px;
	appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231e1e1e' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center;
}
.estate-search__range { display: flex; align-items: center; gap: 8px; }
.estate-search__actions { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.estate-search__actions .btn { min-height: 50px; white-space: nowrap; }
.estate-search__reset { font-size: 12px; color: var(--c-ink-soft); }
@media (max-width: 1023px) { .estate-search { grid-template-columns: 1fr 1fr; } .estate-search__field--price { grid-column: 1 / -1; } .estate-search__actions { grid-column: 1 / -1; } .estate-search__actions .btn { width: 100%; } }
@media (max-width: 479px) { .estate-search { grid-template-columns: 1fr; padding: 18px; } }

.estate-archive__results { margin-top: 48px; text-align: center; }

.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pagination .page-numbers { min-width: 44px; height: 44px; padding: 0 12px; display: grid; place-items: center; border-radius: 999px; border: 1px solid var(--c-line); text-decoration: none; font-family: var(--font-en); }
.pagination .page-numbers.current { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

.empty-state { padding: 48px 24px; text-align: center; background: var(--c-bg-soft); border-radius: var(--radius-md); display: grid; gap: 12px; justify-items: center; }
.empty-state .btn { margin-top: 12px; }
.empty-state__links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- estate single ---------- */
.estate-single { padding-top: clamp(24px, 4vw, 40px); padding-bottom: var(--section-y); }
.estate-single__head { margin-bottom: 28px; }
.estate-single__head .badges { margin-bottom: 12px; }
.estate-single__head .badge { border: 1px solid var(--c-line); }
.estate-single__area { display: flex; align-items: center; gap: 4px; font-size: 14px; color: var(--c-ink-soft); }
.estate-single__area .icon { color: var(--c-teal); }
.estate-single__title { margin-top: 6px; font-size: clamp(22px, 3vw, 32px); line-height: 1.5; }
.estate-single__catch { margin-top: 10px; font-size: clamp(15px, 1.8vw, 18px); color: var(--c-accent-text); font-weight: 700; }
.estate-single__layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.estate-single__side { position: sticky; top: calc(var(--header-h) + 20px); }
.estate-single__section { margin-top: clamp(40px, 6vw, 64px); }
.estate-single__h2 { font-size: 20px; padding-bottom: 12px; margin-bottom: 20px; border-bottom: 2px solid var(--c-navy); }
@media (max-width: 1023px) {
	.estate-single__layout { grid-template-columns: minmax(0, 1fr); }
	.estate-single__side { position: static; }
}

.gallery__main { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--c-bg-soft); aspect-ratio: 4 / 3; }
.gallery__slide { margin: 0; position: absolute; inset: 0; }
.gallery__slide img { width: 100%; height: 100%; object-fit: contain; background: #f1f1ef; }
.gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); color: var(--c-ink); font-size: 28px; line-height: 1; cursor: pointer; box-shadow: var(--shadow); }
.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }
.gallery__count { position: absolute; right: 12px; bottom: 12px; padding: 2px 12px; border-radius: 999px; background: rgba(6, 61, 88, .75); color: #fff; font-family: var(--font-en); font-size: 13px; }
.gallery__thumbs { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 8px; margin-top: 10px; }
.gallery__thumbs button { display: block; width: 100%; aspect-ratio: 1; padding: 0; border: 2px solid transparent; border-radius: 6px; overflow: hidden; cursor: pointer; background: none; opacity: .65; transition: opacity .2s, border-color .2s; }
.gallery__thumbs button[aria-current], .gallery__thumbs button:hover { opacity: 1; border-color: var(--c-ink); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 639px) {
	.gallery__thumbs { display: flex; max-width: 100%; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 4px; }
	.gallery__thumbs li { flex: 0 0 64px; scroll-snap-align: start; }
}

.table-scroll { overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.spec-table th, .spec-table td { padding: 14px 16px; border-bottom: 1px solid var(--c-line); text-align: left; vertical-align: top; line-height: 1.7; }
.spec-table th { width: 30%; min-width: 120px; background: var(--c-bg-soft); font-weight: 700; font-size: 14px; }
@media (max-width: 639px) {
	.spec-table { font-size: 15px; }
	.spec-table th { width: 7.5em; min-width: 0; padding: 12px 10px; }
	.spec-table td { padding: 12px 10px; }
}

.map-embed { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16 / 9; background: var(--c-bg-soft); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.note { margin-top: 8px; font-size: 13px; color: var(--c-muted); }
.note a { display: inline-block; padding-block: 12px; color: var(--c-link); font-weight: 700; }

.inquiry-box { padding: 28px; border: 1px solid var(--c-line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow); display: grid; gap: 12px; }
.inquiry-box__price-label { font-size: 13px; font-weight: 700; color: var(--c-ink-soft); letter-spacing: .06em; }
.inquiry-box__price { font-family: var(--font-num), var(--font-ja); font-weight: 600; font-size: 30px; line-height: 1.3; margin-top: -8px; color: var(--c-navy); }
.inquiry-box__spec { margin: 0 0 8px; display: grid; gap: 6px; padding: 12px 0; border-block: 1px solid var(--c-line); font-size: 15px; }
.inquiry-box__spec div { display: flex; justify-content: space-between; gap: 12px; }
.inquiry-box__spec dt { color: var(--c-ink-soft); flex: none; }
.inquiry-box__spec dd { margin: 0; text-align: right; font-weight: 700; }
.inquiry-box__text { font-size: 14px; color: var(--c-ink-soft); }
.inquiry-box__tel { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 6px; font-family: var(--font-en); font-size: 24px; font-weight: 500; text-decoration: none; }
.inquiry-box__tel .icon { color: var(--c-teal); }
.inquiry-box__note { font-size: 13px; color: var(--c-muted); text-align: center; line-height: 1.6; }

.estate-related { margin-top: var(--section-y); }

.sp-estate-bar { display: none; }
@media (max-width: 1023px) {
	.single-estate .sp-fixed-cta { display: none !important; }
	.sp-estate-bar {
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
		display: flex; align-items: center; justify-content: space-between; gap: 12px;
		padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
		background: rgba(255, 255, 255, .97); box-shadow: 0 -4px 20px rgba(6, 61, 88, .1);
	}
	.sp-estate-bar__price { display: grid; min-width: 0; font-family: var(--font-num), var(--font-ja); font-weight: 600; font-size: 17px; line-height: 1.3; color: var(--c-navy); margin-right: auto; white-space: nowrap; }
	.sp-estate-bar__price span { font-family: var(--font-ja); font-size: 12px; font-weight: 700; color: var(--c-ink-soft); }
	.sp-estate-bar__tel { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--c-line); border-radius: 50%; color: var(--c-accent-text); }
	.sp-estate-bar .btn { min-height: 46px; padding-inline: 1.2em; white-space: nowrap; flex: none; }
	.sp-estate-bar { gap: 8px; }
	.single-estate .site-footer { padding-bottom: 72px; }
}

/* ---------- news ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 36px); }
@media (max-width: 899px) { .post-grid { grid-template-columns: 1fr; gap: 0; } }
.post-card__link { display: flex; flex-direction: column; text-decoration: none; height: 100%; }
.post-card__link:hover { color: inherit; }
.post-card__media { aspect-ratio: 16 / 10; border-radius: var(--radius-md); overflow: hidden; background: var(--c-bg-soft); position: relative; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card__link:hover .post-card__media img { transform: scale(1.04); }
.post-card__noimage { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-en); letter-spacing: .3em; color: var(--c-muted); }
.post-card__body { padding: 14px 2px 0; }
.post-card__meta { display: flex; align-items: center; gap: 12px; font-family: var(--font-en); font-size: 13px; color: var(--c-muted); }
.post-card__cat { font-family: var(--font-ja); font-size: 12px; font-weight: 700; padding: 1px 10px; border: 1px solid var(--c-line); border-radius: 999px; color: var(--c-ink-soft); text-decoration: none; letter-spacing: .08em; }
.post-card__title { margin-top: 8px; font-size: 16px; line-height: 1.7; }
@media (max-width: 899px) {
	.post-card { border-bottom: 1px solid var(--c-line); }
	.post-card__link { flex-direction: row; gap: 16px; padding: 16px 0; }
	.post-card__media { width: 112px; flex: none; aspect-ratio: 1; border-radius: var(--radius-sm); }
	.post-card__body { padding: 0; }
	.post-card__title { font-size: 15px; margin-top: 4px; }
}
.cat-filter { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cat-filter a { display: inline-flex; align-items: center; min-height: 44px; padding: 6px 20px; border: 1px solid var(--c-line); border-radius: 999px; font-size: 14px; text-decoration: none; }
.cat-filter a[aria-current] { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }
.index-page .container, .blog .container:last-of-type { padding-bottom: var(--section-y); }

.article { padding-top: clamp(24px, 4vw, 40px); padding-bottom: var(--section-y); }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: var(--font-en); color: var(--c-muted); font-size: 14px; }
.article__title { margin-top: 12px; font-size: clamp(22px, 3.2vw, 32px); line-height: 1.55; }
.article__eyecatch { margin: 32px 0 0; border-radius: var(--radius-md); overflow: hidden; }
.article__eyecatch img { width: 100%; }
.article .entry-content { margin-top: 40px; }
.article__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--c-line); font-size: 14px; }
.article__nav div:last-child { text-align: right; }
.article__nav a { display: inline-block; padding-block: 8px; color: var(--c-link); }
.article__back { margin-top: 32px; text-align: center; }

/* ---------- entry content（ブロックエディタの本文） ---------- */
.entry-content { padding-bottom: var(--section-y); font-size: 16px; line-height: 2; }
.article .entry-content, .estate-single .entry-content { padding-bottom: 0; }
.entry-content > * + * { margin-top: 1.4em; }
.entry-content h2 { margin-top: 2.6em; font-size: clamp(20px, 2.6vw, 26px); padding-left: 16px; border-left: 4px solid var(--c-teal); line-height: 1.5; }
.entry-content h3 { margin-top: 2.2em; font-size: clamp(18px, 2.2vw, 21px); padding-bottom: 8px; border-bottom: 1px solid var(--c-line); }
.entry-content h4 { margin-top: 2em; font-size: 17px; }
.entry-content > h2:first-child, .entry-content > h3:first-child { margin-top: 0; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; }
.entry-content li + li { margin-top: .4em; }
.entry-content a { color: var(--c-link); text-decoration: underline; text-underline-offset: .2em; }
.entry-content a:hover { text-decoration-thickness: 2px; }
.entry-content strong { background: linear-gradient(transparent 62%, rgba(238, 162, 58, .3) 62%); }
.entry-content figure { margin-inline: 0; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content blockquote { margin-inline: 0; padding: 20px 24px; background: var(--c-bg-soft); border-radius: var(--radius-sm); }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content .wp-block-table { overflow-x: auto; }
.entry-content th, .entry-content td { padding: 12px 14px; border: 1px solid var(--c-line); text-align: left; vertical-align: top; }
.entry-content th { background: var(--c-bg-soft); white-space: nowrap; }
.entry-content .wp-block-image figcaption { font-size: 13px; color: var(--c-muted); text-align: center; }
.entry-content .wp-block-buttons { gap: 12px; }
.entry-content .wp-block-button__link { display: inline-flex; align-items: center; min-height: 52px; padding: .7em 2em; border-radius: 999px; background: var(--c-primary); color: #fff; font-weight: 700; text-decoration: none; }
.entry-content .wp-block-button__link:hover { background: var(--c-primary-hover); color: #fff; }
.entry-content .is-style-outline .wp-block-button__link { background: #fff; color: var(--c-ink); border: 1px solid var(--c-ink); }
.entry-content .wp-block-columns { gap: clamp(20px, 4vw, 48px); }
.entry-content .wp-block-group.has-background { padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-md); }
.entry-content .wp-block-separator { border: 0; border-top: 1px solid var(--c-line); margin-block: 3em; }

/* 固定ページ用のブロックスタイル（スタイル名はエディタで選べます） */
.entry-content .nb-lead { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; line-height: 1.7; }
.entry-content .nb-number { font-family: var(--font-en); color: var(--c-accent-num); font-size: 44px; line-height: 1; margin-bottom: -.4em; }
.entry-content .nb-card { background: var(--c-bg-soft); border-radius: var(--radius-md); padding: clamp(24px, 4vw, 40px); }
.entry-content .nb-card > * + * { margin-top: 1em; }
.entry-content .nb-steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 16px; }
.entry-content .nb-steps li { counter-increment: step; position: relative; padding: 20px 20px 20px 76px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); margin: 0; }
.entry-content .nb-steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 22px; top: 18px; font-family: var(--font-en); font-size: 28px; line-height: 1.2; color: var(--c-accent-text); }
.entry-content .nb-pills { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.entry-content .nb-pills li { margin: 0; padding: 6px 20px; border-radius: 999px; background: var(--c-bg-soft); font-weight: 700; }
.entry-content .nb-company-table th { width: 28%; }
.entry-content .nb-image-round img { border-radius: var(--radius-lg); }

/* ---------- forms (Contact Form 7) ---------- */
.nb-form { display: grid; gap: 24px; margin-top: 16px; }
.nb-form__row { display: grid; gap: 8px; }
.nb-form__label { font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.nb-form__req, .nb-form__opt { font-size: 12px; font-weight: 700; padding: 1px 8px; border-radius: 4px; letter-spacing: .06em; }
.nb-form__req { background: var(--c-danger); color: #fff; }
.nb-form__opt { background: var(--c-bg-soft); color: var(--c-ink-soft); }
.nb-form__help { font-size: 14px; color: var(--c-ink-soft); }
.nb-form input[type="text"], .nb-form input[type="email"], .nb-form input[type="tel"], .nb-form select, .nb-form textarea {
	width: 100%; min-height: 52px; padding: 12px 16px; border: 1px solid #b9c0c7; border-radius: var(--radius-sm); background: #fff; font-size: 16px;
}
.nb-form textarea { min-height: 160px; line-height: 1.8; }
.nb-form input:focus, .nb-form select:focus, .nb-form textarea:focus { outline: none; border-color: var(--c-link); box-shadow: 0 0 0 3px rgba(26, 89, 153, .18); }
.nb-form .wpcf7-checkbox, .nb-form .wpcf7-radio { display: flex; flex-wrap: wrap; gap: 8px; }
.nb-form .wpcf7-list-item { margin: 0; }
.nb-form .wpcf7-list-item label { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; min-height: 48px; padding: 8px 16px 8px 12px; border: 1px solid #b9c0c7; border-radius: var(--radius-sm); background: #fff; transition: border-color .15s, background-color .15s; }
.nb-form .wpcf7-list-item label:hover { border-color: var(--c-navy); }
.nb-form .wpcf7-list-item label:has(input:checked) { border-color: var(--c-navy); background: #eef4f8; box-shadow: inset 0 0 0 1px var(--c-navy); font-weight: 700; }
.nb-form .wpcf7-list-item label:has(input:focus-visible) { outline: 3px solid var(--c-link); outline-offset: 2px; }
.nb-form input[type="checkbox"], .nb-form input[type="radio"] { flex: none; width: 20px; height: 20px; margin: 0; accent-color: var(--c-navy); }
.nb-form .wpcf7-list-item-label { line-height: 1.5; }
.nb-form__privacy .wpcf7-list-item label { border: 0; background: transparent; padding: 0; min-height: 44px; box-shadow: none; }
@media (max-width: 639px) { .nb-form .wpcf7-radio .wpcf7-list-item, .nb-form .wpcf7-checkbox .wpcf7-list-item { flex: 1 1 calc(50% - 4px); } .nb-form .wpcf7-list-item label { width: 100%; } }
.nb-form__privacy { padding: 16px 20px; background: var(--c-bg-soft); border-radius: var(--radius-sm); font-size: 15px; }
.nb-form__privacy a { color: var(--c-link); text-decoration: underline; }
.nb-form__submit { text-align: center; }
.nb-form__submit .wpcf7-submit { min-width: 280px; min-height: 60px; border: 0; border-radius: 999px; background: var(--c-primary); color: #fff; font-weight: 700; font-size: 16px; cursor: pointer; transition: background-color .2s; }
.nb-form__submit .wpcf7-submit:hover { background: var(--c-primary-hover); }
.nb-form__submit .wpcf7-submit:disabled { background: #9aa5ae; cursor: not-allowed; }
.nb-form__status { text-align: center; font-size: 15px; font-weight: 700; color: var(--c-ink-soft); }
.nb-form__status.is-ready { color: var(--c-accent-text); }
.nb-form__submit .wpcf7-spinner { display: block; margin: 12px auto 0; }
.wpcf7-not-valid-tip { font-size: 14px; font-weight: 700; margin-top: 6px; }
.nb-form .wpcf7-not-valid { border-color: var(--c-danger) !important; background: #fdf3f1; }
.wpcf7 form .wpcf7-response-output { margin: 24px 0 0; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; }
.nb-form-intro { padding: 24px; border-radius: var(--radius-md); background: var(--c-bg-soft); }

.contact-entries { list-style: none !important; padding: 0 !important; display: grid; gap: 12px; }
.contact-entries li { margin: 0 !important; }

/* ---------- CTA ---------- */
.cta-consult { padding-block: var(--section-y); background: var(--c-bg-soft); }
.cta-consult__lead { text-align: center; color: var(--c-ink-soft); margin: -12px auto 40px; max-width: 40em; }
.cta-consult__tel { margin-top: 32px; text-align: center; font-size: 14px; }
.cta-consult__tel a { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; font-family: var(--font-en); font-size: 24px; font-weight: 500; text-decoration: none; vertical-align: middle; }
.cta-consult__tel .icon { color: var(--c-teal); }
@media (max-width: 639px) { .cta-consult__lead br { display: none; } .cta-consult__lead { text-align: left; } }

/* ---------- footer ---------- */
.site-footer { background: var(--c-bg-deep); color: rgba(255, 255, 255, .92); font-size: 15px; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; padding-block: clamp(56px, 8vw, 88px); }
.site-logo--footer { display: inline-block; background: #fff; border-radius: var(--radius-sm); padding: 10px 16px; }
.site-logo--footer img { height: 60px; }
.site-footer__tagline { margin-top: 16px; font-weight: 700; color: #fff; letter-spacing: .12em; }
.site-footer__address { font-style: normal; display: grid; gap: 2px; margin-top: 16px; line-height: 1.8; }
.site-footer__address a { display: inline-block; padding-block: 10px; font-weight: 700; }
.site-footer__sns { display: flex; gap: 12px; margin-top: 20px; }
.site-footer__sns a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; }
.site-footer__sns a:hover { background: #fff; color: var(--c-ink); text-decoration: none; }
.menu--footer { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
.menu--footer a { display: block; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 12px; font-size: 13px; }
.site-footer__bottom a { display: inline-block; padding-block: 10px; }
.site-footer__bottom .container { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; }
.site-footer__bottom small { margin-left: auto; font-family: var(--font-en); font-size: 13px; letter-spacing: .1em; }
@media (max-width: 899px) { .site-footer__inner { grid-template-columns: 1fr; } }

.sp-fixed-cta { display: none; }
@media (max-width: 899px) {
	.sp-fixed-cta {
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
		display: grid; grid-template-columns: 1fr 1.6fr;
		padding-bottom: env(safe-area-inset-bottom); background: #fff; box-shadow: 0 -4px 20px rgba(6, 61, 88, .12);
	}
	.sp-fixed-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 58px; font-weight: 700; text-decoration: none; }
	.sp-fixed-cta__tel { color: var(--c-ink); }
	.sp-fixed-cta__tel .icon { color: var(--c-teal); }
	.sp-fixed-cta__main { background: var(--c-primary); color: #fff; }
	.sp-fixed-cta__main:hover { color: #fff; }
	.site-footer { padding-bottom: 58px; }
	.is-menu-open .sp-fixed-cta { display: none; }
}

/* ==========================================================================
   視認性・操作性の部品
   ========================================================================== */

/* ---------- チップ（ワンタップの条件） ---------- */
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
	display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 6px 18px;
	border: 1px solid #c4cad0; border-radius: 999px; background: #fff;
	font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap;
	transition: border-color .15s, background-color .15s, color .15s;
}
.chip:hover { border-color: var(--c-navy); color: var(--c-navy); }
.chip.is-active { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.chip--remove { background: #eef4f8; border-color: var(--c-navy); color: var(--c-navy); }
.chip__x { font-size: 18px; line-height: 1; margin-right: -4px; }
.chip--clear { border-style: dashed; color: var(--c-ink-soft); }

.quick-filter { display: grid; gap: 10px; margin-bottom: 16px; }
.quick-filter__row { display: flex; align-items: center; gap: 12px; min-width: 0; }
.quick-filter .chips { min-width: 0; }
.quick-filter__label { flex: none; width: 3.5em; font-size: 14px; font-weight: 700; color: var(--c-ink-soft); }
@media (max-width: 639px) {
	.quick-filter__row { align-items: flex-start; }
	.quick-filter__label { padding-top: 11px; }
	.quick-filter .chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); scrollbar-width: none; }
	.quick-filter .chips::-webkit-scrollbar { display: none; }
}

/* ---------- くわしい条件（スマホ・タブレットでは折りたたみ） ---------- */
.estate-filter { margin-bottom: 24px; }
.estate-filter .estate-search { margin-bottom: 0; }
.estate-filter__toggle { display: none; }
@media (max-width: 1023px) {
	.estate-filter__toggle {
		display: flex; align-items: center; gap: 10px; width: 100%; min-height: 52px; padding: 10px 18px;
		border: 1px solid #c4cad0; border-radius: var(--radius-sm); background: #fff; cursor: pointer;
		font-size: 16px; font-weight: 700; text-align: left;
	}
	.estate-filter__toggle .icon { color: var(--c-navy); }
	.estate-filter__count { min-width: 26px; padding: 2px 8px; border-radius: 999px; background: var(--c-navy); color: #fff; font-size: 14px; text-align: center; white-space: nowrap; }
	.estate-filter__caret { margin-left: auto; width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-3px); transition: transform .2s; }
	.estate-filter.is-open .estate-filter__caret { transform: rotate(-135deg) translateY(-3px); }
	.estate-filter.is-open .estate-filter__toggle { border-radius: var(--radius-sm) var(--radius-sm) 0 0; border-bottom-color: transparent; background: var(--c-bg-soft); }
	.estate-filter .estate-search { border-radius: 0 0 var(--radius-sm) var(--radius-sm); border: 1px solid #c4cad0; border-top: 0; }
	.js .estate-filter:not(.is-open) .estate-search { display: none; }
}

/* ---------- 件数と並び順 ---------- */
.result-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; margin-bottom: 16px; }
.result-bar__count { font-size: 15px; }
.result-bar__count strong { font-family: var(--font-en); font-size: 26px; color: var(--c-navy); margin-right: 2px; }
.result-bar__sort { display: flex; align-items: center; gap: 8px; }
.result-bar__sort label { font-size: 14px; font-weight: 700; color: var(--c-ink-soft); }
.result-bar__sort select {
	height: 44px; padding: 0 36px 0 12px; border: 1px solid #c4cad0; border-radius: var(--radius-sm); background: #fff; font-size: 16px;
	appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231e1e1e' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center;
}
.active-filters { margin-bottom: 24px; }
.empty-state__title { font-size: 18px; font-weight: 700; }

/* ---------- ページ内メニュー（物件詳細） ---------- */
.page-nav { position: sticky; top: var(--header-h); z-index: 50; margin: 0 calc(var(--gutter) * -1) 24px; padding: 0 var(--gutter); background: rgba(255, 255, 255, .97); border-bottom: 1px solid var(--c-line); }
.admin-bar .page-nav { top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) { .admin-bar .page-nav { top: var(--header-h); } }
.page-nav ul { list-style: none; display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.page-nav ul::-webkit-scrollbar { display: none; }
.page-nav a { position: relative; display: flex; align-items: center; min-height: 48px; padding: 0 14px; font-size: 15px; font-weight: 700; color: var(--c-ink-soft); text-decoration: none; white-space: nowrap; }
.page-nav a::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: -1px; height: 3px; border-radius: 3px 3px 0 0; background: transparent; }
.page-nav a:hover, .page-nav a.is-current { color: var(--c-navy); }
.page-nav a.is-current::after { background: var(--c-navy); }
.estate-single__section { scroll-margin-top: calc(var(--header-h) + 64px); }
#photos { scroll-margin-top: calc(var(--header-h) + 64px); }

/* ---------- 物件の要点（スマホ・タブレット） ---------- */
.estate-summary { display: none; }
@media (max-width: 1023px) {
	.estate-summary { display: grid; gap: 14px; margin-top: 20px; padding: 20px; border: 1px solid var(--c-line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow); }
	.estate-summary__price { display: grid; font-family: var(--font-num), var(--font-ja); font-size: 30px; font-weight: 600; line-height: 1.3; color: var(--c-navy); }
	.estate-summary__price span { font-family: var(--font-ja); font-size: 13px; font-weight: 700; color: var(--c-ink-soft); }
	.estate-summary__facts { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border-radius: var(--radius-sm); overflow: hidden; background: var(--c-line); border: 1px solid var(--c-line); }
	.estate-summary__facts div { padding: 10px 12px; background: #fff; }
	.estate-summary__facts dt { font-size: 13px; color: var(--c-ink-soft); }
	.estate-summary__facts dd { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.5; }
	.estate-summary__facts .is-wide { grid-column: 1 / -1; }
	.estate-summary__actions { display: grid; gap: 10px; }
	.estate-single__side { display: none; }
}

/* ---------- 写真の拡大 ---------- */
.gallery__slide { cursor: zoom-in; }
.gallery__zoom { position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px; min-height: 40px; padding: 0 14px; border: 0; border-radius: 999px; background: rgba(6, 61, 88, .8); color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; }
.gallery__zoom .icon { width: 18px; height: 18px; }
.gallery__nav { font-size: 30px; width: 48px; height: 48px; }
.gallery__count { font-size: 14px; padding: 4px 12px; }
.gallery__thumbs button { opacity: .7; }

.lightbox { width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(8, 14, 20, .96); color: #fff; }
.lightbox::backdrop { background: rgba(8, 14, 20, .96); }
.lightbox__inner { position: relative; width: 100%; height: 100%; display: grid; place-items: center; padding: 64px 16px; }
.lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; }
.lightbox__close, .lightbox__nav { position: absolute; display: grid; place-items: center; width: 52px; height: 52px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .15); color: #fff; font-size: 32px; line-height: 1; cursor: pointer; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .3); }
.lightbox__close { top: 8px; right: 8px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 8px; }
.lightbox__nav--next { right: 8px; }
.lightbox__count { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); font-family: var(--font-en); font-size: 15px; }
.is-lightbox-open { overflow: hidden; }
@media (max-width: 639px) { .lightbox__nav { top: auto; bottom: 12px; transform: none; } .lightbox__nav--prev { left: calc(50% - 64px); } .lightbox__nav--next { right: calc(50% - 64px); } }

/* ---------- 続きを読む ---------- */
.collapsible.is-collapsed { max-height: 520px; overflow: hidden; position: relative; }
.collapsible.is-collapsed::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(rgba(255, 255, 255, 0), #fff); }
.collapsible__toggle { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 52px; margin-top: 12px; border: 1px solid var(--c-navy); border-radius: 999px; background: #fff; color: var(--c-navy); font-size: 16px; font-weight: 700; cursor: pointer; }
.collapsible__toggle:hover { background: #eef4f8; }

/* ---------- このページの内容 ---------- */
.toc { margin-bottom: 40px; padding: 20px 24px; border: 1px solid var(--c-line); border-radius: var(--radius-md); background: var(--c-bg-soft); }
.entry-content .toc { margin-top: 0; }
.toc__title { font-size: 15px; font-weight: 700; color: var(--c-ink-soft); }
.entry-content .toc__list { list-style: none; margin: 8px 0 0; padding: 0; counter-reset: toc; display: grid; gap: 0; }
.entry-content .toc__list li { margin: 0; counter-increment: toc; }
.entry-content .toc__list a { display: flex; gap: 10px; align-items: baseline; padding: 8px 0; color: var(--c-ink); text-decoration: none; font-weight: 700; border-bottom: 1px dashed var(--c-line); }
.entry-content .toc__list li:last-child a { border-bottom: 0; }
.entry-content .toc__list a::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-en); color: var(--c-accent-text); font-size: 14px; }
.entry-content .toc__list a:hover { color: var(--c-link); text-decoration: underline; }
.entry-content h2, .entry-content h3 { scroll-margin-top: calc(var(--header-h) + 24px); }

/* ---------- ページの先頭へ ---------- */
.to-top {
	position: fixed; right: 16px; bottom: 24px; z-index: 80; width: 48px; height: 48px; display: grid; place-items: center;
	border-radius: 50%; background: #fff; color: var(--c-navy); border: 1px solid var(--c-line); box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--c-navy); color: #fff; }
@media (max-width: 899px) { .to-top { bottom: calc(72px + env(safe-area-inset-bottom)); right: 12px; } }
@media (max-width: 1023px) { .single-estate .to-top { bottom: calc(80px + env(safe-area-inset-bottom)); } }
.is-menu-open .to-top { display: none; }

/* ==========================================================================
   デザインのマイナーチェンジ（2026-09-16）
   四角い写真、白・黒・グレーを基調にした配色、細身の英字見出し、たっぷりの余白。
   ロゴの紺色は、ボタンと価格の差し色として使う。
   ========================================================================== */

/* ---------- 共通：角と線 ---------- */
.btn, .chip, .cat-filter a, .collapsible__toggle, .estate-filter__toggle, .pagination .page-numbers, .to-top, .sp-estate-bar__tel, .gallery__zoom, .gallery__count { border-radius: var(--radius-sm); }
.btn { letter-spacing: .08em; }
.btn--outline { border-color: var(--c-ink); }
.link-arrow { letter-spacing: .08em; }
.badge { border-radius: 0; padding: 2px 8px; font-family: var(--font-en), var(--font-ja); font-size: 13px; font-weight: 600; letter-spacing: .1em; }
.badge--new { background: var(--c-ink); color: #fff; }
.badge--vr { border: 1px solid var(--c-line); }

/* ---------- ヘッダー ---------- */
.site-header { background: rgba(255, 255, 255, .98); border-bottom: 1px solid var(--c-line); }
.site-header.is-scrolled { box-shadow: none; }
.site-logo img { height: 72px; }
@media (max-width: 1199px) { .site-logo img { height: 60px; } }
.menu--primary a { font-weight: 700; letter-spacing: .06em; color: var(--c-navy); }
.header-tel { font-size: 22px; font-weight: 600; letter-spacing: .04em; }
.header-tel .icon { color: var(--c-ink); width: 16px; height: 16px; }

/* ---------- 見出し：細身の英字＋短い線＋日本語 ---------- */
.sec-head__en { font-weight: 600; font-size: clamp(34px, 4.2vw, 48px); line-height: 1; letter-spacing: .08em; color: var(--c-ink); }
.sec-head__en::after { content: ""; display: block; width: 32px; height: 1px; margin-top: 18px; background: currentColor; }
.sec-head--center .sec-head__en::after { margin-inline: auto; }
.sec-head__ja { margin-top: 14px; font-size: 16px; letter-spacing: .14em; }
.sec-head__ja::before { content: none; }
h1.sec-head__ja { font-size: clamp(22px, 2.8vw, 30px); letter-spacing: .1em; }
.page-hero .sec-head__en { font-size: clamp(38px, 5vw, 60px); }

/* ---------- トップ：メイン写真と検索 ---------- */
.fp-hero__frame { height: min(calc(100svh - var(--header-h) - 120px), 760px); }
.fp-hero__frame::after { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, .34) 62%, rgba(0, 0, 0, .74) 100%); }
.fp-hero__en { font-family: var(--font-en); font-size: clamp(15px, 1.5vw, 18px); font-weight: 600; letter-spacing: .24em; }
.fp-hero__title { letter-spacing: .12em; }
@media (min-width: 900px) { .fp-hero__copy { bottom: clamp(40px, 5vw, 64px); } }
.fp-hero__side { color: var(--c-ink); font-size: 12px; }

.fp-search { padding-top: clamp(24px, 3vw, 36px); }
.fp-search__form { display: grid; grid-template-columns: auto repeat(3, minmax(0, 1fr)) auto; align-items: stretch; border: 1px solid var(--c-ink); background: #fff; }
.fp-search__label { display: flex; flex-direction: column; justify-content: center; padding: 0 28px; font-family: var(--font-en); font-size: 24px; font-weight: 600; line-height: 1; letter-spacing: .1em; border-right: 1px solid var(--c-line); }
.fp-search__label span { margin-top: 6px; font-family: var(--font-ja); font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--c-ink-soft); }
.fp-search__field { border-right: 1px solid var(--c-line); }
.fp-search__field select {
	width: 100%; height: 72px; padding: 0 40px 0 20px; border: 0; background: transparent; font-size: 16px; cursor: pointer;
	appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23161616' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center;
}
.fp-search__field select:hover { background-color: var(--c-bg-soft); }
.fp-search__submit { display: flex; align-items: center; justify-content: center; gap: 10px; min-width: 150px; padding: 0 28px; border: 0; background: var(--c-navy); color: #fff; font-size: 16px; font-weight: 700; letter-spacing: .12em; cursor: pointer; transition: background-color .2s; }
.fp-search__submit:hover { background: var(--c-primary-hover); }
@media (max-width: 899px) {
	.fp-search__form { grid-template-columns: 1fr 1fr; }
	.fp-search__label { grid-column: 1 / -1; flex-direction: row; align-items: baseline; gap: 10px; padding: 14px 16px; border-right: 0; border-bottom: 1px solid var(--c-line); font-size: 20px; }
	.fp-search__label span { margin-top: 0; }
	.fp-search__field { border-bottom: 1px solid var(--c-line); }
	.fp-search__field:nth-of-type(2) { border-right: 0; }
	.fp-search__field:nth-of-type(3) { grid-column: 1 / -1; border-right: 0; }
	.fp-search__field select { height: 56px; padding-left: 14px; }
	.fp-search__submit { grid-column: 1 / -1; min-height: 56px; }
}

.fp-entry { margin-top: clamp(24px, 3vw, 36px); }
.entry-cards { gap: 0; border: 1px solid var(--c-line); }
.entry-cards li + li .entry-card { border-left: 1px solid var(--c-line); }
.entry-card { border: 0; background: #fff; padding: 28px 64px 28px 28px; }
.entry-card:hover { transform: none; background: var(--c-bg-soft); }
.entry-card__icon { display: flex; justify-content: flex-start; width: auto; height: auto; background: none; color: var(--c-ink); }
.entry-card__arrow { top: 50%; bottom: auto; right: 24px; transform: translateY(-50%); width: auto; height: auto; background: none; color: var(--c-ink); transition: transform .2s; }
.entry-card:hover .entry-card__arrow { background: none; transform: translate(4px, -50%); }
@media (max-width: 899px) {
	.entry-cards li + li .entry-card { border-left: 0; border-top: 1px solid var(--c-line); }
	.entry-card { padding: 18px 56px 18px 18px; }
	.entry-card__icon { display: none; }
}

.fp-more { margin-top: clamp(40px, 5vw, 56px); text-align: center; }
.fp-more .btn { min-width: 260px; }

.fp-service__num { font-family: var(--font-en); font-weight: 600; font-size: clamp(48px, 5vw, 64px); }
.fp-service__lead { color: var(--c-ink); }
#message-1 .fp-reason__lead, #message-1 .fp-reason__text { text-align: center; margin-inline: auto; }
.fp-reason__lead { font-size: clamp(20px, 2.6vw, 30px); }
.reason-card { background: #fff; }
.reason-card__num { font-weight: 600; font-size: 40px; }
.fp-akiya__options li { border-radius: 0; }
.fp-akiya .btn--primary { background: #fff; color: var(--c-navy); }
.fp-akiya .btn--primary:hover { background: var(--c-orange); color: var(--c-ink); }

/* ---------- 物件カード：写真を主役に、文字は最小限 ---------- */
.estate-grid { gap: clamp(36px, 4vw, 56px) clamp(16px, 2vw, 28px); }
.estate-card__media { aspect-ratio: 3 / 2; }
.estate-card__media img { transition: opacity .3s; }
.estate-card__link:hover .estate-card__media img { transform: none; opacity: .82; }
.estate-card .badges { top: 0; left: 0; gap: 0; }
.estate-card__body { padding-top: 14px; gap: 6px; }
.estate-card__meta { font-size: 13px; letter-spacing: .06em; }
.estate-card__title { font-size: 16px; line-height: 1.65; }
.estate-card__link:hover .estate-card__title { color: var(--c-ink); }
.estate-card__price { font-size: 26px; letter-spacing: .02em; }
.estate-card__price-label { font-size: 13px; }
.estate-card__facts li { padding: 1px 8px; background: none; border: 1px solid var(--c-line); font-size: 13px; }
.estate-card__access { font-size: 13px; }
.estate-card__access .icon { color: var(--c-ink-soft); }
.estate-card__catch { display: none; }
.estate-card__more { border-top: 0; padding-top: 4px; font-size: 13px; letter-spacing: .08em; color: var(--c-ink-soft); }
.estate-card.is-sold .estate-card__price { font-family: var(--font-ja); }

/* ---------- 物件一覧・詳細 ---------- */
.estate-search { border: 1px solid var(--c-line); }
.result-bar__count strong { font-size: 32px; font-weight: 600; }
.chip { font-weight: 500; }
.chip.is-active, .chip--remove { font-weight: 700; }
.inquiry-box, .estate-summary { border-color: var(--c-ink); box-shadow: none; }
.estate-summary__price { font-size: 36px; }
.inquiry-box__price { font-size: 36px; }
/* 2つの価格を併記するときは、数字と「万円」の間ではなく区切りの空白で折り返す。 */
.inquiry-box__price, .estate-summary__price { word-break: keep-all; overflow-wrap: anywhere; }

.estate-summary__facts { border-radius: 0; }
.estate-single__h2 { border-bottom-width: 1px; border-color: var(--c-ink); letter-spacing: .1em; }
.page-nav a.is-current::after { height: 2px; background: var(--c-ink); border-radius: 0; }
.page-nav a.is-current, .page-nav a:hover { color: var(--c-ink); }
.gallery__main, .gallery__slide img { background: #efefef; }
.gallery__nav { border-radius: 0; box-shadow: none; }
.gallery__thumbs button { border-radius: 0; }
.spec-table th { background: var(--c-bg-soft); }
.sp-estate-bar__price { font-size: 22px; }
.sp-estate-bar__price span { font-size: 13px; }
.estate-single__catch { color: var(--c-ink); }
.estate-single__area .icon, .inquiry-box__tel .icon, .cta-consult__tel .icon, .sp-fixed-cta__tel .icon, .sp-estate-bar__tel { color: var(--c-ink); }
.estate-single__head .badge { border-color: var(--c-ink); }

/* ---------- お知らせ ---------- */
.post-card__meta { font-size: 15px; letter-spacing: .06em; }
.post-card__cat { border-radius: 0; font-size: 13px; }
.cat-filter a[aria-current] { background: var(--c-ink); border-color: var(--c-ink); }

/* ---------- 本文 ---------- */
.entry-content h2 { border-left-width: 3px; border-left-color: var(--c-ink); }
.entry-content strong { background: linear-gradient(transparent 70%, rgba(238, 166, 23, .28) 70%); }
.entry-content .wp-block-button__link { border-radius: var(--radius-sm); letter-spacing: .08em; }
.entry-content .nb-number { font-weight: 600; font-size: 56px; }
.entry-content .nb-steps li::before { color: var(--c-ink); font-weight: 600; font-size: 32px; }
.entry-content .nb-pills li { border-radius: 0; background: none; border: 1px solid var(--c-ink); }
.toc { background: #fff; border-color: var(--c-ink); }
.entry-content .toc__list a::before { color: var(--c-ink-soft); font-weight: 600; font-size: 16px; }

/* ---------- フォーム ---------- */
.nb-form__req { border-radius: 0; }
.nb-form__opt { border-radius: 0; }
.nb-form__submit .wpcf7-submit { border-radius: var(--radius-sm); letter-spacing: .1em; }

/* ---------- CTA・フッター ---------- */
.cta-consult__tel a { font-size: 30px; font-weight: 600; }
.inquiry-box__tel { font-size: 28px; font-weight: 600; }
.global-nav__tel { font-size: 28px; font-weight: 600; }
.site-logo--footer { border-radius: 0; }
.site-footer__sns a { border-radius: 0; }
.site-footer__bottom small { font-size: 14px; }
.to-top { border-color: var(--c-ink); }

/* ==========================================================================
   ブランドカラーの追加（2026-09-16）
   紺＝信頼（ボタン・見出し・価格）／ティール＝暮らしの軽やかさ（線・アイコン）
   黄色＝発見（NEW・強調）。薄めた色は背景だけに使い、写真を邪魔しない。
   ========================================================================== */

/* ---------- ロゴ（スマホ） ---------- */
@media (max-width: 899px) { .site-logo img { height: 50px; } }

/* ---------- ヘッダー：ロゴの3色の細い帯 ---------- */
.site-header::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--c-navy) 0 62%, var(--c-teal-line) 62% 90%, var(--c-orange) 90% 100%); }
.menu--primary a:hover::after, .menu--primary .current-menu-item > a::after, .menu--primary a[aria-current]::after { height: 3px; background: var(--c-teal-line); }
.menu--primary a:hover { color: var(--c-navy); }
.header-tel { color: var(--c-navy); }
.header-tel .icon { color: var(--c-accent-text); }
a:hover { color: var(--c-accent-text); }

/* ---------- 見出し ---------- */
.sec-head__en { color: var(--c-navy); }
.sec-head__en::after { width: 40px; height: 3px; background: var(--c-teal-line); }
.fp-akiya .sec-head__en::after { background: var(--c-orange); }

/* ---------- トップ ---------- */
.fp-hero__side--left { color: var(--c-navy); }
.fp-search__form { border-color: var(--c-navy); }
.fp-search__label { background: var(--c-navy-tint); color: var(--c-navy); }
.fp-search__field select:hover { background-color: var(--c-teal-tint); }

.entry-card__icon { color: var(--c-accent-text); }
.entry-card__icon .icon { width: 30px; height: 30px; }
.entry-card__label { color: var(--c-navy); }
.entry-card:hover { background: var(--c-teal-tint); }
.entry-card__arrow { color: var(--c-navy); }

#works.fp-section--soft { background: var(--c-navy-tint); }
.fp-service__num { color: var(--c-teal-line); }
.fp-service__lead { color: var(--c-accent-text); }
.fp-service__title { color: var(--c-navy); }

.reason-card { background: var(--c-sand); }
.reason-card__num { color: #c98a0a; }
.fp-reason__lead { color: var(--c-navy); }

.fp-akiya__options li { border-color: var(--c-teal-line); }
.fp-akiya .btn--primary { background: var(--c-orange); color: var(--c-ink); }
.fp-akiya .btn--primary:hover { background: #fff; color: var(--c-navy); }

#message-2.fp-section--soft { background: var(--c-sand); }
.fp-concept__title { color: var(--c-navy); }

.fp-company .spec-table th { background: var(--c-navy-tint); }

/* ---------- 物件 ---------- */
.badge--new { background: var(--c-orange); color: var(--c-ink); }
.badge--exclusive { background: var(--c-navy); color: #fff; }
.badge--vr { background: #fff; color: var(--c-accent-text); border-color: var(--c-teal-line); }
.estate-card__facts li { border-color: #bfe7e2; background: var(--c-teal-tint); color: var(--c-ink); }
.estate-card__access .icon { color: var(--c-accent-text); }
.estate-card__link:hover .estate-card__title { color: var(--c-navy); }
.estate-card__more { color: var(--c-navy); }

.estate-search { background: var(--c-navy-tint); border-color: #d6e2e9; }
.result-bar__count strong { color: var(--c-navy); }
.chip:hover { border-color: var(--c-navy); color: var(--c-navy); background: var(--c-navy-tint); }

.estate-single__catch { color: var(--c-accent-text); }
.estate-single__area .icon { color: var(--c-accent-text); }
.estate-single__h2 { border-bottom: 2px solid var(--c-navy); color: var(--c-navy); }
.page-nav a.is-current, .page-nav a:hover { color: var(--c-navy); }
.page-nav a.is-current::after { height: 3px; background: var(--c-teal-line); }
.inquiry-box, .estate-summary { border-color: var(--c-navy); border-top: 4px solid var(--c-navy); }
.spec-table th { background: var(--c-navy-tint); }
.inquiry-box__tel, .cta-consult__tel a, .global-nav__tel { color: var(--c-navy); }
.inquiry-box__tel .icon, .cta-consult__tel .icon, .sp-fixed-cta__tel .icon, .sp-estate-bar__tel { color: var(--c-accent-text); }
.estate-summary__facts { background: #d6e2e9; border-color: #d6e2e9; }

/* ---------- お知らせ ---------- */
.post-card__cat { border-color: #bfe7e2; background: var(--c-teal-tint); color: var(--c-accent-text); }
.post-card__link:hover .post-card__title { color: var(--c-navy); }
.cat-filter a[aria-current] { background: var(--c-navy); border-color: var(--c-navy); }

/* ---------- 本文 ---------- */
.entry-content h2 { border-left: 4px solid var(--c-teal-line); color: var(--c-navy); }
.entry-content h3 { border-bottom-color: #bfe7e2; }
.entry-content .nb-lead { color: var(--c-navy); }
.entry-content .nb-number { color: var(--c-teal-line); }
.entry-content .nb-steps li { border-left: 4px solid var(--c-teal-line); }
.entry-content .nb-steps li::before { color: var(--c-accent-text); }
.entry-content .nb-pills li { border-color: var(--c-navy); color: var(--c-navy); background: #fff; }
.entry-content .nb-card { background: var(--c-teal-tint); }
.entry-content .nb-company-table th { background: var(--c-navy-tint); }
.toc { border-color: var(--c-navy); border-top: 4px solid var(--c-navy); }
.toc__title { color: var(--c-navy); }
.entry-content .toc__list a::before { color: var(--c-accent-text); }
.nb-form-intro { background: var(--c-teal-tint); }
.page-hero .sec-head__en::after { background: var(--c-teal-line); }

/* ---------- 相談の呼びかけ・フッター ---------- */
.cta-consult { background: var(--c-teal-tint); }
.cta-consult .entry-card { background: #fff; }
.site-footer { position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--c-teal-line) 0 80%, var(--c-orange) 80% 100%); }
.site-footer__tagline { color: var(--c-teal-line); }
.site-footer a:hover { color: var(--c-teal-line); }
.to-top { border-color: var(--c-navy); color: var(--c-navy); }
.to-top:hover { background: var(--c-navy); }

.entry-content a.btn { text-decoration: none; }
.entry-content a.btn--primary, .entry-content a.btn--primary:hover { color: #fff; }
.entry-content a.btn--outline { color: var(--c-ink); }
.entry-content a.btn--outline:hover { color: #fff; }

/* ---------- ヘッダー：メニュー6項目の収め方 ---------- */
.header-cta { white-space: nowrap; }
@media (min-width: 1100px) and (max-width: 1439px) {
	.site-header__inner { gap: 16px; }
	.site-header__actions { gap: 12px; }
}

/* ---------- ページ先頭へ：査定のフキダシと重ならないよう左下に置く ---------- */
.to-top { right: auto; left: 20px; }
@media (max-width: 899px) { .to-top { left: 12px; right: auto; } }

/* ==========================================================================
   無料査定を目立たせる（2026-09-16）
   ========================================================================== */

/* 査定用のボタン（黄色） */
.btn--satei { background: var(--c-orange); color: var(--c-ink); font-size: 17px; min-height: 60px; }
.btn--satei:hover { background: #d8940f; color: var(--c-ink); }
.btn--satei .icon { transition: transform .2s; }
.btn--satei:hover .icon { transform: translateX(4px); }

/* トップの無料査定の帯 */
.fp-satei { padding-block: clamp(56px, 7vw, 88px); }
.fp-satei__inner {
	display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: center;
	padding: clamp(28px, 4vw, 56px); background: var(--c-sand); border-left: 6px solid var(--c-orange);
}
.fp-satei__en { font-family: var(--font-en); font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: .12em; color: #a5760a; }
.fp-satei__title { margin-top: 10px; font-size: clamp(22px, 2.9vw, 34px); line-height: 1.55; color: var(--c-navy); }
.fp-satei__lead { margin-top: 16px; color: var(--c-ink-soft); }
.fp-satei__points { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 20px; }
.fp-satei__points li { position: relative; padding: 4px 16px 4px 34px; background: #fff; font-size: 15px; font-weight: 700; }
.fp-satei__points li::before {
	content: ""; position: absolute; left: 14px; top: 50%; width: 6px; height: 11px; margin-top: -7px;
	border-right: 2px solid var(--c-accent-text); border-bottom: 2px solid var(--c-accent-text); transform: rotate(45deg);
}
.fp-satei__actions { display: grid; gap: 14px; }
.fp-satei__tel { text-align: center; font-size: 14px; color: var(--c-ink-soft); }
.fp-satei__tel a { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 4px; font-family: var(--font-en); font-size: 28px; font-weight: 600; color: var(--c-navy); text-decoration: none; }
.fp-satei__tel .icon { color: var(--c-accent-text); }
@media (max-width: 899px) { .fp-satei__inner { grid-template-columns: 1fr; } }

/* 物件詳細：売却を考えている人への導線 */
.estate-satei {
	margin-top: 16px; padding: 18px 20px; background: var(--c-sand); border-left: 4px solid var(--c-orange);
}
.estate-satei__title { font-size: 15px; font-weight: 700; color: var(--c-navy); }
.estate-satei__text { margin-top: 4px; font-size: 14px; color: var(--c-ink-soft); line-height: 1.7; }
.estate-satei .link-arrow { margin-top: 10px; font-size: 15px; color: var(--c-navy); }

/* ==========================================================================
   LINE公式アカウント（2026-09-16）
   管理画面「会社情報」で友だち追加URLを入れると表示される。
   ========================================================================== */
/* LINEの緑は #06c755。白い文字を載せると読みにくい（コントラスト比2.3）ため、文字を載せる所は濃い緑にする（5.5）。 */
.btn--line { background: #047a37; color: #fff; }
.btn--line:hover { background: #03632c; color: #fff; }
.entry-content a.btn--line, .entry-content a.btn--line:hover { color: #fff; text-decoration: none; }

.cta-consult__line { margin-top: 32px; display: grid; justify-items: center; gap: 8px; }
.cta-consult__line .btn { min-width: 280px; }
.cta-consult__line span { font-size: 14px; color: var(--c-ink-soft); }

.site-footer__line:hover { background: #047a37; border-color: #047a37; color: #fff; }

.line-cta { padding-bottom: var(--section-y); }
.line-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(24px, 4vw, 40px); align-items: center; padding: clamp(24px, 4vw, 40px); background: #f0faf3; border-left: 6px solid #06c755; }
.line-cta__eyebrow { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #047a37; }
.line-cta__title { margin-top: 8px; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.55; color: var(--c-navy); }
.line-cta__text { margin-top: 12px; color: var(--c-ink-soft); }
.line-cta .btn { margin-top: 20px; }
.line-cta__qr { margin: 0; text-align: center; }
.line-cta__qr img { width: 160px; height: 160px; background: #fff; padding: 8px; border: 1px solid var(--c-line); }
.line-cta__qr figcaption { margin-top: 8px; font-size: 13px; color: var(--c-ink-soft); }
@media (max-width: 639px) { .line-cta__inner { grid-template-columns: 1fr; } .line-cta__qr { justify-self: center; } }

@media (max-width: 899px) {
	.sp-fixed-cta--3 { grid-template-columns: 1fr 1fr 1.4fr; }
	.sp-fixed-cta__line { background: #047a37; color: #fff; }
	.sp-fixed-cta__line:hover { color: #fff; }
	.sp-fixed-cta--3 a { font-size: 14px; gap: 6px; }
}

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   トップのエリアメッセージ（2026-09-16）
   メインビジュアルの中に、探している方へ向けた一文を置く。
   ========================================================================== */
.fp-hero__message {
	margin-top: 18px;
	padding-top: 16px;
	position: relative;
	font-size: clamp(19px, 2.1vw, 25px);
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: .08em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}
.fp-hero__message::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 48px;
	height: 3px;
	background: var(--c-teal);
}
/* Lexendの大文字は、同じ文字サイズだと漢字より約3割低い。
   前の「は」と後ろの「不動産」の中間の高さになるよう、1.18倍にする。 */
.fp-hero__message-brand {
	font-family: var(--font-brand);
	font-weight: 600;
	font-size: 1.18em;
	letter-spacing: .04em;
	line-height: 1;
}
/* 屋号は途中で改行させず、ひとかたまりで折り返す。 */
.fp-hero__message-name { white-space: nowrap; }
/* 見出し、メッセージ、補足の順に弱くして、読む順番をつくる。 */
.fp-hero__lead { margin-top: 14px; font-size: clamp(14px, 1.35vw, 16px); font-weight: 400; line-height: 1.85; }
@media (max-width: 639px) {
	/* 文字の行数が増えるので、写真の左右の余白を詰めて1行に入る幅を確保する。 */
	.fp-hero__copy { left: 16px; right: 16px; }
	/* 写真の上でも読めるよう、19px以上の太字にする（小さいと写真に負ける）。 */
	.fp-hero__message { margin-top: 14px; padding-top: 13px; font-size: 19px; line-height: 1.7; letter-spacing: 0; }
	.fp-hero__message-brand { font-size: 1.18em; letter-spacing: .02em; }
	.fp-hero__lead { margin-top: 12px; font-size: 14px; line-height: 1.8; letter-spacing: 0; }
}

/* ==========================================================================
   ヘッダーのInstagram（2026-09-16）
   パソコンはヘッダーにアイコン、スマホはメニューの中に名前つきで置く。
   ========================================================================== */
.header-insta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: none;
	text-decoration: none;
	transition: opacity .2s;
}
.header-insta .icon { width: 26px; height: 26px; }
.header-insta:hover { opacity: .7; }
.header-insta:focus-visible { outline: 2px solid var(--c-navy); outline-offset: 2px; }

.global-nav__insta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	margin-top: 4px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}
.global-nav__insta .icon { width: 22px; height: 22px; }

/* 画面が狭いとヘッダーが詰まるので、メニューの中だけに出す。 */
@media (max-width: 1099px) {
	.header-insta { display: none; }
}

/* ==========================================================================
   横に並べた写真の大きさをそろえる（2026-09-16）
   元の写真が縦長でも横長でも、3:2に切り抜いて高さをそろえる。
   あとから別の写真に差し替えても、そろったまま表示される。
   ========================================================================== */
.entry-content .wp-block-columns .wp-block-image {
	margin-block: 0;
}
.entry-content .wp-block-columns .wp-block-image img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: center;
}

/* ==========================================================================
   金額の見せ方（2026-09-16）
   数字はJost。「万円」「（税込）」などの単位は数字より小さくする。
   単位は nbt_price_html() が <span class="price-unit"> で囲む。
   ========================================================================== */
/* 「価格」の見出し用の span 指定に巻き込まれないようにする。 */
.estate-card__price .price-value,
.estate-summary__price .price-value,
.sp-estate-bar__price .price-value {
	font: inherit;
	color: inherit;
	letter-spacing: inherit;
}
.estate-card__price .price-unit,
.inquiry-box__price .price-unit,
.estate-summary__price .price-unit,
.sp-estate-bar__price .price-unit {
	font-family: var(--font-ja);
	font-size: max(13px, .42em);
	font-weight: 700;
	letter-spacing: .02em;
}

@media (max-width: 1023px) {
	/* 価格バーは1行に固定していたため、長い価格が見切れていた。切らずに折り返す。 */
	.sp-estate-bar__price { flex: 1 1 auto; white-space: normal; word-break: keep-all; overflow-wrap: anywhere; }
	/* その折り返しで背が高くなっても、下の内容が隠れないようにする。 */
	.single-estate .site-footer { padding-bottom: 104px; }
	.single-estate .to-top { bottom: calc(104px + env(safe-area-inset-bottom)); }
}

/* ==========================================================================
   特集への入口カード（2026-09-17 縦幅を縮小）
   写真を左、文章を右に置く横型のカードにして、縦幅を抑える。
   パソコンは2列、スマホは1列。
   ========================================================================== */
.fp-feature { margin-top: clamp(56px, 8vw, 96px); }
.feature-cards {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 980px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 1.8vw, 20px);
}
.feature-cards > li { display: flex; }
.feature-card {
	display: grid;
	grid-template-columns: 38% minmax(0, 1fr);
	width: 100%;
	min-height: 150px;
	border: 1px solid var(--c-line);
	background: var(--c-bg);
	color: var(--c-ink);
	text-decoration: none;
	transition: box-shadow .25s, transform .25s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(6, 61, 88, .12); transform: translateY(-2px); }
.feature-card:focus-visible { outline: 3px solid var(--c-navy); outline-offset: 3px; }

.feature-card__media { position: relative; display: block; overflow: hidden; background: var(--c-bg-soft); }
.feature-card__media img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature-card:hover .feature-card__media img { transform: scale(1.05); }
.feature-card__tag {
	position: absolute; top: 0; left: 0; z-index: 1;
	background: var(--c-orange);
	color: #161616;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .14em;
	padding: 3px 8px;
}

.feature-card__body { display: flex; flex-direction: column; gap: 2px; padding: 12px 16px 4px; min-width: 0; }
.feature-card__en { font-family: var(--font-en); font-weight: 600; font-size: 13px; letter-spacing: .2em; line-height: 1.3; color: var(--c-accent-text); }
.feature-card__title { font-size: 17px; font-weight: 700; letter-spacing: .04em; line-height: 1.45; }
.feature-card__lead {
	margin-top: 2px;
	font-size: 13px;
	line-height: 1.65;
	color: var(--c-ink-soft);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.feature-card__foot {
	display: flex; align-items: center; justify-content: space-between; gap: 8px;
	margin-top: auto;
}
.feature-card__meta { font-size: 13px; color: var(--c-ink-soft); white-space: nowrap; }
.feature-card__meta strong { font-family: var(--font-num), var(--font-ja); font-size: 17px; font-weight: 600; color: var(--c-navy); margin-right: 2px; }
.feature-card__more { display: inline-flex; align-items: center; gap: 4px; min-height: 44px; margin-left: auto; font-size: 13px; font-weight: 700; color: var(--c-navy); white-space: nowrap; }
.feature-card__more .icon { width: 16px; height: 16px; transition: transform .25s; }
.feature-card:hover .feature-card__more .icon { transform: translateX(4px); }

/* タブレット幅で2列にするとカードが細くなり説明文が切れるため、899px以下は1列にする。 */
@media (max-width: 899px) {
	.feature-cards { grid-template-columns: 1fr; max-width: 640px; }
}
@media (max-width: 599px) {
	.feature-card { grid-template-columns: 30% minmax(0, 1fr); min-height: 128px; }
	.feature-card__body { padding: 10px 12px 2px; }
}

/* 特集ページ本文の注記 */
.entry-content .nb-note { font-size: 13px; color: var(--c-muted); line-height: 1.9; }
.nb-estates__empty { padding: 32px; background: var(--c-bg-soft); text-align: center; color: var(--c-ink-soft); }

/* ==========================================================================
   LINEの入口の重なりを整理（2026-09-17）
   スマホは画面下の固定ボタンにLINEがあるため、右下のLINEボタンは出さない。
   物件ページは固定ボタンが価格バーに替わってLINEが無いので、右下に残す。
   ========================================================================== */
@media (max-width: 899px) {
	body:not(.single-estate) .apf-bubble__line { display: none; }
}
