:root {
	--primary-color: #2E8B57;
	--secondary-color: #1E3A8A;
	--accent-color: #F97316;
	--background-color: #FFFFFF;
	--background-light: #F8F9FA;
	--text-color: #374151;
	--text-light: #6B7280;
	--border-color: #E5E7EB;

	--font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--section-padding: 4rem 0;
	--container-padding: 0 1rem;
	--shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-button: 0 2px 4px rgba(0, 0, 0, 0.1);
	--shadow-header: 0 2px 10px rgba(0, 0, 0, 0.1);
	--radius: 8px;
	--radius-small: 4px;
	--radius-large: 12px;
}

* {
	box-sizing: border-box;
}

body {
	font-family: var(--font-family);
	color: var(--text-color);
	line-height: 1.6;
	background-color: var(--background-color);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--container-padding);
	box-sizing: border-box;
	width: 100%;
}

.section {
	padding: var(--section-padding);
}

.section.bg-light {
	background-color: var(--background-light);
}

.section.bg-primary {
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
	color: white;
}

.section.bg-secondary {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #1E40AF 100%);
	color: white;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
}

.section-title h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 15px auto 0;
}

.section-title p {
	color: var(--text-light);
	font-size: 1.1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: var(--radius);
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-button);
}

.btn.btn-primary {
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
	color: white;
}

