:root {
	--primary-color: #0ABAB5;
	--primary-hover: #099E9A;
	--secondary-color: #333333;
	--text-color: #333333;
	--text-secondary: #666666;
	--text-muted: #999999;
	--text-inverse: #FFFFFF;
	--bg-white: #FFFFFF;
	--bg-light: #F8F9FA;
	--bg-medium: #E9ECEF;
	--border-light: #E0E0E0;
	--border-medium: #CCCCCC;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
	--shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--transition-fast: 150ms ease;
	--transition-normal: 300ms ease;
	--transition-slow: 500ms ease;
	--container-max: 1200px;
	--container-padding: 20px;
	--section-padding-desktop: 100px;
	--section-padding-tablet: 80px;
	--section-padding-mobile: 60px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--bg-white);
	overflow-x: hidden;
}

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

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

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

.section-title {
	font-size: 2.25rem;
	font-weight: 700;
	text-align: center;
	color: var(--text-color);
	position: relative;
	padding-bottom: 20px;
}

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

@media (max-width: 768px) {

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

.section-subtitle {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 0.5rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all var(--transition-normal);
	border: none;
	text-decoration: none;
}

.btn.btn-primary {
	background-color: var(--primary-color);
	color: var(--text-inverse);
}

.btn.btn-primary:hover {
	background-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

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

.btn.btn-outline:hover {
	background-color: var(--primary-color);
	color: var(--text-inverse);
	transform: translateY(-2px);
}

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

.btn.btn-white:hover {
	background-color: var(--bg-light);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn.btn-lg {
	padding: 18px 40px;
	font-size: 1.125rem;
}

.btn.btn-sm {
	padding: 10px 20px;
	font-size: 0.875rem;
}

.btn .material-symbols-rounded {
	font-size: 1.25em;
}

.card {
	background-color: var(--bg-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	transition: all var(--transition-normal);
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

section {
	padding: var(--section-padding-desktop) 0;
}

@media (max-width: 1024px) {

	section {
		padding: var(--section-padding-tablet) 0
	}
}

@media (max-width: 768px) {

	section {
		padding: var(--section-padding-mobile) 0
	}
}

.text-primary {
	color: var(--primary-color);
}

.text-secondary {
	color: var(--text-secondary);
}

.text-muted {
	color: var(--text-muted);
}

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

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

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

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

[x-cloak] {
	display: none !important;
}

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

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.98);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

header.scrolled {
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 80px;
}

@media (max-width: 768px) {

	header .header-inner {
		height: 70px
	}
}

header .logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #333333;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

header .logo:hover {
	opacity: 0.8;
}

header .logo .logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0ABAB5 0%, #08A8A4 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1rem;
}

@media (max-width: 480px) {

	header .logo .logo-text {
		font-size: 1.25rem
	}
}

header .nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

@media (max-width: 768px) {

	header .nav {
		display: none
	}
}

header .nav a {
	font-size: 0.9375rem;
	font-weight: 500;
	color: #333333;
	text-decoration: none;
	position: relative;
	padding: 8px 0;
	transition: color 0.3s ease;
}

header .nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #0ABAB5;
	transition: width 0.3s ease;
}

header .nav a:hover {
	color: #0ABAB5;
}

header .nav a:hover::after {
	width: 100%;
}

header .nav a.active {
	color: #0ABAB5;
}

header .nav a.active::after {
	width: 100%;
}

@media (max-width: 768px) {

	header .header-cta {
		display: none
	}
}

header .header-cta .btn-contact {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 24px;
	background-color: #0ABAB5;
	color: white;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

header .header-cta .btn-contact:hover {
	background-color: #099E9A;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(10, 186, 181, 0.3);
}

header .header-cta .btn-contact .material-symbols-rounded {
	font-size: 1.125rem;
}

header .mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1100;
}

@media (max-width: 768px) {

	header .mobile-menu-btn {
		display: flex;
		align-items: center;
		justify-content: center
	}
}

header .mobile-menu-btn .material-symbols-rounded {
	font-size: 28px;
	color: #333333;
	transition: color 0.3s ease;
}

header .mobile-nav {
	display: none;
}

@media (max-width: 768px) {

	header .mobile-nav {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(255, 255, 255, 0.98);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		z-index: 1050;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease
	}

	header .mobile-nav.open {
		opacity: 1;
		visibility: visible;
	}
}

header .mobile-nav .mobile-nav-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 2rem;
}

header .mobile-nav a {
	font-size: 1.25rem;
	font-weight: 600;
	color: #333333;
	text-decoration: none;
	padding: 12px 24px;
	transition: color 0.3s ease;
}

header .mobile-nav a:hover,
header .mobile-nav a.active {
	color: #0ABAB5;
}

header .mobile-nav .mobile-cta {
	margin-top: 1rem;
}

header .mobile-nav .mobile-cta .btn-contact {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	background-color: #0ABAB5;
	color: white;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
}

header .mobile-nav .mobile-cta .btn-contact .material-symbols-rounded {
	font-size: 1.25rem;
}

.header-spacer {
	height: 80px;
}

@media (max-width: 768px) {

	.header-spacer {
		height: 70px
	}
}

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

footer {
	background-color: #F8F9FA;
	border-top: 1px solid #E0E0E0;
}

footer .footer-main {
	padding: 60px 0 40px;
}

@media (max-width: 768px) {

	footer .footer-main {
		padding: 50px 0 30px
	}
}

footer .footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

footer .footer-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: start;
}

