/* ===== カスタムプロパティ ===== */
:root {
	--color-primary: #0f172a;
	--color-primary-light: #1e293b;
	--color-accent: #0ea5e9;
	--color-accent-hover: #38bdf8;
	--color-text: #334155;
	--color-text-muted: #64748b;
	--color-bg: #ffffff;
	--color-bg-alt: #f8fafc;
	--color-bg-warm: #f1f5f9;
	--font-display: "Outfit", "Noto Sans JP", sans-serif;
	--font-body: "Noto Sans JP", "Hiragino Sans", sans-serif;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
	--radius: 12px;
	--radius-lg: 20px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== リセット ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
}

/* ===== 基本スタイル ===== */
body {
	font-family: var(--font-body);
	line-height: 1.7;
	color: var(--color-text);
	overflow-x: hidden;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

img:not(.hero-image) {
	max-width: 100%;
	height: auto;
}

.hero-slider .hero-image {
	display: block;
}

/* ===== PC用スクロール連動メニューバー（日東トラフィック風） ===== */
.pc-nav-bar {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #4c51bf;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 769px) {
	.pc-nav-bar {
		display: block;
		transform: translateY(-100%);
	}

	.pc-nav-bar.visible {
		transform: translateY(0);
	}

	.pc-nav-menu {
		display: flex;
		justify-content: center;
		align-items: center;
		list-style: none;
		margin: 0;
		padding: 1rem 0;
		gap: 2rem;
	}

	.pc-nav-menu a {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2px;
		color: #fff;
		text-decoration: none;
		font-weight: 500;
		font-size: 0.95rem;
		transition: var(--transition);
	}

	.pc-nav-menu .nav-en {
		font-family: var(--font-display);
		font-size: 0.6rem;
		color: rgba(255, 255, 255, 0.9);
	}

	.pc-nav-menu a:hover,
	.pc-nav-menu a.nav-current {
		color: #fff;
	}
}

/* モバイルではハンバーガーのみ表示 */
@media (min-width: 769px) {
	.hamburger-btn {
		display: none;
	}
}

/* ===== ハンバーガーメニュー（モバイル用） ===== */
.hamburger-btn {
	position: fixed;
	top: calc(20px + env(safe-area-inset-top, 0px));
	right: calc(20px + env(safe-area-inset-right, 0px));
	z-index: 1001;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 48px;
	height: 48px;
	padding: 0;
	background: rgba(76, 81, 191, 0.95);
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: var(--transition);
}

.hamburger-btn:focus {
	outline: 2px solid rgba(255, 255, 255, 0.6);
	outline-offset: 4px;
}

.hamburger-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: var(--transition);
	border-radius: 1px;
}

.hamburger-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* 日東トラフィック風：右側パネルのみメニュー、左は薄い暗転でページが見える */
.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nav-overlay-backdrop {
	position: absolute;
	inset: 0;
	right: 320px;
	background: transparent;
	cursor: pointer;
}

@media (max-width: 480px) {
	.nav-overlay-backdrop {
		right: 80%;
	}
}

.nav-overlay-menu {
	position: absolute;
	top: 0;
	right: 0;
	width: 80%;
	max-width: 320px;
	height: 100%;
	background: rgba(45, 55, 72, 0.97);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 80px 24px 24px;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
}

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

.nav-overlay-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-overlay-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-overlay-menu a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 1rem 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition);
}

.nav-overlay-menu .nav-en {
	display: block;
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.05em;
}

.nav-overlay-menu a:hover,
.nav-overlay-menu a.nav-current {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.nav-overlay-menu a:hover .nav-en,
.nav-overlay-menu a.nav-current .nav-en {
	color: rgba(255, 255, 255, 0.85);
}

/* ===== サブページ用ヒーロー ===== */
.page-main {
	padding-top: 0;
}

.page-hero {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	padding: 80px 0 60px;
	text-align: center;
}

.page-title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.12em;
	margin-bottom: 8px;
}

.page-subtitle {
	font-family: var(--font-display);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.2em;
}

