/* -----------------------------------------
	 CSS Variables (Inspired by Hero Image)
----------------------------------------- */
:root {
	--color-primary: #003d7a;
	--color-primary-light: #0056b3;
	--color-accent: #ff9800; /* Vibrant Orange */
	--color-accent-gradient: linear-gradient(180deg, #ffb74d 0%, #f57c00 100%);
	--color-gold: #ffd700;
	--color-bg-light: #f4f7f9;
	--color-bg-blue: #e3f2fd;
	--color-bg-white: #ffffff;
	--color-text: #333333;
	--header-height: 80px;
	--container-max-width: 1200px;
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* -----------------------------------------
	 Utility
----------------------------------------- */
@media (max-width: 640px) {
	.br-pc { display: none; }
}

/* -----------------------------------------
	 Reset & Base
----------------------------------------- */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul {
	list-style: none;
}

.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 100px 0;
}

/* -----------------------------------------
	 Header & Navigation
----------------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background-color: #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: 45px;
	width: auto;
}

.pc-nav {
	display: none;
	align-items: center;
	gap: 25px;
}

.pc-nav a {
	color: var(--color-bg-white);
	font-weight: 700;
	font-size: 0.95rem;
	position: relative;
}

.pc-nav a:not(.cta-nav-button)::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-accent);
	transition: width 0.3s ease;
}

.pc-nav a:not(.cta-nav-button):hover::after {
	width: 100%;
}

.cta-nav-button {
	background: var(--color-accent-gradient);
	padding: 12px 28px;
	border-radius: 50px;
	color: var(--color-bg-white) !important;
	box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
}

.cta-nav-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(245, 124, 0, 0.4);
}

@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 {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 61, 122, 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;
}

.close-menu {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 3rem;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
}

/* -----------------------------------------
	 Section Title Design
----------------------------------------- */
.section-title {
	font-size: clamp(26px, 6vw, 40px);
	text-align: center;
	margin-bottom: 60px;
	font-weight: 900;
	color: var(--color-primary);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-title::after {
	content: '';
	width: 60px;
	height: 5px;
	background: var(--color-accent);
	margin-top: 15px;
	border-radius: 10px;
}

/* -----------------------------------------
	 Hero Section - Animated Parts
----------------------------------------- */
.hero {
	width: 100%;
	padding: 0;
	line-height: 0;
	overflow: hidden;
}

.hero-stage {
	position: relative;
	width: 100%;
	max-width: 1450px;
	margin: 0 auto;
	aspect-ratio: 1920 / 1086;
}

.hero-stage img {
	position: absolute;
	display: block;
}

/* --- 背景 --- */
.hero-stage picture {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}

.hero-bg {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	animation: heroZoomIn 1.2s ease-out forwards;
}

/* --- 装飾パーツ（人物） --- */
.hero-dec {
	z-index: 2;
}

.hero-dec01 {
	width: 21%;
	right: 5%;
	top: 4%;
	animation: heroFloatUp 0.8s 0.5s ease-out both;
}

.hero-dec02 {
	width: 21%;
	right: 0%;
	top: 22%;
	animation: heroFloatUp 0.8s 0.7s ease-out both;
}

/* --- サブタイトル --- */
.hero-sub-ttl01 {
	width: 16%;
	left: 1%;
	top: 3%;
	z-index: 5;
	animation: heroSlideLeft 0.7s 0.3s ease-out both;
}

.hero-sub-ttl02 {
	width: 38%;
	left: 8%;
	top: 6%;
	z-index: 5;
	animation: heroSlideLeft 0.7s 0.5s ease-out both;
}

/* --- メインタイトル --- */
.hero-ttl-main {
	width: 60%;
	left: 1%;
	top: 18%;
	z-index: 5;
	animation: heroTitleIn 0.8s 0.7s ease-out both;
}

/* --- アイコン3つ --- */
.hero-icon {
	z-index: 5;
	width: 16%;
	bottom: 10%;
}

.hero-icon01 {
	left: 4%;
	bottom: -1%;
	animation: heroPopIn 0.5s 1.0s ease-out both;
}

.hero-icon02 {
	left: 17%;
	bottom: 4%;
	animation: heroPopIn 0.5s 1.15s ease-out both;
}

.hero-icon03 {
	left: 30%;
	animation: heroPopIn 0.5s 1.3s ease-out both;
}

/* --- クマキャラクター --- */
.hero-bear {
	width: 56%;
	left: 40%;
	bottom: -6%;
	z-index: 3;
	animation: heroBounceUp 0.9s 0.4s ease-out both;
}

/* --- メッセージ吹き出し --- */
.hero-msg {
	width: 26%;
	left: 58%;
	top: 0%;
	z-index: 4;
	animation: heroSlideRight 0.7s 0.9s ease-out both;
}

/* --- CTAボタン --- */
.hero-cta-link {
	position: absolute;
	right: 5%;
	bottom: 30%;
	width: 50%;
	max-width: 480px;
	z-index: 10;
	display: block;
	line-height: 0;
	animation: heroPulseIn 0.6s 1.2s ease-out both;
}

.hero-cta-btn {
	position: relative;
	width: 100%;
	height: auto;
	cursor: pointer;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-cta-link:hover .hero-cta-btn {
	transform: scale(1.05);
	filter: brightness(1.08);
}

/* -----------------------------------------
	 Hero Keyframe Animations
----------------------------------------- */
@keyframes heroZoomIn {
	from {
		transform: scale(1.08);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes heroSlideLeft {
	from {
		transform: translateX(-60px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes heroSlideRight {
	from {
		transform: translateX(60px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes heroTitleIn {
	from {
		transform: translateX(-40px) scale(0.95);
		opacity: 0;
	}
	to {
		transform: translateX(0) scale(1);
		opacity: 1;
	}
}

@keyframes heroBounceUp {
	0% {
		transform: translateY(80px);
		opacity: 0;
	}
	60% {
		transform: translateY(-10px);
		opacity: 1;
	}
	80% {
		transform: translateY(5px);
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes heroFloatUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes heroPopIn {
	from {
		transform: scale(0.3);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes heroPulseIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	70% {
		transform: scale(1.06);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* -----------------------------------------
	 Hero SP Responsive
----------------------------------------- */
@media (max-width: 768px) {
	.hero-stage {
		aspect-ratio: 1920 / 1400;
	}

	.hero-sub-ttl01 {
		width: 24%;
		left: 2%;
		top: 1%;
	}

	.hero-sub-ttl02 {
		width: 55%;
		top: 8%;
	}

	.hero-ttl-main {
		width: 70%;
		left: 10%;
		top: 18%;
	}

	.hero-bear {
		width: 55%;
		left: 24%;
		bottom: -8%;
	}

	.hero-msg {
		width: 36%;
		top: 23%;
		left: 60%;
	}

	.hero-icon {
		width: 13%;
	}

	.hero-icon01 {
		left: 2%;
		bottom: 1%;
	}

	.hero-icon02 {
		left: 13%;
	}

	.hero-icon03 {
		left: 24%;
		bottom: 9%;
	}

	.hero-cta-link {
		width: 42%;
		right: 2%;
		bottom: 20%;
	}

	.hero-dec01 {
		right: 1%;
	}

	.hero-dec02 {
		right: -2%;
		top: 52%;
	}
}

@media (max-width: 480px) {
	.hero-stage {
		aspect-ratio: 750 / 1200;
	}

	.hero-sub-ttl01 {
		width: 30%;
		top: 1%;
	}

	.hero-sub-ttl02 {
		width: 70%;
		top: 4%;
		left: 12%;
	}

	.hero-ttl-main {
		width: 85%;
		top: 14%;
	}

	.hero-bear {
		width: 70%;
		left: 15%;
		bottom: 0%;
	}

	.hero-msg {
		width: 42%;
		right: 0%;
		top: 0%;
	}

	.hero-icon {
		width: 16%;
		bottom: 3%;
	}

	.hero-icon01 {
		left: 1%;
	}

	.hero-icon02 {
		left: 19%;
	}

	.hero-icon03 {
		left: 37%;
	}

	.hero-cta-link {
		width: 50%;
		right: 1%;
		bottom: 2%;
	}

	.hero-dec01 {
		width: 22%;
		right: 0%;
	}

	.hero-dec02 {
		width: 18%;
		right: 10%;
	}
}

/* -----------------------------------------
	 General Layout Components
----------------------------------------- */
.bg-light { background-color: var(--color-bg-light); }
.bg-blue { background-color: var(--color-bg-blue); }
.bg-orange { background-color: var(--color-bg-orange); }

.card {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =============================================
   Problem Section v2 - 3エリア構成
============================================= */
#problem {
	padding: 0;
}

/* --- 1. 最上部：背景写真+オーバーレイ+キャッチコピー --- */
.problem-hero {
	position: relative;
	padding: 100px 0 80px;
	overflow: hidden;
}

.problem-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
	z-index: 0;
}

.problem-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

/* プレースホルダー時の背景（写真が入るまで） */
.problem-hero-bg.img-placeholder {
	border-radius: 0;
	background: linear-gradient(135deg, #dceefb 0%, #c8dff2 40%, #b3cfe8 100%);
}

/* オーバーレイ：文字可読性確保 */
.problem-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(240, 248, 255, 0.88) 0%,
		rgba(227, 242, 253, 0.82) 50%,
		rgba(220, 238, 250, 0.92) 100%
	);
	z-index: 1;
}

.problem-hero-content {
	position: relative;
	z-index: 2;
}

.problem-hero .section-title {
	color: var(--color-primary);
	text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

.problem-lead {
	text-align: center;
	color: var(--color-primary);
	font-size: 1rem;
	line-height: 2;
	margin-bottom: 0;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

/* --- 2. 中央部：課題感カード --- */
.problem-cards-area {
	background: #f3f5f7;
	padding: 70px 0;
}

.problem-grid-2x2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	max-width: 900px;
	margin: 0 auto;
}

@media (max-width: 640px) {
	.problem-grid-2x2 {
		grid-template-columns: 1fr;
	}
}

.problem-card-v2 {
	background: #fff;
	padding: 0;
	border-radius: 15px;
	border: 2px solid #e0e6ed;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.problem-card-v2:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	border-color: #c5d5e4;
}

/* カード上部の写真エリア */
.problem-card-photo {
	width: 100%;
	height: 200px;
	border-radius: 0;
	position: relative;
}

.problem-card-photo.img-placeholder {
	border-radius: 0;
	background: linear-gradient(135deg, #d5dee6 0%, #c0ccd6 100%);
}

.problem-card-photo.img-placeholder::after {
	color: #8a9baa;
	font-size: 0.75rem;
}

.problem-card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.6) brightness(0.92);
	transition: filter 0.4s ease, transform 0.4s ease;
}

.problem-card-v2:hover .problem-card-photo img {
	filter: saturate(0.7) brightness(0.95);
	transform: scale(1.03);
}

/* カード下部：アイコン+テキスト */
.problem-card-body {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 25px;
}

.problem-card-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	color: #8a9baa;
}

.problem-card-icon svg {
	width: 44px;
	height: 44px;
}

.problem-card-text {
	font-weight: 700;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

@media (max-width: 640px) {
	.problem-card-photo {
		height: 110px;
	}
	.problem-card-body {
		padding: 18px 20px;
		gap: 12px;
	}
	.problem-card-icon {
		width: 36px;
		height: 36px;
	}
	.problem-card-icon svg {
		width: 36px;
		height: 36px;
	}
}

/* --- 3. 下部：結論バナー（アドバイザー写真付き） --- */
.problem-conclusion-area {
	padding: 70px 0 100px;
	background: linear-gradient(180deg, #f3f5f7 0%, #e8eef3 100%);
}

.problem-bottom-banner {
	background: var(--color-primary);
	color: white;
	padding: 0;
	border-radius: 20px;
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 8px 25px rgba(0, 61, 122, 0.25);
	overflow: hidden;
}

.problem-banner-inner {
	display: flex;
	align-items: stretch;
}

/* バナー内写真 */
.problem-banner-photo {
	width: 220px;
	min-height: 100%;
	flex-shrink: 0;
	border-radius: 0;
}

.problem-banner-photo.img-placeholder {
	border-radius: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
}

.problem-banner-photo.img-placeholder::after {
	color: rgba(255,255,255,0.35);
	font-size: 0.7rem;
}

.problem-banner-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

/* バナー内テキスト */
.problem-banner-text {
	flex: 1;
	padding: 45px 40px;
	display: flex;
	align-items: center;
}

.problem-banner-text p {
	font-size: 1.2rem;
	line-height: 2;
	text-align: center;
	width: 100%;
}

.problem-bottom-banner strong {
	color: var(--color-gold);
	border-bottom: 3px solid var(--color-gold);
	padding-bottom: 2px;
}

@media (max-width: 768px) {
	.problem-banner-inner {
		flex-direction: column;
	}
	.problem-banner-photo {
		width: 100%;
		height: 180px;
		min-height: auto;
	}
	.problem-banner-text {
		padding: 35px 25px;
	}
	.problem-banner-text p {
		font-size: 1.05rem;
	}
}

@media (max-width: 480px) {
	.problem-hero {
		padding: 70px 0 50px;
	}
	.problem-cards-area {
		padding: 50px 0;
	}
	.problem-conclusion-area {
		padding: 50px 0 70px;
	}
	.problem-banner-photo {
		height: 140px;
	}
	.problem-banner-text {
		padding: 30px 20px;
	}
}

/* Subsidy Choice Section */
.choice-lead {
	text-align: center;
	color: #555;
	font-size: 1rem;
	line-height: 2;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 50px;
}

@media (max-width: 768px) {
	.choice-grid {
		grid-template-columns: 1fr;
	}
}

.choice-card {
	background: #eef6ee;
	padding: 35px 30px;
	border-radius: 15px;
	border: 2px solid #d4e8d4;
}

.choice-card-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
}

.choice-card-icon svg {
	width: 60px;
	height: 60px;
}

.choice-card-title {
	font-size: 1.1rem;
	font-weight: 900;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.6;
}

.choice-card-desc {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.8;
}

.choice-bottom-text {
	text-align: center;
	font-size: 1.15rem;
	font-weight: 900;
	color: var(--color-primary);
	line-height: 2;
}

/* Legacy Problem Cards (unused) */
.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.problem-card {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	border-left: 6px solid var(--color-primary);
}

.problem-card .icon-box {
	background: var(--color-bg-blue);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.problem-card .icon-box svg { fill: var(--color-primary); width: 24px; height: 24px; }

/* Subsidy Section */
.subsidy-section {
	background: #fff5e6;
}

.subsidy-title {
	color: var(--color-accent) !important;
	flex-direction: row !important;
	justify-content: center;
	gap: 10px;
}

.subsidy-title::after {
	display: none;
}

.subsidy-title-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.subsidy-lead {
	text-align: center;
	color: #555;
	font-size: 0.95rem;
	line-height: 2;
	margin-bottom: 40px;
}

.subsidy-important-box {
	position: relative;
	background: #fff;
	border: 3px solid var(--color-accent);
	border-radius: 20px;
	padding: 50px 40px 40px;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 50px;
}

.subsidy-important-label {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-accent);
	color: white;
	font-size: 0.85rem;
	font-weight: 900;
	padding: 6px 24px;
	border-radius: 50px;
}

.subsidy-important-text {
	font-size: 1.4rem;
	font-weight: 900;
	color: #333;
	line-height: 1.8;
}

.subsidy-steps-heading {
	text-align: center;
	font-size: 1.1rem;
	font-weight: 900;
	color: #333;
	margin-bottom: 25px;
}

.subsidy-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	margin-bottom: 50px;
}

@media (max-width: 768px) {
	.subsidy-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.subsidy-steps {
		grid-template-columns: 1fr;
	}
}

.step-item {
	text-align: center;
	background: white;
	padding: 25px 15px;
	border-radius: 15px;
	border: 2px solid #e0e6ed;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.step-num {
	width: 40px;
	height: 40px;
	background: var(--color-accent);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-weight: 900;
	font-size: 1rem;
}

.step-label {
	font-weight: 900;
	font-size: 0.95rem;
	color: #333;
	margin-bottom: 12px;
}

.subsidy-period-text {
	text-align: center;
	font-size: 1.4rem;
	font-weight: 900;
	color: #333;
	margin-bottom: 30px;
}

.subsidy-period-highlight {
	color: var(--color-accent);
	font-size: 2rem;
	border-bottom: 4px double var(--color-accent);
	padding-bottom: 2px;
}

.subsidy-bottom-banner {
	background: var(--color-primary);
	color: white;
	text-align: center;
	padding: 20px 40px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 900;
	max-width: 800px;
	margin: 0 auto 20px;
}

.subsidy-note {
	text-align: center;
	font-size: 0.8rem;
	color: #999;
	margin-bottom: 40px;
	font-style: italic;
}

.subsidy-cta-wrap {
	text-align: center;
}

.subsidy-cta-button {
	display: inline-block;
	background: var(--color-accent);
	color: white;
	padding: 20px 80px;
	border-radius: 100px;
	font-size: 1.3rem;
	font-weight: 900;
	box-shadow: 0 8px 25px rgba(245, 124, 0, 0.35);
	transition: var(--transition);
}

.subsidy-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(245, 124, 0, 0.45);
}

/* Subsidy Knowledge Column */
.knowledge-box {
	background: #fff;
	border: 2px solid #e0e6ed;
	border-radius: 20px;
	padding: 50px 50px 40px;
	max-width: 900px;
	margin: 0 auto;
	border-left: 6px solid var(--color-primary);
}

.knowledge-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: clamp(1.3rem, 4vw, 1.8rem);
	font-weight: 900;
	color: var(--color-primary);
	margin-bottom: 25px;
}

.knowledge-title-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.knowledge-desc {
	font-size: 0.95rem;
	color: #333;
	line-height: 2;
	margin-bottom: 30px;
	font-weight: 700;
}

.knowledge-inner-box {
	background: #f8f9fa;
	border: 1px solid #e0e6ed;
	border-radius: 12px;
	padding: 30px 35px;
	margin-bottom: 25px;
}

.knowledge-inner-title {
	font-size: 1.05rem;
	font-weight: 900;
	color: var(--color-primary);
	margin-bottom: 20px;
}

.knowledge-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 15px;
	list-style: none;
}

.knowledge-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	font-weight: 700;
	color: #333;
}

.knowledge-check {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.knowledge-notes p {
	font-size: 0.8rem;
	color: #999;
	line-height: 1.8;
}

@media (max-width: 640px) {
	.knowledge-box {
		padding: 30px 25px 25px;
	}
	.knowledge-inner-box {
		padding: 20px;
	}
	.knowledge-list {
		grid-template-columns: 1fr;
	}
}

/* Achievement Badges */
.achieve-badges {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.achieve-badges {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.achieve-badge-card {
	background: #faf5e8;
	border: 2px solid #e8dcc0;
	border-radius: 20px;
	padding: 35px 25px 30px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.achieve-badge-card::before {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 80px;
	height: 80px;
	border: 4px solid rgba(218, 165, 32, 0.1);
	border-radius: 50%;
	pointer-events: none;
}

.achieve-badge-card::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: -20px;
	width: 60px;
	height: 60px;
	border: 4px solid rgba(218, 165, 32, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.achieve-badge-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 15px;
}

.achieve-badge-icon svg,
.achieve-badge-icon img {
	width: 48px;
	height: 48px;
}

.achieve-badge-label {
	font-size: 0.85rem;
	font-weight: 700;
	color: #555;
	line-height: 1.6;
	margin-bottom: 12px;
}

.achieve-badge-value {
	font-size: 1.2rem;
	font-weight: 900;
	color: #333;
	line-height: 1;
}

.achieve-badge-value span {
	font-size: 3rem;
	color: #DAA520;
	letter-spacing: -2px;
}

.achieve-badge-note {
	font-size: 0.7rem;
	color: #999;
	margin-top: 10px;
	line-height: 1.5;
}

/* Achievement Detail Box */
.achieve-box {
	background: var(--color-primary);
	color: white;
	padding: 60px;
	border-radius: 30px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

/* Company Bridge Section */
.bridge-founding {
	background: var(--color-primary);
	color: white;
	text-align: center;
	padding: 40px 30px 35px;
	border-radius: 20px;
	max-width: 420px;
	margin: 0 auto 40px;
}

.bridge-founding-icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 12px;
}

.bridge-founding-icon svg {
	width: 40px;
	height: 40px;
}

.bridge-founding-title {
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 8px;
}

.bridge-founding-sub {
	font-size: 0.9rem;
	font-weight: 700;
	opacity: 0.85;
}

.bridge-desc {
	text-align: center;
	font-size: 1rem;
	line-height: 2;
	color: #333;
	max-width: 700px;
	margin: 0 auto 40px;
}

.bridge-desc strong {
	border-bottom: 3px solid var(--color-primary);
	padding-bottom: 1px;
}

.bridge-highlight {
	background: #fff;
	border: 2px solid #e0e6ed;
	border-radius: 20px;
	padding: 35px 40px;
	text-align: center;
	max-width: 750px;
	margin: 0 auto 30px;
}

.bridge-highlight p {
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--color-primary);
	line-height: 1.8;
}

.bridge-highlight-mark {
	background: linear-gradient(transparent 60%, #fff3cd 60%);
	padding: 0 4px;
}

.bridge-bottom-text {
	text-align: center;
	font-size: 0.95rem;
	color: #777;
	font-weight: 500;
}

@media (max-width: 640px) {
	.bridge-highlight {
		padding: 25px 20px;
	}
	.bridge-highlight p {
		font-size: 0.95rem;
	}
}

/* Strength Section v2 (だからできること) */
.strength-grid-2x2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

@media (max-width: 768px) {
	.strength-grid-2x2 {
		grid-template-columns: 1fr;
	}
}

.strength-card-v2 {
	background: #fff;
	padding: 0;
	border-radius: 20px;
	border: 2px solid #e0e6ed;
	overflow: hidden;
}

.strength-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.strength-card-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.strength-card-icon svg {
	width: 32px;
	height: 32px;
}

.strength-card-title {
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--color-primary);
	line-height: 1.4;
}

.strength-card-list {
	list-style: none;
	padding: 0;
}

.strength-card-list li {
	font-size: 0.9rem;
	color: #444;
	line-height: 1.8;
	padding-left: 18px;
	position: relative;
}

.strength-card-list li::before {
	content: '・';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: 900;
}

/* Works Section (施工実績) */
.works-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 50px;
}

@media (max-width: 1024px) {
	.works-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.works-grid {
		grid-template-columns: 1fr;
	}
}

.works-card {
	background: #fff;
	padding: 0;
	border-radius: 20px;
	border: 1px solid #e8e8e8;
	overflow: hidden;
}

.works-card-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 18px;
}

.works-card-icon svg {
	width: 48px;
	height: 48px;
}

.works-card-title {
	font-size: 1.05rem;
	font-weight: 900;
	color: var(--color-primary);
	margin-bottom: 18px;
}

.works-card-list {
	list-style: none;
	padding: 0;
	text-align: left;
}

.works-card-list li {
	font-size: 0.85rem;
	color: #333;
	line-height: 1.8;
	padding-left: 16px;
	position: relative;
}

.works-card-list li::before {
	content: '・';
	position: absolute;
	left: 0;
	color: var(--color-primary);
}

.works-card-note {
	font-size: 0.75rem;
	color: var(--color-accent);
	font-weight: 700;
	margin-top: 15px;
	text-align: left;
}

.works-cta-wrap {
	text-align: center;
}

.works-cta-button {
	display: inline-block;
	background: var(--color-accent-gradient);
	color: white;
	padding: 20px 80px;
	border-radius: 100px;
	font-size: 1.3rem;
	font-weight: 900;
	box-shadow: 0 8px 25px rgba(245, 124, 0, 0.35);
	transition: var(--transition);
}

.works-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(245, 124, 0, 0.45);
}

/* FAQ */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 20px;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	overflow: hidden;
}

.faq-q {
	padding: 22px 30px;
	font-weight: 900;
	font-size: 1rem;
	color: #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	background: white;
	line-height: 1.6;
	transition: background-color 0.3s ease;
}

.faq-q:hover {
	background-color: rgba(173, 216, 230, 0.25);
}

.faq-q::before {
	content: 'Q.';
	color: var(--color-primary);
	margin-right: 15px;
	font-size: 1.2rem;
	font-weight: 900;
	flex-shrink: 0;
}

.faq-toggle {
	margin-left: auto;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-toggle::after {
	content: '';
	width: 10px;
	height: 10px;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	display: block;
	margin-top: -4px;
}

.faq-item.active .faq-toggle::after {
	transform: rotate(-135deg);
	margin-top: 4px;
}

.faq-a {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	border-top: 0 solid #e0e0e0;
}

.faq-item.active .faq-a {
	border-top: 1px solid #e0e0e0;
}

.faq-a-inner {
	padding: 20px 0;
	display: flex;
	gap: 12px;
	font-size: 0.95rem;
	color: #555;
	line-height: 1.8;
}

.faq-a-inner::before {
	content: 'A.';
	color: var(--color-accent);
	font-weight: 900;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.faq-item.active .faq-a { max-height: 300px; }

/* Form */
.contact-form-box {
	max-width: 850px;
	margin: 0 auto;
	background: white;
	padding: 60px 40px;
	border-radius: 30px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.1);
	border-top: 10px solid var(--color-primary);
}

.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 10px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
	width: 100%;
	padding: 16px;
	border: 2px solid #eee;
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus { border-color: var(--color-primary); outline: none; background: #f0f7ff; }
.form-group input::placeholder { color: #bbb; }

.required-tag {
	background: var(--color-accent);
	color: white;
	font-size: 0.7rem;
	padding: 3px 8px;
	border-radius: 4px;
	margin-left: 10px;
	vertical-align: middle;
}

.checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 15px;
	background: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
}

.checkbox-item { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.95rem; }

/* Privacy Agree */
.privacy-agree {
	margin-top: 35px;
	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(--color-primary);
	cursor: pointer;
	flex-shrink: 0;
}

.privacy-agree-text a {
	color: var(--color-primary);
	text-decoration: underline;
	font-weight: 700;
}

.privacy-agree-text a:hover {
	color: var(--color-accent);
}

/* Form Submit */
.form-submit-area {
	text-align: center;
	margin-top: 35px;
}

.form-submit-btn {
	display: inline-block;
	width: 480px;
	max-width: 100%;
	padding: 22px 0;
	background: linear-gradient(135deg, var(--color-accent), #ff7043);
	color: white;
	font-size: 1.2rem;
	font-weight: 900;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	letter-spacing: 0.05em;
}

.form-submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.form-note {
	font-size: 0.8rem;
	margin-top: 25px;
	color: #777;
}

/* Footer */
footer {
	background: var(--color-primary);
	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-tel { font-size: 2rem; font-weight: 900; color: var(--color-gold); 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; }

/* 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(--color-primary);
}

.thanks-icon {
	margin-bottom: 25px;
}

.thanks-title {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--color-primary);
	margin-bottom: 25px;
}

.thanks-message {
	font-size: 1rem;
	line-height: 2;
	color: #333;
	margin-bottom: 15px;
}

.thanks-message strong {
	color: var(--color-accent);
}

.thanks-sub {
	font-size: 0.85rem;
	color: #777;
	margin-bottom: 35px;
}

.thanks-tel {
	background: var(--color-bg-light);
	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(--color-primary);
	text-decoration: none;
	letter-spacing: 0.05em;
}

.thanks-tel-number:hover {
	color: var(--color-accent);
}

.thanks-back {
	margin-top: 10px;
}

/* -----------------------------------------
	 Visual Enhancement: Common
----------------------------------------- */
.img-placeholder {
	background: linear-gradient(135deg, #e3f2fd 0%, #f0f4f8 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #90a4ae;
	font-size: 0.85rem;
	font-weight: 700;
	overflow: hidden;
	position: relative;
}

.img-placeholder::after {
	content: attr(data-label);
	position: absolute;
	color: #90a4ae;
	font-size: 0.8rem;
	font-weight: 700;
	text-align: center;
	padding: 10px;
}

.img-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

/* -----------------------------------------
	 Visual Enhancement: Section 1 - Problem
   （メインスタイルは Problem Section v2 に統合済み）
----------------------------------------- */

/* -----------------------------------------
	 Visual Enhancement: Section 2 - Subsidy Choice
----------------------------------------- */
#subsidy-choice {
	background: #fefbf3;
}

/* -----------------------------------------
	 Visual Enhancement: Section 3 - Knowledge Flow
----------------------------------------- */
.knowledge-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.knowledge-flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}

.knowledge-flow-num {
	width: 52px;
	height: 52px;
	background: var(--color-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 0.85rem;
	margin-bottom: 8px;
	line-height: 1.2;
}

.knowledge-flow-label {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--color-primary);
	white-space: nowrap;
}

.knowledge-flow-arrow {
	color: var(--color-accent);
	font-size: 1.5rem;
	font-weight: 900;
	margin: 0 10px;
	padding-bottom: 20px;
}

@media (max-width: 640px) {
	.knowledge-flow {
		gap: 5px;
	}
	.knowledge-flow-num {
		width: 40px;
		height: 40px;
		font-size: 0.7rem;
	}
	.knowledge-flow-label {
		font-size: 0.65rem;
	}
	.knowledge-flow-arrow {
		font-size: 1rem;
		margin: 0 4px;
	}
}

/* -----------------------------------------
	 Subsidy Flow Section (STEP独立セクション)
----------------------------------------- */
#subsidy-flow {
	padding: 80px 0 60px;
}

.subsidy-flow-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	margin-top: 10px;
}

.subsidy-flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.subsidy-flow-num {
	width: 100px;
	height: 100px;
	background: var(--color-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 0.75rem;
	margin-bottom: 12px;
	line-height: 1.2;
	box-shadow: 0 4px 15px rgba(0, 61, 122, 0.25);
	gap: 2px;
}

.subsidy-flow-icon {
	width: 32px;
	height: 32px;
	display: block;
	margin-bottom: 5px;
}

.subsidy-flow-icon--step3 {
	margin-left: 10px;
}

.subsidy-flow-label {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-primary);
	white-space: nowrap;
}

.subsidy-flow-arrow {
	color: var(--color-accent);
	font-size: 2rem;
	font-weight: 900;
	margin: 0 18px;
	padding-bottom: 28px;
}

@media (max-width: 768px) {
	.subsidy-flow-num {
		width: 68px;
		height: 68px;
		font-size: 0.7rem;
	}
	.subsidy-flow-icon {
		width: 26px;
		height: 26px;
	}
	.subsidy-flow-label {
		font-size: 0.95rem;
	}
	.subsidy-flow-arrow {
		font-size: 1.6rem;
		margin: 0 10px;
	}
}

@media (max-width: 640px) {
	.subsidy-flow-steps {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
	.subsidy-flow-step {
		flex-direction: row;
		align-items: center;
		gap: 14px;
		width: 150px;
	}
	.subsidy-flow-num {
		width: 56px;
		height: 56px;
		font-size: 0.65rem;
		margin-bottom: 0;
		flex-shrink: 0;
	}
	.subsidy-flow-icon {
		width: 22px;
		height: 22px;
	}
	.subsidy-flow-label {
		font-size: 1rem;
		text-align: left;
	}
	.subsidy-flow-arrow {
		transform: rotate(90deg);
		padding-bottom: 0;
		margin: 4px 0;
		font-size: 1.4rem;
	}
}

/* -----------------------------------------
	 Subsidy Knowledge (豆知識 - bg-lightなし)
----------------------------------------- */
#subsidy-knowledge {
	padding: 80px 0;
	background: var(--color-bg-white);
}

/* -----------------------------------------
	 Visual Enhancement: Section 4 - Subsidy Timeline
----------------------------------------- */
.subsidy-timeline-example-label {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 10px;
}

.subsidy-timeline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 50px;
	position: relative;
}

.timeline-item {
	text-align: center;
	position: relative;
	flex: 1;
	max-width: 200px;
}

.timeline-month {
	display: inline-block;
	background: var(--color-primary);
	color: white;
	font-weight: 900;
	font-size: 1.1rem;
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 10px;
}

.timeline-month.accent {
	background: var(--color-accent);
}

.timeline-desc {
	font-size: 0.85rem;
	font-weight: 700;
	color: #333;
}

.timeline-arrow {
	flex-shrink: 0;
	color: var(--color-accent);
	font-size: 2rem;
	font-weight: 900;
	margin: 0 8px;
	padding-bottom: 24px;
}

@media (max-width: 640px) {
	.subsidy-timeline {
		flex-direction: column;
		gap: 10px;
	}
	.timeline-arrow {
		transform: rotate(90deg);
		padding-bottom: 0;
		margin: 0;
	}
}

.step-icon {
	width: 36px;
	height: 36px;
	margin: 0 auto 10px;
	color: var(--color-primary);
}

.step-icon svg {
	width: 36px;
	height: 36px;
}

.step-img-placeholder {
	width: 100%;
	margin-top: auto;
	border-radius: 10px;
	overflow: hidden;
}

.step-img-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* -----------------------------------------
	 Visual Enhancement: Section 5 - Achievement
----------------------------------------- */
#achievement {
	background: linear-gradient(180deg, #eef5fc 0%, #fff 100%);
}

.achieve-detail-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 30px;
	align-items: center;
}

@media (max-width: 768px) {
	.achieve-detail-grid {
		grid-template-columns: 1fr;
	}
}

.achieve-collage {
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
	border: 3px solid rgba(255,255,255,0.15);
}

.achieve-collage img {
	width: 100%;
	display: block;
}

@media (max-width: 640px) {
	.achieve-box {
		padding: 30px 20px;
		border-radius: 20px;
	}
}

/* -----------------------------------------
	 Visual Enhancement: Section 7 - Strength Cards
----------------------------------------- */
.strength-card-img {
	width: 100%;
	height: 260px;
	border-radius: 0;
	overflow: hidden;
}

.strength-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.strength-card-body {
	padding: 25px 30px 30px;
}

/* -----------------------------------------
	 Visual Enhancement: Section 8 - Works Cards
----------------------------------------- */
.works-card-img {
	width: 100%;
	height: 140px;
	border-radius: 0;
	overflow: hidden;
}

.works-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.works-card-body {
	padding: 25px 25px 30px;
	text-align: center;
}

.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;
}

/* -----------------------------------------
	 Scroll Fade-in Animation
----------------------------------------- */
.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);
}

/* Stagger delay for child elements */
.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; }

/* -----------------------------------------
	 Mobile Menu CTA
----------------------------------------- */
.mobile-menu-cta {
	background: var(--color-accent-gradient);
	text-align: center;
	border-radius: 50px;
	color: white;
	padding: 15px 40px;
	width: 100%;
}

/* -----------------------------------------
	 Section Title Modifier
----------------------------------------- */
.section-title--dark {
	color: #333;
}

.section-title--no-mb {
	margin-bottom: 0;
}

/* -----------------------------------------
	 Achievement Detail Box Inner
----------------------------------------- */
.achieve-detail-text {
	font-size: 1.6rem;
	font-weight: 900;
	margin-bottom: 30px;
	line-height: 1.6;
}

.achieve-detail-count {
	color: var(--color-gold);
	font-size: 2.5rem;
}

.achieve-detail-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.achieve-detail-card {
	background: rgba(255,255,255,0.05);
	padding: 25px;
	border-radius: 15px;
	border: 1px solid rgba(255,255,255,0.1);
}

.achieve-detail-card h4 {
	color: var(--color-gold);
	font-weight: 900;
	margin-bottom: 5px;
}

.achieve-detail-card p {
	font-size: 0.9rem;
}

/* -----------------------------------------
	 Form Header
----------------------------------------- */
.form-header {
	text-align: center;
	margin-bottom: 50px;
}

.form-recommend-badge {
	background: var(--color-accent);
	color: white;
	padding: 10px 40px;
	border-radius: 50px;
	font-weight: 900;
	display: inline-block;
	margin-bottom: 20px;
	box-shadow: 0 10px 20px rgba(255,107,53,0.2);
}

/* -----------------------------------------
	 Footer Description
----------------------------------------- */
.footer-desc {
	opacity: 0.8;
	line-height: 1.8;
}

/* -----------------------------------------
	 Thanks Page - Back Button Override
----------------------------------------- */
.thanks-back-btn {
	width: 320px;
	font-size: 1rem;
	padding: 18px 0;
	text-decoration: none;
}

/* -----------------------------------------
	 Thanks Page - Footer
----------------------------------------- */
.thanks-footer .container {
	text-align: center;
	padding: 30px 0;
}

.thanks-footer .container p {
	opacity: 0.8;
	font-size: 0.85rem;
}

/* -----------------------------------------
	 Floating CTA (PC only)
----------------------------------------- */
.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: linear-gradient(180deg, #ffb74d 0%, #f57c00 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 8px 0 0 8px;
	box-shadow: -4px 4px 15px rgba(255, 107, 53, 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(255, 107, 53, 0.5);
	background: linear-gradient(180deg, #ffc947 0%, #ff6f00 100%);
}

.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;
}

@media (max-width: 768px) {
	.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(255, 107, 53, 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 Button
----------------------------------------- */
.page-top-btn {
	position: fixed;
	right: 25px;
	bottom: 30px;
	width: 50px;
	height: 50px;
	background: var(--color-primary);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 61, 122, 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(--color-primary-light);
	box-shadow: 0 6px 20px rgba(0, 61, 122, 0.4);
	transform: translateY(-3px);
}

.page-top-btn svg {
	width: 22px;
	height: 22px;
}

@media (max-width: 640px) {
	.page-top-btn {
		right: 15px;
		bottom: 20px;
		width: 44px;
		height: 44px;
	}

	.page-top-btn svg {
		width: 18px;
		height: 18px;
	}
}

/* Disable animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.fade-in {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
