/* Base Styles */
:root {
	--primary-color: #f97316;
	--primary-hover: #ea580c;
	--text-color: #ffffff;
	--text-muted: #9ca3af;
	--bg-color: #000000;
	--bg-secondary: #0a0a0a;
	--bg-tertiary: #141414;
	--border-color: #374151;
	--footer-bg: #ffffff;
	--footer-text: #000000;
	--footer-muted: #4b5563;
}

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

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
}

.text-center {
	text-align: center;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: transparent;
	transition: background-color 0.3s ease;
}

.header.scrolled {
	background-color: #24211E;
}

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

.logo-text {
	font-weight: 700;
	font-size: 1.25rem;
}

.desktop-nav {
	display: none;
}

.nav-list {
	display: flex;
	gap: 1.5rem;
}

.nav-link {
	font-size: 0.875rem;
	transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
	color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-button {
	display: block;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 100;
	position: relative;
	width: 30px;
	height: 30px;
}

.mobile-menu-button span {
	display: block;
	width: 25px;
	height: 0.5px;
	background-color: var(--text-color);
	position: absolute;
	left: 2px;
	transition: all 0.3s ease-in-out;
}

.mobile-menu-button span:nth-child(1) {
	top: 8px;
}

.mobile-menu-button span:nth-child(2) {
	top: 14px;
}

.mobile-menu-button span:nth-child(3) {
	top: 20px;
}

.mobile-menu-button.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 14px;
}

.mobile-menu-button.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 14px;
}

.mobile-menu-button:hover span {
	background-color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--bg-color);
	z-index: 99;
	padding: 120px 0 0;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.mobile-nav.active {
	transform: translateX(0);
}

.mobile-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 60px;
}

.mobile-nav-link {
	display: block;
	color: var(--text-color);
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: 500;
	transition: color 0.3s ease;
	letter-spacing: 0.02em;
	padding: 0 40px;
}

.mobile-nav-link:hover {
	color: var(--primary-color);
}

.mobile-nav-header {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding: 20px;
	background-color: var(--bg-color);
	z-index: 100;
}

/* Desktop Media Query */
@media (min-width: 769px) {
	.desktop-nav {
		display: block;
	}

	.mobile-menu-button {
		display: none;
	}

	.mobile-nav {
		display: none;
	}
}

/* Hero Section */
.hero-section {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	color: white;
	overflow: hidden;
	padding-left: 5%;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 20px;
	margin: 0;
}

.hero-title {
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700;
	font-size: 3.5rem;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-family: 'Zen Old Mincho', serif;
	font-weight: 500;
	font-size: 1.5rem;
	margin-bottom: 2rem;
	line-height: 1.4;
}

.hero-cta {
	width: 580px;
	height: 170px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 12;
}

.cta-button {
	color: #fff;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 160px;
	padding-right: 40px;
	background-color: #2c2926;
	transition: background-color 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ribbon {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	color: white;
	padding: 6px 40px;
	font-size: 0.8rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	width: 120px;
	text-align: center;
}

.cta-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cta-small-text {
	font-size: 0.9rem;
	opacity: 0.7;
	font-weight: normal;
	letter-spacing: 0.02em;
}

.cta-text {
	font-size: 2rem;
	font-weight: 500;
}

.cta-icon {
	font-size: 2rem;
	transition: transform 0.3s ease;
	margin-left: 4px;
}

.cta-button:hover {
	background-color: #3c3936;
}

.cta-button:hover .cta-icon {
	transform: translateX(10px);
}

.demo-button {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.demo-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.product-link {
	color: var(--primary-color);
	transition: color 0.3s;
}

.product-link:hover {
	color: var(--primary-hover);
}

/* Tech Section */
.tech-section {
	position: relative;
	padding: 4rem 0;
	overflow: hidden;
}

#particles-js {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: transparent;
}

.tech-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.geometric-pattern {
	position: absolute;
	width: 200%;
	height: 200%;
	background: 
		linear-gradient(45deg, rgba(36, 33, 30, 0.1) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(36, 33, 30, 0.1) 25%, transparent 25%),
		linear-gradient(45deg, transparent 75%, rgba(36, 33, 30, 0.1) 75%),
		linear-gradient(-45deg, transparent 75%, rgba(36, 33, 30, 0.1) 75%);
	background-size: 100px 100px;
	background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
	animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-50px, -50px);
	}
}

.tech-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.section-title {
	font-size: 60px;
	margin-bottom: 1rem;
}