@media (max-width: 768px) {

	footer .footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center
	}
}

footer .footer-company .footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	text-decoration: none;
}

footer .footer-company .footer-logo .logo-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #0ABAB5 0%, #08A8A4 100%);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 0.875rem;
}

footer .footer-company .footer-logo .logo-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: #333333;
}

footer .footer-company .company-name {
	font-size: 1rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 16px;
}

footer .footer-company .company-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

footer .footer-company .company-info p {
	font-size: 0.875rem;
	color: #666666;
	line-height: 1.6;
	display: flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 768px) {

	footer .footer-company .company-info p {
		justify-content: center
	}
}

footer .footer-company .company-info p .material-symbols-rounded {
	font-size: 1.125rem;
	color: #0ABAB5;
}

footer .footer-nav ul {
	display: flex;
	gap: 2rem;
}

@media (max-width: 768px) {

	footer .footer-nav ul {
		justify-content: center;
		flex-wrap: wrap;
		gap: 1.5rem
	}
}

footer .footer-nav a {
	font-size: 0.9375rem;
	color: #333333;
	text-decoration: none;
	transition: color 0.3s ease;
}

footer .footer-nav a:hover {
	color: #0ABAB5;
}

footer .footer-bottom {
	border-top: 1px solid #E0E0E0;
	padding: 20px 0;
}

footer .footer-bottom .copyright {
	text-align: center;
	font-size: 0.8125rem;
	color: #999999;
}

/* ./parts/index-works.html */

#index-works {
	background-color: var(--bg-white);
}

#index-works .works-header {
	text-align: center;
	margin-bottom: 50px;
}

#index-works .works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

@media (max-width: 1024px) {

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

@media (max-width: 640px) {

	#index-works .works-grid {
		grid-template-columns: 1fr;
		gap: 24px
	}
}

#index-works .works-card {
	background-color: var(--bg-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-normal);
}

#index-works .works-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
}

#index-works .works-card:hover .works-image img {
	transform: scale(1.05);
}

#index-works .works-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

#index-works .works-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

#index-works .works-image .works-category {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 14px;
	background-color: var(--primary-color);
	color: var(--text-inverse);
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: var(--radius-full);
}

#index-works .works-content {
	padding: 20px;
}

#index-works .works-content .works-title {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
	line-height: 1.5;
}

#index-works .works-content .works-location {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.875rem;
	color: var(--text-secondary);
}

#index-works .works-content .works-location .material-symbols-rounded {
	font-size: 1rem;
	color: var(--primary-color);
}

#index-works .works-footer {
	text-align: center;
}

/* ./parts/company-cta.html */

#company-cta {
	background: linear-gradient(135deg, #0ABAB5 0%, #08A8A4 100%);
	position: relative;
	overflow: hidden;
}

#company-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

#company-cta::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 50%;
}

#company-cta .cta-inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	position: relative;
	z-index: 1;
}

#company-cta .cta-icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

#company-cta .cta-icon .material-symbols-rounded {
	font-size: 40px;
	color: #FFFFFF;
}

#company-cta .cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 16px;
	line-height: 1.4;
}

