:root {
		--green: #398900;
		--green-dark: #2d6e00;
		--green-light: #ebf3e5;
		--orange: #f26522;
		--orange-dark: #d45510;
		--orange-gradient: linear-gradient(0deg, #f05a23 0%, #ff911f 60%);
		--navy: #0a2540;
		--gray: #f4f6f8;
		--text: #222;
		--text-sub: #555;
		--border: #dde3ea;
		--white: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
		font-family: 'Noto Sans JP', sans-serif;
		color: var(--text);
		background: var(--white);
		line-height: 1.7;
		padding-top: 80px;
		overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* ===== ヘッダー ===== */
header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 80px;
		background: #000;
		display: flex;
		align-items: center;
		z-index: 1000;
		box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
header .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
}
.logo img {
		height: 40px;
		width: auto;
}
.pc-nav {
		display: none;
		align-items: center;
		gap: 25px;
}
.pc-nav a {
		color: var(--white);
		font-weight: 700;
		font-size: 0.95rem;
		text-decoration: none;
		position: relative;
}
.pc-nav a:not(.cta-nav-button)::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0;
		height: 2px;
		background-color: var(--green);
		transition: width 0.3s ease;
}
.pc-nav a:not(.cta-nav-button):hover::after {
		width: 100%;
}
.cta-nav-button {
		background: var(--green);
		padding: 12px 28px;
		border-radius: 50px;
		color: var(--white) !important;
		box-shadow: 0 4px 10px rgba(57,137,0,0.3);
}
.cta-nav-button:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 15px rgba(57,137,0,0.4);
		background: var(--green-dark);
}
@media (min-width: 1024px) {
		.pc-nav { display: flex; }
}
.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		width: 30px;
		height: 22px;
		background: transparent;
		border: none;
		cursor: pointer;
		z-index: 1100;
}
.hamburger span {
		width: 100%;
		height: 3px;
		background: #fff;
		border-radius: 10px;
		transition: all 0.3s linear;
}
@media (min-width: 1024px) {
		.hamburger { display: none; }
}
/* Mobile Menu */
.mobile-menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(0,0,0,0.95);
		z-index: 1200;
		padding: 100px 40px;
		transform: translateX(100%);
		transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1);
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
		color: #fff;
		font-size: 1.5rem;
		font-weight: 900;
		text-decoration: none;
}
.close-menu {
		position: absolute;
		top: 20px;
		right: 20px;
		font-size: 3rem;
		color: #fff;
		background: none;
		border: none;
		cursor: pointer;
}
.mobile-menu-cta {
		background: var(--orange-gradient);
		text-align: center;
		border-radius: 50px;
		color: white !important;
		padding: 15px 40px;
		width: 100%;
		border: 2px solid var(--white);
}
.btn-primary {
		display: inline-block;
		position: relative;
		background: linear-gradient(0deg, #e04a10 0%, #ff911f 100%);
		color: white;
		padding: 16px 48px 16px 32px;
		border-radius: 60px;
		font-weight: 700;
		font-size: 16px;
		text-decoration: none;
		text-align: center;
		transition: opacity 0.4s, transform 0.2s;
		box-shadow: #999 2px 2px 10px;
		border: 3px solid var(--white);
		cursor: pointer;
		line-height: 1.4;
}
.btn-primary::after {
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 6px 0 6px 8px;
		border-color: transparent transparent transparent var(--white);
		position: absolute;
		top: 50%;
		right: 7%;
		margin-top: -6px;
		transition: right 0.3s ease-out;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-6px); }
.btn-primary:hover::after { right: 5%; }
.btn-primary.large {
		padding: clamp(14px, 1.2vw, 16px) clamp(50px, 6vw, 80px) clamp(14px, 1.2vw, 16px) clamp(40px, 4.5vw, 60px);
		font-size: clamp(18px, 1.25vw, 28px);
		line-height: 1.3;
		box-shadow: #999 2px 2px 14px;
}
.btn-primary.large::after {
		border-width: 10px 0 10px 14px;
		margin-top: -10px;
}
.btn-primary.large .btn-sub {
		display: block;
		font-size: 11px;
		font-weight: 400;
		opacity: 0.9;
		margin-top: 2px;
}
.btn-yellow {
		color: #ffd166;
}