.btn.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.btn.btn-accent {
	background: linear-gradient(135deg, var(--accent-color) 0%, #EA580C 100%);
	color: white;
}

.btn.btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn.btn-outline {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.btn.btn-outline:hover {
	background: var(--primary-color);
	color: white;
}

.btn.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.btn.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn:disabled:hover {
	transform: none;
}

.card {
	background: white;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card.card-bordered {
	border: 1px solid var(--border-color);
}

.grid {
	display: grid;
	gap: 2rem;
}

.grid.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 768px) {

	.grid.grid-2 {
		grid-template-columns: repeat(2, 1fr)
	}
}

.grid.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {

	.grid.grid-3 {
		grid-template-columns: repeat(3, 1fr)
	}
}

.grid.grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 768px) {

	.grid.grid-4 {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (min-width: 1024px) {

	.grid.grid-4 {
		grid-template-columns: repeat(4, 1fr)
	}
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	background: var(--accent-color);
	color: white;
	border-radius: var(--radius-small);
	font-size: 0.875rem;
	font-weight: 500;
}

.icon {
	width: 1.5rem;
	height: 1.5rem;
}

.icon.icon-lg {
	width: 2rem;
	height: 2rem;
}

.icon.icon-xl {
	width: 3rem;
	height: 3rem;
}

.floating-cta {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1000;
}

@media (min-width: 768px) {

	.floating-cta {
		display: none
	}
}

.floating-cta .floating-btn {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	border-radius: 50px;
}

.floating-cta .floating-btn .btn {
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
	box-shadow: none;
}

.tabs .tab-buttons {
	display: flex;
	border-bottom: 2px solid var(--border-color);
	margin-bottom: 2rem;
}

.tabs .tab-buttons button {
	flex: 1;
	padding: 1rem;
	background: none;
	border: none;
	cursor: pointer;
	font-weight: 500;
	color: var(--text-light);
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.tabs .tab-buttons button.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

.tabs .tab-buttons button:hover {
	color: var(--primary-color);
}

.tabs .tab-content {
	display: none;
}

.tabs .tab-content.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.accordion .accordion-item {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.accordion .accordion-header {
	width: 100%;
	padding: 1rem 1.5rem;
	background: var(--background-light);
	border: none;
	text-align: left;
	cursor: pointer;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.accordion .accordion-header:hover {
	background: #E5E7EB;
}

.accordion .accordion-header .icon {
	transition: transform 0.3s ease;
}

.accordion .accordion-header[aria-expanded="true"] .icon {
	transform: rotate(180deg);
}

.accordion .accordion-content {
	padding: 1.5rem;
	border-top: 1px solid var(--border-color);
}

.step-flow {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 768px) {

	.step-flow {
		flex-direction: row;
		align-items: center
	}
}

.step-flow .step {
	flex: 1;
	text-align: center;
	position: relative;
}

.step-flow .step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -1rem;
	transform: translateY(-50%);
	width: 2rem;
	height: 2px;
	background: var(--border-color);
}

@media (max-width: 767px) {

	.step-flow .step:not(:last-child)::after {
		display: none
	}
}

.step-flow .step .step-number {
	width: 3rem;
	height: 3rem;
	background: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	margin: 0 auto 1rem;
}

.step-flow .step h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.step-flow .step p {
	color: var(--text-light);
	font-size: 0.9rem;
}

.stats .stat-item {
	text-align: center;
}

.stats .stat-item .stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	display: block;
}

.stats .stat-item .stat-label {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-top: 0.5rem;
}

@media (max-width: 767px) {
	.container {
		padding: 0 1rem;
	}

	.section {
		padding: 3rem 0;
	}

	.section-title h2 {
		font-size: 1.75rem;
	}

	.grid {
		gap: 1.5rem;
	}

	.floating-cta {
		bottom: 1rem;
		right: 1rem;
	}
}

/* ./parts/common-header.html */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

header.scrolled {
	box-shadow: var(--shadow-header);
	background: rgba(255, 255, 255, 0.98);
}

header .header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

header .header-content .logo-area {
	display: flex;
	align-items: center;
	gap: 1rem;
}

header .header-content .logo-area .logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

@media (max-width: 767px) {

	header .header-content .logo-area .logo {
		font-size: 1.2rem
	}
}

header .header-content .logo-area .logo img {
	height: 50px;
	width: auto;
}

@media (max-width: 767px) {

	header .header-content .logo-area .logo img {
		height: 40px
	}
}

header .header-content .logo-area .badge {
	background: var(--accent-color);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-small);
	font-size: 0.8rem;
	font-weight: 500;
}

@media (max-width: 767px) {

	header .header-content .logo-area .badge {
		display: none
	}
}

header .header-content .contact-info {
	display: flex;
	align-items: center;
	gap: 2rem;
}

@media (max-width: 1280px) {

	header .header-content .contact-info {
		display: none
	}
}

header .header-content .contact-info .contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

header .header-content .contact-info .contact-item:hover {
	color: var(--primary-color);
}

header .header-content .contact-info .contact-item .material-symbols-outlined {
	font-size: 1.2rem;
}

header .header-content .contact-info .contact-item .contact-text .label {
	font-size: 0.75rem;
	color: var(--text-light);
	display: block;
}

header .header-content .contact-info .contact-item .contact-text .value {
	font-weight: 500;
	font-size: 0.9rem;
}

header .header-content .cta-buttons {
	display: flex;
	align-items: center;
	gap: 1rem;
}

@media (max-width: 767px) {

	header .header-content .cta-buttons {
		flex-direction: row;
		gap: 0.5rem;
		align-items: center
	}

	header .header-content .cta-buttons .cta-btn-text {
		display: none;
	}
}

header .header-content .cta-buttons .btn {
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
}

@media (max-width: 767px) {

	header .header-content .cta-buttons .btn {
		width: 44px;
		height: 44px;
		padding: 0;
		min-width: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 0;
		border-radius: 50%
	}

	header .header-content .cta-buttons .btn .material-symbols-outlined {
		font-size: 1.25rem;
		margin: 0;
	}
}

/* フローティングボタン */
.floating-container {
	position: fixed;
	top: 100px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.4s ease;
}

.floating-container.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.floating-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, background 0.3s ease;
	white-space: nowrap;
}

.floating-btn:hover {
	transform: scale(1.05);
}

.floating-btn .material-symbols-rounded {
	font-size: 20px;
}

.line-btn {
	background-color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.form-btn {
	background-color: var(--accent-color);
}

@media (max-width: 599px) {
	.floating-btn {
		flex: 1;
		padding: 10px;
		font-size: 12px;
	}

	.btn-text {
		display: block;
	}
}

.floating-trigger {
	opacity: 0;
}

/* 1280px以下のレイアウト切り替え */
@media (max-width: 1280px) {
	.floating-container {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	/* 親ボタン（トリガー）の表示 */
	.floating-trigger {
		display: flex;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background-color: var(--accent-color, #c52323);
		border: none;
		color: white;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
		cursor: pointer;
		align-items: center;
		justify-content: center;
		position: relative;
		opacity: 1;
	}

	.trigger-icon,
	.close-icon {
		position: absolute;
		font-size: 30px;
		transition: all 0.3s ease;
	}

	.close-icon {
		opacity: 0;
		transform: rotate(-90deg);
	}

	/* メニュー展開時のアイコン切り替え */
	.floating-container.is-open .trigger-icon {
		opacity: 0;
		transform: rotate(90deg);
	}

	.floating-container.is-open .close-icon {
		opacity: 1;
		transform: rotate(0);
	}

	/* 展開メニュー */
	.floating-menu {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 12px;
		opacity: 0;
		pointer-events: none;
		transform: translateY(20px);
		transition: all 0.3s ease;
	}

	.floating-container.is-open .floating-menu {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
}

/* スマホ表示の調整 */
@media (max-width: 767px) {
	.floating-container {
		right: 15px;
		top: 100px;
	}
}

@media (max-width: 599px) {

	.floating-trigger {
		width: 55px;
		height: 55px;
	}

	.btn-text {
		font-size: 12px;
	}
}

/* ./parts/common-footer.html */

footer {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #1E40AF 100%);
	color: white;
	padding: 3rem 0 1rem;
	box-sizing: border-box;
}

footer .footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

@media (max-width: 767px) {

	footer .footer-content {
		grid-template-columns: 1fr;
		gap: 2rem
	}
}

footer .footer-section h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: white;
}

footer .footer-section p,
footer .footer-section li {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

footer .footer-section ul {
	list-style: none;
}

footer .footer-section ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

footer .footer-section ul li .material-symbols-outlined {
	font-size: 1.2rem;
	margin-top: 0.1rem;
	color: rgba(255, 255, 255, 0.6);
}

footer .footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

footer .footer-section a:hover {
	color: white;
}

footer .footer-section .office-item {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
}

footer .footer-section .office-item .office-name {
	font-weight: 600;
	color: white;
	margin-bottom: 0.5rem;
}

footer .footer-section .office-item .office-details {
	font-size: 0.9rem;
}

footer .footer-section .office-item .office-details p {
	margin-bottom: 0.25rem;
}

footer .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1.5rem;
	text-align: center;
}

footer .footer-bottom .legal-notice {
	margin-bottom: 1rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

footer .footer-bottom .footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

@media (max-width: 767px) {

	footer .footer-bottom .footer-links {
		flex-direction: column;
		gap: 0.5rem
	}
}

footer .footer-bottom .footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
}

footer .footer-bottom .footer-links a:hover {
	color: white;
}

footer .footer-bottom .copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

/* ./parts/index-hero.html */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('https://picsum.photos/1920/1080?random=1') center/cover;
	opacity: 0.1;
	z-index: 1;
}

.hero .hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.hero .hero-background .swiper {
	width: 100%;
	height: 100%;
}

.hero .hero-background .swiper .swiper-slide {
	position: relative;
	background-size: cover;
	background-position: center;
}

.hero .hero-background .swiper .swiper-slide::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(46, 139, 87, 0.8);
}

.hero .hero-background .swiper-pagination {
	bottom: 2rem;
}

.hero .hero-background .swiper-pagination .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.hero .hero-background .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: white;
}

.hero .hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: white;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.hero .hero-content .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	margin-bottom: 2rem;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .hero-content .hero-badge .material-symbols-outlined {
	font-size: 1.2rem;
}

.hero .hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

@media (max-width: 767px) {

	.hero .hero-content h1 {
		font-size: 2rem
	}
}

.hero .hero-content h1 .highlight {
	color: var(--accent-color);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .hero-content .hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {

	.hero .hero-content .hero-subtitle {
		font-size: 1.1rem
	}
}

.hero .hero-content .hero-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

@media (max-width: 767px) {

	.hero .hero-content .hero-features {
		gap: 1rem;
		margin-bottom: 2rem
	}
}

.hero .hero-content .hero-features .feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.15);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {

	.hero .hero-content .hero-features .feature-item {
		padding: 0.5rem 1rem;
		font-size: 0.9rem
	}
}

.hero .hero-content .hero-features .feature-item .material-symbols-outlined {
	font-size: 1.2rem;
	color: var(--accent-color);
}

.hero .hero-content .hero-cta {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

@media (max-width: 767px) {

	.hero .hero-content .hero-cta {
		flex-direction: column;
		align-items: center;
		gap: 1rem
	}
}

.hero .hero-content .hero-cta .btn {
	padding: 1.2rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
}

@media (max-width: 767px) {

	.hero .hero-content .hero-cta .btn {
		padding: 1rem 2rem;
		min-width: 250px
	}
}

.hero .hero-content .hero-cta .btn.btn-primary {
	background: linear-gradient(135deg, var(--accent-color) 0%, #EA580C 100%);
	box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.hero .hero-content .hero-cta .btn.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.hero .hero-content .hero-cta .btn.btn-outline {
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: white;
}

.hero .hero-content .hero-cta .btn.btn-outline:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: white;
	transform: translateY(-3px);
}

.hero .hero-content .hero-cta .btn .material-symbols-outlined {
	font-size: 1.3rem;
}

.hero .hero-scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
}

@media (max-width: 767px) {

	.hero .hero-scroll {
		display: none
	}
}

.hero .hero-scroll .scroll-text {
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.hero .hero-scroll .scroll-arrow {
	animation: bounce 2s infinite;
}

.hero .hero-scroll .scroll-arrow .material-symbols-outlined {
	font-size: 2rem;
}

.hero .floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	pointer-events: none;
}

.hero .floating-elements .floating-element {
	position: absolute;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.hero .floating-elements .floating-element:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.hero .floating-elements .floating-element:nth-child(2) {
	top: 60%;
	right: 15%;
	animation-delay: 2s;
	width: 40px;
	height: 40px;
}

.hero .floating-elements .floating-element:nth-child(3) {
	bottom: 30%;
	left: 20%;
	animation-delay: 4s;
	width: 80px;
	height: 80px;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

/* ./parts/index-results.html */

.results-section {
	background: linear-gradient(135deg, var(--background-light) 0%, #F1F5F9 100%);
	padding: 4rem 0;
}

.results-section .section-title h2 {
	color: var(--secondary-color);
}

.results-section .section-title h2::after {
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.results-section .results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

@media (min-width: 768px) {

	.results-section .results-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

.results-section .result-card {
	background: white;
	border-radius: var(--radius-large);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.results-section .result-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.results-section .result-card .result-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.results-section .result-card .result-header .result-icon {
	width: 3rem;
	height: 3rem;
	background: linear-gradient(135deg, var(--primary-color), #228B54);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.results-section .result-card .result-header .result-title h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.25rem;
}

.results-section .result-card .result-header .result-title .result-category {
	font-size: 0.9rem;
	color: var(--text-light);
	background: var(--background-light);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-small);
	display: inline-block;
}

.results-section .result-card .solution-flow .flow-step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.results-section .result-card .solution-flow .flow-step:last-child {
	margin-bottom: 0;
}

.results-section .result-card .solution-flow .flow-step .step-number {
	width: 1.5rem;
	height: 1.5rem;
	background: var(--accent-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 600;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.results-section .result-card .solution-flow .flow-step .step-content {
	flex: 1;
}

.results-section .result-card .solution-flow .flow-step .step-content .step-title {
	font-weight: 500;
	color: var(--text-color);
	margin-bottom: 0.25rem;
	font-size: 0.95rem;
}

.results-section .result-card .solution-flow .flow-step .step-content .step-description {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.5;
}

.results-section .result-card .result-outcome {
	margin-top: 1.5rem;
	padding: 1rem;
	background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(34, 139, 84, 0.1));
	border-radius: var(--radius);
	border-left: 4px solid var(--primary-color);
}

.results-section .result-card .result-outcome .outcome-label {
	font-size: 0.8rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.results-section .result-card .result-outcome .outcome-text {
	font-weight: 500;
	color: var(--text-color);
	font-size: 0.95rem;
}

.results-section .results-stats {
	margin-top: 3rem;
	padding: 2rem;
	background: white;
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-card);
}

.results-section .results-stats .stats-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {

	.results-section .results-stats .stats-grid {
		grid-template-columns: repeat(3, 1fr);
		max-width: 900px;
		margin: 0 auto;
		justify-content: center
	}
}

.results-section .results-stats .stat-item {
	text-align: center;
}

.results-section .results-stats .stat-item .stat-icon {
	width: 2.5rem;
	height: 2.5rem;
	background: linear-gradient(135deg, var(--accent-color), #EA580C);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.2rem;
}

.results-section .results-stats .stat-item .stat-label {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.results-section .results-stats .stat-item .stat-description {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.4;
}

/* ./parts/index-cta.html */

.cta-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
	color: white;
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('https://ryukyu.sundesign.jp/image/contact2.jpg') center/cover;
	opacity: 0.1;
	z-index: 1;
}

.cta-section .container {
	position: relative;
	z-index: 2;
}

.cta-section .cta-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cta-section .cta-content .cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media (max-width: 767px) {

	.cta-section .cta-content .cta-title {
		font-size: 2rem
	}
}

.cta-section .cta-content .cta-subtitle {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {

	.cta-section .cta-content .cta-subtitle {
		font-size: 1.1rem
	}
}

.cta-section .cta-content .cta-description {
	font-size: 1rem;
	margin-bottom: 3rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

@media (max-width: 767px) {

	.cta-section .cta-content .cta-description {
		font-size: 0.9rem;
		margin-bottom: 2rem
	}
}

.cta-section .cta-content .highlight {
	background: var(--accent-color);
	padding: 0.2rem 0.5rem;
	border-radius: var(--radius-small);
	font-weight: 600;
}

.cta-section .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

@media (max-width: 767px) {

	.cta-section .cta-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem
	}
}

.cta-section .cta-buttons .btn {
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: var(--radius);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 200px;
	justify-content: center;
}

@media (max-width: 767px) {

	.cta-section .cta-buttons .btn {
		min-width: 250px;
		padding: 1rem 1.5rem
	}
}

.cta-section .cta-buttons .btn .material-symbols-outlined {
	font-size: 1.3rem;
}

.cta-section .cta-buttons .btn.btn-white {
	background: white;
	color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-section .cta-buttons .btn.btn-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
	background: #f8f9fa;
}

.cta-section .cta-buttons .btn.btn-accent {
	background: linear-gradient(135deg, var(--accent-color) 0%, #EA580C 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-section .cta-buttons .btn.btn-accent:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.cta-section .contact-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

@media (max-width: 767px) {

	.cta-section .contact-options {
		grid-template-columns: 1fr;
		gap: 1.5rem
	}
}

.cta-section .contact-options .contact-card {
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-large);
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.cta-section .contact-options .contact-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .contact-options .contact-card .contact-icon {
	width: 4rem;
	height: 4rem;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.cta-section .contact-options .contact-card .contact-icon .material-symbols-outlined {
	font-size: 2rem;
	color: white;
}

.cta-section .contact-options .contact-card .contact-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.cta-section .contact-options .contact-card .contact-info {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.cta-section .contact-options .contact-card .contact-detail {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.5rem;
}

.cta-section .contact-options .contact-card .contact-btn {
	background: white;
	color: var(--primary-color);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius);
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.cta-section .contact-options .contact-card .contact-btn:hover {
	background: #f8f9fa;
	transform: scale(1.05);
}

.cta-section .contact-options .contact-card .contact-btn .material-symbols-outlined {
	font-size: 1.1rem;
}

.cta-section .business-hours {
	text-align: center;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section .business-hours .hours-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.cta-section .business-hours .hours-info {
	display: flex;
	justify-content: center;
	gap: 3rem;
}

@media (max-width: 767px) {

	.cta-section .business-hours .hours-info {
		flex-direction: column;
		gap: 1rem
	}
}

.cta-section .business-hours .hours-info .hours-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
}

.cta-section .business-hours .hours-info .hours-item .material-symbols-outlined {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.6);
}

.cta-section .business-hours .emergency-note {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	font-style: italic;
}

.consultation-form-section {
	background: var(--background-light);
	padding: 4rem 0;
}

.consultation-form-section .consultation-form {
	max-width: 600px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--radius-large);
	padding: 2.5rem;
}

@media (max-width: 767px) {

	.consultation-form-section .consultation-form {
		padding: 2rem
	}
}

.consultation-form-section .consultation-form .form-title {
	color: var(--text-color);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-align: center;
}

.consultation-form-section .consultation-form .form-subtitle {
	color: var(--text-light);
	font-size: 0.9rem;
	margin-bottom: 2rem;
	text-align: center;
}

.consultation-form-section .consultation-form .form-group {
	margin-bottom: 1.5rem;
}

.consultation-form-section .consultation-form .form-group:last-child {
	margin-bottom: 0;
}

.consultation-form-section .consultation-form label {
	display: block;
	color: var(--text-color);
	font-weight: 500;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.consultation-form-section .consultation-form label .required {
	color: #EF4444;
	margin-left: 0.25rem;
}

.consultation-form-section .consultation-form input,
.consultation-form-section .consultation-form select,
.consultation-form-section .consultation-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	font-family: var(--font-family);
	font-size: 0.95rem;
	color: var(--text-color);
	transition: all 0.3s ease;
}

.consultation-form-section .consultation-form input:focus,
.consultation-form-section .consultation-form select:focus,
.consultation-form-section .consultation-form textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
	background-color: rgba(46, 139, 87, 0.02);
}

.consultation-form-section .consultation-form input::-moz-placeholder,
.consultation-form-section .consultation-form select::-moz-placeholder,
.consultation-form-section .consultation-form textarea::-moz-placeholder {
	color: var(--text-light);
}

.consultation-form-section .consultation-form input::placeholder,
.consultation-form-section .consultation-form select::placeholder,
.consultation-form-section .consultation-form textarea::placeholder {
	color: var(--text-light);
}

.consultation-form-section .consultation-form input.error,
.consultation-form-section .consultation-form select.error,
.consultation-form-section .consultation-form textarea.error {
	border-color: #EF4444;
	background-color: rgba(239, 68, 68, 0.05);
}

.consultation-form-section .consultation-form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 1.2em 1.2em;
	padding-right: 2.5rem;
	cursor: pointer;
}

.consultation-form-section .consultation-form textarea {
	resize: vertical;
	min-height: 120px;
}

.consultation-form-section .consultation-form .form-submit {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
	color: white;
	border: none;
	border-radius: var(--radius);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-button);
}

.consultation-form-section .consultation-form .form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.consultation-form-section .consultation-form .form-submit:active {
	transform: translateY(0);
}

.consultation-form-section .consultation-form .form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.consultation-form-section .consultation-form .form-submit:disabled:hover {
	transform: none;
}

.consultation-form-section .consultation-form .form-note {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-color);
	font-size: 0.8rem;
	color: var(--text-light);
	text-align: center;
	line-height: 1.5;
}

/* プライバシーポリシー閲覧エリア */

.consultation-form-section .consultation-form .privacy-policy-box {
	margin-top: 2rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: #f9f9f9;
	padding: 1rem;
}

.consultation-form-section .consultation-form .privacy-policy-box .privacy-title {
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-color);
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 0.5rem;
}

.consultation-form-section .consultation-form .privacy-policy-box .privacy-content {
	height: 150px;
	/* ボックスの高さ */
	overflow-y: scroll;
	/* 縦スクロールを有効にする */
	font-size: 0.8rem;
	color: #666;
	line-height: 1.6;
	padding-right: 0.5rem;
}

/* スクロールバーのデザイン（任意） */

.consultation-form-section .consultation-form .privacy-policy-box .privacy-content::-webkit-scrollbar {
	width: 6px;
}

.consultation-form-section .consultation-form .privacy-policy-box .privacy-content::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 10px;
}

.consultation-form-section .consultation-form .privacy-policy-box .privacy-content h4 {
	font-size: 0.85rem;
	margin: 1rem 0 0.5rem;
	color: var(--text-color);
}

.consultation-form-section .consultation-form .privacy-policy-box .privacy-content p {
	margin-bottom: 1rem;
}

/* チェックボックス専用のスタイルを強制適用 */

.consultation-form-section .consultation-form .privacy-check {
	margin: 2rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 同意チェックボックスの装飾 */

.consultation-form-section .consultation-form .privacy-check input[type="checkbox"] {
	/* 他の場所で設定された「消す設定」をすべて解除 */
	-moz-appearance: checkbox !important;
	appearance: checkbox !important;
	-webkit-appearance: checkbox !important;
	opacity: 1 !important;
	visibility: visible !important;
	width: 20px !important;
	height: 20px !important;
	margin: 0 10px 0 0 !important;
	cursor: pointer;
	/* 重なり順を最前面に */
	position: relative;
	z-index: 10;
}

.consultation-form-section .consultation-form .privacy-check label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-size: 1rem;
	color: var(--text-color);
	font-weight: 600;
	/* テキストが消えないように設定 */
	text-indent: 0 !important;
	line-height: 1.2;
}

/* フォーム全体の重なりを保証（念のため） */

.consultation-form-section .consultation-form .consultation-form {
	position: relative;
	z-index: 5;
}

/* ./parts/index-lawyers.html */

.lawyers-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--background-light) 0%, #F0F9FF 100%);
}

.lawyers-section .section-intro {
	text-align: center;
	margin-bottom: 3rem;
}

.lawyers-section .section-intro .highlight {
	color: var(--primary-color);
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	display: block;
}

.lawyers-section .section-intro h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color);
}

@media (max-width: 767px) {

	.lawyers-section .section-intro h2 {
		font-size: 2rem
	}
}

.lawyers-section .section-intro .subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

.lawyers-section .lawyers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

@media (max-width: 767px) {

	.lawyers-section .lawyers-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem
	}
}

.lawyers-section .lawyer-card {
	background: white;
	border-radius: var(--radius-large);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
	position: relative;
}

.lawyers-section .lawyer-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.lawyers-section .lawyer-card .lawyer-image {
	width: 100%;
	aspect-ratio: 13 / 15;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
	font-weight: 700;
	position: relative;
	overflow: hidden;
}

.lawyers-section .lawyer-card .lawyer-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.lawyers-section .lawyer-card .lawyer-image::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: white;
	border-radius: 15px 15px 0 0;
}

.lawyers-section .lawyer-card .lawyer-info {
	padding: 1.5rem;
}

.lawyers-section .lawyer-card .lawyer-info .lawyer-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}

.lawyers-section .lawyer-card .lawyer-info .lawyer-title {
	color: var(--primary-color);
	font-weight: 500;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.lawyers-section .lawyer-card .lawyer-info .lawyer-specialties {
	margin-bottom: 1rem;
}

.lawyers-section .lawyer-card .lawyer-info .lawyer-specialties .specialty-tag {
	display: inline-block;
	background: var(--background-light);
	color: var(--text-color);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-small);
	font-size: 0.8rem;
	margin: 0.25rem 0.25rem 0.25rem 0;
	border: 1px solid var(--border-color);
}

.lawyers-section .lawyer-card .lawyer-info .lawyer-description {
	color: var(--text-light);
	font-size: 0.9rem;
	line-height: 1.6;
}

.lawyers-section .lawyer-card .lawyer-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--accent-color);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-small);
	font-size: 0.8rem;
	font-weight: 500;
}