@media (max-width: 768px) {

	#company-cta .cta-title {
		font-size: 1.5rem
	}
}

#company-cta .cta-text {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	line-height: 1.8;
}

@media (max-width: 768px) {

	#company-cta .cta-text {
		font-size: 0.9375rem
	}
}

#company-cta .cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

#company-cta .btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 36px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

#company-cta .btn-cta.btn-white {
	background-color: #FFFFFF;
	color: #0ABAB5;
}

#company-cta .btn-cta.btn-white:hover {
	background-color: #F8F9FA;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#company-cta .btn-cta.btn-outline-white {
	background-color: transparent;
	color: #FFFFFF;
	border: 2px solid rgba(255, 255, 255, 0.5);
}

#company-cta .btn-cta.btn-outline-white:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #FFFFFF;
	transform: translateY(-3px);
}

#company-cta .btn-cta .material-symbols-rounded {
	font-size: 1.25rem;
}

#company-cta .cta-contact-info {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#company-cta .cta-contact-info .contact-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 12px;
}

#company-cta .cta-contact-info .contact-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFFFFF;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

#company-cta .cta-contact-info .contact-phone:hover {
	opacity: 0.8;
}

#company-cta .cta-contact-info .contact-phone .material-symbols-rounded {
	font-size: 1.75rem;
}

@media (max-width: 768px) {

	#company-cta .cta-contact-info .contact-phone {
		font-size: 1.25rem
	}
}

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

#index-cta {
	background: linear-gradient(135deg, #0ABAB5 0%, #08A8A4 100%);
	position: relative;
	overflow: hidden;
}

#index-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

#index-cta::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 40%;
	height: 150%;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

#index-cta .cta-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	position: relative;
	z-index: 1;
}

#index-cta .cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	margin-bottom: 24px;
}

#index-cta .cta-icon .material-symbols-rounded {
	font-size: 40px;
	color: #FFFFFF;
}

@media (max-width: 768px) {

	#index-cta .cta-icon {
		width: 70px;
		height: 70px
	}

	#index-cta .cta-icon .material-symbols-rounded {
		font-size: 32px;
	}
}

#index-cta .cta-title {
	font-size: 2rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 16px;
	line-height: 1.4;
}

@media (max-width: 768px) {

	#index-cta .cta-title {
		font-size: 1.5rem
	}
}

#index-cta .cta-description {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	line-height: 1.8;
}

@media (max-width: 768px) {

	#index-cta .cta-description {
		font-size: 1rem;
		margin-bottom: 28px
	}
}

#index-cta .cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

#index-cta .btn-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	background-color: #FFFFFF;
	color: #0ABAB5;
	font-size: 1.125rem;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#index-cta .btn-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

#index-cta .btn-cta-primary .material-symbols-rounded {
	font-size: 1.375rem;
}

@media (max-width: 768px) {

	#index-cta .btn-cta-primary {
		padding: 16px 32px;
		font-size: 1rem;
		width: 100%;
		justify-content: center
	}
}

#index-cta .cta-phone {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: #FFFFFF;
}

#index-cta .cta-phone .phone-label {
	font-size: 0.875rem;
	opacity: 0.9;
}

#index-cta .cta-phone .phone-number {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	color: #FFFFFF;
	transition: opacity 0.3s ease;
}

#index-cta .cta-phone .phone-number:hover {
	opacity: 0.8;
}

#index-cta .cta-phone .phone-number .material-symbols-rounded {
	font-size: 1.5rem;
}

@media (max-width: 768px) {

	#index-cta .cta-phone .phone-number {
		font-size: 1.25rem
	}
}

@media (max-width: 768px) {

	#index-cta .cta-phone {
		margin-top: 8px
	}
}

#index-cta .cta-note {
	margin-top: 24px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
}

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

#services {
	background-color: var(--bg-white);
}

#services .services-header {
	text-align: center;
	margin-bottom: 60px;
}

@media (max-width: 768px) {

	#services .services-header {
		margin-bottom: 40px
	}
}

#services .services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

@media (max-width: 1024px) {

	#services .services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px
	}
}

@media (max-width: 640px) {

	#services .services-grid {
		grid-template-columns: 1fr;
		gap: 16px
	}
}

#services .service-card {
	background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
	border-radius: var(--radius-lg);
	padding: 40px 24px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