/* ===== アニメーション ===== */
@keyframes fvZoomIn {
		from { transform: scale(1.08); opacity: 0; }
		to { transform: scale(1); opacity: 1; }
}
@keyframes fvSlideLeft {
		from { transform: translateX(-60px); opacity: 0; }
		to { transform: translateX(0); opacity: 1; }
}
@keyframes fvSlideRight {
		from { transform: translateX(60px); opacity: 0; }
		to { transform: translateX(0); opacity: 1; }
}
@keyframes fvBounceUp {
		0% { transform: translateY(80px); opacity: 0; }
		60% { transform: translateY(-10px); opacity: 1; }
		80% { transform: translateY(5px); opacity: 1; }
		100% { transform: translateY(0); opacity: 1; }
}
@keyframes fvFloatUp {
		from { transform: translateY(40px); opacity: 0; }
		to { transform: translateY(0); opacity: 1; }
}
@keyframes fvPopIn {
		from { transform: scale(0.3); opacity: 0; }
		to { transform: scale(1); opacity: 1; }
}
@keyframes fvPulseIn {
		0% { transform: scale(0.8); opacity: 0; }
		70% { transform: scale(1.06); opacity: 1; }
		100% { transform: scale(1); opacity: 1; }
}

/* FV初期状態（非表示） */
.fv .fv-bg,
.fv .fv-sttl,
.fv .fv-ttl,
.fv .fv-bear,
.fv .fv-dec,
.fv .fv-balloon,
.fv .fv-badge,
.fv .fv-cta-wrap { opacity: 0; }

/* FV loaded後アニメーション */
.fv.loaded .fv-bg { animation: fvZoomIn 1.2s ease-out forwards; }
.fv.loaded .fv-sttl { animation: fvSlideLeft 0.7s 0.3s ease-out both; }
.fv.loaded .fv-ttl { animation: fvSlideLeft 0.8s 0.5s ease-out both; }
.fv.loaded .fv-bear { animation: fvBounceUp 0.9s 0.4s ease-out both; }
.fv.loaded .fv-dec { animation: fvFloatUp 0.8s 0.3s ease-out both; }
.fv.loaded .fv-balloon { animation: fvSlideRight 0.7s 0.7s ease-out both; }
.fv.loaded .fv-badge:nth-child(1) { animation: fvPopIn 0.5s 0.9s ease-out both; }
.fv.loaded .fv-badge:nth-child(2) { animation: fvPopIn 0.5s 1.05s ease-out both; }
.fv.loaded .fv-cta-wrap { animation: fvPulseIn 0.6s 1.1s ease-out both; }

/* スクロールフェードイン */
.fade-in {
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
		opacity: 1;
		transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== ファーストビュー ===== */
.fv {
		position: relative;
		width: 100%;
		overflow: hidden;
		padding: 0;
		height: calc(100vh - 80px);
}
.fv-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 0;
}
.fv-inner {
		position: relative;
		z-index: 1;
		height: 100%;
		margin: 0 auto;
		padding: 60px 20px 40px;
}
.fv-text {
		position: absolute;
		z-index: 2;
		width: 100%;
		height: 80vh;
		pointer-events: none;
}
.fv-text a,
.fv-text button {
		pointer-events: auto;
}
.fv-sttl {
		display: block;
		max-width: 600px;
		width: clamp(320px, 42vw, 600px);
		height: auto;
		position: absolute;
		top: 0;
		left: 3%;
}
.fv-ttl {
		display: block;
		max-width: 860px;
		width: clamp(500px, 62vw, 860px);
		height: auto;
		position: absolute;
		top: 17%;
		left: 3%;
}
.fv-badges {
		height: clamp(200px, 27vh, 300px);
		width: 100%;
		max-width: clamp(380px, 40vw, 560px);
		position: absolute;
		bottom: 0;
		left: 3%;
}
.fv-badge {
		height: clamp(200px, 27vh, 300px);
		width: clamp(200px, 22vw, 300px);
		position: absolute;
		left: 0;
		bottom: 0;
}
.fv-badge:nth-child(2) {
		left: auto;
		right: 0;
}
.fv-cta-wrap {
		position: absolute;
		right: 0;
		bottom: 10%;
		width: clamp(300px, 32vw, 500px);
		z-index: 4;
}
.fv-chara {
		position: absolute;
		right: 0;
		bottom: 0;
		width: clamp(400px, 42vw, 700px);
		z-index: 3;
}
.fv-dec {
		position: absolute;
		right: 0;
		bottom: 0;
		width: clamp(340px, 36vw, 600px);
		height: auto;
		z-index: 0;
}
.fv-balloon {
		position: absolute;
		top: clamp(-80px, -8vh, -40px);
		right: clamp(25%, 30%, 35%);
		width: clamp(200px, 20vw, 320px);
		height: auto;
		z-index: 4;
}
.fv-bear {
		position: relative;
		z-index: 3;
		right: -10%;
		bottom: 0;
		width: 100%;
		max-width: clamp(360px, 38vw, 650px);
		height: auto;
		display: block;
}