/* ===== ヒーロー ===== */
.hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: 0;
	overflow: hidden;
}

/* オーバーレイ＋下部にナンバー隠し用の暗い領域 */
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, 0.2) 0%,
		rgba(15, 23, 42, 0.45) 40%,
		rgba(15, 23, 42, 0.7) 70%,
		rgba(15, 23, 42, 0.95) 100%
	);
	z-index: 2;
	pointer-events: none;
}

.hero-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: var(--color-primary);
}

.hero-slider .hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	-webkit-object-fit: cover;
	-webkit-object-position: center center;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	filter: brightness(1.05);
}

.hero-slider .hero-image.active {
	opacity: 1;
	z-index: 1;
}

.hero-slider .hero-image[src=""]:not([src]),
.hero-slider .hero-image:not([src]) {
	display: none;
}

/* ナンバープレート隠し用の下部オーバーレイ */
.hero-plate-mask {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20%;
	min-height: 120px;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.98), transparent);
	z-index: 2;
	pointer-events: none;
}

@media (max-width: 768px) {
	.hero-plate-mask {
		height: 10%;
		min-height: 24px;
	}
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 720px;
	padding: 0 24px;
}

.hero-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hero-title-company {
	font-size: 2.8rem;
	font-weight: 900;
	letter-spacing: 0.15em;
	color: #fff;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.2);
	line-height: 1.4;
}

.hero-tagline-bar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 10px 28px;
	border-radius: 6px;
}

.hero-title-tagline {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: #0f172a;
	line-height: 1;
}

/* ===== ボタン ===== */
.btn {
	display: inline-block;
	padding: 16px 48px;
	text-decoration: none;
	border-radius: 100px;
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.1em;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: #fff;
	color: var(--color-primary);
	box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta {
	background: #fff;
	color: var(--color-primary);
	font-weight: 600;
	padding: 18px 40px;
	white-space: nowrap;
}

.btn-cta:hover {
	background: var(--color-accent);
	color: #fff;
	transform: translateY(-2px);
}

/* ===== セクション共通 ===== */
section {
	padding: 100px 0;
	scroll-margin-top: 70px;
}

.hero {
	padding: 0;
}

.section-label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.services .section-label,
.features .section-label,
.about .section-label,
.access .section-label {
	text-align: left;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 56px;
	color: var(--color-primary);
	position: relative;
	line-height: 1.5;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 4px;
	background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
	border-radius: 2px;
}

.services .section-title,
.features .section-title,
.about .section-title,
.access .section-title {
	text-align: left;
	font-size: 1.85rem;
}

.services .section-title::after,
.features .section-title::after,
.about .section-title::after,
.access .section-title::after {
	left: 0;
	transform: none;
}

/* ===== サービス ===== */
.services {
	background: var(--color-bg-alt);
}

.services .section-title {
	margin-bottom: 24px;
}

.services-subtitle {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 20px;
	letter-spacing: 0.02em;
}

.services-intro {
	max-width: 720px;
	margin: 0 auto;
}

.services-intro p {
	font-size: 1.1rem;
	line-height: 2;
	color: var(--color-text-muted);
	letter-spacing: 0.05em;
}

.service-card {
	background: #fff;
	padding: 40px 32px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(15, 23, 42, 0.06);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--color-accent), transparent);
	opacity: 0;
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(14, 165, 233, 0.2);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card:first-child {
	border-color: rgba(14, 165, 233, 0.15);
}

.service-card:first-child::before {
	opacity: 1;
}

.service-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
	color: var(--color-primary);
	line-height: 1.5;
}

.service-card p {
	color: var(--color-text-muted);
	line-height: 1.8;
	font-size: 0.95rem;
}

/* ===== 統計セクション ===== */
.stats {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	padding: 72px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
}

.stat-item {
	text-align: center;
	color: #fff;
}

.stat-number {
	display: block;
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
	color: var(--color-accent);
}

.stat-label {
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	opacity: 0.9;
}