#services .service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color) 0%, #08D9D3 100%);
	transform: scaleX(0);
	transition: transform var(--transition-normal);
}

#services .service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
}

#services .service-card:hover::before {
	transform: scaleX(1);
}

#services .service-card:hover .service-icon {
	transform: scale(1.1);
	background-color: var(--primary-color);
}

#services .service-card:hover .service-icon .material-symbols-rounded {
	color: var(--text-inverse);
}

@media (max-width: 768px) {

	#services .service-card {
		padding: 32px 20px
	}
}

#services .service-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background-color: rgba(10, 186, 181, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-normal);
}

#services .service-icon .material-symbols-rounded {
	font-size: 36px;
	color: var(--primary-color);
	transition: color var(--transition-normal);
}

@media (max-width: 768px) {

	#services .service-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 20px
	}

	#services .service-icon .material-symbols-rounded {
		font-size: 32px;
	}
}

#services .service-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 12px;
	line-height: 1.4;
}

@media (max-width: 768px) {

	#services .service-title {
		font-size: 1rem
	}
}

#services .service-description {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

#services .services-note {
	text-align: center;
	margin-top: 48px;
	padding: 24px;
	background-color: var(--bg-light);
	border-radius: var(--radius-md);
}

#services .services-note p {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

#services .services-note p .highlight {
	color: var(--primary-color);
	font-weight: 600;
}

@media (max-width: 768px) {

	#services .services-note {
		margin-top: 32px;
		padding: 20px 16px
	}

	#services .services-note p {
		font-size: 0.875rem;
	}
}

/* ./parts/company-overview.html */

.company-overview {
	background-color: var(--bg-white);
}

.company-overview .page-header {
	text-align: center;
	margin-bottom: 60px;
}

@media (max-width: 768px) {

	.company-overview .page-header {
		margin-bottom: 40px
	}
}

.company-overview .page-header .page-title-en {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 8px;
}

.company-overview .page-header .page-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
}

@media (max-width: 768px) {

	.company-overview .page-header .page-title {
		font-size: 2rem
	}
}

.company-overview .overview-table {
	max-width: 900px;
	margin: 0 auto;
	background-color: var(--bg-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.company-overview .overview-table .table-row {
	display: grid;
	grid-template-columns: 180px 1fr;
	border-bottom: 1px solid var(--border-light);
}

@media (max-width: 768px) {

	.company-overview .overview-table .table-row {
		grid-template-columns: 1fr
	}
}

.company-overview .overview-table .table-row:last-child {
	border-bottom: none;
}

.company-overview .overview-table .table-header {
	background-color: var(--bg-light);
	padding: 20px 24px;
	font-weight: 600;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

@media (max-width: 768px) {

	.company-overview .overview-table .table-header {
		padding: 16px 20px;
		background-color: rgba(10, 186, 181, 0.08)
	}
}

.company-overview .overview-table .table-header .material-symbols-rounded {
	font-size: 1.25rem;
	color: var(--primary-color);
}

.company-overview .overview-table .table-data {
	padding: 20px 24px;
	color: var(--text-secondary);
	line-height: 1.8;
	display: flex;
	align-items: center;
}

@media (max-width: 768px) {

	.company-overview .overview-table .table-data {
		padding: 16px 20px;
		border-bottom: 1px solid var(--border-light)
	}
}

.company-overview .overview-table .table-data ul {
	list-style: none;
}

.company-overview .overview-table .table-data ul li {
	position: relative;
	padding-left: 16px;
	margin-bottom: 4px;
}

.company-overview .overview-table .table-data ul li:last-child {
	margin-bottom: 0;
}

.company-overview .overview-table .table-data ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background-color: var(--primary-color);
	border-radius: 50%;
}

/* ./parts/works-cta.html */

#works-cta {
	background: linear-gradient(135deg, #0ABAB5 0%, #08A8A4 100%);
	position: relative;
	overflow: hidden;
}

#works-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

#works-cta::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 40%;
	height: 150%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

#works-cta .cta-inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	position: relative;
	z-index: 1;
}

#works-cta .cta-icon {
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

#works-cta .cta-icon .material-symbols-rounded {
	font-size: 40px;
	color: #FFFFFF;
}

#works-cta .cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 16px;
	line-height: 1.4;
}

@media (max-width: 768px) {

	#works-cta .cta-title {
		font-size: 1.5rem
	}
}