/* ===== 帯バナー ===== */
.ribbon-bar {
		background: var(--navy);
		color: white;
		text-align: center;
		padding: 18px 20px;
		font-size: 24px;
		font-weight: 700;
		letter-spacing: 0.05em;
		line-height: 1.6;
}
.ribbon-bar em {
		color: #ffd166;
		font-style: normal;
}

/* ===== セクション共通 ===== */
section { padding: 120px 20px; }
.container { max-width: 1170px; margin: 0 auto; }
/* ===== セクションタイトル共通 ===== */
.sec-title {
		position: relative;
		display: block;
		font-size: 54px;
		font-weight: 900;
		color: var(--navy);
		margin-bottom: 60px;
		line-height: 1.4;
		text-align: center;
}
.sec-title .en {
		display: block;
		font-family: 'Oswald', sans-serif;
		font-size: clamp(60px, 10vw, 120px);
		font-weight: 700;
		letter-spacing: 0.05em;
		color: transparent;
		-webkit-text-stroke: 2px var(--green);
		text-stroke: 2px var(--green);
		line-height: 1;
		margin-bottom: -0.5em;
		opacity: 0.3;
		user-select: none;
		pointer-events: none;
}
/* バッジ付きタイトル */
.sec-title.-badge {
		padding-left: 50px;
		text-align: left;
}
.sec-title.-badge::after { display: none; }
.sec-title .badge {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		background: #ffd400;
		color: #333;
		width: 40px;
		height: 40px;
		line-height: 40px;
		border-radius: 50%;
		text-align: center;
		font-size: 18px;
		font-weight: 700;
}
.section-lead {
		font-size: 16px;
		color: var(--text-sub);
		margin-bottom: 40px;
		line-height: 1.9;
		text-align: center;
}

/* ===== 問題提起 ===== */
.problems { background: #fff9f5; }
.problem-intro {
		font-size: 20px;
		font-weight: 700;
		color: var(--navy);
		text-align: center;
		margin-bottom: 50px;
		line-height: 1.6;
}
.problem-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-bottom: 40px;
}
.problem-card {
		background: white;
		border-radius: 12px;
		padding: 24px 20px;
		box-shadow: 0 2px 12px rgba(0,0,0,0.06);
		display: flex;
		align-items: flex-start;
		gap: 14px;
}
.problem-icon {
		width: 100px;
		height: 100px;
		object-fit: contain;
		flex-shrink: 0;
}
.problem-card p {
		font-size: 18px;
		font-weight: 700;
		color: var(--text);
		line-height: 1.5;
		margin: 0;
}
.problem-card p span {
		display: block;
		font-weight: 400;
		font-size: 16px;
		color: var(--text-sub);
		margin-top: 4px;
}
.problem-conclusion {
		background: var(--orange-gradient);
		color: white;
		border-radius: 12px;
		padding: 24px 28px;
		font-size: 17px;
		font-weight: 700;
		text-align: center;
		line-height: 1.7;
		max-width: 900px;
		margin: 50px auto 20px;
}
.problem-conclusion em {
		font-style: normal;
		font-size: 20px;
		display: block;
		margin-top: 6px;
}

