@charset "UTF-8";
/* ==========================================================================
   緑結び庭工房
   ========================================================================== */

:root {
	--ink: #16191b;
	--ink-70: #4a5052;
	--ink-45: #7c8285;
	--moss-deep: #1b2a20;
	--moss: #2f4a37;
	--moss-mid: #46654f;
	--paper: #faf8f4;
	--sand: #ece7dc;
	--sand-line: #d9d2c4;
	--accent: #9a6a2c;
	--white: #fff;

	--serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
	--sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--en: "Cormorant Garamond", "Noto Serif JP", serif;

	--container: 1180px;
	--gut: clamp(20px, 5vw, 48px);
	--sec-pad: clamp(72px, 11vw, 148px);
	--radius: 2px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   base
   -------------------------------------------------------------------------- */

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

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

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 2;
	font-feature-settings: "palt" 1;
	font-variant-numeric: lining-nums;
	letter-spacing: .04em;
	overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { color: var(--moss); }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
address { font-style: normal; }

::selection { background: var(--moss); color: #fff; }

:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; }

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--moss); color: #fff; padding: 10px 20px;
}
.skip-link:focus { left: 0; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gut);
}
.container--narrow { max-width: 860px; }

.section { padding-block: var(--sec-pad); }

/* --------------------------------------------------------------------------
   見出し
   -------------------------------------------------------------------------- */

.sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head--center { text-align: center; }

.sec-head__en {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--en);
	font-size: 14px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--accent);
	line-height: 1;
}
.sec-head__en::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
	opacity: .6;
}
.sec-head--center .sec-head__en::after {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
	opacity: .6;
}

.sec-head__ja {
	margin-top: 14px;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1.5;
	letter-spacing: .08em;
}

.lead-text {
	max-width: 62ch;
	color: var(--ink-70);
	margin-bottom: 40px;
}

.section__more { margin-top: clamp(32px, 4vw, 52px); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--serif);
	font-size: 15px;
	letter-spacing: .1em;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--sand-line);
	transition: border-color .3s var(--ease);
}
.link-arrow::after {
	content: "";
	width: 26px; height: 1px;
	background: var(--ink);
	position: relative;
	transition: transform .35s var(--ease);
}
.link-arrow:hover { border-color: var(--moss); }
.link-arrow:hover::after { transform: translateX(6px); }

/* --------------------------------------------------------------------------
   ボタン
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 30px;
	font-size: 15px;
	letter-spacing: .1em;
	border: 1px solid var(--moss);
	color: var(--moss);
	background: transparent;
	border-radius: var(--radius);
	transition: background .3s var(--ease), color .3s var(--ease);
	text-align: center;
}
.btn:hover { background: var(--moss); color: #fff; }

.btn--solid { background: var(--moss); color: #fff; }
.btn--solid:hover { background: var(--moss-deep); border-color: var(--moss-deep); color: #fff; }

.btn--lg { padding: 18px 44px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--line { border-color: #06c755; color: #06c755; }
.btn--line:hover { background: #06c755; border-color: #06c755; color: #fff; }

/* --------------------------------------------------------------------------
   画像プレースホルダ
   -------------------------------------------------------------------------- */

.ph {
	aspect-ratio: 4 / 3;
	background:
		repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 7px),
		linear-gradient(160deg, var(--moss) 0%, var(--moss-deep) 100%);
	position: relative;
}
.ph--tall { aspect-ratio: 3 / 4; }
.ph::after {
	content: "PHOTO";
	position: absolute;
	inset: auto 0 18px 0;
	text-align: center;
	font-family: var(--en);
	font-size: 12px;
	letter-spacing: .35em;
	color: rgba(255,255,255,.45);
}