#works-cta .cta-text {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	margin-bottom: 32px;
}

@media (max-width: 768px) {

	#works-cta .cta-text {
		font-size: 0.9375rem
	}
}

#works-cta .cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

#works-cta .btn-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 18px 40px;
	background-color: #FFFFFF;
	color: #0ABAB5;
	font-size: 1.0625rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

#works-cta .btn-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#works-cta .btn-cta-primary .material-symbols-rounded {
	font-size: 1.25rem;
}

@media (max-width: 480px) {

	#works-cta .btn-cta-primary {
		width: 100%;
		justify-content: center;
		padding: 16px 32px
	}
}

#works-cta .btn-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 18px 40px;
	background-color: transparent;
	color: #FFFFFF;
	font-size: 1.0625rem;
	font-weight: 600;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

#works-cta .btn-cta-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #FFFFFF;
	transform: translateY(-3px);
}

#works-cta .btn-cta-secondary .material-symbols-rounded {
	font-size: 1.25rem;
}

@media (max-width: 480px) {

	#works-cta .btn-cta-secondary {
		width: 100%;
		justify-content: center;
		padding: 16px 32px
	}
}

#works-cta .cta-contact-info {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#works-cta .cta-contact-info .contact-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 8px;
}

#works-cta .cta-contact-info .contact-tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFFFFF;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

#works-cta .cta-contact-info .contact-tel:hover {
	opacity: 0.8;
}

#works-cta .cta-contact-info .contact-tel .material-symbols-rounded {
	font-size: 1.5rem;
}

@media (max-width: 480px) {

	#works-cta .cta-contact-info .contact-tel {
		font-size: 1.25rem
	}
}

/* ./parts/company-access.html */

#company-access {
	background-color: var(--bg-white);
}

#company-access .access-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

#company-access .section-header {
	text-align: center;
	margin-bottom: 50px;
}

#company-access .access-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

@media (max-width: 968px) {

	#company-access .access-content {
		grid-template-columns: 1fr;
		gap: 30px
	}
}

#company-access .access-info {
	background-color: var(--bg-light);
	border-radius: var(--radius-lg);
	padding: 40px;
}

@media (max-width: 768px) {

	#company-access .access-info {
		padding: 30px 24px
	}
}

#company-access .access-info .info-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 10px;
}

#company-access .access-info .info-title .material-symbols-rounded {
	color: var(--primary-color);
	font-size: 1.5rem;
}

#company-access .access-info .info-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#company-access .access-info .info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

#company-access .access-info .info-item .icon-wrapper {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--primary-color) 0%, #08A8A4 100%);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

#company-access .access-info .info-item .icon-wrapper .material-symbols-rounded {
	color: white;
	font-size: 1.25rem;
}

#company-access .access-info .info-item .item-content {
	flex: 1;
}

#company-access .access-info .info-item .item-content .item-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

#company-access .access-info .info-item .item-content .item-value {
	font-size: 0.9375rem;
	color: var(--text-color);
	line-height: 1.6;
}

#company-access .access-info .access-note {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--border-light);
}

#company-access .access-info .access-note p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.7;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

#company-access .access-info .access-note p .material-symbols-rounded {
	color: var(--primary-color);
	font-size: 1.125rem;
	flex-shrink: 0;
	margin-top: 2px;
}

#company-access .access-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	height: 100%;
	min-height: 400px;
}

@media (max-width: 968px) {

	#company-access .access-map {
		min-height: 350px
	}
}

#company-access .access-map iframe {
	width: 100%;
	height: 100%;
	min-height: 400px;
	border: none;
	display: block;
}

@media (max-width: 968px) {

	#company-access .access-map iframe {
		min-height: 350px
	}
}

#company-access .directions-btn {
	margin-top: 20px;
}

#company-access .directions-btn a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background-color: var(--bg-white);
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: all var(--transition-normal);
}

#company-access .directions-btn a:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

#company-access .directions-btn a .material-symbols-rounded {
	font-size: 1.125rem;
}

/* ./parts/company-philosophy.html */

.company-philosophy {
	background-color: var(--bg-white);
}

.company-philosophy .philosophy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.company-philosophy .philosophy-header {
	text-align: center;
	margin-bottom: 60px;
}