/* ===== 特徴 ===== */
.features {
	background: #fff;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.feature-item {
	text-align: center;
	padding: 32px 24px;
	background: var(--color-bg-alt);
	border-radius: var(--radius-lg);
	transition: var(--transition);
	border: 1px solid transparent;
}

.feature-item:hover {
	background: #fff;
	box-shadow: var(--shadow-md);
	border-color: rgba(14, 165, 233, 0.15);
	transform: translateY(-4px);
}

.feature-item h3 {
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
	color: var(--color-primary);
	line-height: 1.5;
}

.feature-item p {
	color: var(--color-text-muted);
	line-height: 1.8;
	font-size: 0.9rem;
}

/* ===== 会社概要 ===== */
.about {
	background: var(--color-bg-alt);
}

.about-content {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 64px;
	align-items: start;
}

.about-text .section-label {
	display: block;
	text-align: left;
	color: var(--color-text-muted);
	font-size: 0.85rem;
	margin-bottom: 8px;
}

.about-text .recruit-heading {
	margin-bottom: 24px;
}

.about-text .recruit-body p {
	color: var(--color-text);
}

.about-info {
	background: #fff;
	padding: 40px 36px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(15, 23, 42, 0.06);
	min-width: 0;
}

.info-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
	gap: 24px;
}

.info-item:last-child {
	border-bottom: none;
}

.info-item strong {
	color: var(--color-primary);
	font-weight: 600;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.info-item span {
	color: var(--color-text-muted);
	text-align: right;
	font-size: 0.95rem;
	min-width: 0;
	flex: 1;
	overflow-wrap: break-word;
	word-break: break-word;
}

/* ===== 求人情報 ===== */
.recruit-content {
	padding: 80px 0;
	background: #fff;
}

.recruit-content.business-index {
	background: var(--color-bg-alt);
}

.recruit-content .section-label {
	display: block;
	text-align: left;
	color: var(--color-text-muted);
	font-size: 0.85rem;
	margin-bottom: 8px;
}

.recruit-heading {
	font-size: 1.8rem;
	font-weight: 700;
	color: #4c51bf;
	letter-spacing: 0.08em;
	margin-bottom: 24px;
	line-height: 1.4;
}

.recruit-body {
	max-width: 800px;
}

.recruit-sub {
	font-size: 1rem;
	color: var(--color-text-muted);
	margin-bottom: 20px;
}

.recruit-bar {
	color: #4c51bf;
	font-weight: 700;
	margin-right: 8px;
}

.recruit-body p {
	font-size: 1.05rem;
	line-height: 2;
	color: var(--color-text);
	margin-bottom: 1.2em;
}

.recruit-body p:last-child {
	margin-bottom: 0;
}

.recruit-cta {
	text-align: left;
	margin-top: 40px;
}

.btn-recruit {
	display: inline-block;
	padding: 18px 48px;
	background: #4c51bf;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	letter-spacing: 0.08em;
	transition: var(--transition);
	border: none;
}

.btn-recruit:hover {
	background: #4338ca;
	transform: translateY(-2px);
}

/* ===== お問い合わせ（トップページ） ===== */
.contact-index {
	padding: 80px 0;
	background: var(--color-bg-alt);
}

.contact-index .section-label {
	display: block;
	text-align: left;
	color: var(--color-text-muted);
	font-size: 0.85rem;
	margin-bottom: 8px;
}

.contact-index .recruit-heading {
	margin-bottom: 16px;
}

.contact-index-intro {
	font-size: 1rem;
	color: var(--color-text);
	margin-bottom: 24px;
	line-height: 1.7;
}

.contact-index-table {
	max-width: 600px;
	border-top: 1px solid #e2e8f0;
}

.contact-index-row {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e2e8f0;
	background: rgba(255, 255, 255, 0.8);
}

.contact-index-label {
	width: 120px;
	padding: 16px 20px;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-text);
	flex-shrink: 0;
}

.contact-index-value {
	flex: 1;
	padding: 16px 20px;
	font-size: 1rem;
}