/* --------------------------------------------------------------------------
   ヘッダー
   -------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 248, 244, .92);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--sand-line);
	transition: background .3s var(--ease);
}
.is-front .site-header {
	position: fixed;
	inset: 0 0 auto 0;
	background: transparent;
	backdrop-filter: none;
	border-bottom-color: transparent;
	color: #fff;
}
.is-front .site-header.is-stuck {
	position: fixed;
	background: rgba(250, 248, 244, .95);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom-color: var(--sand-line);
	color: var(--ink);
}

.site-header__inner {
	max-width: 1440px;
	margin-inline: auto;
	padding: 0 var(--gut);
	height: 84px;
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 48px);
}

.brand__text { display: flex; align-items: center; gap: 12px; }
.brand__mark { color: var(--moss); display: block; }
.is-front .site-header:not(.is-stuck) .brand__mark { color: #fff; }
.brand__name { display: flex; flex-direction: column; line-height: 1.3; }
.brand__ja {
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: .14em;
}
.brand__en {
	font-family: var(--en);
	font-size: 10px;
	letter-spacing: .22em;
	opacity: .65;
	white-space: nowrap;
}
.custom-logo { max-height: 52px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: clamp(14px, 1.9vw, 30px); }
.site-nav__list a {
	position: relative;
	display: block;
	font-size: 15px;
	letter-spacing: .06em;
	padding-block: 6px;
	white-space: nowrap;
}
.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--ease);
}
.site-nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav__list .current-menu-item > a::after { transform: scaleX(1); }
.site-nav__list .sub-menu { display: none; }

.header-cta { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.header-tel { display: flex; flex-direction: column; line-height: 1.25; }
.header-tel__label { font-size: 11px; letter-spacing: .1em; opacity: .7; white-space: nowrap; }
.header-tel__num {
	font-family: var(--en);
	font-size: 23px;
	font-weight: 500;
	letter-spacing: .04em;
	white-space: nowrap;
}
.header-cta__btn { padding: 12px 22px; font-size: 14px; white-space: nowrap; }
.is-front .site-header:not(.is-stuck) .header-cta__btn {
	background: rgba(255,255,255,.12);
	border-color: rgba(255,255,255,.6);
	color: #fff;
}
.is-front .site-header:not(.is-stuck) .header-cta__btn:hover {
	background: #fff; color: var(--moss-deep); border-color: #fff;
}

/* ハンバーガー */
.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	margin-left: auto;
	position: relative;
}
.nav-toggle span {
	position: absolute;
	left: 10px;
	width: 24px; height: 1.5px;
	background: currentColor;
	transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(38deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-38deg); }