@media (max-width: 768px) {

	.company-philosophy .philosophy-header {
		margin-bottom: 40px
	}
}

.company-philosophy .philosophy-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

@media (max-width: 768px) {

	.company-philosophy .philosophy-grid {
		grid-template-columns: 1fr;
		gap: 30px
	}
}

.company-philosophy .philosophy-card {
	background: linear-gradient(135deg, #FAFBFC 0%, #F8F9FA 100%);
	border-radius: 16px;
	padding: 50px 40px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {

	.company-philosophy .philosophy-card {
		padding: 40px 30px
	}
}

.company-philosophy .philosophy-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #0ABAB5 0%, #08D9D4 100%);
}

.company-philosophy .philosophy-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(10, 186, 181, 0.12);
}

.company-philosophy .philosophy-card .card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #0ABAB5 0%, #08A8A4 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.company-philosophy .philosophy-card .card-icon .material-symbols-rounded {
	font-size: 28px;
	color: white;
}

.company-philosophy .philosophy-card .card-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #0ABAB5;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 8px;
}

.company-philosophy .philosophy-card .card-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: #333333;
	margin-bottom: 16px;
	line-height: 1.4;
}

@media (max-width: 768px) {

	.company-philosophy .philosophy-card .card-title {
		font-size: 1.25rem
	}
}

.company-philosophy .philosophy-card .card-description {
	font-size: 1rem;
	color: #666666;
	line-height: 1.8;
}

.company-philosophy .philosophy-quote {
	margin-top: 60px;
	text-align: center;
	padding: 50px 40px;
	background: linear-gradient(135deg, rgba(10, 186, 181, 0.05) 0%, rgba(10, 186, 181, 0.02) 100%);
	border-radius: 16px;
	position: relative;
}

@media (max-width: 768px) {

	.company-philosophy .philosophy-quote {
		margin-top: 40px;
		padding: 40px 24px
	}
}

.company-philosophy .philosophy-quote::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 30px;
	font-size: 80px;
	color: rgba(10, 186, 181, 0.15);
	font-family: Georgia, serif;
	line-height: 1;
}

@media (max-width: 768px) {

	.company-philosophy .philosophy-quote::before {
		font-size: 60px;
		top: 10px;
		left: 15px
	}
}

.company-philosophy .philosophy-quote .quote-text {
	font-size: 1.25rem;
	font-weight: 500;
	color: #333333;
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {

	.company-philosophy .philosophy-quote .quote-text {
		font-size: 1.0625rem
	}
}

.company-philosophy .philosophy-quote .quote-author {
	margin-top: 20px;
	font-size: 0.9375rem;
	color: #666666;
}

.company-philosophy .philosophy-quote .quote-author span {
	color: #0ABAB5;
	font-weight: 600;
}

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

.hero {
	position: relative;
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

@media (max-width: 768px) {

	.hero {
		min-height: calc(100vh - 70px)
	}
}

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

.hero .hero-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.hero .hero-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.92) 0%,
			rgba(255, 255, 255, 0.85) 50%,
			rgba(248, 249, 250, 0.8) 100%);
}

.hero .hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 60px 20px;
}

@media (max-width: 768px) {

	.hero .hero-content {
		padding: 40px 20px
	}
}

.hero .hero-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #0ABAB5;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 24px;
	padding: 8px 20px;
	background-color: rgba(10, 186, 181, 0.08);
	border-radius: 30px;
}

@media (max-width: 768px) {

	.hero .hero-subtitle {
		font-size: 0.75rem;
		margin-bottom: 20px
	}
}

.hero .hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #333333;
	line-height: 1.3;
	margin-bottom: 24px;
	letter-spacing: 0.05em;
}

@media (max-width: 1024px) {

	.hero .hero-title {
		font-size: 2.75rem
	}
}

@media (max-width: 768px) {

	.hero .hero-title {
		font-size: 2rem;
		margin-bottom: 20px
	}
}

@media (max-width: 480px) {

	.hero .hero-title {
		font-size: 1.75rem
	}
}

.hero .hero-title .highlight {
	color: #0ABAB5;
	position: relative;
	display: inline-block;
}

.hero .hero-title .highlight::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	right: 0;
	height: 8px;
	background-color: rgba(10, 186, 181, 0.2);
	z-index: -1;
	border-radius: 2px;
}