.lawyers-section .team-stats {
	background: white;
	border-radius: var(--radius-large);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	margin-bottom: 3rem;
}

.lawyers-section .team-stats .stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

@media (max-width: 767px) {

	.lawyers-section .team-stats .stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem
	}
}

.lawyers-section .team-stats .stat-item {
	text-align: center;
}

.lawyers-section .team-stats .stat-item .stat-icon {
	width: 3rem;
	height: 3rem;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.lawyers-section .team-stats .stat-item .stat-icon .material-symbols-outlined {
	font-size: 1.5rem;
}

.lawyers-section .team-stats .stat-item .stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	display: block;
}

.lawyers-section .team-stats .stat-item .stat-label {
	color: var(--text-light);
	font-size: 0.9rem;
	font-weight: 500;
}

.lawyers-section .office-locations .locations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

@media (max-width: 767px) {

	.lawyers-section .office-locations .locations-grid {
		grid-template-columns: 1fr
	}
}

.lawyers-section .office-locations .location-card {
	background: white;
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
	border-left: 4px solid var(--primary-color);
}

.lawyers-section .office-locations .location-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lawyers-section .office-locations .location-card .location-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.lawyers-section .office-locations .location-card .location-name .material-symbols-outlined {
	font-size: 1.2rem;
}