/* ===== 決算訴求（追加セクション）===== */
.kessan {
		background: repeating-linear-gradient(-45deg, rgb(245, 242, 233) 0px, rgb(245, 242, 233) 5px, rgb(255, 255, 255) 5px, rgb(255, 255, 255) 10px);
		color: var(--text);
}
.kessan .sec-title { color: var(--navy); }
.kessan .sec-title .en {
		-webkit-text-stroke-color: var(--green);
		text-stroke-color: var(--green);
		opacity: 0.15;
}
.kessan-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin-top: 40px;
}
.kessan-card {
		background: white;
		border-radius: 14px;
		padding: 28px 22px;
		text-align: center;
		box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.kessan-num {
		font-family: 'Oswald', sans-serif;
		font-size: 48px;
		font-weight: 700;
		color: var(--green);
		line-height: 1;
		margin-bottom: 8px;
}
.kessan-num span { font-size: 20px; }
.kessan-card h3 {
		font-size: 16px;
		font-weight: 700;
		margin-bottom: 10px;
		color: var(--navy);
}
.kessan-card p {
		font-size: 13px;
		color: var(--text-sub);
		line-height: 1.7;
		margin: 0;
}
.kessan-merit {
		margin-top: 40px;
		background: white;
		border-radius: 14px;
		padding: 30px 32px;
		box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.kessan-merit h3 {
		font-size: 18px;
		font-weight: 700;
		color: var(--green-dark);
		margin-bottom: 20px;
}
.merit-list {
		list-style: none;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
}
.merit-list li {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		font-size: 14px;
		color: var(--text);
}
.merit-list li::before {
		content: "▶";
		color: var(--green);
		font-weight: 900;
		font-size: 16px;
		flex-shrink: 0;
}

/* ===== 選ばれる理由 ===== */
.reasons { background: var(--white); }
.reason-list { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.reason-item {
		display: flex;
		align-items: flex-start;
		gap: 24px;
		background: var(--gray);
		border-radius: 16px;
		padding: 30px 28px;
		transition: box-shadow 0.2s;
}
.reason-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.reason-number {
		font-family: 'Oswald', sans-serif;
		font-size: 52px;
		font-weight: 700;
		color: var(--green);
		line-height: 1;
		flex-shrink: 0;
		opacity: 0.25;
}
.reason-body h3 {
		font-size: 20px;
		font-weight: 900;
		color: var(--navy);
		margin-bottom: 10px;
}
.reason-body p {
		font-size: 14px;
		color: var(--text-sub);
		line-height: 1.8;
		margin: 0;
}
.reason-body .tag {
		display: inline-block;
		background: var(--green-light);
		color: var(--green-dark);
		font-size: 12px;
		font-weight: 700;
		padding: 3px 10px;
		border-radius: 50px;
		margin-bottom: 8px;
}
.spec-list {
		margin-top: 12px;
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
}
.spec-badge {
		background: white;
		border: 1px solid var(--border);
		border-radius: 6px;
		padding: 4px 12px;
		font-size: 12px;
		font-weight: 700;
		color: var(--navy);
}

/* 信用力バナー（選ばれる理由タイトル下） */
.credit-banner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin-top: 40px;
}
.credit-banner-item {
		background: var(--green-light);
		border-radius: 16px;
		padding: 28px 24px;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
}
.credit-banner-icon {
		width: 80px;
		flex-shrink: 0;
}
.credit-banner-icon img {
		width: 80px;
		height: auto;
}
.credit-banner-body h3 {
		font-size: 20px;
		font-weight: 900;
		color: var(--green-dark);
		margin-bottom: 10px;
		line-height: 1.4;
}
.credit-banner-body p {
		font-size: 14px;
		color: var(--text);
		line-height: 1.8;
		margin: 0;
}

/* ===== 点検メニュー（追加）===== */
.inspection { background: var(--green-light); }
.inspection-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin-top: 40px;
}
.inspection-card {
		background: white;
		border-radius: 14px;
		padding: 28px 22px;
		text-align: center;
		box-shadow: 0 2px 12px rgba(42,178,75,0.1);
}
.inspection-img {
		width: 100%;
		height: 180px;
		object-fit: cover;
		border-radius: 8px;
		margin-bottom: 16px;
}
.inspection-card h3 {
		font-size: 16px;
		font-weight: 900;
		color: var(--navy);
		margin-bottom: 10px;
}
.inspection-card p {
		font-size: 13px;
		color: var(--text-sub);
		line-height: 1.7;
		margin: 0;
}
.inspection-lead {
		text-align: center;
		margin-top: 60px;
		font-size: 15px;
		line-height: 1.9;
		color: var(--text-sub);
}
.inspection-lead strong { color: var(--green-dark); font-weight: 900; }

/* ===== 解決事例 ===== */
.cases { background: var(--gray); }
.case-list { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.case-card {
		background: white;
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}
.case-header {
		background: var(--navy);
		color: white;
		padding: 16px 24px;
		display: flex;
		align-items: center;
		gap: 14px;
}
.case-num {
		background: var(--green);
		border-radius: 50%;
		width: 32px;
		height: 32px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 900;
		font-size: 14px;
		flex-shrink: 0;
}
.case-header h3 { font-size: 17px; font-weight: 700; }
.case-body { padding: 24px; }
.case-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
}
.case-col {
		background: #f8f9fa;
		border-radius: 10px;
		padding: 20px;
}
.case-col.solution { background: #e8f7ec; }
.case-col-icon {
		width: 64px;
		height: auto;
		margin-bottom: 12px;
}
.case-col-label {
		font-size: 16px;
		font-weight: 700;
		color: var(--text-sub);
		margin-bottom: 10px;
		letter-spacing: 0.05em;
}
.case-col.solution .case-col-label { color: var(--green-dark); }
.case-col p { font-size: 14px; line-height: 1.7; margin: 0; color: var(--text); }

/* ===== 施工実績 ===== */
.works { background: white; }
.works-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-top: 40px;
}
.works-card {
		border: 1px solid var(--border);
		border-radius: 12px;
		overflow: hidden;
}
.works-card-header {
		background: var(--navy);
		color: white;
		padding: 12px 20px;
		font-size: 15px;
		font-weight: 700;
		display: flex;
		align-items: center;
		gap: 8px;
}
.works-card-header .dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: var(--green);
		flex-shrink: 0;
}
.works-card ul {
		padding: 16px 20px;
		list-style: none;
}
.works-card li {
		font-size: 13px;
		color: var(--text);
		padding: 8px 0;
		border-bottom: 1px solid var(--border);
		line-height: 1.5;
}
.works-card li:last-child { border-bottom: none; }
.works-note {
		font-size: 11px;
		color: var(--text-sub);
		padding: 0 20px 12px;
}