/* ドロワー */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: var(--moss-deep);
	color: #fff;
	overflow-y: auto;
	opacity: 0;
	transition: opacity .35s var(--ease);
}
.drawer.is-open { opacity: 1; }
.drawer__inner {
	min-height: 100%;
	padding: 120px var(--gut) 60px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.drawer__list { display: flex; flex-direction: column; }
.drawer__list li { border-bottom: 1px solid rgba(255,255,255,.16); }
.drawer__list a {
	display: block;
	padding: 20px 4px;
	font-family: var(--serif);
	font-size: 19px;
	letter-spacing: .1em;
}
.drawer__list a:hover { color: #fff; opacity: .7; }
.drawer__list .sub-menu { display: none; }
.drawer__foot { margin-top: auto; display: grid; gap: 18px; }
.drawer__tel { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.drawer__tel span { font-size: 12px; opacity: .7; letter-spacing: .1em; }
.drawer__tel strong { font-family: var(--en); font-size: 30px; font-weight: 500; }
.drawer .btn--solid { background: #fff; color: var(--moss-deep); border-color: #fff; }

body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   ヒーロー
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
	background: var(--moss-deep);
}
.hero__media { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(12,20,14,.72) 0%, rgba(12,20,14,.42) 55%, rgba(12,20,14,.2) 100%);
}
.hero--noimage::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 90% at 78% 18%, rgba(96,130,102,.5) 0%, transparent 60%),
		repeating-linear-gradient(102deg, rgba(255,255,255,.035) 0 1px, transparent 1px 9px),
		linear-gradient(168deg, #24382a 0%, #16241a 60%, #101a13 100%);
}

.hero__inner {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding: 140px var(--gut) 124px;
}

.hero__copy {
	writing-mode: vertical-rl;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(24px, min(3.3vw, 5vh), 43px);
	line-height: 1.9;
	letter-spacing: .16em;
	max-height: 54vh;
	text-shadow: 0 2px 24px rgba(0,0,0,.35);
	animation: heroIn 1.3s var(--ease) both;
}

.hero__sub {
	margin-top: 34px;
	font-size: clamp(12px, 1.4vw, 14px);
	letter-spacing: .18em;
	color: rgba(255,255,255,.82);
	animation: heroIn 1.3s .25s var(--ease) both;
}

@keyframes heroIn {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}

.hero__tags {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	animation: heroIn 1.3s .4s var(--ease) both;
}
.hero__tags li {
	font-family: var(--serif);
	font-size: 13px;
	letter-spacing: .18em;
	padding: 7px 18px;
	border: 1px solid rgba(255,255,255,.42);
	border-radius: 100px;
	backdrop-filter: blur(2px);
}

.hero__scroll {
	position: absolute;
	right: var(--gut);
	bottom: 0;
	writing-mode: vertical-rl;
	font-family: var(--en);
	font-size: 12px;
	letter-spacing: .3em;
	color: rgba(255,255,255,.7);
	padding-bottom: 90px;
}
.hero__scroll::after {
	content: "";
	position: absolute;
	right: 50%; bottom: 0;
	width: 1px; height: 74px;
	background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0));
	animation: scrollLine 2.4s ease-in-out infinite;
	transform-origin: top;
}
@keyframes scrollLine {
	0% { transform: scaleY(0); opacity: 0; }
	40% { transform: scaleY(1); opacity: 1; }
	100% { transform: scaleY(1) translateY(74px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   サービス
   -------------------------------------------------------------------------- */

.section--services { background: var(--paper); }

.service-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid var(--sand-line);
}
.service-card {
	padding: clamp(32px, 3.4vw, 48px) clamp(24px, 2.6vw, 40px);
	border-bottom: 1px solid var(--sand-line);
	border-right: 1px solid var(--sand-line);
	transition: background .4s var(--ease);
}
.service-card:first-child { border-left: 1px solid var(--sand-line); }
.service-card:hover { background: var(--white); }

.service-card__head { display: flex; align-items: baseline; gap: 16px; }
.service-card__no {
	font-family: var(--en);
	font-size: 34px;
	color: var(--sand-line);
	line-height: 1;
}
.service-card__title {
	font-family: var(--serif);
	font-size: clamp(24px, 2.4vw, 30px);
	font-weight: 600;
	letter-spacing: .18em;
	line-height: 1.4;
}
.service-card__en {
	display: block;
	font-family: var(--en);
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--accent);
	margin-top: 4px;
}
.service-card__lead {
	margin-top: 26px;
	font-family: var(--serif);
	font-size: 17px;
	line-height: 1.9;
	color: var(--moss);
}
.service-card__body {
	margin-top: 14px;
	font-size: 14.5px;
	line-height: 2.05;
	color: var(--ink-70);
}
.service-card__items {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px dashed var(--sand-line);
	display: grid;
	gap: 8px;
}
.service-card__items li {
	position: relative;
	padding-left: 18px;
	font-size: 13.5px;
	line-height: 1.8;
	color: var(--ink-70);
}
.service-card__items li::before {
	content: "";
	position: absolute;
	left: 0; top: .85em;
	width: 7px; height: 1px;
	background: var(--accent);
}

/* --------------------------------------------------------------------------
   紹介
   -------------------------------------------------------------------------- */

.section--about { background: var(--sand); }

.about {
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	gap: clamp(40px, 6vw, 88px);
	align-items: center;
}
.about__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about__lead {
	font-family: var(--serif);
	font-size: clamp(20px, 2.4vw, 27px);
	font-weight: 500;
	line-height: 1.85;
	letter-spacing: .08em;
	margin-bottom: 24px;
}
.about__body p { color: var(--ink-70); margin-bottom: 1.4em; }
.about__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   選ばれる理由
   -------------------------------------------------------------------------- */

.section--reason { background: var(--moss-deep); color: rgba(255,255,255,.9); }
.section--reason .sec-head__ja { color: #fff; }
.section--reason .sec-head__en { color: #b99a63; }

.reason-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(32px, 4vw, 64px) clamp(36px, 5vw, 80px);
}
.reason { padding-top: 26px; border-top: 1px solid rgba(255,255,255,.2); }
.reason__no {
	font-family: var(--en);
	font-size: 13px;
	letter-spacing: .2em;
	color: #b99a63;
}
.reason__title {
	margin-top: 10px;
	font-family: var(--serif);
	font-size: clamp(19px, 2vw, 23px);
	font-weight: 500;
	letter-spacing: .06em;
	color: #fff;
	line-height: 1.7;
}
.reason__body {
	margin-top: 16px;
	font-size: 14.5px;
	line-height: 2.1;
	color: rgba(255,255,255,.72);
}

/* --------------------------------------------------------------------------
   施工実績
   -------------------------------------------------------------------------- */

.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 3vw, 44px) clamp(20px, 2.4vw, 36px);
}
.work-card__media { position: relative; overflow: hidden; background: var(--sand); }
.work-card__img,
.work-card .ph { aspect-ratio: 4/3; width: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card__link:hover .work-card__img { transform: scale(1.04); }
.work-card__type {
	position: absolute;
	left: 0; top: 0;
	background: var(--moss-deep);
	color: #fff;
	font-size: 12px;
	letter-spacing: .14em;
	padding: 6px 16px;
}
.work-card__body { padding-top: 18px; }
.work-card__place {
	font-size: 12px;
	letter-spacing: .12em;
	color: var(--ink-45);
}
.work-card__title {
	margin-top: 6px;
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: .04em;
}
.work-card__excerpt {
	margin-top: 10px;
	font-size: 13.5px;
	line-height: 1.95;
	color: var(--ink-70);
}

/* --------------------------------------------------------------------------
   流れ（簡易）
   -------------------------------------------------------------------------- */

.section--flow-brief { background: var(--sand); }

.flow-brief {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	border-top: 1px solid var(--sand-line);
	border-left: 1px solid var(--sand-line);
}
.flow-brief__item {
	padding: 26px 18px 30px;
	border-right: 1px solid var(--sand-line);
	border-bottom: 1px solid var(--sand-line);
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: rgba(255,255,255,.4);
}
.flow-brief__no {
	font-family: var(--en);
	font-size: 22px;
	color: var(--accent);
	line-height: 1;
}
.flow-brief__title {
	font-family: var(--serif);
	font-size: 16px;
	letter-spacing: .06em;
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   料金
   -------------------------------------------------------------------------- */

.price-brief {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 3vw, 52px);
}
.price-brief__title,
.price-block__title {
	font-family: var(--serif);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: .16em;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--moss);
	margin-bottom: 6px;
}
.price-list__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 15px 2px;
	border-bottom: 1px solid var(--sand-line);
}
.price-list__row dt { font-size: 14.5px; line-height: 1.7; color: var(--ink-70); }
.price-list__row dd {
	font-family: var(--en);
	font-size: 21px;
	white-space: nowrap;
	letter-spacing: .02em;
}
.price-note {
	margin-top: 16px;
	font-size: 13px;
	line-height: 1.9;
	color: var(--ink-45);
}