.lawyers-section .office-locations .location-card .location-details {
	color: var(--text-light);
	font-size: 0.9rem;
	line-height: 1.6;
}

.lawyers-section .office-locations .location-card .location-details .detail-section {
	margin-bottom: 1rem;
}

.lawyers-section .office-locations .location-card .location-details .detail-section:last-child {
	margin-bottom: 0;
}

.lawyers-section .office-locations .location-card .location-details .detail-label {
	font-weight: 500;
	color: var(--text-color);
	display: block;
	margin-bottom: 0.25rem;
	font-size: 0.85rem;
}

.lawyers-section .office-locations .location-card .location-details p {
	margin-bottom: 0.25rem;
}

.lawyers-section .office-locations .location-card .location-details p:last-of-type {
	margin-bottom: 0;
}

.lawyers-section .cta-section {
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
	background: white;
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-card);
}

.lawyers-section .cta-section h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.lawyers-section .cta-section p {
	color: var(--text-light);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.lawyers-section .cta-section .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 200;
}

.lawyers-section .cta-section .cta-buttons .btn {
	min-width: 160px;
}

/* ./parts/index-flow.html */

.flow-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--background-light) 0%, #F1F5F9 100%);
}

.flow-section .section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.flow-section .section-title h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
	position: relative;
}