/* ===== エリア ===== */
.area { background: #f0f7ff; text-align: center; }
.area-map-wrap {
		background: white;
		border-radius: 16px;
		padding: 32px;
		margin: 40px 0;
		box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}
.area-map-img {
		width: 100%;
		height: auto;
		border-radius: 10px;
		border: 2px solid #ccc;
		margin-bottom: 24px;
}
.area-tags {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
}
.area-tag {
		background: var(--navy);
		color: white;
		padding: 8px 20px;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 700;
}
.area-tag span { font-size: 11px; font-weight: 400; opacity: 0.7; margin-left: 4px; }

/* ===== 流れ ===== */
.flow { background: white; }
.flow-list {
		max-width: 800px;
		margin: 0 auto;
}
.flow-item {
		display: flex;
		background: white;
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.flow-content {
		flex: 1;
		min-width: 0;
}
.flow-img {
		width: 240px;
		flex-shrink: 0;
}
.flow-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
}
.flow-head {
		display: flex;
		align-items: center;
		gap: 16px;
		padding: 20px 28px;
		background: var(--navy);
		color: white;
}
.flow-num {
		width: 44px;
		height: 44px;
		background: var(--green);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: 'Oswald', sans-serif;
		font-size: 20px;
		font-weight: 700;
		flex-shrink: 0;
}
.flow-head h3 {
		font-size: 18px;
		font-weight: 900;
		margin: 0;
		display: flex;
		align-items: center;
		gap: 12px;
}
.flow-free {
		display: inline-block;
		background: #ffd166;
		color: var(--navy);
		font-size: 12px;
		font-weight: 900;
		padding: 2px 10px;
		border-radius: 20px;
}
.flow-body {
		padding: 20px 28px;
}
.flow-body p {
		font-size: 14px;
		color: var(--text-sub);
		line-height: 1.8;
		margin: 0;
}
.flow-arrow {
		text-align: center;
		padding: 8px 0;
}
.flow-arrow::before {
		content: '';
		display: inline-block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 16px 14px 0 14px;
		border-color: var(--green) transparent transparent transparent;
}

/* ===== FAQ ===== */
.faq { background: var(--gray); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
		background: white;
		border-radius: 12px;
		overflow: hidden;
		border: 1px solid var(--border);
}
.faq-q {
		padding: 20px 24px;
		font-weight: 700;
		font-size: 15px;
		color: var(--navy);
		display: flex;
		align-items: flex-start;
		gap: 12px;
		cursor: pointer;
		transition: background-color 0.2s;
}
.faq-q:hover { background-color: var(--gray); }
.faq-q-mark {
		background: var(--green);
		color: white;
		width: 26px;
		height: 26px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		font-weight: 900;
		flex-shrink: 0;
		margin-top: 1px;
}
.faq-a {
		padding: 0 24px 20px 24px;
		font-size: 14px;
		color: var(--text-sub);
		line-height: 1.8;
		display: flex;
		align-items: flex-start;
		gap: 12px;
}
.faq-a-mark {
		background: var(--orange);
		color: white;
		width: 26px;
		height: 26px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		font-weight: 900;
		flex-shrink: 0;
		margin-top: 1px;
}

/* ===== クロージング ===== */
.closing {
		background: var(--green);
		color: white;
		text-align: center;
		position: relative;
}
.closing .sec-title { color: white; font-size: 38px; }
.closing .sec-title .en {
		-webkit-text-stroke-color: rgba(255,255,255,0.5);
		text-stroke-color: rgba(255,255,255,0.5);
		opacity: 0.2;
}
.closing p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 2; margin-bottom: 40px; }