.section-divider {
	width: 4rem;
	height: 0.25rem;
	background-color: var(--text-color);
	margin-bottom: 1rem;
}

.tech-visual {
	position: relative;
}

.circle-container {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
}

.circle-image-container {
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	overflow: hidden;
	border: 4px solid var(--border-color);
}

.circle-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stats-box {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 1rem;
	backdrop-filter: blur(8px);
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.stats-number {
	font-size: 2.5rem;
	font-weight: 700;
}

.stats-plus {
	font-size: 0.875rem;
	vertical-align: top;
}

.stats-description {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 0.5rem;
}

.stats-box.visible {
	opacity: 1;
	transform: scale(1);
}

/* Video Section */
.video-section {
	padding: 4rem 0;
}

.video-container {
	position: relative;
	aspect-ratio: 16 / 9;
}

.video-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-button-container {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.play-button {
	width: 4rem;
	height: 4rem;
	border-radius: 9999px;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	color: var(--text-color);
}

.video-label {
	font-size: 1.25rem;
	font-weight: bold;
	text-align: left;
}

/* Service Section */
.service-section {
	padding: 4rem 0;
}

.section-header {
	margin-bottom: 2rem;
}

.service-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.service-card {
	background-color: var(--bg-tertiary);
	padding: 1.5rem;
}

.service-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.service-description {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-bottom: 1rem;
}

.service-image-container {
	aspect-ratio: 16 / 9;
	position: relative;
}

.service-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Media Section */
.media-section {
	padding: 4rem 0;
}

.section-header-with-link {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2rem;
}

.view-all-link {
	font-size: 0.875rem;
	color: var(--primary-color);
}

.media-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.featured-image-container {
	position: relative;
	aspect-ratio: 16 / 9;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.featured-image-container:hover {
	transform: scale(1.02);
}

.featured-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.featured-image-container:hover .featured-image {
	transform: scale(1.05);
}

.article-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.article-description {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.article-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.article-item {
	display: flex;
	gap: 1rem;
}

.article-thumbnail-container {
	width: 33.333%;
	aspect-ratio: 1 / 1;
	position: relative;
}

.article-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-content {
	width: 66.666%;
}

.article-item-title {
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.article-item-description {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.article-link {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform 0.3s ease;
}

.article-link:hover {
	transform: translateX(10px);
}

.article-link:hover .article-item-title {
	color: var(--primary-color);
}

/* History Section */
.history-section {
	padding: 80px 0;
	background-color: var(--bg-secondary);
}

.history-banner {
	position: relative;
	margin-bottom: 60px;
	border-radius: 8px;
	overflow: hidden;
}

.history-banner-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.history-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.history-title {
	font-size: 2.5rem;
	color: var(--text-color);
	text-align: center;
}

.history-points {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 0 auto;
}

.history-point {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	position: relative;
}

.history-point::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: var(--primary-color);
	opacity: 0.3;
}

.point-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	padding: 8px 16px;
	border-radius: 4px;
	position: relative;
	z-index: 1;
	min-width: 80px;
	text-align: center;
}

.point-content {
	flex: 1;
	background-color: var(--bg-tertiary);
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.point-content.visible {
	opacity: 1;
	transform: translateY(0);
}

.point-title {
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: var(--primary-color);
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.point-content.visible .point-title {
	opacity: 1;
	transform: translateX(0);
}

.point-description {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-muted);
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.point-content.visible .point-description {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 768px) {
	.history-point {
		flex-direction: column;
		gap: 20px;
	}

	.point-number {
		width: 100%;
		text-align: left;
	}

	.history-point::before {
		left: 0;
		top: 40px;
		bottom: 0;
	}
}

/* Gallery Section */
.gallery-section {
	padding: 4rem 0;
}

.gallery-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.gallery-item {
	position: relative;
	aspect-ratio: 16 / 9;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-label {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
}

.gallery-title {
	font-size: 1.125rem;
	font-weight: 700;
}

.gallery-divider {
	width: 3rem;
	height: 0.25rem;
	background-color: var(--text-color);
	margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
	padding: 4rem 0;
}

.office-image-container {
	aspect-ratio: 16 / 9;
	position: relative;
	margin-bottom: 2rem;
}

.office-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.contact-text {
	text-align: center;
}

.contact-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.contact-description {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.contact-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background-color: var(--text-color);
	color: var(--bg-color);
	font-weight: 700;
	transition: background-color 0.3s;
}

.contact-button:hover {
	background-color: var(--text-muted);
}

/* Footer */
.footer {
	padding: 4rem 0;
	background-color: var(--footer-bg);
	color: var(--footer-text);
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer-brand {
	margin-bottom: 2rem;
}

.footer-logo {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.footer-tagline {
	font-size: 0.875rem;
	color: var(--footer-muted);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.footer-heading {
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.footer-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-link {
	font-size: 0.75rem;
	color: var(--footer-muted);
	transition: color 0.3s;
}

.footer-link:hover {
	color: var(--primary-color);
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
}

.copyright {
	font-size: 0.75rem;
	color: var(--footer-muted);
}

/* Page Header */
.page-header {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 4rem;
}

.page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, var(--bg-tertiary), var(--bg-color));
	z-index: -1;
}

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

.page-divider {
	width: 6rem;
	height: 0.25rem;
	background-color: var(--primary-color);
	margin-bottom: 2rem;
}

/* Company Overview */
.company-overview {
	padding: 4rem 0;
	background-color: var(--bg-tertiary);
}

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

.overview-table table {
	width: 100%;
	border-collapse: collapse;
}

.overview-table th, .overview-table td {
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-color);
}

.overview-table th {
	text-align: left;
	font-weight: normal;
	color: var(--text-muted);
	padding-right: 1rem;
	width: 30%;
}

.overview-image {
	position: relative;
	aspect-ratio: 16 / 9;
}

.company-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CEO Message */
.ceo-message {
	padding: 100px 0;
	background-color: var(--bg-secondary);
	margin-bottom: 140px;
	position: relative;
}

.ceo-message::after {
	content: '';
	position: absolute;
	bottom: -70px;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
	.header-container {
		background-color: #24211E;
	}

	.hero-section {
		height: 140vw;
	}

	.hero-content {
		margin-top: 150px;
	}

	.message-content {
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin-top: 30px;
	}

	.ceo-image-container {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.message-text {
		width: 100%;
	}
}

.ceo-image-container {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ceo-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ceo-image:hover {
	transform: scale(1.05);
}

.message-text {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.message-heading {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.message-highlight {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--primary-color);
	margin: 1.5rem 0;
}

.achievement-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 1.5rem 0;
}

.achievement-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.check-mark {
	color: var(--primary-color);
	font-size: 1.2rem;
}

.message-quote {
	font-style: italic;
	padding: 1.5rem;
	margin: 1.5rem 0;
}

.message-closing {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-top: 2rem;
}

.message-cta {
	margin-top: 1.2rem;
	text-align: center;
}

.contact-prompt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.email-icon {
	font-size: 1.5rem;
	color: var(--primary-color);
}

.contact-text {
	font-size: 1.125rem;
	font-weight: 600;
}

.contact-button {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: var(--primary-color);
	color: white;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.contact-button:hover {
	background-color: var(--primary-hover);
}

/* Company History */
.company-history {
	padding: 100px 0;
	position: relative;
	margin-top: 70px;
}

.company-history::before {
	content: '';
	position: absolute;
	top: -70px;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 60px auto 0;
	padding-top: 40px;
}

.timeline-item {
	position: relative;
	margin-bottom: 4rem;
	padding-left: 4rem;
}

.timeline-marker {
	position: absolute;
	left: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.25rem;
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.timeline-year {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.timeline-description {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Contact Form */
.contact-form-section {
	padding: 100px 0;
	background-color: var(--bg-secondary);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-info {
	padding: 40px;
}

.contact-heading {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

.contact-intro {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	transition: transform 0.3s ease;
}

.contact-method:hover {
	transform: translateY(-2px);
}

.contact-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	color: white;
}

.contact-method-content {
	flex: 1;
}

.contact-method-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}

.contact-method-detail {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.contact-form-container {
	padding: 40px;
	background-color: var(--bg-tertiary);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-label {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-color);
}

.required {
	color: var(--primary-color);
	margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
	padding: 0.75rem 1rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	color: var(--text-color);
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

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

.checkbox-group {
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
}

.form-checkbox {
	width: 18px;
	height: 18px;
	accent-color: var(--primary-color);
}

.checkbox-label {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.submit-button {
	padding: 1rem 2rem;
	background-color: var(--primary-color);
	color: white;
	border: none;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-button:hover {
	background-color: var(--primary-hover);
}

/* FAQ Section */
.faq-section {
	padding: 100px 0;
	background-color: var(--bg-color);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 3rem auto 0;
}

.faq-item {
	padding: 2rem;
	background-color: var(--bg-tertiary);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.faq-answer {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Section Animations */
.section-fade-in {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-slide-in-left {
	opacity: 1;
	transform: translateX(0);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-slide-in-right {
	opacity: 1;
	transform: translateX(0);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Interactive Elements */
.interactive-element {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive-element:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media (min-width: 768px) {
	.desktop-nav {
		display: block;
	}

	.mobile-menu-button {
		display: none;
	}

	.mobile-nav {
		display: none;
	}

	.hero-title {
		font-size: 4rem;
	}

	.hero-subtitle {
		font-size: 1.875rem;
	}

	.tech-content {
		flex-direction: row;
	}

	.tech-text {
		width: 50%;
	}

	.tech-visual {
		width: 50%;
	}

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

	.media-grid {
		grid-template-columns: 2fr 1fr;
	}

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

	.contact-cta {
		flex-direction: row;
		justify-content: space-between;
	}

	.contact-text {
		text-align: left;
	}

	.footer-content {
		flex-direction: row;
		justify-content: space-between;
	}

	.footer-brand {
		width: 30%;
		margin-bottom: 0;
	}

	.footer-links {
		width: 70%;
		grid-template-columns: repeat(4, 1fr);
	}

	.overview-content {
		grid-template-columns: 1fr 1fr;
	}

	.message-content {
	}

	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}

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

/* スクロールアニメーション */
.fade-in {
	opacity: 0;
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
}

.slide-in-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-up {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.slide-in-down {
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-down.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.contact-heading {
		font-size: 1.8rem;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.contact-form-section,
	.faq-section {
		padding: 60px 0;
	}

	.contact-info,
	.contact-form-container,
	.faq-item {
		padding: 30px;
	}
}

/* Recruit Page Styles */
.l-wrapper {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/recruit-bg.jpg');
	background-size: cover;
	background-position: center;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--text-color);
	padding: 4rem 2rem;
}

.l-section2 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

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

.l-section-text h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: 0.1em;
}

.l-section-text span {
	font-size: 1.5rem;
	opacity: 0.9;
}

.recruit-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
	padding: 0 2rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.recruit-card-list {
	background: var(--bg-secondary);
	padding: 2rem;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: var(--text-color);
	transition: transform 0.3s ease, background-color 0.3s ease;
	display: block;
}

.recruit-card-list:hover {
	transform: translateY(-5px);
	background: var(--bg-tertiary);
}

.recruit-card-list p:first-child {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.recruit-card-list p:last-child {
	font-size: 1.2rem;
	line-height: 1.6;
}

.recruit-section-text {
	text-align: center;
	font-size: 1.2rem;
	line-height: 2;
	margin: 4rem auto;
	max-width: 800px;
	padding: 0 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.recruit-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.l-section-text h2 {
		font-size: 2.5rem;
	}

	.l-section-text span {
		font-size: 1.2rem;
	}

	.recruit-list {
		grid-template-columns: 1fr;
		padding: 0 1rem;
	}

	.recruit-card-list {
		padding: 1.5rem;
	}

	.recruit-section-text {
		font-size: 1rem;
		padding: 0 1rem;
	}
}

@media screen and (max-width: 768px) {
	.section-title {
		font-size: 40px;
	}

	.hero-title {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.hero-cta {
		width: 78.6667%;
		max-width: 295px;
		height: 110px;
		left: 0;
		z-index: 12;
	}

	.cta-button {
		font-size: 16px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.cta-text {
		font-size: 20px;
	}
}

.nav_global_sp_info {
	padding: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: auto;
}

.nav_global_sp_info_logo {
	margin-bottom: 20px;
}

.nav_global_sp_info_logo .logo {
	display: block;
	width: 120px;
	height: auto;
	margin-bottom: 10px;
}

.nav_global_sp_info_logo .name {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-color);
}

.nav_global_sp_info_detail {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.nav_global_sp_info_detail .l_tel {
	color: var(--text-color);
	text-decoration: none;
}

.circle-arrow {
	width: 50px;
	height: 50px;
	border: 0.2px solid #fff;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.circle-arrow::before {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 0.2px solid #fff;
	border-right: 0.2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	left: 18px;
	transition: all 0.3s ease;
}

.circle-arrow:hover {
	background-color: #fff;
}

.circle-arrow:hover::before {
	border-color: #000;
}

/* Media Queries */
@media screen and (max-width: 768px) {
	.circle-arrow {
		width: 40px;
		height: 40px;
	}
	
	.circle-arrow::before {
		width: 8px;
		height: 8px;
		left: 13px;
	}
}