.flow-section .section-title h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 15px auto 0;
}

.flow-section .section-title p {
	color: var(--text-light);
	font-size: 1.1rem;
}

.flow-section .flow-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.flow-section .flow-container::before {
	content: "";
	position: absolute;
	top: 3rem;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: calc(100% - 6rem);
	background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
	z-index: 1;
}

@media (max-width: 767px) {

	.flow-section .flow-container::before {
		left: 2rem;
		transform: none
	}
}

.flow-section .flow-step {
	display: flex;
	align-items: center;
	margin-bottom: 3rem;
	position: relative;
	z-index: 2;
}

@media (max-width: 767px) {

	.flow-section .flow-step {
		flex-direction: row;
		align-items: flex-start;
		margin-bottom: 2.5rem
	}
}

.flow-section .flow-step:nth-child(even) {
	flex-direction: row-reverse;
}

@media (max-width: 767px) {

	.flow-section .flow-step:nth-child(even) {
		flex-direction: row
	}
}

.flow-section .flow-step:nth-child(even) .flow-content {
	text-align: right;
}

@media (max-width: 767px) {

	.flow-section .flow-step:nth-child(even) .flow-content {
		text-align: left
	}
}

.flow-section .flow-step:last-child {
	margin-bottom: 0;
}

.flow-section .flow-step .flow-number {
	width: 4rem;
	height: 4rem;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
	z-index: 3;
	flex-shrink: 0;
}

@media (max-width: 767px) {

	.flow-section .flow-step .flow-number {
		width: 3rem;
		height: 3rem;
		font-size: 1.2rem;
		margin-right: 1.5rem
	}
}

.flow-section .flow-step .flow-content {
	flex: 1;
	max-width: 400px;
}

@media (max-width: 767px) {

	.flow-section .flow-step .flow-content {
		max-width: none
	}
}