/* ===== フォーム ===== */
.form-section { background: var(--green-light); }
.form-inner {
		background: white;
		border-radius: 20px;
		padding: 48px 40px;
		max-width: 760px;
		margin: 0 auto;
		box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.form-title {
		font-size: 32px;
		font-weight: 900;
		color: var(--navy);
		text-align: center;
		margin-bottom: 8px;
}
.form-subtitle {
		text-align: center;
		font-size: 14px;
		color: var(--text-sub);
		margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-label {
		display: block;
		font-size: 13px;
		font-weight: 700;
		color: var(--navy);
		margin-bottom: 6px;
}
.form-label .required {
		background: var(--orange);
		color: white;
		font-size: 10px;
		padding: 1px 6px;
		border-radius: 3px;
		margin-left: 6px;
		font-weight: 700;
}
.form-input {
		width: 100%;
		padding: 12px 16px;
		border: 1.5px solid var(--border);
		border-radius: 8px;
		font-size: 15px;
		font-family: inherit;
		transition: border-color 0.2s;
		color: var(--text);
}
.form-input:focus { outline: none; border-color: var(--green); }
textarea.form-input { resize: vertical; min-height: 100px; }
.checkbox-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
}
.check-item {
		display: flex;
		align-items: center;
		gap: 6px;
		background: var(--gray);
		border-radius: 8px;
		padding: 10px 12px;
		font-size: 13px;
		cursor: pointer;
}
.check-item input[type="checkbox"] { accent-color: var(--green); width: 16px; height: 16px; }
.radio-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
}
.radio-item {
		display: flex;
		align-items: center;
		gap: 6px;
		background: var(--gray);
		border-radius: 8px;
		padding: 10px 16px;
		font-size: 13px;
		cursor: pointer;
}
.radio-item input[type="radio"] { accent-color: var(--green); width: 16px; height: 16px; }
.form-submit { text-align: center; margin-top: 32px; }
.form-note { font-size: 12px; color: var(--text-sub); margin-top: 10px; }

/* ===== フッター ===== */
footer {
		background: var(--green);
		color: white;
		padding: 80px 0 40px;
}
.footer-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 50px;
		margin-bottom: 50px;
}
.footer-logo {
		font-size: 1.8rem;
		font-weight: 900;
		margin-bottom: 20px;
		color: white;
}
.footer-desc {
		opacity: 0.8;
		line-height: 1.8;
}
.footer-badges {
		display: flex;
		align-items: center;
		gap: 16px;
		margin: 20px 0;
		flex-wrap: wrap;
}
.footer-badges img {
		height: 120px;
		width: auto;
}
.footer-tel {
		font-size: 2rem;
		font-weight: 900;
		color: #ffd166;
		margin: 20px 0;
}
.footer-offices {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
		gap: 30px;
}
.office-card h4 {
		border-bottom: 1px solid rgba(255,255,255,0.2);
		padding-bottom: 10px;
		margin-bottom: 10px;
		font-weight: 900;
}
.office-card p {
		font-size: 0.85rem;
		opacity: 0.8;
}
.footer-bottom {
		text-align: center;
		padding-top: 40px;
		border-top: 1px solid rgba(255,255,255,0.15);
		font-size: 0.85rem;
		opacity: 0.8;
}

/* ===== プライバシー同意 ===== */
.privacy-agree {
		margin-top: 28px;
		text-align: center;
}
.privacy-agree-label {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		cursor: pointer;
		font-size: 0.95rem;
}
.privacy-agree-label input[type="checkbox"] {
		width: 20px;
		height: 20px;
		accent-color: var(--green);
		cursor: pointer;
		flex-shrink: 0;
}
.privacy-agree-text a {
		color: var(--green-dark);
		text-decoration: underline;
		font-weight: 700;
}
.privacy-agree-text a:hover {
		color: var(--orange);
}