@media (max-width: 768px) {

	.hero .hero-title .highlight::after {
		height: 6px;
		bottom: 2px
	}
}

.hero .hero-description {
	font-size: 1.125rem;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {

	.hero .hero-description {
		font-size: 1rem;
		margin-bottom: 32px
	}
}

.hero .hero-cta {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 480px) {

	.hero .hero-cta {
		flex-direction: column;
		align-items: center
	}

	.hero .hero-cta .btn {
		width: 100%;
		max-width: 280px;
	}
}

.hero .hero-decorations {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.hero .hero-decorations .decoration {
	position: absolute;
	border-radius: 50%;
	opacity: 0.5;
}

.hero .hero-decorations .decoration.decoration-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(10, 186, 181, 0.1) 0%, transparent 70%);
	top: -100px;
	right: -100px;
}

@media (max-width: 768px) {

	.hero .hero-decorations .decoration.decoration-1 {
		width: 250px;
		height: 250px;
		top: -50px;
		right: -50px
	}
}

.hero .hero-decorations .decoration.decoration-2 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(10, 186, 181, 0.08) 0%, transparent 70%);
	bottom: -50px;
	left: -50px;
}

@media (max-width: 768px) {

	.hero .hero-decorations .decoration.decoration-2 {
		width: 200px;
		height: 200px
	}
}

.hero .hero-decorations .decoration.decoration-3 {
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(10, 186, 181, 0.12) 0%, transparent 70%);
	top: 30%;
	left: 10%;
}

@media (max-width: 768px) {

	.hero .hero-decorations .decoration.decoration-3 {
		display: none
	}
}

.hero .scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #999999;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	animation: bounce 2s infinite;
}

@media (max-width: 768px) {

	.hero .scroll-indicator {
		bottom: 24px
	}
}

.hero .scroll-indicator .material-symbols-rounded {
	font-size: 1.5rem;
	color: #0ABAB5;
}

@keyframes bounce {

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

	40% {
		transform: translateX(-50%) translateY(-8px);
	}

	60% {
		transform: translateX(-50%) translateY(-4px);
	}
}

/* ./parts/index-message.html */

#message {
	background-color: var(--bg-white);
	position: relative;
	overflow: hidden;
}

#message::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(10, 186, 181, 0.02) 0%, rgba(255, 255, 255, 0) 50%);
	pointer-events: none;
}

#message .message-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

#message .message-header {
	text-align: center;
	margin-bottom: 60px;
}

@media (max-width: 768px) {

	#message .message-header {
		margin-bottom: 40px
	}
}

#message .message-content {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 60px;
	align-items: start;
}

@media (max-width: 1024px) {

	#message .message-content {
		grid-template-columns: 250px 1fr;
		gap: 40px
	}
}

@media (max-width: 768px) {

	#message .message-content {
		grid-template-columns: 1fr;
		gap: 30px
	}
}

#message .message-photo {
	position: relative;
}

@media (max-width: 768px) {

	#message .message-photo {
		max-width: 250px;
		margin: 0 auto
	}
}

#message .message-photo .photo-wrapper {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

#message .message-photo .photo-wrapper::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: 10px;
	bottom: 10px;
	border: 3px solid var(--primary-color);
	border-radius: var(--radius-lg);
	z-index: -1;
}

#message .message-photo .photo-wrapper img {
	width: 100%;
	aspect-ratio: 3 / 4;
	-o-object-fit: cover;
	object-fit: cover;
}

#message .message-photo .photo-caption {
	text-align: center;
	margin-top: 20px;
}

#message .message-photo .photo-caption .position {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

#message .message-photo .photo-caption .name {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-color);
}

#message .message-text .lead {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.8;
	margin-bottom: 30px;
	padding-left: 20px;
	border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {

	#message .message-text .lead {
		font-size: 1.125rem;
		margin-bottom: 24px
	}
}

#message .message-text .paragraphs {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#message .message-text .paragraphs p {
	font-size: 1rem;
	line-height: 2;
	color: var(--text-color);
}

@media (max-width: 768px) {

	#message .message-text .paragraphs p {
		font-size: 0.9375rem;
		line-height: 1.9
	}
}

#message .message-text .signature {
	margin-top: 40px;
	text-align: right;
}

@media (max-width: 768px) {

	#message .message-text .signature {
		margin-top: 30px
	}
}

#message .message-text .signature .position {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