.contact-index-value a {
	color: #2563eb;
	text-decoration: underline;
	transition: color 0.2s;
}

.contact-index-value a:hover {
	color: #1d4ed8;
}

/* ===== お問い合わせ ===== */
.contact {
	background: #fff;
	padding: 0;
}

.contact-cta {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	padding: 72px 0;
}

.contact-cta .container {
	position: relative;
}

.contact-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	flex-wrap: wrap;
}

.contact-cta-text h2 {
	font-size: 1.9rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
	line-height: 1.5;
}

.contact-cta-text p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	letter-spacing: 0.05em;
}

.contact-detail {
	padding: 40px 24px;
	text-align: center;
}

.contact-email a {
	font-size: 1.1rem;
	color: var(--color-accent);
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: var(--transition);
}

.contact-email a:hover {
	color: var(--color-accent-hover);
	text-decoration: underline;
}

/* ===== アクセス ===== */
.access {
	background: var(--color-bg-alt);
}

.access-content {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 48px;
	align-items: start;
}

.access-info {
	background: #fff;
	padding: 40px 36px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.access-info h3 {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 32px;
	color: var(--color-primary);
	padding-bottom: 20px;
	border-bottom: 2px solid var(--color-accent);
	line-height: 1.4;
}

.access-details {
	margin-bottom: 28px;
}

.access-details:last-child {
	margin-bottom: 0;
}

.access-details p {
	color: var(--color-text-muted);
	line-height: 1.8;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.access-details strong {
	color: var(--color-primary);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	display: block;
	margin-bottom: 8px;
}

.map-container {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.google-map {
	width: 100%;
	height: 400px;
	border: 0;
	display: block;
}

/* ===== フッター ===== */
.footer {
	background: #4c51bf;
	color: white;
	padding: 64px 0 24px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-section:first-child h3 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	letter-spacing: 0.12em;
}

.footer-section h3,
.footer-section h4 {
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	color: #fff;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	font-size: 0.9rem;
}

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

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: var(--transition);
}

.footer-section ul li a:hover {
	color: #fff;
}

.footer-bottom {
	text-align: center;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

.footer-bottom .page-top-link {
	display: none;
}

/* ページトップへ戻るボタン（右下固定・スクロール時のみ表示） */
.page-top-btn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #4c51bf;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	z-index: 999;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.page-top-btn.visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.page-top-btn:hover {
	background: #4338ca;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.page-top-btn {
		bottom: calc(24px + env(safe-area-inset-bottom, 0px));
		right: calc(24px + env(safe-area-inset-right, 0px));
	}
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

	.about-content {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.access-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.access-info {
		order: 1;
	}

	.map-container {
		order: 2;
		margin-top: 0;
	}

	.google-map {
		height: 350px;
	}

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

	.recruit-content,
	.contact-index {
		padding: 60px 0;
	}

	.page-hero {
		padding: 60px 0 48px;
	}

	.page-title {
		font-size: 1.75rem;
		letter-spacing: 0.1em;
	}
}

@media (max-width: 768px) {
	.page-main {
		padding-top: 0;
	}

	.hero {
		aspect-ratio: 16 / 9;
		height: auto;
		min-height: 200px;
		max-height: 55vh;
		margin-top: 0;
		align-items: flex-start;
		justify-content: center;
		padding-top: 8%;
	}

	.hero-content {
		position: relative;
	}

	.hero-title {
		margin-bottom: 0;
		gap: 0.75rem;
	}

	.mobile-contact-bar {
		display: none !important;
	}

	.hero-slider .hero-image {
		object-fit: contain !important;
		object-position: center top;
		-webkit-object-fit: contain !important;
		-webkit-object-position: center top;
	}

	.hero-title-company {
		font-size: clamp(1.25rem, 5vw, 1.9rem);
		font-weight: 900;
		letter-spacing: 0.08em;
	}

	.hero-tagline-bar {
		padding: 10px 20px;
	}

	.hero-title-tagline {
		font-size: clamp(0.7rem, 2.5vw, 0.95rem);
		letter-spacing: 0.06em;
	}

	.footer-bottom .page-top-link {
		display: inline-block;
		color: rgba(255, 255, 255, 0.8);
		text-decoration: none;
		margin-bottom: 8px;
		font-size: 0.9rem;
	}

	.contact-cta {
		padding: 48px 0;
	}

	.contact-cta-inner {
		flex-direction: column;
		text-align: center;
		gap: 24px;
	}

	.contact-cta-text h2 {
		font-size: 1.4rem;
		letter-spacing: 0.04em;
	}

	.contact-detail {
		padding: 32px 24px;
	}

	.section-title {
		font-size: 1.5rem;
		margin-bottom: 40px;
	}

	.services .section-title,
	.features .section-title,
	.about .section-title,
	.access .section-title {
		font-size: 1.4rem;
	}

	.services-subtitle {
		font-size: 1.1rem;
		margin-bottom: 16px;
	}

	.services-intro p {
		font-size: 1rem;
	}

	section {
		padding: 48px 0;
	}

	.hero {
		padding: 0;
	}

	.recruit-content + .recruit-content,
	.recruit-content + .contact-index {
		border-top: 1px solid rgba(0, 0, 0, 0.06);
	}

	.recruit-content,
	.contact-index {
		padding: 48px 0;
	}

	.hero + .recruit-content {
		padding-top: 24px;
	}

	.recruit-heading {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}

	.recruit-body p {
		font-size: 1rem;
	}

	.recruit-cta {
		margin-top: 32px;
	}

	.btn-recruit {
		display: block;
		text-align: center;
		padding: 16px 24px;
	}

	.contact-index-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-index-label {
		width: 100%;
		padding: 12px 16px 4px;
	}

	.contact-index-value {
		padding: 4px 16px 16px;
		word-break: break-all;
	}

	.contact-index-value a {
		font-size: 0.95rem;
	}

	.about-info {
		padding: 32px 24px;
	}

	.info-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 16px 0;
	}

	.info-item span {
		text-align: left;
	}

	.access-info {
		padding: 32px 24px;
	}

	.access-info h3 {
		font-size: 1.2rem;
		margin-bottom: 24px;
	}

	.google-map {
		height: 300px;
	}

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

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.stat-number {
		font-size: 2.25rem;
	}

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

	.footer {
		padding: 48px 0 20px;
	}

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

	.footer-section ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 24px;
	}

	.footer-section ul li {
		margin-bottom: 0;
	}

	.page-hero {
		padding: 48px 0 40px;
	}

	.page-title {
		font-size: 1.6rem;
		letter-spacing: 0.08em;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 0 20px;
	}

	.services-intro {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero {
		min-height: 200px;
		max-height: 50vh;
	}

	.hero-content {
		padding: 0 16px;
	}

	.hero-title-company {
		font-size: clamp(1.1rem, 4.5vw, 1.45rem);
		font-weight: 900;
		letter-spacing: 0.06em;
	}

	.hero-tagline-bar {
		padding: 10px 16px;
	}

	.hero-title-tagline {
		font-size: clamp(0.65rem, 2.2vw, 0.85rem);
		letter-spacing: 0.05em;
	}

	.section-title,
	.services .section-title,
	.features .section-title,
	.about .section-title,
	.access .section-title {
		font-size: 1.3rem;
	}

	.recruit-heading {
		font-size: 1.35rem;
	}

	.page-title {
		font-size: 1.4rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.btn-cta {
		width: 100%;
		text-align: center;
		padding: 16px 24px;
	}

	.contact-cta-text h2 {
		font-size: 1.25rem;
	}

	.footer-section h3,
	.footer-section h4 {
		font-size: 0.85rem;
	}

	.footer-bottom {
		font-size: 0.8rem;
		padding-top: 24px;
	}
}

/* タッチデバイス向け最適化 */
@media (hover: none) and (pointer: coarse) {
	.btn,
	.btn-recruit,
	.btn-cta {
		min-height: 44px;
	}

	.btn-recruit {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