.flow-section .flow-step .flow-content .flow-card {
	background: white;
	border-radius: var(--radius-large);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.flow-section .flow-step .flow-content .flow-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-color);
}

@media (max-width: 767px) {

	.flow-section .flow-step .flow-content .flow-card {
		padding: 1.5rem
	}
}

.flow-section .flow-step .flow-content .flow-card .step-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.flow-section .flow-step .flow-content .flow-card .step-title .material-symbols-outlined {
	color: var(--primary-color);
	font-size: 1.4rem;
}

@media (max-width: 767px) {

	.flow-section .flow-step .flow-content .flow-card .step-title {
		font-size: 1.1rem
	}
}

.flow-section .flow-step .flow-content .flow-card .step-description {
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.flow-section .flow-step .flow-content .flow-card .step-details {
	background: var(--background-light);
	border-radius: var(--radius);
	padding: 1rem;
}

.flow-section .flow-step .flow-content .flow-card .step-details ul {
	list-style: none;
	margin: 0;
}

.flow-section .flow-step .flow-content .flow-card .step-details ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-color);
}

.flow-section .flow-step .flow-content .flow-card .step-details ul li:last-child {
	margin-bottom: 0;
}

.flow-section .flow-step .flow-content .flow-card .step-details ul li .material-symbols-outlined {
	color: var(--primary-color);
	font-size: 1rem;
	margin-top: 0.1rem;
}

.flow-section .flow-step .flow-content .flow-card .step-time {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	background: var(--accent-color);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-small);
	font-size: 0.8rem;
	font-weight: 500;
	margin-top: 1rem;
}

.flow-section .flow-step .flow-content .flow-card .step-time .material-symbols-outlined {
	font-size: 0.9rem;
}

.flow-section .flow-cta {
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
	background: white;
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-card);
}

.flow-section .flow-cta h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.flow-section .flow-cta p {
	color: var(--text-light);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.flow-section .flow-cta .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ./parts/index-faq.html */

.faq-section {
	padding: 4rem 0;
	background: var(--background-light);
}

.faq-section .section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.faq-section .section-title h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
	position: relative;
}

.faq-section .section-title h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 15px auto 0;
}

.faq-section .section-title p {
	color: var(--text-light);
	font-size: 1.1rem;
}

.faq-section .faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-section .faq-item {
	background: white;
	border-radius: var(--radius);
	margin-bottom: 1rem;
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-item:last-child {
	margin-bottom: 0;
}

.faq-section .faq-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-color);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	transition: all 0.3s ease;
}

.faq-section .faq-question:hover {
	background: var(--background-light);
}

.faq-section .faq-question[aria-expanded="true"] {
	background: var(--background-light);
	border-bottom: 1px solid var(--border-color);
}

.faq-section .faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
	color: var(--primary-color);
}

.faq-section .faq-question .question-text {
	flex: 1;
	line-height: 1.6;
}

.faq-section .faq-question .question-text .question-label {
	display: inline-block;
	background: var(--primary-color);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius-small);
	font-size: 0.75rem;
	font-weight: 600;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

.faq-section .faq-question .faq-icon {
	color: var(--text-light);
	transition: all 0.3s ease;
	font-size: 1.5rem;
	margin-top: 0.25rem;
}

.faq-section .faq-answer {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-color);
	line-height: 1.7;
	display: none;
}

.faq-section .faq-answer.active {
	display: block;
	animation: fadeInDown 0.3s ease;
}

.faq-section .faq-answer .answer-label {
	display: inline-block;
	background: var(--accent-color);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius-small);
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.faq-section .faq-answer p {
	margin-bottom: 1rem;
}

.faq-section .faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-section .faq-answer ul {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.faq-section .faq-answer ul li {
	margin-bottom: 0.5rem;
	position: relative;
}

.faq-section .faq-answer ul li::marker {
	color: var(--primary-color);
}

.faq-section .faq-answer .highlight {
	background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(46, 139, 87, 0.05) 100%);
	padding: 1rem;
	border-radius: var(--radius-small);
	border-left: 4px solid var(--primary-color);
	margin: 1rem 0;
}

.faq-section .faq-answer .highlight p {
	margin: 0;
	font-weight: 500;
}

.faq-section .cta-after-faq {
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
	background: white;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.faq-section .cta-after-faq h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.faq-section .cta-after-faq p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.faq-section .cta-after-faq .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 767px) {
	.faq-section {
		padding: 3rem 0;
	}

	.faq-section .faq-question {
		padding: 1.25rem;
		font-size: 0.95rem;
	}

	.faq-section .faq-answer {
		padding: 0 1.25rem 1.25rem;
	}

	.faq-section .cta-after-faq .cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

/* ./parts/index-target-section.html */

.target-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--background-light) 0%, #F1F5F9 100%);
}

.target-section .section-intro {
	text-align: center;
	margin-bottom: 3rem;
}

.target-section .section-intro h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1rem;
}

@media (max-width: 767px) {

	.target-section .section-intro h2 {
		font-size: 2rem
	}
}

.target-section .section-intro p {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

.target-section .target-tabs .tab-buttons {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
	background: white;
	border-radius: var(--radius-large);
	padding: 0.5rem;
	box-shadow: var(--shadow-card);
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
}

@media (max-width: 767px) {

	.target-section .target-tabs .tab-buttons {
		flex-direction: column;
		gap: 0.5rem;
		padding: 1rem
	}
}

.target-section .target-tabs .tab-buttons .tab-button {
	flex: 1;
	padding: 1rem 2rem;
	background: none;
	border: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-light);
	transition: all 0.3s ease;
	border-radius: var(--radius);
	position: relative;
}