#message .message-text .signature .name {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--text-color);
}

#message .message-values {
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

@media (max-width: 768px) {

	#message .message-values {
		margin-top: 50px;
		grid-template-columns: 1fr;
		gap: 20px
	}
}

#message .message-values .value-card {
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
	border-radius: var(--radius-lg);
	padding: 40px;
	text-align: center;
	border: 1px solid var(--border-light);
	transition: all var(--transition-normal);
}

@media (max-width: 768px) {

	#message .message-values .value-card {
		padding: 30px
	}
}

#message .message-values .value-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-color);
}

#message .message-values .value-card .value-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--primary-color) 0%, #08A8A4 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#message .message-values .value-card .value-icon .material-symbols-rounded {
	font-size: 28px;
	color: white;
}

#message .message-values .value-card .value-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

#message .message-values .value-card .value-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 12px;
}

@media (max-width: 768px) {

	#message .message-values .value-card .value-title {
		font-size: 1.125rem
	}
}

#message .message-values .value-card .value-description {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ./parts/works-gallery.html */

.works-gallery {
	background-color: var(--bg-white);
}

.works-gallery .page-header {
	text-align: center;
	margin-bottom: 60px;
}

@media (max-width: 768px) {

	.works-gallery .page-header {
		margin-bottom: 40px
	}
}

.works-gallery .page-header .page-label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 12px;
}

.works-gallery .page-header .page-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 20px;
}

@media (max-width: 768px) {

	.works-gallery .page-header .page-title {
		font-size: 2rem
	}
}

.works-gallery .page-header .page-description {
	font-size: 1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

.works-gallery .filter-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

@media (max-width: 768px) {

	.works-gallery .filter-tabs {
		margin-bottom: 40px;
		gap: 8px
	}
}

.works-gallery .filter-tabs .filter-btn {
	padding: 10px 24px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-secondary);
	background-color: var(--bg-light);
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all var(--transition-normal);
}

@media (max-width: 768px) {

	.works-gallery .filter-tabs .filter-btn {
		padding: 8px 18px;
		font-size: 0.875rem
	}
}

.works-gallery .filter-tabs .filter-btn:hover {
	color: var(--primary-color);
	background-color: rgba(10, 186, 181, 0.1);
}

.works-gallery .filter-tabs .filter-btn.active {
	color: var(--text-inverse);
	background-color: var(--primary-color);
}

.works-gallery .gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 1024px) {

	.works-gallery .gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px
	}
}

@media (max-width: 640px) {

	.works-gallery .gallery-grid {
		grid-template-columns: 1fr;
		gap: 16px
	}
}

.works-gallery .gallery-item {
	background-color: var(--bg-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-normal);
}

.works-gallery .gallery-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}

.works-gallery .gallery-item:hover .gallery-image img {
	transform: scale(1.05);
}

.works-gallery .gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.works-gallery .gallery-item .gallery-image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.works-gallery .gallery-item .gallery-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.works-gallery .gallery-item .gallery-image .gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.works-gallery .gallery-item .gallery-image .gallery-overlay .view-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background-color: var(--bg-white);
	color: var(--text-color);
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: all var(--transition-normal);
}

.works-gallery .gallery-item .gallery-image .gallery-overlay .view-btn:hover {
	background-color: var(--primary-color);
	color: var(--text-inverse);
}

.works-gallery .gallery-item .gallery-image .gallery-overlay .view-btn .material-symbols-rounded {
	font-size: 1.125rem;
}

.works-gallery .gallery-item .gallery-content {
	padding: 20px;
}

.works-gallery .gallery-item .gallery-content .gallery-category {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primary-color);
	background-color: rgba(10, 186, 181, 0.1);
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.works-gallery .gallery-item .gallery-content .gallery-title {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
	line-height: 1.5;
}

.works-gallery .gallery-item .gallery-content .gallery-location {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.works-gallery .gallery-item .gallery-content .gallery-location .material-symbols-rounded {
	font-size: 1rem;
}

.works-gallery .no-results {
	text-align: center;
	padding: 60px 20px;
	color: var(--text-secondary);
}

.works-gallery .no-results .material-symbols-rounded {
	font-size: 3rem;
	color: var(--border-light);
	margin-bottom: 16px;
}

.works-gallery .no-results p {
	font-size: 1rem;
}