/* ===== Floating CTA ===== */
.floating-cta {
		position: fixed;
		right: 0;
		top: 50%;
		transform: translateX(100%) translateY(-50%);
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		padding: 18px 10px;
		background: var(--orange-gradient);
		color: #fff;
		text-decoration: none;
		border-radius: 8px 0 0 8px;
		box-shadow: -4px 4px 15px rgba(242,101,34,0.35);
		z-index: 950;
		opacity: 0;
		visibility: hidden;
		transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, box-shadow 0.3s ease;
		cursor: pointer;
}
.floating-cta.is-visible {
		opacity: 1;
		visibility: visible;
		transform: translateX(0) translateY(-50%);
}
.floating-cta:hover {
		box-shadow: -6px 6px 25px rgba(242,101,34,0.5);
		opacity: 0.9;
}
.floating-cta-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
}
.floating-cta-icon svg {
		width: 28px;
		height: 28px;
		stroke: #fff;
}
.floating-cta-text {
		writing-mode: vertical-rl;
		font-size: 0.85rem;
		font-weight: 700;
		letter-spacing: 0.15em;
		white-space: nowrap;
}

/* ===== Page Top Button ===== */
.page-top-btn {
		position: fixed;
		right: 25px;
		bottom: 30px;
		width: 50px;
		height: 50px;
		background: var(--green);
		color: white;
		border: none;
		border-radius: 50%;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 15px rgba(57,137,0,0.3);
		opacity: 0;
		visibility: hidden;
		transform: translateY(20px);
		transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
		z-index: 900;
}
.page-top-btn.is-visible {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
}
.page-top-btn:hover {
		background: var(--green-dark);
		box-shadow: 0 6px 20px rgba(10,37,64,0.4);
		transform: translateY(-3px);
}
.page-top-btn svg {
		width: 22px;
		height: 22px;
}

/* ===== Thanks Page ===== */
.thanks-section {
		padding: 120px 0 100px;
		min-height: 60vh;
		display: flex;
		align-items: center;
}
.thanks-box {
		max-width: 700px;
		margin: 0 auto;
		background: white;
		padding: 70px 50px;
		border-radius: 30px;
		box-shadow: 0 30px 60px rgba(0,0,0,0.08);
		text-align: center;
		border-top: 10px solid var(--green);
}
.thanks-icon { margin-bottom: 25px; }
.thanks-title {
		font-size: 1.8rem;
		font-weight: 900;
		color: var(--navy);
		margin-bottom: 25px;
}
.thanks-message {
		font-size: 1rem;
		line-height: 2;
		color: #333;
		margin-bottom: 15px;
}
.thanks-message strong { color: var(--green); }
.thanks-sub {
		font-size: 0.85rem;
		color: #777;
		margin-bottom: 35px;
}
.thanks-tel {
		background: var(--gray);
		padding: 25px;
		border-radius: 15px;
		margin-bottom: 40px;
}
.thanks-tel-label {
		display: block;
		font-size: 0.85rem;
		color: #666;
		margin-bottom: 8px;
}
.thanks-tel-number {
		font-size: 1.8rem;
		font-weight: 900;
		color: var(--navy);
		text-decoration: none;
		letter-spacing: 0.05em;
}
.thanks-tel-number:hover { color: var(--orange); }
.thanks-back { margin-top: 10px; }
.thanks-back-btn {
		width: 320px;
		font-size: 1rem;
		padding: 18px 0;
		text-decoration: none;
}