.target-section .target-tabs .tab-buttons .tab-button.active {
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.target-section .target-tabs .tab-buttons .tab-button:hover:not(.active) {
	color: var(--primary-color);
	background: rgba(46, 139, 87, 0.05);
}

.target-section .target-tabs .tab-buttons .tab-button .material-symbols-outlined {
	display: block;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

@media (max-width: 767px) {

	.target-section .target-tabs .tab-buttons .tab-button {
		padding: 0.75rem 1rem
	}

	.target-section .target-tabs .tab-buttons .tab-button .material-symbols-outlined {
		display: inline;
		font-size: 1.2rem;
		margin-bottom: 0;
		margin-right: 0.5rem;
	}
}

.target-section .target-tabs .tab-content {
	display: none;
}

.target-section .target-tabs .tab-content.active {
	display: block;
	animation: slideUp 0.5s ease;
}

.target-section .target-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

@media (max-width: 1023px) {

	.target-section .target-content {
		grid-template-columns: 1fr;
		gap: 2rem
	}
}

.target-section .target-content .content-text h3 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

@media (max-width: 767px) {

	.target-section .target-content .content-text h3 {
		font-size: 1.75rem
	}
}

.target-section .target-content .content-text .problem-list {
	margin-bottom: 2rem;
}

.target-section .target-content .content-text .problem-list .problem-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: white;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	transition: transform 0.3s ease;
}

.target-section .target-content .content-text .problem-list .problem-item:hover {
	transform: translateY(-3px);
}

.target-section .target-content .content-text .problem-list .problem-item .icon {
	width: 3rem;
	height: 3rem;
	background: linear-gradient(135deg, var(--accent-color) 0%, #EA580C 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.target-section .target-content .content-text .problem-list .problem-item .icon .material-symbols-outlined {
	font-size: 1.5rem;
}

.target-section .target-content .content-text .problem-list .problem-item .content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}

.target-section .target-content .content-text .problem-list .problem-item .content p {
	color: var(--text-light);
	font-size: 0.9rem;
	line-height: 1.6;
}

.target-section .target-content .content-text .support-features {
	background: white;
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.target-section .target-content .content-text .support-features h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1rem;
	text-align: center;
}

.target-section .target-content .content-text .support-features .feature-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1rem;
}

.target-section .target-content .content-text .support-features .feature-list .feature-item {
	text-align: center;
	padding: 1rem;
	border: 2px solid var(--border-color);
	border-radius: var(--radius);
	transition: all 0.3s ease;
}

.target-section .target-content .content-text .support-features .feature-list .feature-item:hover {
	border-color: var(--primary-color);
	background: rgba(46, 139, 87, 0.05);
}

.target-section .target-content .content-text .support-features .feature-list .feature-item .material-symbols-outlined {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.target-section .target-content .content-text .support-features .feature-list .feature-item .label {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-color);
}

.target-section .target-content .content-visual {
	text-align: center;
}

.target-section .target-content .content-visual .image-container {
	position: relative;
	border-radius: var(--radius-large);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
	padding: 3rem 2rem;
}

.target-section .target-content .content-visual .image-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.target-section .target-content .content-visual .image-container .placeholder-content {
	position: relative;
	z-index: 1;
	color: white;
}

.target-section .target-content .content-visual .image-container .placeholder-content .material-symbols-outlined {
	font-size: 4rem;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.target-section .target-content .content-visual .image-container .placeholder-content h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.target-section .target-content .content-visual .image-container .placeholder-content p {
	opacity: 0.9;
	line-height: 1.6;
}

.target-section .target-content .content-visual .cta-box {
	margin-top: 2rem;
	padding: 2rem;
	background: white;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	border: 2px solid var(--primary-color);
}

.target-section .target-content .content-visual .cta-box .cta-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.target-section .target-content .content-visual .cta-box .cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 768px) {

	.target-section .target-content .content-visual .cta-box .cta-buttons {
		flex-direction: row;
		justify-content: center
	}
}

.target-section .target-content .content-visual .cta-box .cta-buttons .btn {
	flex: 1;
	max-width: 200px;
	margin: 0 auto;
}

@media (min-width: 768px) {

	.target-section .target-content .content-visual .cta-box .cta-buttons .btn {
		margin: 0
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ./parts/index-services.html */

.services-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--background-light) 0%, #F3F4F6 100%);
}

.services-section .services-intro {
	text-align: center;
	margin-bottom: 3rem;
}

.services-section .services-intro .intro-text {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.7;
}

.services-section .services-tabs {
	margin-bottom: 3rem;
}

.services-section .services-tabs .tab-buttons {
	display: flex;
	justify-content: center;
	border-bottom: 2px solid var(--border-color);
	margin-bottom: 2rem;
}

@media (max-width: 767px) {

	.services-section .services-tabs .tab-buttons {
		flex-direction: column
	}
}

.services-section .services-tabs .tab-buttons .tab-button {
	flex: 1;
	max-width: 200px;
	padding: 1rem 2rem;
	background: none;
	border: none;
	cursor: pointer;
	font-weight: 500;
	color: var(--text-light);
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	position: relative;
}

@media (max-width: 767px) {

	.services-section .services-tabs .tab-buttons .tab-button {
		max-width: none;
		border-bottom: 1px solid var(--border-color);
		border-right: none
	}
}

.services-section .services-tabs .tab-buttons .tab-button.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
	background: rgba(46, 139, 87, 0.05);
}

.services-section .services-tabs .tab-buttons .tab-button:hover {
	color: var(--primary-color);
	background: rgba(46, 139, 87, 0.03);
}

.services-section .services-tabs .tab-buttons .tab-button .tab-icon {
	display: block;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.services-section .services-tabs .tab-buttons .tab-button .tab-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.services-section .services-tabs .tab-buttons .tab-button .tab-subtitle {
	font-size: 0.85rem;
	opacity: 0.8;
}

.services-section .services-tabs .tab-content {
	display: none;
}

.services-section .services-tabs .tab-content.active {
	display: block;
	animation: fadeInUp 0.5s ease;
}

.services-section .service-category {
	margin-bottom: 3rem;
}

.services-section .service-category .category-header {
	text-align: center;
	margin-bottom: 2rem;
}

.services-section .service-category .category-header h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.services-section .service-category .category-header p {
	color: var(--text-light);
	font-size: 1rem;
}

.services-section .service-category .service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

@media (max-width: 767px) {

	.services-section .service-category .service-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem
	}
}

