@charset "UTF-8";
/* ==============================================
   外構工事プログレス滋賀 - common.css
   PC first / breakpoints: 1200 / 960 / 568
============================================== */

/* --------------このサイトオリジナル設定--------------- */
* {box-sizing: border-box;}
a {color: var(--color_text);outline: none;text-decoration:none;}
a:hover {text-decoration:underline;}
:root {
	--color_green: #238b57;
	--color_green_sub: #699c48;
	--color_green_light: #f5f7eb;
	--color_gold: #A3841E;
	--color_orange: #FA7301;
	--color_line: #1ea422;
	--color_text: #222222;
	--color_text_sub: #4d4c4c;
	--color_white: #ffffff;
	--color_bg: #fffbf6;
	--color_bg_alt: #f9f8f5;
	--color_cream: #f3f0ec;
	--color_border: #e2ddd3;
	--font_serif: "Noto Serif JP", serif;
	--font_sans: "Zen Kaku Gothic New", sans-serif;
	--container_width: 1200px;
	--header_height: 128px;
}
@font-face {font-family: "Roboto";font-style: normal;font-weight: 900;src: url("../fonts/Roboto-Black.woff") format("woff");font-display: swap;}
/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {overflow-x: hidden;overflow-y: scroll;-webkit-box-sizing: border-box;box-sizing: border-box;scroll-behavior: smooth;overscroll-behavior-x: none;}
body {
	font-size: 16px;
	font-family: var(--font_sans);
	color: var(--color_text);
	background: var(--color_white);
	line-height: 1.75;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	padding-bottom: 82px;
}
@media only screen and (max-width: 1200px) {
	body { padding-bottom: 64px; }
}
@media only screen and (max-width: 568px) {
	body { font-size: 15px; }
}
html.is_menu_open { overflow: hidden; }
table {font-size: inherit;}
select, input, textarea {font: 99% arial, helvetica, clean, sans-serif;}
br {letter-spacing: normal;}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td {margin: 0;padding: 0;font-style: normal;font-weight: normal;}
address, em {font-style: normal;}
strong, th {font-weight: normal;}
table {border-collapse: collapse;border-spacing: 0;border: none;}
th, td {text-align: left;border: none;font-weight: normal;}
hr {display: none;}
h1, h2, h3, h4, h5, h6 {font-size: 100%;}
img, fieldset {border: 0;vertical-align: bottom;}
li {list-style-type: none;}
ul, ol, dl {margin: 0;list-style-position: outside;list-style-type: none;}
li, dt, dd {font-size: 100%;}
dt {font-weight: normal;}
a:hover {text-decoration: none;}
form, input {padding: 0;margin: 0;}
iframe{border:none;}
picture{display: block;}
figure{margin: 0;}
img{display:block;height:auto;width:100%;}
summary {display: block;list-style: none;}
summary::-webkit-details-marker {display:none;}
a {color: #202020;outline: none;text-decoration: none;}

/*===============================================
 *	br
===============================================*/
@media screen and (min-width:1021px){
.br-pc{display:block;}
.br-tb{display:none;}
.br-sp{display:none;}
}
@media screen and (min-width:481px) and (max-width: 1020px) {
.br-pc{display:none;}
.br-tb{display:block;}
.br-sp{display:none;}
}
@media screen and (max-width: 480px) {
.br-pc{display:none;}
.br-tb{display:none;}
.br-sp{display:block;}
}
/* ---------- layout helpers ---------- */
.center{text-align: center;}
.l_container {
	width: 100%;
	max-width: var(--container_width);
	margin: 0 auto;
	padding: 0 20px;
}
.section_heading { text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
.section_eyebrow {
	display: inline-flex; align-items: center; gap: 16px;
	font-family: var(--font_serif); font-weight: 600;
	font-size: 24px; letter-spacing: .15em; color: var(--color_green);
	margin-bottom: 16px;
}
.section_eyebrow-gold { color: var(--color_gold); }
.section_eyebrow::before, .section_eyebrow::after {
	content: "";
	--eyebrow_line_color: var(--color_green);
	--eyebrow_line_thickness: 2px;
	--eyebrow_line_length: 20px;
	display: inline-block;
	width: var(--eyebrow_line_thickness);
	height: var(--eyebrow_line_length);
	background-color: var(--eyebrow_line_color);
}
.section_eyebrow::before { transform: rotate(-35deg); }
.section_eyebrow::after { transform: rotate(35deg); }
.section_eyebrow-gold::before, .section_eyebrow-gold::after { --eyebrow_line_color: var(--color_gold); }
.section_eyebrow-straight::before, .section_eyebrow-straight::after {
	--eyebrow_line_thickness: 1px;
	--eyebrow_line_length: 25px;
}
.section_eyebrow-straight::before { transform: rotate(-26deg); }
.section_eyebrow-straight::after { transform: rotate(26deg); }
.section_title {
	font-family: var(--font_serif); font-weight: 600;
	font-size: 40px; letter-spacing: .1em; line-height: 1.35; color: var(--color_text);
}
.section_title_accent { color: var(--color_green); }
.section_title_lg { font-size: 46px; }
.section_title_gold { color: var(--color_gold); font-size: 1.4em; }
.section_title_green { color: var(--color_green); font-size: 1.4em; }
.section_title-leaf { position: relative; display: inline-block; padding: 0 46px; }
.section_title-leaf::before, .section_title-leaf::after {
	content: ""; position: absolute; top: 50%; transform: translateY(-50%);
	height: 97px;
	background: no-repeat center / contain;
}
.section_title-leaf::before { left: 0; width: 34px; background-image: url(../img/top/heading_leaf_left.svg); }
.section_title-leaf::after { right: 0; width: 44px; background-image: url(../img/top/heading_leaf_right.svg); }
@media only screen and (max-width: 960px) {
	.section_title-leaf { padding: 0 32px; }
	.section_title-leaf::before, .section_title-leaf::after { height: 69px; }
	.section_title-leaf::before { width: 24px; }
	.section_title-leaf::after { width: 31px; }
	.section_heading { margin-bottom: 44px; }
	.section_eyebrow { font-size: 20px; gap: 12px; }
	.section_title { font-size: 32px; }
}
@media only screen and (max-width: 568px) {
	.section_title { font-size: 26px; letter-spacing: .05em; line-height: 1.5; }
	.section_title-leaf { padding: 0 22px; }
	.section_title-leaf::before, .section_title-leaf::after { height: 56px; }
	.section_title-leaf::before { width: 26px; left: -15px; }
	.section_title-leaf::after { width: 26px; right: -10px; }
	.section_heading { margin-bottom: 20px; }
	.section_eyebrow { font-size: 17px; gap: 10px; letter-spacing: .20em; margin-bottom: 5px;}
	.section_eyebrow-straight::before, .section_eyebrow-straight::after { --eyebrow_line_length: 20px; }
	.section_title_lg { font-size: 30px; }
	.difference .section_title { font-size: 24px; }
	.section_eyebrow::before, .section_eyebrow::after {
		--eyebrow_line_thickness: 1px;
	}
}
.section_lead {
	margin-top: 24px; letter-spacing: .1em; line-height: 1.75; color: var(--color_text);
}

/* ---------- 区切り見出し(セクション内の小見出し) ---------- */
.section_divider { text-align: center; margin: 60px 0 20px; }
.section_divider_title {
	position: relative; padding-bottom: 20px;
	font-family: var(--font_serif); font-weight: 600; font-size: 26px; letter-spacing: .1em; color: var(--color_text);
}
.section_divider_title::before {
	content: ""; position: absolute; left: 50%; bottom: 0; width: 8px; height: 8px;
	background: #A8C7B8; transform: translateX(-50%) rotate(45deg);
}
.section_divider_title::after {
	content: ""; position: absolute; left: 50%; bottom: 0; width: 168px; height: 8px; transform: translateX(-50%);
	background:
		linear-gradient(#A8C7B8, #A8C7B8) left center / 72px 1px no-repeat,
		linear-gradient(#A8C7B8, #A8C7B8) right center / 72px 1px no-repeat;
}

@media only screen and (max-width: 960px) {
	.section_divider { margin: 44px 0 16px; }
}
@media only screen and (max-width: 568px) {
	.section_divider_title { font-size: 20px; }
}

/* buttons */
.btn_primary, .btn_outline {
	display: inline-flex; align-items: center; justify-content: center; gap: 12px;
	font-family: var(--font_sans); font-weight: 500; letter-spacing: .1em;
	transition: opacity .25s ease, transform .25s ease;
}
.btn_primary {
	background: var(--color_green); color: #fff; border-radius: 999px;
	padding: 22px 40px; font-size: 20px;
}
.btn_primary:hover { opacity: .85; transform: translateY(-2px); }
.btn_outline {
	width: 100%; border: 1px solid var(--color_green_sub); color: var(--color_green_sub);
	border-radius: 5px; padding: 14px 20px;
}
.btn_outline:hover { background: var(--color_green_sub); color: #fff; }
.btn_outline img { width: 18px; margin-left: 4px; }
.btn_primary img { width: 16px; flex-shrink: 0; }

/* fade up scroll animation */
.js_fade_up { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.js_fade_up.is_inview { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.js_fade_up { opacity: 1; transform: none; transition: none; }
}

/* ==============================================
   HEADER
============================================== */
.header { width: 100%; background: #fff; }
.header_top { background: var(--color_cream); }
.header_top_text {
	max-width: var(--container_width); padding: 11px 20px;
	font-size: 13px; letter-spacing: .05em; color: var(--color_text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.header_main { position: sticky; top: 0; z-index: 500; background: #fff; border-bottom: 1px solid var(--color_border); }

/* row 1: logo + CTA buttons + hamburger */
.header_inner {
	max-width: var(--container_width); margin: 0 auto; padding: 16px 20px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header_logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header_logo img { width: 68px; }
.header_logo_text { font-family: var(--font_serif); font-weight: 700; font-size: 36px; letter-spacing: .04em; white-space: nowrap; }

.header_cta_group { display: flex; align-items: center; gap: 12px; }
.header_cta_group .btn_line::after, .header_cta_group .btn_form::after {
	content: ""; display: block; width: 18px; aspect-ratio: 20 / 13; margin-left: 4px; flex-shrink: 0;
	background: url(../img/common/arr_basic_white_right.svg) center / contain no-repeat;
}

.btn_line, .btn_form {
	display: flex; align-items: center; gap: 8px; border-radius: 7px; padding: 9px 16px;
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
	white-space: nowrap;
}
.btn_line { background: var(--color_line); color: #fff; }
.btn_form { background: var(--color_orange); color: #fff; }
.btn_cta_text { display: flex; flex-direction: column; line-height: 1.3; }
.btn_cta_text small { font-size: 14px; letter-spacing: .02em; }
.btn_cta_text strong { font-size: 20px; font-weight: 700; letter-spacing: .02em; }
.btn_line_icon { width: 32px; }
.btn_form_icon { width: 35px; }
.btn_cta_arrow { width: 6px; margin-left: 4px; }

.hamburger { font-family: var(--font_serif); display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 54px; height: 54px; flex-shrink: 0; z-index: 600;background: none;border: none; color: var(--color_text); }
.hamburger_box { position: relative; width: 24px; height: 16px; }
.hamburger_box::before, .hamburger_box::after, .hamburger_line {
	content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: var(--color_text); transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.hamburger_box::before { top: 0; }
.hamburger_line { top: 7px; }
.hamburger_box::after { top: 14px; }
.hamburger_label { font-size: 10px; letter-spacing: .05em; }
.hamburger_label-close { display: none; }
body.is_menu_open .hamburger_box::before { top: 7px; transform: rotate(45deg); }
body.is_menu_open .hamburger_box::after { top: 7px; transform: rotate(-45deg); }
body.is_menu_open .hamburger_line { opacity: 0; }
body.is_menu_open .hamburger_label-open { display: none; }
body.is_menu_open .hamburger_label-close { display: inline; }

/* row 2: full-width nav bar (desktop) / off-canvas drawer (mobile) */
.header_navbar { border-top: 1px solid var(--color_border); }
.gnav { max-width: var(--container_width); margin: 0 auto; padding: 4px 20px; display: flex; align-items: center; justify-content: center; }
.gnav_list { display: flex; align-items: center; }
.gnav_item { position: relative; }
.gnav_item-top { display: none; }
.gnav_item::before {
	content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 1px; height: 16px; background: var(--color_border);
}
.gnav_item:last-child::after {
	content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	width: 1px; height: 16px; background: var(--color_border);
}
.gnav_link { display: inline-block; padding: 10px 4em; font-size: 15px; font-weight: 500; letter-spacing: .04em; white-space: nowrap; }
.gnav_link:hover { color: var(--color_green); }
.gnav_link_icon { display: none; }

.gnav_service_label {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 10px 4em; font-size: 15px; font-weight: 500; letter-spacing: .04em; white-space: nowrap;
}
.gnav_service_label::after {
	content: ""; width: 6px; height: 6px; margin-left: 10px;
	border-right: 1.5px solid var(--color_text); border-bottom: 1.5px solid var(--color_text);
	transform: rotate(45deg);
	transition: transform .2s ease, border-color .2s ease;
}
.gnav_item-service:hover .gnav_service_label,
.gnav_item-service:focus-within .gnav_service_label { color: var(--color_green); }
.gnav_item-service:hover .gnav_service_label::after,
.gnav_item-service:focus-within .gnav_service_label::after {
	border-color: var(--color_green); transform: rotate(-135deg); margin-top: 4px;
}
.gnav_service_panel {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
	width: 560px; padding: 24px 20px 20px;
	background: #fff; border-radius: 10px; box-shadow: 0 10px 30px rgba(34,34,34,.14);
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .2s ease, visibility .2s ease;
	z-index: 10;
}
.gnav_item-service:hover .gnav_service_panel,
.gnav_item-service:focus-within .gnav_service_panel {
	opacity: 1; visibility: visible; pointer-events: auto;
}
.gnav_service_list { display: flex; gap: 12px; }
.gnav_service_link {
	display: flex; align-items: center; gap: 10px; width: 100%; box-sizing: border-box;
	background: var(--color_bg_alt); border: 1px solid var(--color_border); border-radius: 8px;
	padding: 12px 14px; font-size: 14px; font-weight: 500; letter-spacing: .02em; color: var(--color_text);
	white-space: nowrap; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.gnav_service_link:hover { background: var(--color_green_light); border-color: var(--color_green_sub); color: var(--color_green); }
.gnav_service_link_icon { display: block; width: 50px; height: 50px; object-fit: contain; flex-shrink: 0; }

/* CTA buttons duplicated inside the drawer are desktop-hidden; header_cta_group covers desktop */
.gnav .gnav_cta { display: none; }

.gnav_overlay {
	position: fixed; inset: 0; background: rgba(34,34,34,.5); z-index: 400;
	opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
body.is_menu_open .gnav_overlay { opacity: 1; visibility: visible; }

@media only screen and (max-width: 1200px) {
	.header_top, .header_inner { position: relative; z-index: 2; }
	body.is_menu_open .header { display: none; }
	.header_top_text { font-size: 12px; }
	.header_inner { padding: 10px 10px; gap: 4px; }
	.header_logo { flex-shrink: 1; min-width: 0; gap: 4px; }
	.header_logo img { width: 24px; flex-shrink: 0; }
	.header_logo_text { font-size: 10px; overflow: hidden; text-overflow: ellipsis; }
	.header_cta_group { flex-shrink: 0; }
	.header_cta_group .btn_line { display: none; }
	.header_cta_group .btn_form { gap: 0; padding: 5px 7px; border-radius: 4px; }
	.header_cta_group .btn_form_icon { display: none; }
	.header_cta_group .btn_form::after { display: none; }
	.header_cta_group .btn_cta_text small { font-size: 7px; }
	.header_cta_group .btn_cta_text strong { font-size: 11px; }
	.header_navbar { border-top: none; }
	.gnav {
		position: fixed; top: 0; left: 0; right: auto; height: 100dvh; width: 100%;
		background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
		padding: 100px 0 0; gap: 0; overflow: hidden; max-width: none;
		transform: translateX(100%); visibility: hidden; transition: transform .35s ease, visibility 0s linear .35s; z-index: 1;
	}
	body.is_menu_open .gnav { transform: translateX(0); visibility: visible; transition: transform .35s ease, visibility 0s linear; }
	.gnav_list { flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; flex-direction: column; align-items: stretch; width: 100%; }
	.gnav_item { padding: 0; border-bottom: 1px solid var(--color_border); }
	.gnav_item::before, .gnav_item:last-child::after { display: none; }
	.gnav_item-top { display: block; order: 0; }
	.gnav_item-flow { order: 1; }
	.gnav_item-service { order: 2; display: block; padding: 20px; }
	.gnav_item-price { order: 3; }
	.gnav_item-case { order: 4; }
	.gnav_item-faq { order: 5; }
	.gnav_item-company { order: 6; }
	.gnav_link { display: flex; align-items: center; padding: 18px 28px; font-size: 15px; }
	.gnav_link::after {
		content: ""; width: 10px; height: 14px; margin-left: auto; flex-shrink: 0;
		background: url(../img/common/arr_basic_green_right.svg) center / contain no-repeat;
	}
	.gnav_link_icon { display: inline-block; width: 20px; height: 20px; object-fit: contain; margin-right: 14px; flex-shrink: 0; }
	.gnav_link_icon-faq {
		display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px;
		border-radius: 50%; border: 1.5px solid var(--color_green); color: var(--color_green);
		font-weight: 700; font-size: 12px; margin-right: 14px; flex-shrink: 0;
	}
	.gnav_service_label { display: flex; align-items: center; font-size: 15px; font-weight: 500; margin-bottom: 16px; }
	.gnav_service_label::after { display: none; }
	.gnav_service_panel {
		position: static; opacity: 1; visibility: visible; pointer-events: auto;
		transform: none; width: auto; margin-top: 0; padding: 0; background: none; box-shadow: none;
	}
	.gnav_service_list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
	.gnav_service_link {
		display: flex; align-items: center; justify-content: space-between; background: #fef9f4; border-radius: 6px;
		padding: 10px 10px; font-size: 13px; white-space: nowrap; color: var(--color_text);
	}
	.gnav_service_link_icon { display: none; }
	.gnav_service_link::after {
		content: ""; width: 10px; height: 14px; margin-left: 8px; flex-shrink: 0;
		background: url(../img/common/arr_basic_green_right.svg) center / contain no-repeat;
	}
	.gnav .gnav_cta {
		display: flex; align-items: stretch; width: 100%; flex-shrink: 0; background: var(--color_green_light);
	}
	.hamburger { display: flex; }
}
@media only screen and (max-width: 960px) {
	.header_top_text { font-size: 11px; }
	.header_inner { padding: 10px 5%; }
	.header_logo img { width: 32px; }
	.header_logo_text { font-size: 14px; }
}
@media only screen and (max-width: 568px) {
	.header_inner {padding: 5px 0 5px 5%;}
	.header_top_text { font-size: 10px; white-space: normal; line-height: 1.5; padding: 5px 0 5px 5%; }
	.header_logo_text { font-size: 13px; }
	.header_logo img { width: 28px; }
	.gnav { width: 100vw; padding: 50px 0 0; }
	.gnav_service_label { padding: 10px 0; }
}

/* ==============================================
   MV
============================================== */
.mv { position: relative; overflow: hidden; }
.mv_slides { position: relative; display: grid; touch-action: pan-y; }
.mv_slide {
	grid-area: 1 / 1; width: 100%; min-height: 726px; box-sizing: border-box;
	padding: 80px 0;
	background: center / cover no-repeat;
	transform: translateX(100%);
	transition: transform 1s cubic-bezier(.65,0,.35,1);
}
.mv_slide.is_active { transform: translateX(0); }
.mv_slide-01 { background-image: url(../img/top/mv_bg_pc01.jpg); }
.mv_slide-02 { background-image: url(../img/top/mv_bg_pc02.jpg); }
.mv_slide-03 { background-image: url(../img/top/mv_bg_pc03.jpg); }
.mv_inner { position: relative; z-index: 1; width: 100%; max-width: 1300px; margin: 0 auto; }
.mv_sub { position: relative; font-size: 30px; letter-spacing: .1em; font-weight: 500; }
.mv_sub::before {
	content: ""; position: absolute; z-index: -1; pointer-events: none;
	left: -.3em; top: -1.0em; width: 13.5em; height: 4.4em;
	background: url(../img/top/mv_bg_decoration.svg) no-repeat left top / contain;
}
.mv_heading { font-family: var(--font_serif); font-weight: 600; line-height: 1.6; margin-bottom: 28px; }
.mv_heading_line1, .mv_heading_line2 { display: block; font-size: 52px; letter-spacing: .08em; }
.mv_heading em { font-style: normal; font-size: 60px; }
.mv_accent { color: var(--color_green); font-size: 60px; }
.mv_accent_sm { color: var(--color_green); }
.mv_lead { font-size: 20px; letter-spacing: .08em; line-height: 1.75; margin-bottom: 30px; }

.mv_badge_list { position: absolute; z-index: 2; left: 0; right: 0; top: 466px; width: 100%; max-width: 1300px; margin: 0 auto; height: 180px; }
.mv_badge_set {
	position: absolute; inset: 0; display: flex; gap: 24px;
	opacity: 0; pointer-events: none; transition: opacity .6s ease;
}
.mv_badge_set.is_active { opacity: 1; pointer-events: auto; }
.mv_badge_item {
	display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 180px; aspect-ratio: 1;
	padding: 24px 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 4px 0 rgba(34,34,34,.1);
}
.mv_badge_icon {
	width: 80px; height: 70px;
	display: flex; align-items: center; justify-content: center;
}
.mv_badge_icon img { object-fit: contain; }
.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(1) .mv_badge_icon img { width: 60px; height: 52px; }
.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(2) .mv_badge_icon img { width: 48px; height: 58px; }
.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(3) .mv_badge_icon img { width: 68px; height: 55px; }
.mv_badge_text { letter-spacing: -1px; line-height: 1.5; }
.mv_badge_text_accent { font-weight: 700; color: var(--color_green); }
.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(1) .mv_badge_text_accent { font-size: 19px; }
.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(2) .mv_badge_text_accent { font-size: 21px; }
.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(3) .mv_badge_text_accent { font-size: 21px; }

.mv_dots { position: absolute; z-index: 3; left: 0; right: 0; bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.mv_dot { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: #d9d9d9; cursor: pointer; transition: background .3s ease, transform .3s ease; }
.mv_dot:hover { background: rgba(236, 236, 236, 0.8); }
.mv_dot.is_active { background: var(--color_green); transform: scale(1.2); }

/* MV_02 (3Dパース訴求スライド) */
.mv02_inner { position: relative; width: 100%; max-width: 1300px; margin: 0 auto; }
.mv02_heading_block { position: relative; margin: 0 0 24px 15px; }
.mv02_check {
	position: absolute; left: -16px; top: -34px; font-family: 'Satisfy', cursive; font-weight: 400;
	font-size: 34px; letter-spacing: .1em; color: #f9f91f; transform: rotate(-12deg) skewX(-5deg);
	text-shadow: 0 0 6px rgba(0,0,0,.25); z-index: 10;
}
.mv02_heading { font-family: var(--font_serif); font-weight: 600; color: var(--color_text); }
.mv02_heading_line1 { display: block; font-size: 44px; line-height: 1.6; }
.mv02_heading_line2 { display: block; font-size: 44px; line-height: 1.75; }
.mv02_heading_line3 { display: block; font-size: 52px; line-height: 1.45; }
.mv02_accent { color: var(--color_green); font-size: 56px; }
.mv02_heading_hl { display: inline-block; background: #fff; padding: 7px 10px 10px 10px; line-height: 1; margin-right: 10px; }
.mv02_br_m { display: none; }
.mv02_icon_house { position: absolute; left: 391px; top: -25px; width: 110px; height: 104px; opacity: .8; }
.mv02_card {
	position: relative; margin: 0 0 0 15px; width: 619px; background: #fcfbf6; border-radius: 6px;
	box-shadow: 0 0 4px 0 rgba(34,34,34,.12);
}
.mv02_card_banner {
	min-height: 53px; display: flex; align-items: center; justify-content: center; gap: 16px;
	padding: 8px 24px; border-radius: 6px 6px 0 0; background: var(--color_green);
}
.mv02_card_banner::before, .mv02_card_banner::after { content: ""; flex: none; align-self: center; width: 1px; height: 27px; background: #fff; }
.mv02_card_banner::before { transform: rotate(-30deg); }
.mv02_card_banner::after { transform: rotate(30deg); }
.mv02_card_banner_text {
	min-width: 0; text-align: center; font-family: var(--font_serif); font-weight: 500;
	font-size: 21px; line-height: 1.4; letter-spacing: .1em; color: #fff;
}
.mv02_card_banner_text em { font-style: normal; font-weight: 500; font-size: 25px; color: #ffe925; }
.mv02_card_body { position: relative; display: flex; align-items: flex-start; justify-content: center; gap: 41px; padding: 20px 50px 10px; }
.mv02_card_photo_wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
.mv02_card_photo_wrap:first-child::after {
	content: ""; position: absolute; left: 100%; top: 50%; margin-left: 12px; transform: translateY(-50%);
	width: 0; height: 0; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 17px solid var(--color_green);
}
.mv02_card_photo {
	position: relative; display: block; width: 231px; height: 150px; border: none; padding: 0; margin: 0;
	border-radius: 4px; overflow: hidden; background: #e2ddd3; cursor: zoom-in;
}
.mv02_card_photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mv02_card_photo::after {
	content: ""; position: absolute; right: 0; bottom: 0; width: 25px; height: 25px; border-radius: 0 0 4px 0;
	background: url(../img/top/mv02_icon_zoom.svg) center / contain no-repeat;
}
.mv02_card_label { margin-top: 8px; font-family: var(--font_sans); font-weight: 500; font-size: 18px; letter-spacing: .1em; color: var(--color_text); }
.mv02_card_leaf { position: absolute; right: 0; bottom: 0; width: 77px; height: 96px; transform: scaleX(-1); pointer-events: none; }

/* MV_03 (対応工事訴求スライド) */
.mv03_card { position: relative; margin: 24px 0 0 0; width: 619px; background: #fcfbf6; border-radius: 6px; box-shadow: 0 0 4px 0 rgba(34,34,34,.12); padding: 0 0 15px; }
.mv03_card_banner {
	min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 16px;
	padding: 8px 24px; border-radius: 6px 6px 0 0; background: var(--color_green);
}
.mv03_card_banner::before, .mv03_card_banner::after { content: ""; flex: none; align-self: center; width: 1px; height: 27px; background: #fff; }
.mv03_card_banner::before { transform: rotate(-30deg); }
.mv03_card_banner::after { transform: rotate(30deg); }
.mv03_card_banner_text {
	min-width: 0; text-align: center; font-family: var(--font_serif); font-weight: 600;
	font-size: 21px; line-height: 1.4; letter-spacing: .1em; color: #fff;
}
.mv03_card_banner_text em { font-style: normal; font-weight: 600; font-size: 26px; color: #ffe925; }
.mv03_card_grid { display: grid; grid-template-columns: 1fr 1fr; padding: 10px 20px 0; }
.mv03_card_item { display: flex; align-items: center; gap: 16px; padding: 10px 15px; }
.mv03_card_item:nth-child(1), .mv03_card_item:nth-child(2) { border-bottom: 1px solid var(--color_border); }
.mv03_card_item:nth-child(odd) { border-right: 1px solid var(--color_border); }
.mv03_card_icon { flex-shrink: 0; width: 55px; display: flex; align-items: center; justify-content: center; }
.mv03_card_icon img { display: block; max-width: 100%; height: auto; }
.mv03_card_label { font-family: var(--font_sans); font-size: 18px; letter-spacing: .12em; color: var(--color_text); }
.mv03_card_note {
	position: relative; margin: 15px 15px 0; box-sizing: border-box;
	background: var(--color_green_light); border-radius: 4px; text-align: center; padding: 8px 20px;
}
.mv03_card_note_text { font-family: var(--font_serif); font-weight: 600; font-size: 17px; letter-spacing: .08em; color: var(--color_green); }
.mv03_card_leaf { position: absolute; z-index: 1; right: 4px; bottom: 0; width: 60px; height: 75px; transform: scaleX(-1); pointer-events: none; }

.mv02_modal {
	position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 40px;
	opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility 0s linear .25s;
}
.mv02_modal.is_active { opacity: 1; visibility: visible; transition: opacity .25s ease; }
.mv02_modal_overlay { position: absolute; inset: 0; background: rgba(20,20,20,.75); }
.mv02_modal_body { position: relative; z-index: 1; max-width: 900px; width: 100%; }
.mv02_modal_img { display: block; width: 100%; height: auto; border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,.3); }
.mv02_modal_close {
	position: absolute; top: -46px; right: 0; width: 36px; height: 36px; border-radius: 50%; border: none;
	background: #fff; color: var(--color_text); font-size: 22px; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
}

@media only screen and (max-width: 1200px) {
	.mv_inner { width: 58%; }
	.mv_heading_line1, .mv_heading_line2 { font-size: 28px; }
	.mv_heading em { font-size: 32px; }
	.mv_accent { font-size: 32px; }
	.mv_badge_list { width: 58%; top: 383px; }
	.mv_badge_set { gap: 16px; }
	.mv_badge_item { width: 180px; }
	.mv_slide { min-height: 643px; }
}
@media only screen and (max-width: 960px) {
	.mv_slide { padding: 48px 0 40px; min-height: 571px; }
	.mv_slide-01 { background-image: url(../img/top/mv_bg_sp01.jpg); }
	.mv_slide-02 { background-image: url(../img/top/mv_bg_sp02.jpg); padding-top: 78px; }
	.mv_slide-03 { background-image: url(../img/top/mv_bg_sp03.jpg); }
	.mv_inner { width: 100%; margin-left: 5%;}
	.mv_badge_list { width: 100%; top: 351px; }
	.mv_badge_set { justify-content: center; }
	.mv_dots { bottom: 14px; }

	.mv02_heading_block { margin: 0 0 20px 5%; }
	.mv02_check { left: -10px; top: -28px; font-size: 23px; }
	.mv02_heading_line1 { font-size: 25px; line-height: 1.5; }
	.mv02_heading_line2 { font-size: 19px; line-height: 1.9; }
	.mv02_heading_line3 { font-size: 25px; line-height: 1.36; }
	.mv02_accent { font-size: 36px; }
	.mv02_heading_hl { padding: 2px 10px 2px 2px; }
	.mv02_br_m { display: block; }
	.mv02_icon_house { left: 144px; top: -44px; width: 58px; height: 55px; }
	.mv02_card { width: 335px; max-width: calc(100% - 24px); margin: 0 auto; }
	.mv02_card_banner { min-height: 28px; gap: 8px; padding: 5px 12px; }
	.mv02_card_banner::before, .mv02_card_banner::after { height: 14px; }
	.mv02_card_banner_text { font-size: 12px; }
	.mv02_card_banner_text em { font-size: 14px; }
	.mv02_card_body { gap: 24px; padding: 15px 15px 12px; }
	.mv02_card_photo { width: 136px; height: 88px; }
	.mv02_card_photo::after { width: 19px; height: 19px; }
	.mv02_card_label { margin-top: 6px; font-size: 14px; }
	.mv02_card_photo_wrap:first-child::after { margin-left: 6.5px; border-top-width: 9px; border-bottom-width: 9px; border-left-width: 11px; }
	.mv02_card_leaf { width: 47px; height: 66px; }

	.mv03_card { width: 335px; max-width: calc(100% - 24px); margin: 20px 0 0; }
	.mv03_card_banner { min-height: 28px; gap: 8px; padding: 5px 12px; }
	.mv03_card_banner::before, .mv03_card_banner::after { height: 14px; }
	.mv03_card_banner_text { font-size: 12px; }
	.mv03_card_banner_text em { font-size: 14px; }
	.mv03_card_grid { padding: 0 12px; }
	.mv03_card_item { gap: 10px; padding: 10px 8px; }
	.mv03_card_icon { width: 34px; }
	.mv03_card_label { font-size: 13px; letter-spacing: .06em; }
	.mv03_card_leaf { width: 32px; height: 51px; }
	.mv03_card_note { margin: 0 10px 10px; padding: 6px 12px; }
	.mv03_card_note_text { font-size: 14px; }
}
@media only screen and (max-width: 568px) {
	.mv_slide { padding: 40px 0 30px; min-height: 480px; }
	.mv_slide-02 { padding-top: 70px; }
	.mv_sub { font-size: 15px; margin-bottom: 5px;}
	.mv_heading_line1, .mv_heading_line2 { font-size: 32px;text-align: left; }
	.mv_heading{margin-bottom: 15px;}
	.mv_heading em { font-size: 36px; }
	.mv_accent { font-size: 36px; }
	.mv_lead { font-size: 14px; margin-bottom: 10px; text-align: left;}
	.mv_badge_list { top: 343px; height: 100px; }
	.mv_badge_set { gap: 10px; }
	.mv_badge_item { width: 100px; padding: 5px 0 0; justify-content: flex-start; }
	.mv_badge_icon { width: 35px; height: 35px; }
	.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(1) .mv_badge_icon img { width: 28px; height: 24px; }
	.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(2) .mv_badge_icon img { width: 23px; height: 28px; }
	.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(3) .mv_badge_icon img { width: 28px; height: 23px; }
	.mv_badge_text { font-size: 12px;line-height: 1.3; }
	.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(1) .mv_badge_text_accent { font-size: 13px; }
	.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(2) .mv_badge_text_accent { font-size: 14px; }
	.mv_badge_set:nth-of-type(1) .mv_badge_item:nth-of-type(3) .mv_badge_text_accent { font-size: 14px; }
	.mv_dots { bottom: 15px; gap: 8px; }
	.mv_dot { width: 8px; height: 8px; }

	.mv02_card_body { gap: 4vw; padding: 12px 12px 10px; }
	.mv02_card_photo { width: 40vw; max-width: 136px; height: auto; aspect-ratio: 136 / 88; }
	.mv02_card_photo_wrap:first-child::after { margin-left: calc(2vw - 5.5px); }
	.mv02_card_label { font-size: 12px; }
	.mv02_modal { padding: 20px; }
	.mv02_modal_close { top: -40px; right: 0; width: 32px; height: 32px; font-size: 18px; }

	.mv03_card { margin: 10px 0 0; padding: 0 0 5px; width: 90%; max-width: initial;}
	.mv03_card_grid { padding: 0 8px; }
	.mv03_card_item { gap: 8px; padding: 8px; }
	.mv03_card_icon { width: 28px; }
	.mv03_card_label { font-size: 12px; }
	.mv03_card_note { margin: 10px 6px 8px; padding: 2px 12px; }
}

/* ==============================================
   CONCERN (お悩みセクション)
============================================== */
.concern {
	position: relative; padding: 100px 0;
	background: url(../img/top/advice_bg_pc.jpg) center / cover no-repeat;
}
.concern::after {
	content: ""; position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%);
	width: 154px; height: 61px; background: url(../img/top/img_bottom_arr.svg) center / contain no-repeat;
	z-index: 2;
}
.concern_list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.concern_item {
	background: #fff; border: 1px solid var(--color_border); border-radius: 10px;
	display: flex; align-items: center; gap: 20px; padding: 24px;
}
.concern_icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.concern_text { font-size: 18px; letter-spacing: .05em; line-height: 1.6; }

@media only screen and (max-width: 1200px) {
	.concern { padding: 80px 0; }
	.concern_text { font-size: 16px; }
}
@media only screen and (max-width: 960px) {
	.concern { background-image: url(../img/top/advice_bg_sp.jpg); }
	.concern_list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.concern_item { flex-direction: column; text-align: center; padding: 20px 14px; gap: 12px; border-radius: 6px; }
	.concern_text { font-size: 14px; }
}
@media only screen and (max-width: 568px) {
	.concern { padding: 35px 0; }
	.concern_list { gap: 10px; }
	.concern_item { padding: 16px 10px; gap: 10px; }
	.concern_icon { width: 50px; height: 50px; }
	.concern_icon img { width: 50px; }
	.concern_text { font-size: 14px; }
	.concern::after {
		width: 94px; height: 38px;
	}

}

/* ==============================================
   ENTRUST (お任せください)
============================================== */
.entrust {
	position: relative; padding: 80px 0;
	background: url(../img/top/leave_bg_pc.jpg) center / cover no-repeat;
}
.entrust_inner { position: relative; z-index: 1; display: flex; align-items: center;padding: 0 0 0 8vw; }
.entrust_text { max-width: 742px; }
.entrust_badge {
	display: inline-flex; align-items: center; justify-content: center; width: 130px; height: 130px; border-radius: 50%; flex-shrink: 0;
	background: linear-gradient(135deg, #27ad6a 0%, #1e8351 100%);
	color: #fff; text-align: center;
	position: absolute; right: 100%; top: 50%; margin-right: 24px; transform: translateY(-50%) rotate(-9deg);
}
.entrust_badge_text { font-size: 18px; line-height: 1.4; letter-spacing: .05em; }
.entrust_text_block { text-align: center; }
.entrust_heading_row { position: relative; display: inline-block; margin-bottom: 24px; }
.entrust_heading_row .entrust_heading { margin-bottom: 0; }
.entrust_eyebrow { display: flex; align-items: center; justify-content: center; gap: 50px; font-family: var(--font_serif); font-weight: 600; font-size: 35px; color: var(--color_green);padding: 0 2em; margin-bottom: 8px; letter-spacing: .1em; }
.entrust_eyebrow::before, .entrust_eyebrow::after {
	content: "";
	--eyebrow_line_color: var(--color_green);
	--eyebrow_line_thickness: 1px;
	--eyebrow_line_length: 40px;
	display: inline-block;
	width: var(--eyebrow_line_thickness);
	height: var(--eyebrow_line_length);
	background-color: var(--eyebrow_line_color);
}
.entrust_eyebrow::before { transform: rotate(-40deg); }
.entrust_eyebrow::after { transform: rotate(40deg); }
.entrust_heading { font-family: var(--font_serif); font-weight: 600; font-size: 56px; letter-spacing: .1em; margin-bottom: 24px; }
.entrust_heading em { font-style: normal; color: var(--color_green); font-size: 64px; background: linear-gradient(transparent 60%, #fdfd76 60%); padding: 0 4px; }
.entrust_lead { font-size: 18px; letter-spacing: .05em; line-height: 1.75; }
.entrust_text::after {
	content: ""; flex-shrink: 0; position: absolute; right: -240px; top: -20px;width: 277px; aspect-ratio: 277 / 237;;
	background: url(../img/top/leave_img_photo.png) center / cover no-repeat;
}

@media only screen and (max-width: 1200px) {
	.entrust { padding: 90px 0; }
	.entrust_heading { font-size: 36px; }
	.entrust_heading em { font-size: 42px; }
	.entrust_text::after { width: 320px; }
}
@media only screen and (max-width: 960px) {
	.entrust { background-image: url(../img/top/leave_bg_sp.jpg); }
	.entrust_inner { flex-direction: column; text-align: center; gap: 36px; padding: 0; }
	.entrust_text { max-width: 100%; }
	.entrust_heading_row { display: flex; align-items: center; justify-content: center; gap: 14px; }
	.entrust_badge { position: static; width: 90px; height: 90px; margin: 0; transform: rotate(-9deg); }
	.entrust_badge_text { font-size: 13px; }
	.entrust_eyebrow { font-size: 24px; gap: 30px; padding: 0 1em; }
	.entrust_eyebrow::before, .entrust_eyebrow::after { --eyebrow_line_length: 28px; }
	.entrust_heading { font-size: 32px; }
	.entrust_heading em { font-size: 37px; }
	.entrust_text::after { display: block; position: static; transform: none; width: 280px; margin: 24px auto 0; }
}
@media only screen and (max-width: 568px) {
	.entrust { padding: 40px 0 260px; }
	.entrust_badge { width: 80px; height: 80px;margin-top: -20px; }
	.entrust_badge_text { font-size: 11px; }
	.entrust_eyebrow { font-size: 18px; gap: 20px; margin-bottom: 0;}
	.entrust_eyebrow::before, .entrust_eyebrow::after { --eyebrow_line_length: 21px; }
	.entrust_heading { font-size: 29px; }
	.entrust_heading em { font-size: 33px; }
	.entrust_lead { font-size: 15px; }
	.entrust_text::after {
		width: 180px;
		left: 0;
		position: absolute;
		bottom: -170px;
		right: unset;
		top: unset;
	}
	.entrust_heading_row {
		margin-bottom: 15px;
	}
}

/* ==============================================
   ASSURANCE (3つの安心)
============================================== */
.assurance { background: var(--color_bg) url(../img/top/bg_triangle_pc.png) top center / 100% auto no-repeat; padding: 80px 0; }
.assurance .price_estimate{ padding: 0;}
.assurance .l_container{max-width: 1120px;}
.assurance .section_heading .section_title_gold{font-size: 60px;}
.assurance_item {
	display: grid; grid-template-columns: 1fr 440px; column-gap: 60px; align-items: flex-end;
	grid-template-areas: "number photo" "heading photo" "body photo" "checklist photo"; margin-bottom: 60px;
}

.assurance_number_row { grid-area: number; display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.assurance_number { position: relative; font-family: var(--font_serif); font-weight: 600; font-size: 60px; color: var(--color_green); font-style: italic; line-height: 1; }
.assurance_number::after {
	content: ""; position: absolute; left: 100%; top: 50%; margin-left: 18px; width: 54px; height: 1px; background: var(--color_green);
}
.assurance_heading { grid-area: heading; font-family: var(--font_serif); font-weight: 600; font-size: 30px; letter-spacing: .05em; line-height: 1.5; margin-bottom: 20px; }
.assurance_body { grid-area: body; letter-spacing: .05em; line-height: 1.75; margin-bottom: 24px; }
.assurance_check_list { grid-area: checklist; display: flex; flex-direction: column; gap: 5px; padding-top: 20px; border-top: 1px dashed var(--color_border); }
.assurance_check_item { display: flex; align-items: center; gap: 10px; letter-spacing: .05em; }
.assurance_check_item img { width: 20px; }
.assurance_item_photo { grid-area: photo; position: relative; flex-shrink: 0; width: 440px; }
.assurance_item_photo img { border-radius: 10px; }
.assurance_item_icon {
	position: absolute; top: -60px; right: -20px; width: 120px; height: 120px;display: flex; align-items: center; justify-content: center;}

.assurance_summary {
	position: relative; z-index: 0;
	background: linear-gradient(135deg, #f4ffde 0%, #e6f5cb 100%); border-radius: 10px;
	padding: 48px; display: grid; grid-template-columns: 398px 1fr; column-gap: 48px; align-items: center;
	grid-template-areas: "photo heading" "photo body" "photo pills";
}
.assurance_summary::before, .assurance_summary::after {
	content: ""; position: absolute; z-index: -1; pointer-events: none;
	background: center / contain no-repeat; opacity: .5;
}
.assurance_summary::before { left: -30px; bottom: 0; width: 200px; aspect-ratio: 379 / 336; background-image: url(../img/common/cta_leaf_right_pc.svg); }
.assurance_summary::after { right: 0; top: 0; width: 110px; aspect-ratio: 75 / 94; background-image: url(../img/common/cta_leaf_right_sp.svg); }
.assurance_summary_heading { grid-area: heading; font-family: var(--font_serif); font-weight: 600; font-size: 24px; }
.assurance_summary_accent { color: var(--color_green); font-size: 1.6em; }
.assurance_summary_body { grid-area: body; font-size: 15px; letter-spacing: .05em; line-height: 1.75; margin-bottom: 24px; }
.assurance_pill_list { grid-area: pills; display: flex; gap: 12px; flex-wrap: wrap; }
.assurance_pill {
	background: #fdfcfa; border-radius: 999px; padding: 10px 18px;
	font-size: 15px; text-align: center; color: var(--color_green); line-height: 1.4;width: 30%;
}
.assurance_summary_photo { grid-area: photo; position: relative; width: 100%; }
.assurance_summary_photo img { border-radius: 10px; width: 100%; }
.assurance_summary_sticker {
	grid-area: photo; position: absolute; top: -20px; left: -20px; width: 110px; height: 110px;
	transform: rotate(-8deg); z-index: 2;
}

@media only screen and (max-width: 1200px) {
	.assurance { padding: 90px 0; }
	.assurance_item { column-gap: 40px; grid-template-columns: 1fr 360px; }
	.assurance_item_photo { width: 360px; }
	.assurance_summary { column-gap: 32px; padding: 36px; grid-template-columns: 300px 1fr; }
}
@media only screen and (max-width: 960px) {
	.assurance_item {
		grid-template-columns: 1fr; grid-template-areas: "number" "heading" "photo" "body" "checklist";
		text-align: center; gap: 24px; padding: 40px 0;
	}
	.assurance_number_row { justify-content: center; }
	.assurance_item_photo { width: 100%; max-width: 420px; margin: 0 auto; }
	.assurance_check_list { align-items: center; }
	.assurance_summary {
		grid-template-columns: auto 1fr; row-gap: 16px; column-gap: 16px; text-align: center; padding: 28px;
		grid-template-areas: "sticker heading" "photo photo" "body body" "pills pills";
	}
	.assurance_summary_sticker { grid-area: sticker; position: static; width: 76px; height: 76px; margin: 0; flex-shrink: 0; }
	.assurance_pill_list { justify-content: center; }
	.assurance_summary::before { width: 140px; left: -20px; }
	.assurance_summary::after { width: 80px; }
}
@media only screen and (max-width: 568px) {
	.assurance { padding: 40px 0; }
	.assurance .section_heading .section_title_gold{font-size: 47px; line-height: 1;}

	.assurance .section_title {
		font-size: 21px;
	}
	.assurance .section_title_sub-pre { font-size: 22px; }
	.assurance .section_title_sub-post { font-size: 29px; }
	.assurance .section_heading {
		margin-bottom: 0;
	}
	.assurance_item {
		gap: 10px;
		padding: 0 0 20px;
		margin-bottom: 20px;
	}
	.assurance_summary_accent {
		font-size: 30px;
	}
	.assurance_number_row {
		margin-bottom: 0;
		justify-content: left;
	}
	.assurance_item_icon {
		top: -40px;
		right: 0;
		width: 80px;
		height: 80px;
	}
	.assurance_check_list {
		align-items: baseline;
	}
	.assurance_number { font-size: 44px; }
	.assurance_number::after { width: 40px; margin-left: 13px; }
	.assurance_heading { font-size: 22px;text-align: left; margin-bottom: 10px; }
	.assurance_body { font-size: 14px;text-align: left; margin-bottom: 10px; }
	.assurance_summary { padding: 15px; grid-template-columns: 64px 1fr; border-radius: 6px; }
	.assurance_item_photo img { border-radius: 6px; }
	.assurance_summary_photo img { border-radius: 6px; }
	.assurance_summary_heading { font-size: 19px;padding-left: 1em;text-align: left; }
	.assurance_summary_sticker { width: 96px; height: 96px; }
	.assurance_summary::before { width: 110px; left: -14px; }
	.assurance_summary::after { width: 60px;  }
	.assurance_pill_list {
		gap: 10px;
	}
	.assurance_pill {
		width: 48%;
		padding: 10px 0;
	}
	.assurance_summary_body{margin-bottom: 0;text-align: left;}
}

/* ==============================================
   PRICE ESTIMATE (代表的な工事の費用目安)
============================================== */
.price_heading_divider {
	position: relative; display: block; width: 168px; height: 8px; margin: 16px auto 0;
}
.price_heading_divider::before {
	content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px;
	background: #DAD0BB; transform: translate(-50%, -50%) rotate(45deg);
}
.price_heading_divider::after {
	content: ""; position: absolute; left: 50%; top: 50%; width: 168px; height: 1px; transform: translate(-50%, -50%);
	background:
		linear-gradient(#DAD0BB, #DAD0BB) left center / 72px 1px no-repeat,
		linear-gradient(#DAD0BB, #DAD0BB) right center / 72px 1px no-repeat;
}
.price_estimate { overflow: hidden; padding: 80px 0; }
.price_estimate_list {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
	max-width: 1120px; margin: 44px auto 0;
}
.price_estimate_item {
	display: flex; flex-direction: column; align-items: center; gap: 2px;
	background: #fff; border-radius: 8px; box-shadow: 0 0 4px rgba(34,34,34,.12); overflow: hidden; padding: 10px 10px 25px;
}
.price_estimate_photo { width: 100%; border-radius: 6px; overflow: hidden; }
.price_estimate_head { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 10px; padding-top: 9px; width: 100%; }
.price_estimate_icon { width: 48px; height: 48px; flex-shrink: 0; }
.price_estimate_icon img { width: 100%; height: 100%; }
.price_estimate_title { font-size: 18px; letter-spacing: 1.8px; text-align: center; color: #000; }
.price_estimate_price {
	text-align: center; font-family: var(--font_serif); font-weight: 600; letter-spacing: 1.6px;
	font-size: 20px; color: var(--color_green);
}
.price_estimate_price_num { font-weight: 600; font-size: 26px; color: var(--color_green); }
.price_estimate_text { font-size: 15px; letter-spacing: 1.5px; line-height: 1.75; text-align: center; color: var(--color_text); }

.price_estimate_summary {
	position: relative; max-width: 1120px; margin: 60px auto 0; background: #f5f3ed; border: 2px solid #e6ede2; border-radius: 10px;
	padding: 30px 40px 30px 345px; min-height: 175px; display: flex; align-items: center;
}
.price_estimate_summary_icon {
	position: absolute; left: 19px; top: 13px; width: 70px; height: 70px; z-index: 2; border-radius: 50%;
	background: #fff; box-shadow: 2px 2px 5px rgba(0,0,0,.08); display: flex; align-items: center; justify-content: center;
}
.price_estimate_summary_icon img { width: 27px; height: 32px; object-fit: contain; }
.price_estimate_summary_photo {
	position: absolute; left: 40px; top: 25px; width: 266px; border-radius: 6px; overflow: hidden; border: 2px solid #fff;
}
.price_estimate_summary_photo img { width: 100%; height: 124px; object-fit: cover; }
.price_estimate_summary_body { flex: 1; min-width: 0; }
.price_estimate_summary_title {
	font-family: var(--font_serif); font-weight: 600; font-size: 22px; color: var(--color_green);
	letter-spacing: 2.2px; line-height: 1.5; white-space: nowrap;
}
.price_estimate_summary_text { margin-top: 15px; font-size: 15px; letter-spacing: 1.5px; line-height: 1.5; color: var(--color_text); }
.price_estimate_note { margin: 24px auto 0; max-width: 1120px; font-size: 14px; color: var(--color_text_sub); letter-spacing: .02em; }

@media only screen and (max-width: 1200px) {
	.price_estimate { padding: 80px 0; }
	.price_estimate_list { gap: 16px; }
}
@media only screen and (max-width: 960px) {
	.price_estimate { padding: 60px 0; }
	.price_estimate_list { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
}
@media only screen and (max-width: 568px) {
	.price_heading_divider { width: 120px; }
	.price_heading_divider::after { width: 120px; background-size: 48px 1px, 48px 1px; }
	.price_estimate .section_title { font-size: 20px; letter-spacing: .05em; }
	.price_estimate { padding: 40px 0; }
	.price_estimate_list { grid-template-columns: 1fr; gap: 12px; }
	.price_estimate_item {
		display: grid; grid-template-columns: 155px 1fr; grid-template-areas: "photo head" "price price" "text text";
		border-radius: 6px; padding: 10px; gap: 5px 10px;
	}
	.price_estimate_photo { grid-area: photo; align-self: start; width: 100%; border-radius: 4px; }
	.price_estimate_head { grid-area: head; flex-direction: column; gap: 4px; padding-top: 0; }
	.price_estimate_title { font-size: 17px; letter-spacing: 1.7px; line-height: 1.2;}
	.price_estimate_price { grid-area: price; }
	.price_estimate_text { grid-area: text; text-align: left; font-size: 14px; letter-spacing: 1.4px; }
	.price_estimate_summary {
		display: block; position: relative; padding: 20px 20px 24px; min-height: 0; border-radius: 6px;
	}
	.price_estimate_summary_photo {
		position: relative; left: auto; top: auto; width: 100%; height: auto; aspect-ratio: 298 / 139;
	}
	.price_estimate_summary_photo img { height: 100%; }
	.price_estimate_summary_icon { left: 10px; top: 5px; }
	.price_estimate_summary_body { margin-top: 12px; }
	.price_estimate_summary_title { font-size: 17px; letter-spacing: 1.7px; text-align: center; white-space: normal; }
	.price_estimate_summary_text { margin-top: 10px; font-size: 14px; letter-spacing: 1.4px; line-height: 1.75; text-align: left; }
	.price_estimate_note { font-size: 12px; }
}

/* ==============================================
   CASE (施工事例)
============================================== */
.case { position: relative; overflow: hidden; background: var(--color_bg_alt); padding: 80px 0; }
.case::before, .case::after {
	content: ""; position: absolute; z-index: 0; pointer-events: none; background-repeat: no-repeat;
}
.case::before {
	top: 0; left: 0; width: 400px; aspect-ratio: 599 / 464;
	background-image: url(../img/top/case_bg_img_lefttop.svg); background-position: top left; background-size: contain;
}
.case::after {
	bottom: 0; right: 0; width: 350px; aspect-ratio: 453 / 410;
	background-image: url(../img/top/case_bg_img_rightbottom.svg); background-position: bottom right; background-size: contain;
}
.case .l_container { position: relative; z-index: 1; }
.case_list { display: flex; gap: 20px; margin-top: 20px;width: 96.6%; }
.case_item { flex: 1; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(34,34,34,.06); position: relative; padding-bottom: 24px;max-width: 360px; }
.case_item .case_photo { aspect-ratio: 347 / 214; overflow: hidden; }
.case_item .case_photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case_box{
	padding: 15px 20px 0;
}
.case_tag {
	display: inline-block; background: #fff; color: var(--color_green_sub); font-size: 13px; padding: 2px 10px;
	border-radius: 6px; border: var(--color_green_sub) 1px solid; position: relative; z-index: 1; letter-spacing: .05em;
}
.case_title { font-size: 18px; font-weight: 500; letter-spacing: .05em; line-height: 1.5; margin: 10px 0 15px; }
.case_hashtag { font-size: 14px; letter-spacing: .05em; line-height: 1.6; margin-bottom: 10px; color: var(--color_text_sub); }
.case_cost { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.case_cost_label {
	display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
	background: var(--color_green); color: #fff; font-size: 13px; font-weight: 700;
	padding: 4px 10px; border-radius: 4px; letter-spacing: .05em; white-space: nowrap;
}
.case_cost_label img { width: 14px; flex-shrink: 0; }
.case_cost_price { font-family: var(--font_serif); font-weight: 700; font-size: 26px; color: var(--color_green); letter-spacing: .02em; white-space: nowrap; }
.case_cost_price_yen { font-size: 22px; margin-right: 5px;}
.case_cost_price_note { font-size: 13px; font-weight: 500; margin-left: 2px; }
.case_table { border: 1px solid #EAE9E7; border-radius: 6px; overflow: hidden; margin-bottom: 16px; }
.case_table_row { display: grid; grid-template-columns: 118px 1fr; align-items: stretch; min-height: 44px; }
.case_table_row + .case_table_row { border-top: 1px solid #EAE9E7; }
.case_table_row dt {
	display: flex; align-items: center; gap: 4px;
	background: var(--color_green_light); padding: 8px 6px 8px 10px; font-size: 12px; letter-spacing: .02em; white-space: nowrap;
}
.case_table_row dt img { width: 16px; flex-shrink: 0; object-fit: contain; }
.case_table_row dd { display: flex; align-items: center; padding: 8px 12px; font-size: 13px; letter-spacing: .03em; background: #fff; line-height: 1.5; }
.case_item .btn_outline { width: 100%; text-align: center; padding: 10px 20px; justify-content: center; position: relative; }
.case_item .btn_outline::after {
	content: ""; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
	width: 12px; height: 19px;
	background: url(../img/common/arr_green_right.svg) center / contain no-repeat;
}
.case_item .btn_outline:hover::after {
	background-image: url(../img/common/arr_white_right.svg);
}
.case .slick-dots { display: none; justify-content: center; align-items: center; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.case .slick-dots li { width: 8px; height: 8px; margin: 0; }
.case .slick-dots li button { display: block; width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: var(--color_border); font-size: 0; line-height: 0; transition: background .3s ease; }
.case .slick-dots li button::before { content: none; }
.case .slick-dots li.slick-active button { background: var(--color_green); }
.link_more { text-align: center; margin-top: 48px; }
.link_more .btn_primary { width: 500px; max-width: 100%; position: relative; }
.link_more .btn_primary::after {
	content: ""; position: absolute; right: 32px; top: 50%; transform: translateY(-50%);
	width: 20px; height: 13px;
	background: url(../img/common/arr_white_right.svg) center / contain no-repeat;
}

@media only screen and (max-width: 1200px) {
	.case { padding: 90px 0; }
	.case::before { width: 320px; }
	.case::after { width: 280px; }
}
@media only screen and (max-width: 960px) {
	.case::before { width: 220px; }
	.case::after { width: 190px; }
}
@media only screen and (max-width: 568px) {
	.case { padding: 40px 0; }
	.case::before { width: 150px; }
	.case::after { width: 130px; }
	.case_item { border-radius: 6px; }
	.case_list.slick-initialized { display: block; width: calc(100% + 40px); margin: 20px -20px 0; }
	.case_list.slick-initialized .case_item { max-width: none; margin: 0 8px; }
	.case_list.slick-initialized .slick-slide { transition: opacity .3s ease, transform .3s ease; }
	.case_list.slick-initialized .slick-slide:not(.slick-center) { opacity: .6; transform: scale(.92); }
	.case_hashtag { font-size: 12px; }
	.case_cost_price { font-size: 23px; }
	.case_cost_price_yen { font-size: 19px; }
	.case_table_row { grid-template-columns: 100px 1fr; min-height: 40px; }
	.case_table_row dt { font-size: 11px; padding: 6px 4px 6px 8px; }
	.case_table_row dd { font-size: 12px; padding: 6px 8px; }
	.case .slick-dots { display: flex; }
	.link_more { margin-top: 25px; }
	.link_more .btn_primary { width: 100%; font-size: 17px; padding: 15px; }
}

/* ==============================================
   CTA (CTA03)
============================================== */
.cta {
	position: relative; padding: 60px 0; overflow: hidden;
	background: #1f3d2c url(../img/common/cta_bg_pc_end.jpg) center / cover no-repeat;
}
.cta .l_container { position: relative; z-index: 1; }
.cta .l_container::before, .cta .l_container::after {
	content: ""; position: absolute; bottom: -60px; width: 240px; z-index: 2; pointer-events: none;
	background: center / contain no-repeat;opacity: .6;
}
.cta .l_container::before { aspect-ratio: 273 / 330; left: -140px; background-image: url(../img/common/cta_leaf_left_pc.svg); }
.cta .l_container::after { aspect-ratio: 379 / 336; right: -140px; width: 270px; background-image: url(../img/common/cta_leaf_right_pc.svg); }

.cta_card {
	position: relative; border-radius: 15px; padding: 35px 50px;
	box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.cta_card::before {
	content: ""; position: absolute; inset: 5px; border: 1px solid #DAD0BB; border-radius: 11px; pointer-events: none;
}
.cta_card::after {
	content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 16px;
	background: #fdf9f2 url(../img/common/cta_bg_pc.jpg) right center / cover no-repeat;
}
.cta_content { position: relative; z-index: 1; max-width: 700px; display: flex; flex-direction: column; }
.cta_pill {
	order: 1; box-sizing: border-box;
	display: inline-block; background: var(--color_green); color: #fff; border-radius: 999px; padding: 5px 2em; font-family: var(--font_serif); font-weight: 600; font-size: 18px; line-height: 1; letter-spacing: .05em; white-space: nowrap; margin: 0 auto; padding: 10px 2em;
}
.cta_heading { order: 2; width: 100%; max-width: 700px; font-family: var(--font_serif); font-weight: 700; font-size: 58px; letter-spacing: .05em; color: var(--color_green); text-align: center; }
.cta_heading_sub { font-size: 46px; font-weight: 600; color: var(--color_text); }

.cta_tel_card { order: 3; align-self: flex-start; width: 100%; max-width: 653px; margin-bottom: 20px; }
.cta_tel_head { display: contents; }
.cta_tel_head_icon { display: none; }
.cta_tel_head_body { display: contents; }
.cta_tel_caption { display: none; }
.cta_tel_top { display: flex; align-items: center; gap: 10px; }
.cta_tel_icon-freedial { width: 64px; flex-shrink: 0; }
.cta_tel_number { font-family: 'Roboto'; font-weight: 700; font-size: 80px; letter-spacing: 2px; color: var(--color_text); line-height: 1; margin-left: 10px; }
.cta_tel_note_row {
	display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta_tel_divider { position: relative; height: 8px; margin: 5px 0; }
.cta_tel_divider::before {
	content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px;
	background: #DAD0BB; transform: translate(-50%, -50%) rotate(45deg);
}
.cta_tel_divider::after {
	content: ""; position: absolute; left: 50%; top: 50%; width: 100%; height: 1px; transform: translate(-50%, -50%);
	background:
		linear-gradient(#DAD0BB, #DAD0BB) left center / calc(50% - 12px) 1px no-repeat,
		linear-gradient(#DAD0BB, #DAD0BB) right center / calc(50% - 12px) 1px no-repeat;
}
.cta_tel_chk { width: 27px; flex-shrink: 0; }
.cta_tel_note { font-size: 26px; font-weight: 700; letter-spacing: .02em; color: var(--color_text); margin-left: 5px; }
.cta_tel_note_accent { color: var(--color_gold); }

.cta_features { order: 4; align-self: flex-start; display: flex; width: 100%; max-width: 653px; min-width: 0; gap: 12px; }
.cta_feature {
	flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px;
	background: #F8F1E5; border: 1px solid #DAD0BB; border-radius: 4px; padding: 10px 0 10px 20px; 
}
.cta_feature_icon { display: flex; align-items: center; justify-content: center; height: 44px; }
.cta_feature_icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cta_feature_text { font-size: 17px; font-weight: bold; letter-spacing: .02em; line-height: 1.4; color: var(--color_text); margin-left: 5px;
}

.cta_buttons { display: flex; gap: 16px; width: 100%; margin-top: 24px; }
.cta_btn {
	position: relative; flex: 1; min-width: 0; display: flex; align-items: center; gap: 14px;
	border-radius: 10px; padding: 20px 20px 22px; color: #fff;
}
.cta_btn::before {
	content: ""; position: absolute; inset: 4px; border: 1px solid rgba(255,255,255,.9); border-radius: 7px; pointer-events: none;
}
.cta_btn::after { content: ""; width: 18px; aspect-ratio: 20 / 13; margin-left: auto; flex-shrink: 0; background: url(../img/common/arr_white_right.svg) center / contain no-repeat; }
.cta_btn-form { background: var(--color_orange); }
.cta_btn-line { background: var(--color_line); }
.cta_btn_icon { flex-shrink: 0; width: 74px; height: 74px; display: flex; align-items: center; justify-content: center; }
.cta_btn_icon img { width: 100%; height: 100%; object-fit: contain; }
.cta_btn_text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cta_btn_caption { font-size: 18px; font-weight: bold; letter-spacing: .15em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ffe925; }
.cta_btn_main_text { font-size: 35px; font-weight: 700; line-height: 1; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cta_btn_main_text-sp { display: none; }

@media only screen and (max-width: 1200px) {
	.cta { padding: 80px 0; }
	.cta .l_container::before, .cta .l_container::after { width: 200px; bottom: -80px; }
	.cta .l_container::before { left: -110px; }
	.cta .l_container::after { right: -110px; }
	.cta_card { padding: 40px; }
	.cta_content { max-width: 520px; }
	.cta_heading { font-size: 32px; }
	.cta_heading_sub { font-size: 22px; }
}
@media only screen and (max-width: 960px) {
	.cta_card { padding: 32px 24px; }
	.cta_card::after { background-image: url(../img/common/cta_bg_sp.jpg); }
	.cta .l_container::before { background-image: url(../img/common/cta_leaf_left_sp.svg); aspect-ratio: 115 / 89; left: -20px; }
	.cta .l_container::after { background-image: url(../img/common/cta_leaf_right_sp.svg); aspect-ratio: 75 / 94; right: -20px; }
	.cta .l_container::before, .cta .l_container::after { width: 140px; bottom: -80px; }
	.cta_content { max-width: none; }

	.cta_heading { max-width: none; text-align: left; font-size: 28px; margin-top: 26px; margin-bottom: 18px; }
	.cta_heading_sub { font-size: 20px; }
	.cta_features { order: 3; max-width: none; }
	.cta_tel_card {
		order: 4; max-width: none; background: #fff; border-radius: 10px; padding: 20px 24px;
		box-shadow:0 1px 5px 0 rgba(34,34,34,.25);
	}
	.cta_tel_head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
	.cta_tel_head_icon {
		display: flex; align-items: center; justify-content: center; flex-shrink: 0;
		width: 48px; height: 48px; border-radius: 50%; background: var(--color_green);
	}
	.cta_tel_head_icon_img { width: 27px; height: 27px; object-fit: contain; }
	.cta_tel_head_body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
	.cta_tel_caption { display: block; font-size: 15px; font-weight: 500; color: var(--color_text); margin-bottom: 0; }
	.cta_tel_number { font-size: 26px; }
}
@media only screen and (max-width: 568px) {
	.cta { padding: 50px 0 30px; }
	.cta .l_container::before { bottom: -30px; left:0;width: 125px; opacity: .8;}
	.cta .l_container::after { bottom: unset;top: -50px;right: 0;width: 80px; opacity: .8; }
	.cta_card { padding: 25px 20px; border-radius: 10px; }
	.cta_pill {
		position: absolute; top: -60px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 15px;
		width: auto; max-width: none; align-self: flex-start; text-align: left; margin: 0; line-height: 1.4;
    text-align: center; padding: 5px 2em;
	}

	.cta_heading { font-size: 35px; margin-top: 20px; margin-bottom: 16px; line-height: 1.2; }
	.cta_heading_sub { font-size: 28px; }
	.cta_features { gap: 5px; margin-bottom: 16px; width: 80%; }
	.cta_feature { flex-direction: column; padding: 5px 0; gap: 5px; border-radius: 4px; text-align: center; }
	.cta_feature_icon { height: 32px; }
	.cta_feature_text {
		display: flex; align-items: center; justify-content: center; min-height: 46px;
		font-size: 11px;
	}
	.cta_tel_card { padding: 10px 10px 5px; margin-bottom: 0; }
	.cta_tel_head { gap: 10px; margin-bottom: 0; }
	.cta_tel_head_icon { width: 38px; height: 38px; }
	.cta_tel_head_icon_img { width: 22px; height: 22px; }
	.cta_tel_caption { font-size: 13px; color: var(--color_green); line-height: 1; }
	.cta_tel_number { font-size: 28px; letter-spacing: .5px; margin-left: 0; }
	.cta_tel_icon-freedial { width: 18px; }
	.cta_tel_divider { margin: 0; }
	.cta_tel_note { font-size: 12px; margin-left: 0;}
	.cta_buttons { flex-direction: column; gap: 10px; margin-top: 16px; }
	.cta_btn { padding: 18px 16px; gap: 12px; }
	.cta_btn_icon { width: 36px; height: 36px; }
	.cta_btn_caption { font-size: 14px; line-height: 1; }
	.cta_btn_main_text { font-size: 21px; }
	.cta_btn_main_text-pc { display: none; }
	.cta_btn_main_text-sp { display: inline; }
	.cta_tel_divider::before {
		width: 5px;
		height: 5px;
	}
	.cta_tel_divider::after {
		height: 2px;
	}
	.cta_tel_chk {
		width: 12px;
		margin-left: 0;
	}
}

/* ==============================================
   CONSTRUCTION (対応可能な外構工事)
============================================== */
.construction { background: var(--color_bg) url(../img/top/bg_triangle_pc.png) top center / 100% auto no-repeat; padding: 80px 0 0; }
.construction02 { background: #F9F8F5 url(../img/top/bg_triangle_pc02.png) top center / 100% auto no-repeat; padding: 0 0 80px; }
.construction_list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin: 20px auto 0;max-width: 1120px; }
.construction_item {
	position: relative; background: #fff; border: 1px solid var(--color_border); border-radius: 10px;
	padding: 25px; display: grid; grid-template-columns: 85px 1fr; column-gap: 16px; row-gap: 4px; align-content: start;
}
.construction_icon {
	grid-column: 1 / 2; grid-row: 1 / 3; align-self: center;
	display: flex; align-items: center; justify-content: center;
}
.construction_number { grid-column: 2 / 3; grid-row: 1 / 2; font-family: var(--font_serif); font-weight: 500; font-size: 20px; color: var(--color_green); line-height: 1; }
.construction_title { grid-column: 2 / 3; grid-row: 2 / 3; font-family: var(--font_serif); font-weight: 600; font-size: 19px; letter-spacing: .05em; line-height: 1.5; }
.construction_photo { grid-column: 1 / 3; grid-row: 3 / 4; border-radius: 6px; overflow: hidden; aspect-ratio: 310/192; margin-top: 12px; }
.construction_photo picture { display: block; width: 100%; height: 100%; }
.construction_photo img { width: 100%; height: 100%; object-fit: cover; }
.construction_text { grid-column: 1 / 3; grid-row: 4 / 5; letter-spacing: .05em; line-height: 1.75; margin-top: 8px; }

.construction_callout {
	position: relative; margin-top: 60px; display: flex; align-items: center; gap: 32px;
	padding: 0 0 40px 3em;
}
.construction_callout::after {
	content: ""; position: absolute; bottom: 0; right: 32px; width: 150px; aspect-ratio: 185 / 209;
	background: url(../img/top/construction_bg_summary.svg) no-repeat center / contain;
	pointer-events: none; z-index: 0;
}
.construction_callout_icon { position: relative; z-index: 1; flex-shrink: 0; width: 130px; height: 130px; border-radius: 50%; background: #f5efe6; display: flex; align-items: center; justify-content: center; }
.construction_callout_text { position: relative; z-index: 1; flex: 1; }
.construction_callout_lead { font-family: var(--font_serif); font-weight: 600; font-size: 20px; letter-spacing: .05em; line-height: 1.6; margin-bottom: 4px; }
.construction_callout_quote { font-family: var(--font_serif); font-weight: 600; font-size: 27px; letter-spacing: .05em; line-height: 1.6; margin-bottom: 16px; }
.construction_callout_quote em { font-style: normal; color: var(--color_green); font-size: 27px; }
.construction_callout_note { font-size: 18px; letter-spacing: .05em; line-height: 1.75; }
.br-callout { display: none; }

@media only screen and (max-width: 1200px) {
	.construction { padding: 90px 0; }
	.construction02 { padding: 60px 0; }
	.construction_callout { padding: 32px; gap: 24px; }
}
@media only screen and (max-width: 960px) {
	.construction_list { grid-template-columns: repeat(2, 1fr); }
	.br-callout { display: block; }
	.construction_callout {
		display: grid; grid-template-columns: auto 1fr; align-items: center;
		column-gap: 20px; row-gap: 16px; padding: 0 0 32px;
	}
	.construction_callout_icon { grid-column: 1; grid-row: 1; width: 100px; height: 100px; }
	.construction_callout_text { display: contents; }
	.construction_callout_lead { grid-column: 2; grid-row: 1; font-size: 15px; margin-bottom: 0; }
	.construction_callout_quote {
		grid-column: 1 / 3; grid-row: 2; font-size: 24px; letter-spacing: .02em; margin-bottom: 0;
	}
	.construction_callout_quote em{	font-size: 24px; }

	.construction_callout_note { grid-column: 1 / 3; grid-row: 3; font-size: 14px; }
	.construction_callout::after { bottom: -10px; right: -10px; width: 130px; }
	.construction_photo { aspect-ratio: auto; }
	.construction_photo picture { height: auto; }
	.construction_photo img { height: auto; object-fit: initial; }
}
@media only screen and (max-width: 568px) {
	.construction,.construction02 { padding: 40px 0 0; }
	.construction_list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.construction_item {
		display: block; position: relative; text-align: center;
		padding: 10px 9px 12px; border-radius: 4px;
	}
	.construction_number {
		position: absolute; top: 8px; left: 12px; grid-column: auto; grid-row: auto;
		font-size: 15px; letter-spacing: .03em;
	}
	.construction_icon {
		grid-column: auto; grid-row: auto; justify-content: center; margin: 2px 0 6px;
	}
	.construction_icon img { width: 40px; height: 40px; }
	.construction_title { grid-column: auto; grid-row: auto; font-size: 13px; letter-spacing: .03em; }
	.construction_photo { grid-column: auto; grid-row: auto; margin-top: 8px; }
	.construction_text { grid-column: auto; grid-row: auto; text-align: left; font-size: 11px; margin-top: 6px; }
	.construction_callout_icon { width: 80px; height: 80px; }

	.construction_callout_lead { font-size: 15px; }
	.construction_callout_quote { font-size: 22px;text-align: center;letter-spacing: .01em; }
	.construction_callout_quote em{font-size: 22px;}
	.construction_callout_note { font-size: 15px; }
	.construction_callout::after { width: 90px; bottom: -6px; right: -6px; opacity: .8; }
	.construction_callout {
		margin-top: 20px;
		row-gap: 5px;
		padding: 0 0 32px;
	}
}

/* ==============================================
   EXTERIOR STYLE (外構スタイル)
============================================== */
.exterior_style { position: relative; background: var(--color_bg) url(../img/top/bg_triangle_pc.png) top center / 100% auto no-repeat; padding: 80px 0; }
.style_list { display: flex; flex-direction: column; gap: 40px; }
.style_item {
	display: flex; flex-direction: column; background: #fff; border-radius: 10px; box-shadow: 0 0 10px rgba(34,34,34,.08); padding: 40px;
}
.style_title_head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;margin-bottom: 20px; }
.style_title {
	position: relative; padding-left: 20px;
	font-family: var(--font_serif); font-weight: 600; font-size: 32px; color: var(--color_green);
	letter-spacing: .05em;
}
.style_title::before {
	content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px;
	background: linear-gradient(180deg, #90BE68 50%, var(--color_green) 50%); }
.style_subtitle { font-family: var(--font_sans); font-weight: 500; font-size: 18px; color: var(--color_green); }
.style_row { display: flex; gap: 40px; }
.style_photo { flex: 0 0 42%; border-radius: 8px; overflow: hidden; aspect-ratio: 452/300; }
.style_photo img { width: 100%; height: 100%; object-fit: cover; }
.style_body { flex: 1; }
.style_text { letter-spacing: .05em; line-height: 1.75; margin-bottom: 24px; }
.style_attr_list { display: flex; flex-direction: column; gap: 10px; }
.style_attr_row { display: flex; align-items: center; gap: 12px; }
.style_attr_row dt { display: flex; align-items: center; gap: 8px; width: 130px; flex-shrink: 0; font-size: 15px; font-weight: 500; }
.style_attr_row dt img { width: 26px; }
.style_attr_row dd { flex: 1; text-align: center; border: 1px solid var(--color_border); border-radius: 3px; padding: 6px 4px; font-size: 14px; }
.style_attr_row dd.is_active { background: var(--color_green); border-color: var(--color_green); color: #fff; font-weight: 700; }

.info_callout {
	margin: 48px auto 0; background: #FCFFFA; border: 2px solid #d9d7d1; border-radius: 10px;
	padding: 32px 48px; display: flex; align-items: center; gap: 24px; max-width: 1015px;
}
.info_callout_icon { flex-shrink: 0; width: 114px; }
.info_callout_body { display: flex; flex-direction: column; }
.info_callout_pill {
	align-self: flex-start;
	display: inline-block; background: var(--color_green); color: #fff; font-size: 17px; border-radius: 999px;
	padding: 2px 2.5em; letter-spacing: .05em;
}
.info_callout_text { font-weight: 500; font-size: 24px; letter-spacing: .05em; line-height: 1.6; }
.info_callout_accent { color: var(--color_green); font-family: var(--font_serif); font-weight: 600; font-size: 33px; margin-top: 10px;}
.style_dots { display: none; justify-content: center; gap: 8px; margin-top: 20px; }
.style_dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color_border); transition: background .3s ease; }
.style_dot.is_active { background: var(--color_green); }

@media only screen and (max-width: 1200px) {
	.exterior_style { padding: 90px 0; }
	.style_item { padding: 32px; margin-bottom: 10px;}
	.style_title { font-size: 24px; }
}
@media only screen and (max-width: 960px) {
	.exterior_style, .assurance, .construction, .flow { background-image: url(../img/top/bg_triangle_sp.png); }
	.style_title_head { flex-direction: column; gap: 4px; margin-bottom: 10px;}
	.style_row { flex-direction: column; }
	.style_photo { flex: none; width: 100%; }
	.style_attr_row dt { width: 110px; font-size: 13px; }
	.info_callout { padding: 24px; gap: 16px; }
	.info_callout_icon { width: 75px; }
}
@media only screen and (max-width: 568px) {
	.exterior_style { padding: 40px 0; }
	.style_list {
		flex-direction: row; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
		margin: 20px -20px 0; padding: 0 20px; scrollbar-width: none;
	}
	.style_row {
		gap: 10px;
	}
	.info_callout_pill {
		font-size: 14px;
		margin-bottom: 5px;
    padding: 0 1.5em;
	}
	.info_callout_accent {
		font-size: 20px;
	}

	.style_subtitle{font-size: 14px; line-height: 1.4; }
	.style_list::-webkit-scrollbar { display: none; }
	.style_item { flex: 0 0 88%; scroll-snap-align: center; padding: 10px 20px 20px; border-radius: 6px; }
	.style_dots { display: flex; }
	.style_title { font-size: 20px; }
	.style_text { font-size: 14px; margin-bottom: 10px; }
	.style_attr_row { flex-wrap: wrap; gap: 5px; }
	.style_attr_row dt { width: 100%; }
	.style_attr_row dd { font-size: 12px; padding: 6px 2px; }
	.info_callout {
		display: flex; align-items: center; gap: 12px;
		padding: 10px;
		border-radius: 6px;
	}
	.info_callout_icon { width: 70px; }
	.info_callout_text { font-size: 16px; }
}

/* ==============================================
   DIFFERENCE (ハウスメーカーとの違い)
============================================== */
.difference { position: relative; background: var(--color_bg_alt) url(../img/top/difference_bg_pc.png) top center / cover no-repeat; padding: 80px 0; overflow: hidden; }
.difference_table { position: relative; z-index: 1; background: #fff; border-radius: 10px; padding: 16px; box-shadow: 0 0 10px rgba(34,34,34,.08); }
.difference_rows { border: 1px solid var(--color_border); border-radius: 8px; overflow: hidden; }
.difference_row { display: grid; grid-template-columns: 260px 1fr 1fr; border-bottom: 1px solid var(--color_border); }
.difference_row:last-child { border-bottom: none; }
.difference_row-head { background: var(--color_green_light); border-radius: 8px 8px 0 0; }
.difference_cell {
	padding: 24px 20px; display: flex; align-items: center; gap: 16px;
	text-align: left; letter-spacing: .03em; line-height: 1.5; border-left: 1px solid var(--color_border);
}
.difference_cell-label { border-left: none; justify-content: center; text-align: center; font-weight: 500; font-size: 24px; }
.difference_row-head .difference_cell { justify-content: center; text-align: center; font-weight: 600; font-size: 26px; }
.difference_cell-us { background: var(--color_green); color: #fff; }
.difference_row:not(.difference_row-head) .difference_cell:not(.difference_cell-label)::before {
	content: ""; flex-shrink: 0; width: 30px; height: 30px;
	background: url("../img/top/icon_sankaku.svg") center / contain no-repeat;
}
.difference_row:not(.difference_row-head) .difference_cell.is_good::before {
	background-image: url("../img/top/icon_maru .svg");
}

@media only screen and (max-width: 1200px) {
	.difference { padding: 90px 0; }
	.difference_row { grid-template-columns: 140px 1fr 1fr; }
	.difference_cell { padding: 20px 16px; font-size: 15px; }
}
@media only screen and (max-width: 960px) {
	.difference { background-image: url(../img/top/difference_bg_sp.png); }
	.difference_row { grid-template-columns: 100px 1fr 1fr; }
	.difference_cell { flex-direction: column; gap: 8px; text-align: center; padding: 16px 12px; font-size: 13px; }
	.difference_cell-label { font-size: 14px; }
	.difference_row-head .difference_cell { font-size: 16px; }
	.difference_row:not(.difference_row-head) .difference_cell:not(.difference_cell-label)::before { width: 24px; height: 24px; }
}
@media only screen and (max-width: 568px) {
	.difference { padding: 40px 0; }
	.difference_table { border-radius: 6px; }
	.difference_row { grid-template-columns: 68px 1fr 1fr; }
	.difference_cell { padding: 12px 8px; font-size: 12px; }
	.difference_cell-label { font-size: 13px; }
	.difference_row-head .difference_cell { font-size: 15px; }
}

/* ==============================================
   FLOW (工事の流れ)
============================================== */
.flow { background: var(--color_bg) url(../img/top/bg_triangle_pc.png) top center / 100% auto no-repeat; padding: 80px 0; }
.flow_list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 17px; margin-top: 80px; }
.flow_item {
	position: relative; background: #fff; border: 1px solid var(--color_border); border-radius: 10px;
	padding: 15px; text-align: center;
}
.flow_list .flow_item:last-child{background: #f8fdf6;}
.flow_badge {
	position: absolute; top: -50px; left: 50%; transform: translateX(-50%); z-index: 1;
	width: 96px; height: 96px; border-radius: 50%; background: var(--color_green_light);
	display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--color_green); font-family: var(--font_serif); font-weight: 600;
}
.flow_badge small { font-size: 13px; letter-spacing: .05em; }
.flow_badge strong { font-size: 34px; line-height: 1; }
.flow_icon { display: block; height: 60px; margin: 16px auto 12px; }
.flow_icon img { height: 100%; margin: 0 auto; }
/* 写真差し替え版（工事の流れがアイコンではなく実写真になったカード用） */
.flow_icon-photo {
	display: block; width: 100%; height: auto; aspect-ratio: 180 / 127; margin: 0 0 16px;
	border-radius: 3px; overflow: hidden;
}
.flow_title {
	font-size: 19px; font-weight: 500; letter-spacing: .05em; color: var(--color_green); margin-bottom: 12px;
	line-height: 1.4; min-height: 2.8em;
	display: flex; align-items: center; justify-content: center;
}
.flow_text { font-size: 15px; letter-spacing: .05em; line-height: 1.75; }
.flow_item:not(:last-child)::after {
	content: ""; position: absolute; top: 50%; right: -10px; transform: translate(50%, -50%); z-index: 2;
	width: 18px; aspect-ratio: 22 / 54;
	background: url(../img/top/img_right_arr.svg) center / contain no-repeat;
}

.flow_item-complete { background: var(--color_bg); z-index: 0; }
.flow_item-complete::after {
	content: ""; position: absolute; right: 0; bottom: 0; z-index: -1;
	width: 100px; aspect-ratio: 379 / 336;
	background: url(../img/common/cta_leaf_right_pc.svg) right bottom / contain no-repeat;
}
.flow_complete_badge {
	display: none;
}

.flow_banner {
	margin-top: 48px; background: var(--color_green_light); border: 2px solid #d9d7d1; border-radius: 10px;
	padding: 32px 48px; display: flex; align-items: center; gap: 24px; max-width: 1015px; margin: 48px auto 0;
}
.flow_banner_icon { flex-shrink: 0; width: 114px; }
.flow_banner_body { display: flex; flex-direction: column; gap: 8px; }
.flow_banner_pill {
	align-self: flex-start;
	display: inline-block; background: var(--color_green); color: #fff; font-size: 17px; border-radius: 999px;
	padding: 5px 18px; letter-spacing: .05em;
}
.flow_banner_text { font-family: var(--font_sans); font-weight: 500; font-size: 20px; letter-spacing: .05em; line-height: 1.6; }

@media only screen and (max-width: 1200px) {
	.flow { padding: 90px 0; }
	.flow_list { gap: 14px; }
	.flow_item { padding: 50px 14px 24px; }
	.flow_item-photo { padding: 18px 0 24px; }
	.flow_title { font-size: 17px; }
	.flow_item-photo .flow_title { margin-left: 14px; margin-right: 14px; }
}
@media only screen and (max-width: 960px) {
	.flow_list { grid-template-columns: 1fr; row-gap: 20px; }
	.flow_item {
		display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
		column-gap: 16px; row-gap: 8px; align-items: center;
		text-align: left; padding: 24px 20px;
	}
	.flow_step {
		grid-column: 1; grid-row: 1 / 3;
		display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
		padding-right: 20px; border-right: 1px dashed var(--color_green_sub);
	}
	.flow_badge { position: static; transform: none; width: 64px; height: 64px; }
	.flow_badge small { font-size: 10px; }
	.flow_badge strong { font-size: 22px; }
	.flow_icon { height: 44px; margin: 0; }
	.flow_title { grid-column: 2; grid-row: 1; margin-bottom: 0; min-height: 0; justify-content: flex-start; font-size: 18px; }
	.flow_text { grid-column: 2; grid-row: 2; }
	.flow_item:not(:last-child)::after {
		top: auto; right: auto; left: 50%; bottom: -10px;
		transform: translate(-50%, 50%) rotate(90deg);
		width: 16px;
	}
	.flow_item-complete { grid-template-rows: auto auto auto; }
	.flow_item-complete .flow_step { grid-row: 1 / 4; }
	.flow_item-complete .flow_title { grid-row: 2; }
	.flow_item-complete .flow_text { grid-row: 3; }
	.flow_banner { padding: 24px; gap: 16px; }
	.flow_banner_icon { width: 64px; }

	/* 写真差し替え版：SPはバッジをカード左上に重ね、写真を大きく見せるレイアウト */
	.flow_item-photo {
		display: block; padding: 16px 20px 16px 136px; min-height: 103px; border-radius: 4px;
	}
	.flow_item-photo .flow_step { display: block; padding-right: 0; border-right: none; }
	.flow_item-photo .flow_badge {
		position: absolute; top: -19px; left: -8px;
		width: 46px; height: 49px; border-radius: 38px;
	}
	.flow_item-photo .flow_badge small { font-size: 8px; }
	.flow_item-photo .flow_badge strong { font-size: 21px; }
	.flow_item-photo .flow_icon-photo {
		position: absolute; left: 12px; top: 13px; margin: 0;
		width: 110px; aspect-ratio: 180 / 127; border-radius: 4px;
	}
	.flow_item-photo .flow_title {
		grid-column: auto; grid-row: auto; margin: 0 0 6px; font-size: 16px;
	}
	.flow_item-photo .flow_text { grid-column: auto; grid-row: auto; font-size: 14px; }
	.flow_item-photo:not(:last-child)::after { bottom: -14px; }
	.flow_item-photo.flow_item-complete { grid-template-rows: none; }
	.flow_item-photo.flow_item-complete .flow_step { grid-row: auto; }
	.flow_item-photo.flow_item-complete .flow_title { grid-row: auto; }
	.flow_item-photo.flow_item-complete .flow_text { grid-row: auto; }
	.flow_complete_badge {
		display: inline-flex; align-items: center; gap: 4px;
		background: var(--color_green); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .05em;
		border-radius: 999px; padding: 4px 20px; margin: 0 0 6px;
	}
}
@media only screen and (max-width: 568px) {
	.flow { padding: 40px 0; }
	.flow_list { margin-top: 0; row-gap: 20px; }
	.flow_item { padding: 15px; column-gap: 10px; border-radius: 6px; }
	.flow_step { gap: 6px; padding-right: 14px; }
	.flow_badge { width: 50px; height: 50px; }
	.flow_badge small { font-size: 9px; }
	.flow_badge strong { font-size: 20px; }
	.flow_icon { height: 38px; }
	.flow_title { font-size: 16px; }
	.flow_text { font-size: 14px; }
	.flow_item:not(:last-child)::after { bottom: -8px; width: 14px; }
	.flow_item-complete::after { width: 80px; }
	.flow_banner_pill { font-size: 14px; padding: 2px 20px; margin-bottom: 5px; }
	.flow_banner { display: block; border-radius: 6px; }
	.flow_banner_icon { float: left; width: 64px; margin: 0 16px 8px 0; }
	.flow_banner_body { display: block; }
	.flow_banner_text{font-size: 14px;}

	.flow_item-photo { padding: 14px 16px 14px 122px; min-height: 92px; }
	.flow_item-photo .flow_badge { width: 40px; height: 43px; top: -16px; left: -6px; }
	.flow_item-photo .flow_badge small { font-size: 7px; }
	.flow_item-photo .flow_badge strong { font-size: 18px; }
	.flow_item-photo .flow_icon-photo { width: 96px; left: 10px; top: 12px; }
	.flow_item-photo .flow_title { font-size: 15px; }
	.flow_item-photo .flow_text { font-size: 13px; }
	.flow_item-photo:not(:last-child)::after { bottom: -10px; width: 14px; }
}

/* ==============================================
   FAQ (よくある質問)
============================================== */
.faq { background: var(--color_bg_alt); padding: 80px 0; }
.faq_list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.faq_item { background: #f5f3ed; border: 1px solid #d8d3c8; border-radius: 10px; overflow: hidden; }
.faq_question {
	width: 100%; display: flex; align-items: center; gap: 20px; padding: 28px 60px 28px 28px; position: relative; text-align: left;
	appearance: none; background: none; border: none; margin: 0; font: inherit; color: inherit; cursor: pointer;
}
.faq_mark { flex-shrink: 0; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font_serif); font-weight: 600; font-size: 40px; }
.faq_mark-q { background: #fff; color: var(--color_green); padding-bottom: .3em; }
.faq_mark-a { background: var(--color_green); color: #fff; padding-bottom: .2em;}
.faq_question_text { flex: 1; font-family: var(--font_serif); font-weight: 600; font-size: 22px; letter-spacing: .05em; line-height: 1.5; }
.faq_toggle { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; flex-shrink: 0; }
.faq_toggle::before, .faq_toggle::after {
	content: ""; position: absolute; top: 50%; left: 50%; background: var(--color_green);
	transition: transform .3s ease;
}
.faq_toggle::before { width: 100%; height: 2px; transform: translate(-50%, -50%); }
.faq_toggle::after { width: 2px; height: 100%; transform: translate(-50%, -50%); }
.faq_item.is_open .faq_toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq_answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease;display: none; }
.faq_item.is_open .faq_answer { grid-template-rows: 1fr;display: block; }
.faq_answer_inner {
	--faq-pad-x: 28px;
	overflow: hidden; display: flex; align-items: flex-start; gap: 20px;
	padding: 0 var(--faq-pad-x);
}
.faq_item.is_open .faq_answer_inner {
	padding: 24px var(--faq-pad-x) 28px;
	background: linear-gradient(#d8d3c8, #d8d3c8) no-repeat;
	background-size: calc(100% - (var(--faq-pad-x) * 2)) 1px;
	background-position: top center;
}
.faq_answer_text { letter-spacing: .03em; line-height: 1.75; }

@media only screen and (max-width: 1200px) {
	.faq { padding: 90px 0; }
}
@media only screen and (max-width: 960px) {
	.faq_question { padding: 22px 52px 22px 20px; gap: 14px; }
	.faq_mark { width: 54px; height: 54px; font-size: 30px; }
	.faq_question_text { font-size: 18px; }
	.faq_answer_inner { --faq-pad-x: 20px; gap: 14px; padding: 18px var(--faq-pad-x) 0; }
	.faq_item.is_open .faq_answer_inner { padding: 18px var(--faq-pad-x) 22px; }
}
@media only screen and (max-width: 568px) {
	.faq { padding: 40px 0; }
	.faq_mark-q { padding-bottom: .2em; }
	.faq_mark-a { padding-bottom: .1em;}
	.faq_item { border-radius: 6px; }
	.faq_question { padding: 18px 44px 18px 16px; }
	.faq_mark { width: 44px; height: 44px; font-size: 24px; }
	.faq_question_text { font-size: 15px; }
	.faq_answer_text { font-size: 13px; }
	.faq_toggle { right: 16px; width: 18px; height: 18px; }
}

/* ==============================================
   POINT (外構計画のポイント)
============================================== */
.point { position: relative; overflow: hidden; background: var(--color_bg) url(../img/top/point_bg_pc.png) top right no-repeat; padding: 80px 0; }
.point .l_container { position: relative; z-index: 1; }
.point_head { margin-bottom: 60px; max-width: 735px; text-align: center; }
.point_eyebrow {
	display: inline-block; border: 1px solid var(--color_green); color: var(--color_green);
	padding: 5px 25px; font-family: var(--font_serif); font-weight: 500; font-size: 20px; letter-spacing: .05em; margin-bottom: 20px;
}
.point_head .section_title {
	position: relative; text-align: center; padding-left: 104px;font-size: 35px;
}
.point_head .section_title_accent {
	font-size: 40px;
}
.point_head .section_title::before {
	content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 83px; aspect-ratio: 83 / 103;
	background: url(../img/top/point_bg_heading.svg) center / contain no-repeat;
}
.point_lead { text-align: left; }
.point_card { background: #fff; border-radius: 10px; box-shadow: 0 0 4px rgba(34,34,34,.12); padding: 40px 40px 20px; }
.point_list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.point_item { border: 1px solid var(--color_border); border-radius: 6px; padding: 24px 16px; text-align: center; position: relative; }
.point_number {
	display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%;
	background: var(--color_green); color: #fff; font-family: var(--font_serif); font-weight: 600; font-size: 22px;
	position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
}
.point_title { font-family: var(--font_serif); font-weight: 600; font-size: 17px; color: var(--color_green); letter-spacing: .05em; margin: 16px 0; }
.point_photo { border-radius: 5px; overflow: hidden; aspect-ratio: 214/122; margin-bottom: 16px; }
.point_photo img { width: 100%; height: 100%; object-fit: cover; }
.point_text { font-size: 15px; letter-spacing: .02em; line-height: 1.6; text-align: left; }
.point_note { margin-top: 24px; font-size: 13px; color: var(--color_text_sub); letter-spacing: .02em; line-height: 1.75; }

@media only screen and (max-width: 1200px) {
	.point { padding: 90px 0; }
	.point_card { padding: 28px; }
}
@media only screen and (max-width: 960px) {
	.point { background-image: url(../img/top/point_bg_sp.png); background-position: top right; background-size: 284px auto; }
	.point_head .section_title { padding-left: 0; }
	.point_head .section_title::before { content: none; }
	.point_list { grid-template-columns: repeat(2, 1fr); }
	.point_item {
		display: grid; grid-template-columns: 130px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 16px;
		text-align: left;
	}
	.point_photo { grid-column: 1; grid-row: 1; margin-bottom: 0; }
	.point_title { grid-column: 2; grid-row: 1; margin: 0; text-align: left; }
	.point_text { grid-column: 1 / -1; grid-row: 2; margin-top: 12px; }
}
@media only screen and (max-width: 568px) {
	.point { padding: 40px 0; }
	.point_head { gap: 28px; margin-bottom: 40px; }
	.point_eyebrow { font-size: 16px; background: rgba(255,255,255,.7); padding: 8px 16px; white-space: nowrap; }
	.point_head .section_title {
		font-size: 24px;
		line-height: 39px;
		text-align: left;
	}
	.point_head .section_title_accent {
		font-size: 29px;
	}
	.point_card { padding: 40px 20px;margin: 0 -5vw; border-radius: 0; }
	.point_list { grid-template-columns: 1fr; gap: 32px; }
	.point_title { text-align: center; }
}

/* ==============================================
   AREA (対応エリア)
============================================== */
.area { position: relative; padding: 80px 0; overflow: hidden; }
.area::before {
	content: ""; position: absolute; inset: 0; z-index: 0;
	background: url(../img/common/area_bg.jpg) center / cover no-repeat;
}
.area .section_heading, .area_card { position: relative; z-index: 1; }
.area_card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 0 8px rgba(34,34,34,.12); border: #fff 20px solid;}
.area_card_head {
	background: var(--color_green); color: #fff; text-align: center; padding: 15px 0;
	font-family: var(--font_serif); font-weight: 600; font-size: 32px; letter-spacing: .05em;
	display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 10px 10px 0 0;
}
.area_card_head img { width: 30px; }
.area_card_body { padding: 30px 40px; border:#eae9e7 1px solid;border-top: none;border-radius: 0 0 10px 10px;}
.area_list { display: grid; grid-template-columns: repeat(5, 1fr); column-gap: 24px; row-gap: 8px; }
.area_list li { letter-spacing: .05em; position: relative; }
.area_list a { color: inherit; padding: 8px 0 8px 20px;text-decoration: none; }
.area_list a:hover { text-decoration: underline; }
.area_list li::before { content: ""; position: absolute; left: 0; top: 50%; width: 5px; height: 5px; border-top: 2px solid var(--color_green); border-right: 2px solid var(--color_green); transform: translateY(-50%) rotate(45deg); }

@media only screen and (max-width: 1200px) {
	.area { padding: 90px 0; }
	.area_card_body { padding: 32px; }
}
@media only screen and (max-width: 960px) {
	.area_list { grid-template-columns: repeat(3, 1fr); }
	.area_card_head { font-size: 22px; padding: 22px; }
}
@media only screen and (max-width: 568px) {
	.area { padding: 40px 0; }
	.area_card { border: #fff 5px solid; border-radius: 6px; }
	.area_card_body { padding: 20px; border-radius: 0 0 6px 6px; }
	.area_list { grid-template-columns: repeat(2, 1fr); column-gap: 12px; }
	.area_list li { font-size: 14px; }
	.area_card_head { font-size: 22px; padding: 18px; border-radius: 6px 6px 0 0; }
	.area_card_head img { width: 20px; }
}

/* ==============================================
   COMPANY (会社情報)
============================================== */
.company { background: var(--color_bg_alt); padding: 80px 0; }
.company_table { margin-top: 40px; border: 1px solid var(--color_border); background: #fff; }
.company .gmap {background:#fff;padding: 10px 10px 5px;margin: 30px auto 0;border-radius: 10px;}
.company  iframe{width: 100%;height: 300px;}
.company_row { display: flex; border-bottom: 1px solid var(--color_border); }
.company_row:last-child { border-bottom: none; }
.company_label {
	flex: 0 0 255px; background: var(--color_green); color: #fff; font-family: var(--font_serif); font-weight: 600;
	font-size: 17px; letter-spacing: .05em; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px;
}
.company_value { flex: 1; padding: 20px 32px; letter-spacing: .03em; line-height: 1.6; display: flex; align-items: center; }
.company_license_list li { position: relative; padding-left: 18px; }
.company_license_list li::before { content: "・"; position: absolute; left: 0; }

@media only screen and (max-width: 1200px) {
	.company { padding: 90px 0; }
	.company_label { flex-basis: 200px; font-size: 15px; }
}
@media only screen and (max-width: 960px) {
	.company_row { flex-direction: column; }
	.company_label { flex-basis: auto; padding: 12px; }
	.company_value { padding: 16px 20px; }
	.company iframe {height: 250px;}
}
@media only screen and (max-width: 568px) {
	.company { padding: 40px 0; }
	.company_value { font-size: 14px; }
	.company_table { margin-top: 30px; }
	.company .gmap { border-radius: 6px; }
	.company iframe {height: 200px;}
}

/* ==============================================
   FOOTER
============================================== */
.footer { background: #fff; padding-bottom: 90px;}
.footer_top { padding: 60px 20px 48px; }
.footer_brand { display: flex; align-items: center; gap: 100px; margin-bottom: 20px; }
.footer_logo { flex: 0 0 320px; display: flex; align-items: center; gap: 14px; }
.footer_logo img { width: 40px; }
.footer_logo_text { font-family: var(--font_serif); font-weight: 700; font-size: 20px; letter-spacing: .05em; }
.footer_top_link { display: flex; align-items: center; gap: 8px; font-size: 15px; letter-spacing: .05em; }
.footer_top_link img { width: 18px; }
.footer_main { display: flex; align-items: flex-start; gap: 60px; }
.footer_contact { flex: 0 0 360px; background: var(--color_bg_alt); border-radius: 10px; padding: 28px; }
.footer_contact_heading { font-family: var(--font_serif); font-weight: 600; font-size: 17px; letter-spacing: .05em; margin-bottom: 12px; }
.footer_contact_address { font-size: 15px; letter-spacing: .03em; line-height: 1.7; }
.footer_nav { flex: 1; display: flex; gap: 40px; }
.footer_nav_col { flex: 1; }
.footer_nav_heading { font-size: 18px; font-weight: 500; letter-spacing: .05em; margin-bottom: 16px; }
.footer_nav_list li { margin-bottom: 5px; font-size: 15px; letter-spacing: .03em; position: relative; padding-left: 16px; }
.footer_nav_list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-top: 2px solid var(--color_green); border-right: 2px solid var(--color_green); transform: rotate(45deg); }
.footer_bottom { background: var(--color_green); color: #fff; text-align: center; padding: 28px 20px; font-size: 13px; letter-spacing: .05em; }
.footer_bottom a{color: #fff;}
@media only screen and (max-width: 1200px) {
	.footer_brand { gap: 40px; }
	.footer_logo { flex-basis: 260px; }
	.footer_main { gap: 40px; }
	.footer_contact { flex-basis: 260px; }
	.footer_nav { gap: 24px; }
}
@media only screen and (max-width: 960px) {
	.footer_top { padding: 48px 20px 36px; }
	.footer_brand { justify-content: space-between; gap: 0; }
	.footer_logo { flex-basis: auto; margin: 0 auto;}
	.footer_top_link { display: none; }
	.footer_main { flex-direction: column; align-items: stretch; gap: 32px; }
	.footer_contact { order: 2; flex-basis: auto; margin: 0 auto;}
	.footer_nav { order: 1; flex-direction: column; gap: 0; }
	.footer_nav_heading {
		background: #5E943A; color: #fff; text-align: center;
		margin: 0; padding: 14px 20px; font-size: 18px;
	}
	.footer_nav_list {
		position: relative; display: grid; grid-template-columns: 1fr 1fr; 
	}
	.footer_nav_list::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--color_border); }
	.footer_nav_list li { margin-bottom: 0; border-bottom: 1px solid var(--color_border); }
	.footer_nav_list li::before { top: 50%; left: .5em; transform: translateY(-50%) rotate(45deg); }
	.footer_nav_list li a { display: block; padding: 14px 0 14px 16px; }
	.footer_nav_item-sm a { font-size: 13px; letter-spacing: 0; }
}
@media only screen and (max-width: 568px) {
	.footer {
		padding-bottom: 62px;
	}
	.footer_brand { flex-direction: column; align-items: flex-start; gap: 16px; }
	.footer_top { padding: 40px 0 28px; }
	.footer_contact { border-radius: 6px; width: 90%; }
}

/* ==============================================
   FIXED FOOTER (追従フッター)
============================================== */
.fixed_footer { position: fixed; left: 0; bottom: 0; width: 100%; z-index: 300; background: #f5f7eb; box-shadow: 0 -2px 10px rgba(34,34,34,.1); }
.fixed_footer_inner {
	max-width: var(--container_width); margin: 0 auto; padding: 14px 20px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.fixed_footer_logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.fixed_footer_logo img { width: 44px; }
.fixed_footer_logo_text { font-family: var(--font_serif); font-weight: 700; font-size: 20px; letter-spacing: .04em; white-space: nowrap; color: var(--color_text); }
.fixed_footer_cta { display: flex; align-items: center; gap: 12px; }
.fixed_footer_cta .btn_form::after, .fixed_footer_line::after {
	content: ""; display: block; width: 18px; aspect-ratio: 20 / 13; margin-left: 4px; flex-shrink: 0;
	background: url(../img/common/arr_basic_white_right.svg) center / contain no-repeat;
}
.fixed_footer_line_icon { width: 32px; }
.fixed_footer_line_text-sp { display: none; }
.fixed_footer_form_text-sp { display: none; }
.fixed_footer_tel {
	display: flex; align-items: center; gap: 10px;
	border: none; padding: 0; white-space: nowrap;
}
.fixed_footer_tel_badge-sp { display: none; }
.fixed_footer_tel_body { display: flex; flex-direction: column; }
.fixed_footer_tel_top { display: flex; align-items: center; gap: 8px; }
.fixed_footer_tel_icon-freedial { width: 31px; flex-shrink: 0; }
.fixed_footer_tel_number { font-size: 32px; font-family: 'Roboto'; font-weight: 700; color: var(--color_text); line-height: 1; letter-spacing: 1px; }
.fixed_footer_tel_caption {
	display: flex; align-items: center; gap: 6px; border-top: 1px solid #d8d8d8;
}
.fixed_footer_tel_chk { width: 14px; flex-shrink: 0; }
.fixed_footer_tel_caption_text { font-size: 14px; font-weight: 700; letter-spacing: .02em; color: var(--color_text); white-space: nowrap; }
.fixed_footer_tel_caption_note { color: var(--color_gold); }

@media only screen and (max-width: 980px) {
	.fixed_footer_logo { display: none; }
	.fixed_footer_inner { padding: 0; }
	.fixed_footer_cta { width: 100%; align-items: stretch; gap: 0; }
	.fixed_footer_cta .btn_form { box-shadow: none; flex: 3 1 0%; min-width: 0; margin: 0; border-radius: 0; padding: 8px; box-sizing: border-box;
		flex-direction: column; gap: 4px; align-items: center; justify-content: center; text-align: center;
	}
	.fixed_footer_cta .btn_form_icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
	.fixed_footer_form_text-pc, .fixed_footer_cta .btn_form::after { display: none; }
	.fixed_footer_form_text-sp { display: block; font-size: 11px; font-weight: 700; letter-spacing: .05em; line-height: 1.3; }

	.fixed_footer_line {
		flex: 3 1 0%; min-width: 0; padding: 8px; flex-direction: column; gap: 4px;
		align-items: center; justify-content: center; text-align: center;
	}
	.fixed_footer_line_icon { width: 20px; height: 20px; object-fit: contain; }
	.fixed_footer_line_text-pc, .fixed_footer_line::after { display: none; }
	.fixed_footer_line_text-sp { display: block; font-size: 11px; font-weight: 700; letter-spacing: .05em; line-height: 1.3; }

	.fixed_footer_tel {
		flex: 8 1 0%; min-width: 0; box-sizing: border-box;
		margin: 7px 8px 7px 10px; padding: 6px 10px; gap: 8px;
		border-radius: 8px; background: #fff; box-shadow: 0 0 4px rgba(34,34,34,.15);
		align-items: center; justify-content: flex-start; text-align: left;
	}
	.fixed_footer_tel_badge-sp {
		display: flex; align-items: center; justify-content: center; flex-shrink: 0;
		width: 30px; height: 30px; border-radius: 50%; background: var(--color_green);
	}
	.fixed_footer_tel_icon-sp { width: 17px; height: 17px; object-fit: contain; }
	.fixed_footer_tel_body { flex: 1; min-width: 0; }
	.fixed_footer_tel_top { gap: 4px; }
	.fixed_footer_tel_icon-freedial { width: 17px; }
	.fixed_footer_tel_number { font-size: 24px; letter-spacing: .5px; }
	.fixed_footer_tel_caption { margin-top: 3px; padding-top: 3px; gap: 4px; }
	.fixed_footer_tel_chk { width: 10px; }
	.fixed_footer_tel_caption_text { font-size: 8px; white-space: normal; line-height: 1.4; }
}
@media only screen and (max-width: 568px) {
	.fixed_footer_line { flex: 3 1 0%; min-width: 0; padding: 5px; border-radius: 0; box-shadow: none; }
	.fixed_footer_tel { flex: 8 1 0%; min-width: 0; margin: 10px 6px; padding: 0 8px; }
	.fixed_footer_tel_number { font-size: 18px; }
	.fixed_footer_tel_caption_text { font-size: 7px; }
}

/* ==============================================
   PAGETOP (floating button)
============================================== */
.pagetop {
	position: fixed; right: 30px; bottom: 100px; width: 50px; height: 50px; border-radius: 50%;
	background: #fff; border: solid 2px var(--color_green); display: flex; align-items: center; justify-content: center;
	z-index: 310; opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.pagetop.is_show { opacity: 1; visibility: visible; transform: translateY(0); }
.pagetop__arrow {
	height: 10px; width: 10px; border-top: 3px solid var(--color_green); border-right: 3px solid var(--color_green);
	transform: translateY(20%) rotate(-45deg);
}
@media only screen and (max-width: 1200px) {
	.pagetop { bottom: 90px; }
}
@media only screen and (max-width: 568px) {
	.pagetop { display: none; }
}