/* ===== CTA中間 ===== */
.mid-cta {
		text-align: center;
		padding: 40px 0 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
		header .container { padding: 0 20px; }
		/* FV SP */
		.fv { height: auto; }
		.fv-inner { height: auto; padding: 20px 5px 0; }
		.fv-text {
				position: relative;
				width: 100%;
				height: 35vh;
				text-align: center;
		}
		.fv-sttl {
				position: relative;
				top: auto; left: auto;
				max-width: 280px;
		}
		.fv-ttl {
				position: relative;
				top: 0%;
				left: 0;
				max-width: 100%;
		}
		.fv-badges {
				position: relative;
				left: auto; bottom: 5%;
				height: auto;
				width: auto;
				max-width: clamp(340px, 40vw, 560px);
				margin: 0 auto;
				display: flex;
				justify-content: center;
				gap: 8px;
		}
		.fv-badge {
				position: relative;
				left: auto !important;
				height: 150px;
				width: auto;
		}
		.fv-badge:nth-child(2) { left: auto !important; }
		.fv-chara {
				position: relative;
				right: -20px;
				bottom: auto;
				width: 100%;
				margin-top: 16px;
		}
		.fv-bear { right: -20%; }
		.fv-cta-wrap {
				right: auto;
				width: 100%;
				text-align: center;
		}
		.fv-balloon { width: 180px; top: -20px; right: 40%; }
		.fv-dec { width: 90%; right: 0; bottom: 0; }
		.btn-primary.large { font-size: 18px; padding: 14px 50px 14px 30px; }
		.btn-primary.large::after { border-width: 6px 0 6px 8px; margin-top: -6px; }

		section { padding: 60px 16px; }
		.sec-title { font-size: 26px; margin-bottom: 40px; }
		.sec-title .en { font-size: 44px; margin-bottom: -0.35em; }
		.ribbon-bar { font-size: 15px; padding: 14px 16px; }
		.section-lead { text-align: left; }
		.problem-intro { text-align: left; margin-bottom: 30px; font-size: 16px; }
		.problem-grid { grid-template-columns: 1fr; }
		.problem-icon { width: 70px; height: 70px; }
		.problem-card p { font-size: 15px; }
		.problem-card p span { font-size: 13px; }
		.kessan-grid { grid-template-columns: 1fr; }
		.merit-list { grid-template-columns: 1fr; }
		.inspection-grid { grid-template-columns: 1fr; }
		.inspection-lead { text-align: left; margin-top: 32px; }
		.mid-cta { padding: 24px 0 0; }
		.case-row { grid-template-columns: 1fr; }
		.works-grid { grid-template-columns: 1fr; }
		.flow-item { flex-direction: column-reverse; }
		.flow-img { width: 100%; height: 180px; }
		.flow-head { padding: 16px 20px; gap: 12px; }
		.flow-head h3 { font-size: 16px; }
		.flow-body { padding: 16px 20px; }
		.flow-num { width: 36px; height: 36px; font-size: 16px; }
		.checkbox-grid { grid-template-columns: repeat(2, 1fr); }
		.footer-grid { grid-template-columns: 1fr; gap: 30px; }
		.footer-offices { grid-template-columns: 1fr; gap: 20px; }
		footer .container { padding: 0 20px; }
		.footer-logo { font-size: 1.5rem; }
		.footer-badges img { height: 75px; }
		.footer-desc { font-size: 0.75rem; }
		.form-inner { padding: 28px 20px; }
		.reason-number { font-size: 36px; }
		.credit-banner { grid-template-columns: 1fr; }
		/* Floating CTA - mobile bottom bar */
		.floating-cta {
				top: auto;
				bottom: 0;
				left: 0;
				right: 0;
				transform: translateY(100%);
				flex-direction: row;
				justify-content: center;
				gap: 10px;
				padding: 14px 20px;
				border-radius: 0;
				box-shadow: 0 -4px 15px rgba(242,101,34,0.3);
				width: 100%;
		}
		.floating-cta.is-visible { transform: translateY(0); }
		.floating-cta-text {
				writing-mode: horizontal-tb;
				font-size: 1rem;
				letter-spacing: 0.08em;
		}
		.floating-cta-icon { width: 24px; height: 24px; }
		.floating-cta-icon svg { width: 22px; height: 22px; }
		/* Page top */
		.page-top-btn { right: 15px; bottom: 80px; width: 44px; height: 44px; }
		.page-top-btn svg { width: 18px; height: 18px; }
		/* Thanks */
		.thanks-box { padding: 40px 24px; }
		.thanks-back-btn { width: 100%; }
}

/* ===== iPhone SE等 高さの低いデバイス ===== */
@media (max-width: 768px) and (max-height: 700px) {
		.fv { height: 78vh; }
		.fv-text { height: 28vh; }
		.fv-sttl { max-width: 200px; }
		.fv-ttl { max-width: 90%; }
		.fv-badges { max-width: 260px; gap: 4px; }
		.fv-badge { height: 100px; }
		.fv-chara { bottom: 0; margin-top: 24%; }
		.fv-balloon { width: 160px; top: -20px; right: 50%; }
		.fv-bear { right: -35%; max-width: 60%; }
		.fv-dec { width: 70%; }
		.btn-primary.large { font-size: 16px; padding: 12px 40px 12px 24px; }
		.btn-primary.large::after { border-width: 5px 0 5px 7px; margin-top: -5px; }
}