.price-caution {
	margin-top: clamp(40px, 5vw, 64px);
	padding: clamp(26px, 3vw, 40px);
	background: var(--sand);
	border-left: 3px solid var(--moss);
}
.price-caution h3 {
	font-family: var(--serif);
	font-size: 18px;
	letter-spacing: .08em;
	margin-bottom: 14px;
}
.price-caution li {
	position: relative;
	padding-left: 20px;
	font-size: 14.5px;
	line-height: 2;
	color: var(--ink-70);
}
.price-caution li::before {
	content: "";
	position: absolute;
	left: 2px; top: 1em;
	width: 8px; height: 1px;
	background: var(--accent);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--sand-line); }
.faq__item { border-bottom: 1px solid var(--sand-line); }
.faq__q {
	list-style: none;
	cursor: pointer;
	padding: 24px 44px 24px 40px;
	position: relative;
	font-family: var(--serif);
	font-size: 17px;
	letter-spacing: .04em;
	line-height: 1.7;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
	content: "Q";
	position: absolute;
	left: 2px; top: 24px;
	font-family: var(--en);
	font-size: 19px;
	color: var(--accent);
	line-height: 1.6;
}
.faq__q::after {
	content: "";
	position: absolute;
	right: 8px; top: 50%;
	width: 13px; height: 1px;
	background: var(--ink);
	box-shadow: 0 0 0 0 transparent;
	transition: transform .3s var(--ease);
}
.faq__q .mark {
	position: absolute;
	right: 14px; top: 50%;
	width: 1px; height: 13px;
	margin-top: -6.5px;
	background: var(--ink);
	transition: transform .3s var(--ease);
}
.faq__item[open] .faq__q .mark { transform: scaleY(0); }
.faq__q:hover { color: var(--moss); }
.faq__a {
	padding: 0 44px 28px 40px;
	font-size: 14.5px;
	line-height: 2.1;
	color: var(--ink-70);
	position: relative;
}
.faq__a::before {
	content: "A";
	position: absolute;
	left: 2px; top: -2px;
	font-family: var(--en);
	font-size: 19px;
	color: var(--moss);
}

/* --------------------------------------------------------------------------
   下層ページ共通
   -------------------------------------------------------------------------- */

.page-hero {
	position: relative;
	padding: clamp(72px, 9vw, 128px) 0 clamp(48px, 6vw, 76px);
	background: var(--moss-deep);
	color: #fff;
	overflow: hidden;
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(110% 130% at 85% 0%, rgba(96,130,102,.42) 0%, transparent 62%),
		repeating-linear-gradient(102deg, rgba(255,255,255,.03) 0 1px, transparent 1px 9px);
}
.page-hero__inner { position: relative; }
.page-hero__en {
	font-family: var(--en);
	font-size: 13px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: #b99a63;
}
.page-hero__title {
	margin-top: 12px;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(28px, 4.4vw, 44px);
	letter-spacing: .1em;
	line-height: 1.5;
}
.page-hero__desc {
	margin-top: 20px;
	max-width: 60ch;
	color: rgba(255,255,255,.76);
	font-size: 15px;
}