.services-section .service-category .service-card {
	background: white;
	border-radius: var(--radius-large);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.services-section .service-category .service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-section .service-category .service-card .service-icon {
	width: 4rem;
	height: 4rem;
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.services-section .service-category .service-card .service-icon .material-symbols-outlined {
	font-size: 2rem;
	color: white;
}

.services-section .service-category .service-card .service-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.services-section .service-category .service-card .service-description {
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.services-section .service-category .service-card .service-features {
	list-style: none;
	margin-bottom: 1.5rem;
}

.services-section .service-category .service-card .service-features li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

.services-section .service-category .service-card .service-features li .material-symbols-outlined {
	font-size: 1rem;
	color: var(--primary-color);
}

.services-section .service-category .service-card .service-cta .btn {
	width: 100%;
	justify-content: center;
}

.services-section .special-services {
	background: white;
	border-radius: var(--radius-large);
	padding: 2.5rem;
	box-shadow: var(--shadow-card);
	border: 2px solid var(--primary-color);
	margin-top: 3rem;
}

.services-section .special-services .special-header {
	text-align: center;
	margin-bottom: 2rem;
}

.services-section .special-services .special-header .special-badge {
	display: inline-block;
	background: var(--accent-color);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: var(--radius);
	font-weight: 600;
	margin-bottom: 1rem;
}

.services-section .special-services .special-header h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.services-section .special-services .special-header p {
	color: var(--text-light);
	font-size: 1rem;
}

.services-section .special-services .special-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

@media (max-width: 767px) {

	.services-section .special-services .special-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem
	}
}

.services-section .special-services .special-item {
	text-align: center;
	padding: 1.5rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	transition: all 0.3s ease;
}

.services-section .special-services .special-item:hover {
	border-color: var(--primary-color);
	background: rgba(46, 139, 87, 0.02);
}

.services-section .special-services .special-item .special-icon {
	width: 3rem;
	height: 3rem;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.services-section .special-services .special-item .special-icon .material-symbols-outlined {
	font-size: 1.5rem;
	color: white;
}

.services-section .special-services .special-item .special-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.services-section .special-services .special-item .special-description {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.5;
}

.services-section .plans-section {
	background: white;
	border-radius: var(--radius-large);
	padding: 3rem 2rem;
	box-shadow: var(--shadow-card);
	margin-top: 3rem;
}

.services-section .plans-section .plans-header {
	text-align: center;
	margin-bottom: 3rem;
}

.services-section .plans-section .plans-header h3 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.services-section .plans-section .plans-header p {
	color: var(--text-light);
	font-size: 1rem;
}

.services-section .plans-section .plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

@media (max-width: 767px) {

	.services-section .plans-section .plans-grid {
		grid-template-columns: 1fr;
		gap: 2rem
	}
}

.services-section .plans-section .plan-card {
	border: 2px solid var(--border-color);
	border-radius: var(--radius-large);
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.services-section .plans-section .plan-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-section .plans-section .plan-card.featured {
	border-color: var(--accent-color);
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(30, 58, 138, 0.02) 100%);
	transform: scale(1.02);
}

@media (max-width: 767px) {

	.services-section .plans-section .plan-card.featured {
		transform: scale(1)
	}
}

.services-section .plans-section .plan-card .plan-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--accent-color);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.85rem;
}

.services-section .plans-section .plan-card .plan-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	margin-top: 1rem;
}

.services-section .plans-section .plan-card .plan-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
}

.services-section .plans-section .plan-card .plan-price .price-unit {
	font-size: 0.9rem;
	color: var(--text-light);
	font-weight: 400;
	display: block;
}

.services-section .plans-section .plan-card .plan-description {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

.services-section .plans-section .plan-card .plan-subtitle {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
	margin-top: 1.5rem;
}

.services-section .plans-section .plan-card .plan-features {
	list-style: none;
	margin-bottom: 2rem;
	flex-grow: 1;
}

.services-section .plans-section .plan-card .plan-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--text-color);
	font-size: 0.95rem;
}

.services-section .plans-section .plan-card .plan-features li .material-symbols-outlined {
	color: var(--primary-color);
	font-weight: bold;
}

.services-section .plans-section .plan-card .plan-cta {
	margin-top: auto;
}

.services-section .plans-section .plan-card .plan-cta .btn {
	width: 100%;
	justify-content: center;
}

.services-section .pricing-section {
	background: white;
	border-radius: var(--radius-large);
	padding: 3rem 2rem;
	box-shadow: var(--shadow-card);
	margin-top: 3rem;
}

.services-section .pricing-section .pricing-header {
	text-align: center;
	margin-bottom: 3rem;
}

.services-section .pricing-section .pricing-header h3 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.services-section .pricing-section .pricing-header p {
	color: var(--text-light);
	font-size: 1rem;
}

.services-section .pricing-section .pricing-table-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1.5rem;
	text-align: center;
}

.services-section .pricing-section .pricing-intro {
	text-align: center;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
	border-radius: var(--radius);
	line-height: 1.7;
	color: var(--text-light);
	font-size: 0.95rem;
}

.services-section .pricing-section .pricing-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 2rem;
	overflow-x: auto;
}

@media (max-width: 767px) {

	.services-section .pricing-section .pricing-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap
	}
}

.services-section .pricing-section .pricing-table thead {
	background: linear-gradient(135deg, var(--primary-color) 0%, #228B54 100%);
}

.services-section .pricing-section .pricing-table thead th {
	padding: 1rem;
	text-align: left;
	color: white;
	font-weight: 600;
	border: 1px solid var(--primary-color);
	font-size: 0.9rem;
}

.services-section .pricing-section .pricing-table tbody tr:nth-child(even) {
	background: var(--background-light);
}

.services-section .pricing-section .pricing-table tbody tr:hover {
	background: rgba(46, 139, 87, 0.05);
}

.services-section .pricing-section .pricing-table tbody tr td {
	padding: 1rem;
	border: 1px solid var(--border-color);
	font-size: 0.95rem;
	color: var(--text-color);
}

.services-section .pricing-section .pricing-table tbody tr td.category-label {
	font-weight: 600;
	color: var(--primary-color);
	background: rgba(46, 139, 87, 0.05);
	min-width: 30px;
	text-align: center;
}

.services-section .pricing-section .pricing-table tbody tr td.service-name {
	font-weight: 500;
	max-width: 200px;
}

.services-section .pricing-section .pricing-table tbody tr td.price {
	color: var(--accent-color);
	font-weight: 600;
	white-space: normal;
}

.services-section .pricing-section .pricing-table tbody tr td.note {
	font-size: 0.85rem;
	color: var(--text-light);
	white-space: normal;
}

.services-section .pricing-section .table-note {
	background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
	border-left: 4px solid var(--primary-color);
	padding: 1.5rem;
	border-radius: var(--radius);
	margin-bottom: 2rem;
}

.services-section .pricing-section .table-note .note-title {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.services-section .pricing-section .table-note .note-title .material-symbols-outlined {
	color: var(--primary-color);
}

.services-section .pricing-section .table-note .note-content {
	color: var(--text-light);
	font-size: 0.9rem;
	line-height: 1.6;
}

.services-section .pricing-section .table-note .note-content ul {
	list-style: none;
	margin-top: 0.75rem;
}

.services-section .pricing-section .table-note .note-content ul li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.services-section .pricing-section .table-note .note-content ul li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}