.breadcrumb {
	padding: 16px 0;
	border-bottom: 1px solid var(--sand-line);
	font-size: 12.5px;
	color: var(--ink-45);
	letter-spacing: .06em;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li::after { content: "／"; margin-left: 8px; opacity: .5; }
.breadcrumb li:last-child::after { display: none; }

/* --------------------------------------------------------------------------
   サービス詳細ページ
   -------------------------------------------------------------------------- */

.service-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
	padding-block: clamp(56px, 7vw, 96px);
	border-bottom: 1px solid var(--sand-line);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail:nth-child(even) .service-detail__media { order: 2; }
.service-detail__no {
	font-family: var(--en);
	font-size: 15px;
	letter-spacing: .22em;
	color: var(--accent);
}
.service-detail__title {
	margin-top: 8px;
	font-family: var(--serif);
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 500;
	letter-spacing: .18em;
}
.service-detail__lead {
	margin-top: 22px;
	font-family: var(--serif);
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.9;
	color: var(--moss);
}
.service-detail__body { margin-top: 18px; color: var(--ink-70); }
.service-detail__items {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 24px;
}
.service-detail__items li {
	position: relative;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.9;
}
.service-detail__items li::before {
	content: "";
	position: absolute;
	left: 0; top: .9em;
	width: 8px; height: 1px;
	background: var(--accent);
}

/* --------------------------------------------------------------------------
   施工の流れページ
   -------------------------------------------------------------------------- */

.flow-steps { position: relative; }
.flow-step {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: clamp(24px, 4vw, 56px);
	padding-block: clamp(34px, 4vw, 52px);
	border-top: 1px solid var(--sand-line);
}
.flow-step:last-child { border-bottom: 1px solid var(--sand-line); }
.flow-step__no {
	font-family: var(--en);
	font-size: 14px;
	letter-spacing: .24em;
	color: var(--accent);
	padding-top: 6px;
}
.flow-step__title {
	font-family: var(--serif);
	font-size: clamp(21px, 2.4vw, 27px);
	font-weight: 500;
	letter-spacing: .1em;
}
.flow-step__body { margin-top: 14px; color: var(--ink-70); }
.flow-step__note {
	display: inline-block;
	margin-top: 16px;
	font-size: 12.5px;
	letter-spacing: .08em;
	color: var(--moss);
	border: 1px solid var(--sand-line);
	padding: 5px 14px;
	border-radius: 100px;
}

/* --------------------------------------------------------------------------
   会社概要
   -------------------------------------------------------------------------- */

.company-table { border-top: 1px solid var(--sand-line); }
.company-table__row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 24px;
	padding: 22px 4px;
	border-bottom: 1px solid var(--sand-line);
}
.company-table__row dt {
	font-family: var(--serif);
	font-size: 15px;
	letter-spacing: .1em;
	color: var(--moss);
}
.company-table__row dd { font-size: 15px; line-height: 1.95; color: var(--ink-70); }

/* --------------------------------------------------------------------------
   お問い合わせ
   -------------------------------------------------------------------------- */

.contact-lead { max-width: 68ch; color: var(--ink-70); margin-bottom: 44px; }

.contact-methods {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(20px, 2.6vw, 36px);
	margin-bottom: clamp(48px, 6vw, 80px);
}
.contact-method {
	padding: clamp(28px, 3.2vw, 44px);
	border: 1px solid var(--sand-line);
	background: #fff;
	text-align: center;
}
.contact-method__label {
	font-family: var(--en);
	font-size: 12px;
	letter-spacing: .24em;
	color: var(--accent);
}
.contact-method__title {
	margin-top: 10px;
	font-family: var(--serif);
	font-size: 20px;
	letter-spacing: .1em;
}
.contact-method__num {
	display: block;
	margin-top: 14px;
	font-family: var(--en);
	font-size: clamp(32px, 4.4vw, 44px);
	font-weight: 500;
	color: var(--moss-deep);
	line-height: 1.2;
}
.contact-method__note { margin-top: 8px; font-size: 13px; color: var(--ink-45); }
.contact-method .btn { margin-top: 18px; }

.form-wrap {
	padding: clamp(28px, 4vw, 56px);
	background: #fff;
	border: 1px solid var(--sand-line);
}
/* テーマ内蔵フォーム */
.mi-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.mi-form-row { margin-bottom: 26px; }
.mi-form-row > label {
	display: block;
	font-size: 14px;
	letter-spacing: .06em;
	font-weight: 500;
	margin-bottom: 8px;
}
.mi-form-row .req {
	display: inline-block;
	margin-left: 10px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .08em;
	color: #fff;
	background: #a8442f;
	border-radius: 2px;
	vertical-align: 2px;
}
.mi-form-note {
	display: block;
	margin: -4px 0 8px;
	font-size: 12.5px;
	color: var(--ink-45);
	line-height: 1.7;
}
.mi-form input[type="text"],
.mi-form input[type="email"],
.mi-form input[type="tel"],
.mi-form select,
.mi-form textarea {
	width: 100%;
	padding: 13px 15px;
	font-family: inherit;
	font-size: 16px;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--sand-line);
	border-radius: var(--radius);
	transition: border-color .25s var(--ease);
	-webkit-appearance: none;
	appearance: none;
}
.mi-form select {
	background-image: linear-gradient(45deg, transparent 50%, var(--ink-45) 50%), linear-gradient(135deg, var(--ink-45) 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
	background-size: 6px 6px;
	background-repeat: no-repeat;
	padding-right: 40px;
}
.mi-form textarea { min-height: 190px; line-height: 1.9; resize: vertical; }
.mi-form input:focus, .mi-form select:focus, .mi-form textarea:focus {
	border-color: var(--moss);
	outline: none;
	background: #fff;
}
.mi-form-row.is-error input,
.mi-form-row.is-error select,
.mi-form-row.is-error textarea { border-color: #a8442f; background: #fdf6f4; }

.mi-form-privacy {
	margin: 30px 0 0;
	font-size: 13px;
	line-height: 1.9;
	color: var(--ink-45);
	text-align: center;
}
.mi-form-privacy a { color: var(--moss); text-decoration: underline; text-underline-offset: 3px; }

.mi-form-submit {
	display: block;
	width: 100%;
	max-width: 340px;
	margin: 20px auto 0;
	padding: 17px 30px;
	background: var(--moss);
	color: #fff;
	border: 1px solid var(--moss);
	border-radius: var(--radius);
	font-size: 16px;
	letter-spacing: .12em;
	transition: background .3s var(--ease);
}
.mi-form-submit:hover { background: var(--moss-deep); border-color: var(--moss-deep); }

.form-notice {
	margin-bottom: 32px;
	padding: 24px 26px;
	border-left: 3px solid var(--moss);
	background: var(--sand);
	font-size: 14.5px;
	line-height: 1.95;
}
.form-notice strong { display: block; font-family: var(--serif); font-size: 17px; margin-bottom: 6px; }
.form-notice p { color: var(--ink-70); }
.form-notice a { color: var(--moss); text-decoration: underline; text-underline-offset: 3px; }
.form-notice ul { margin-top: 8px; }
.form-notice li { position: relative; padding-left: 16px; color: var(--ink-70); }
.form-notice li::before { content: ""; position: absolute; left: 0; top: .9em; width: 8px; height: 1px; background: #a8442f; }
.form-notice--ng { border-left-color: #a8442f; background: #fdf6f4; }

/* Contact Form 7 の見た目調整 */
.form-wrap .mi-form-row { margin-bottom: 26px; }
.form-wrap label { display: block; font-size: 14px; letter-spacing: .06em; margin-bottom: 8px; font-weight: 500; }
.form-wrap .req { color: #b4442f; font-size: 12px; margin-left: 8px; }
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap select,
.form-wrap textarea {
	width: 100%;
	padding: 13px 15px;
	font-family: inherit;
	font-size: 15px;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--sand-line);
	border-radius: var(--radius);
	transition: border-color .25s var(--ease);
}
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus { border-color: var(--moss); outline: none; }
.form-wrap textarea { min-height: 180px; line-height: 1.9; resize: vertical; }
.form-wrap input[type="submit"],
.form-wrap .wpcf7-submit {
	display: block;
	width: 100%;
	max-width: 340px;
	margin: 32px auto 0;
	padding: 17px 30px;
	background: var(--moss);
	color: #fff;
	border: 1px solid var(--moss);
	font-size: 16px;
	letter-spacing: .12em;
	cursor: pointer;
	transition: background .3s var(--ease);
}
.form-wrap input[type="submit"]:hover,
.form-wrap .wpcf7-submit:hover { background: var(--moss-deep); }

/* --------------------------------------------------------------------------
   投稿・固定ページ本文
   -------------------------------------------------------------------------- */

.entry-content { font-size: 16px; line-height: 2.1; }
.entry-content > * + * { margin-top: 1.5em; }
.entry-content h2 {
	font-family: var(--serif);
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 500;
	letter-spacing: .08em;
	line-height: 1.6;
	margin-top: 2.4em;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--sand-line);
}
.entry-content h3 {
	font-family: var(--serif);
	font-size: clamp(19px, 2.2vw, 22px);
	font-weight: 500;
	letter-spacing: .06em;
	margin-top: 2em;
	padding-left: 14px;
	border-left: 3px solid var(--moss);
}
.entry-content ul { list-style: disc; padding-left: 1.4em; }
.entry-content ol { list-style: decimal; padding-left: 1.6em; }
.entry-content li { margin-bottom: .5em; }
.entry-content a { color: var(--moss); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
	padding: 20px 26px;
	background: var(--sand);
	border-left: 3px solid var(--moss);
	color: var(--ink-70);
}
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 12px 14px; border: 1px solid var(--sand-line); text-align: left; }
.entry-content th { background: var(--sand); font-weight: 500; }
.entry-content img { margin-inline: auto; }

/* --------------------------------------------------------------------------
   施工実績 詳細
   -------------------------------------------------------------------------- */

.work-single { display: grid; grid-template-columns: 1fr 320px; gap: clamp(32px, 4vw, 64px); align-items: start; }
.work-single__main .entry-content { font-size: 15.5px; }
.work-meta {
	border-top: 2px solid var(--moss);
	background: #fff;
	padding: 8px 22px 20px;
}
.work-meta__row { padding: 14px 0; border-bottom: 1px solid var(--sand-line); }
.work-meta__row:last-child { border-bottom: 0; }
.work-meta dt { font-size: 12px; letter-spacing: .12em; color: var(--ink-45); }
.work-meta dd { margin-top: 4px; font-size: 15px; line-height: 1.7; }
.work-thumb { margin-bottom: 32px; }
.work-thumb img { width: 100%; }

.work-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: clamp(32px, 4vw, 48px);
}
.work-filters a {
	padding: 9px 22px;
	border: 1px solid var(--sand-line);
	border-radius: 100px;
	font-size: 14px;
	letter-spacing: .08em;
	background: #fff;
}
.work-filters a:hover,
.work-filters .is-current {
	background: var(--moss);
	border-color: var(--moss);
	color: #fff;
}

.pagination {
	margin-top: clamp(40px, 5vw, 64px);
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.pagination .page-numbers {
	min-width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--sand-line);
	font-family: var(--en);
	font-size: 16px;
	background: #fff;
}
.pagination .current,
.pagination a:hover { background: var(--moss); border-color: var(--moss); color: #fff; }

.post-nav {
	margin-top: clamp(48px, 6vw, 72px);
	padding-top: 28px;
	border-top: 1px solid var(--sand-line);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-size: 14px;
}

/* --------------------------------------------------------------------------
   お知らせ一覧
   -------------------------------------------------------------------------- */

.post-list { border-top: 1px solid var(--sand-line); }
.post-item { border-bottom: 1px solid var(--sand-line); }
.post-item__link { display: block; padding: 26px 4px; }
.post-item__link:hover { background: rgba(255,255,255,.6); }
.post-item__date {
	font-family: var(--en);
	font-size: 14px;
	letter-spacing: .14em;
	color: var(--accent);
}
.post-item__title {
	margin-top: 6px;
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: .04em;
}
.post-item__excerpt {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.95;
	color: var(--ink-70);
}

/* 検索フォーム */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.search-form__inner { display: flex; gap: 0; }
.search-form__input {
	flex: 1;
	padding: 13px 16px;
	font-family: inherit;
	font-size: 15px;
	background: #fff;
	border: 1px solid var(--sand-line);
	border-right: 0;
	color: var(--ink);
}
.search-form__input:focus { outline: none; border-color: var(--moss); }
.search-form__submit {
	padding: 13px 24px;
	background: var(--moss);
	color: #fff;
	font-size: 14px;
	letter-spacing: .1em;
	transition: background .3s var(--ease);
}
.search-form__submit:hover { background: var(--moss-deep); }

/* --------------------------------------------------------------------------
   お問い合わせ帯
   -------------------------------------------------------------------------- */

.cta-band {
	position: relative;
	background: var(--moss);
	color: #fff;
	padding-block: clamp(56px, 7vw, 96px);
	overflow: hidden;
}
.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(90% 140% at 88% 10%, rgba(255,255,255,.09) 0%, transparent 60%),
		repeating-linear-gradient(102deg, rgba(255,255,255,.03) 0 1px, transparent 1px 10px);
}
.cta-band__inner {
	position: relative;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gut);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.cta-band .sec-head__en { color: #d8c69c; }
.cta-band__title {
	margin-top: 14px;
	font-family: var(--serif);
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.6;
}
.cta-band__body { margin-top: 16px; color: rgba(255,255,255,.8); font-size: 15px; max-width: 52ch; }

.cta-band__actions { display: grid; gap: 14px; justify-items: stretch; min-width: 300px; }
.cta-tel { text-align: center; display: block; margin-bottom: 6px; }
.cta-tel__label { display: block; font-size: 12px; letter-spacing: .18em; color: rgba(255,255,255,.7); }
.cta-tel__num {
	display: block;
	font-family: var(--en);
	font-size: clamp(34px, 4vw, 44px);
	font-weight: 500;
	line-height: 1.15;
	color: #fff;
}
.cta-tel__note { display: block; font-size: 12px; color: rgba(255,255,255,.7); }
.cta-band .btn--solid { background: #fff; color: var(--moss-deep); border-color: #fff; }
.cta-band .btn--solid:hover { background: var(--sand); border-color: var(--sand); color: var(--moss-deep); }
.cta-band .btn--line { background: #06c755; border-color: #06c755; color: #fff; }
.cta-band .btn--line:hover { background: #05b34c; border-color: #05b34c; }

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */

.site-footer {
	background: var(--moss-deep);
	color: rgba(255,255,255,.7);
	padding-top: clamp(56px, 6vw, 84px);
	font-size: 14px;
}
.site-footer__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gut);
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	padding-bottom: clamp(40px, 5vw, 64px);
}
.footer-name {
	font-family: var(--serif);
	font-size: 22px;
	letter-spacing: .16em;
	color: #fff;
}
.footer-en {
	font-family: var(--en);
	font-size: 11px;
	letter-spacing: .24em;
	color: rgba(255,255,255,.5);
	margin-top: 4px;
}
.footer-address { margin-top: 24px; line-height: 2; }
.footer-address a { font-family: var(--en); font-size: 18px; letter-spacing: .04em; }
.footer-meta { margin-top: 20px; display: grid; gap: 6px; font-size: 13px; }
.footer-meta > div { display: flex; gap: 14px; }
.footer-meta dt { min-width: 5.5em; color: rgba(255,255,255,.5); }

.site-footer__nav { display: grid; gap: 22px; align-content: start; }
.footer-menu { display: grid; gap: 12px; }
.footer-menu a { position: relative; padding-left: 16px; font-size: 14px; }
.footer-menu a::before {
	content: "";
	position: absolute;
	left: 0; top: .8em;
	width: 7px; height: 1px;
	background: rgba(255,255,255,.45);
}
.footer-menu a:hover { color: #fff; }
.footer-menu--sub { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }

.copyright {
	border-top: 1px solid rgba(255,255,255,.14);
	padding: 22px var(--gut);
	text-align: center;
	font-family: var(--en);
	font-size: 12px;
	letter-spacing: .14em;
	color: rgba(255,255,255,.5);
}

/* --------------------------------------------------------------------------
   スマホ固定バー
   -------------------------------------------------------------------------- */

.sp-bar {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 80;
	grid-template-columns: 1fr 1fr;
	box-shadow: 0 -2px 16px rgba(0,0,0,.12);
}
.sp-bar__item {
	padding: 15px 8px;
	text-align: center;
	font-size: 15px;
	letter-spacing: .08em;
	color: #fff;
}
.sp-bar__item--tel { background: var(--moss-deep); }
.sp-bar__item--form { background: var(--accent); }
.sp-bar__item:hover { color: #fff; opacity: .92; }

/* --------------------------------------------------------------------------
   スクロール表示アニメーション
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-visible {
	opacity: 1;
	transform: none;
	transition: opacity .9s var(--ease), transform .9s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
	.reveal { opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */

@media (max-width: 1320px) {
	.header-tel { display: none; }
	.site-nav__list { gap: 20px; }
	.site-nav__list a { font-size: 14px; }
}

@media (max-width: 1080px) {
	.site-nav, .header-cta { display: none; }
	.nav-toggle { display: block; }
	.service-list { grid-template-columns: 1fr; }
	.service-card { border-left: 1px solid var(--sand-line); }
	.works-grid { grid-template-columns: repeat(2, 1fr); }
	.price-brief { grid-template-columns: 1fr; }
	.flow-brief { grid-template-columns: repeat(3, 1fr); }
	.work-single { grid-template-columns: 1fr; }
	.cta-band__inner { grid-template-columns: 1fr; }
	.cta-band__actions { min-width: 0; }
}

@media (max-width: 860px) {
	body { font-size: 15px; line-height: 1.95; }
	.about { grid-template-columns: 1fr; }
	.about__media { max-width: 420px; }
	.reason-grid { grid-template-columns: 1fr; }
	.service-detail { grid-template-columns: 1fr; }
	.service-detail:nth-child(even) .service-detail__media { order: 0; }
	.flow-step { grid-template-columns: 1fr; gap: 8px; }
	.company-table__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 2px; }
	.contact-methods { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.sp-bar { display: grid; }
	body { padding-bottom: 56px; }
	.site-header__inner { height: 68px; }
	.hero__inner { padding-top: 110px; padding-bottom: 130px; }
	.hero__copy { max-height: 58vh; font-size: clamp(24px, 6.4vw, 34px); }
	.hero__tags { bottom: 78px; }
	.hero__scroll { display: none; }
	.faq__q { font-size: 16px; padding: 20px 36px 20px 34px; }
	.faq__a { padding: 0 36px 24px 34px; }
}

@media (max-width: 600px) {
	.works-grid { grid-template-columns: 1fr; gap: 34px; }
	.flow-brief { grid-template-columns: repeat(2, 1fr); }
	.service-detail__items { grid-template-columns: 1fr; }
	.price-list__row { flex-direction: column; gap: 2px; }
	.price-list__row dd { font-size: 19px; }
	.brand__ja { font-size: 17px; }
	.brand__en { display: none; }
}
