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

:root {
	--primary: #0056b3;
	--accent: #FFD700;
	--text-dark: #1a1a1a;
	--text-light: #666;
	--bg-light: #f8f9fa;
	--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--h2-transition: clip-path 0s 0.5s linear;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
	background: #fff;
}

/* スクロールバー */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 2px;
}

/* ヘッダー */
header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

header.scrolled {
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	padding: 10px 0;
}

.header-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 28px;
	font-weight: 900;
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

.logo:hover {
	transform: scale(1.05);
}

nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
}

nav a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 14px;
	transition: var(--transition);
	position: relative;
	padding: 5px 0;
	white-space: nowrap;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

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

/* メインビジュアル */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
/*	background-image: url('../images/recruit/highschool/future/feature_0625.png'); */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
	z-index: 1;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

#hero_movie {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
#hero_movie .hero_movie_wrapper {
	width: auto;
	height: 100%;
	aspect-ratio: 1920 / 1080;
	position: relative;
}
#hero_movie .hero_movie_wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#hero_movie .hero_movie_inner {
	height: calc(292 / 1080 * 100%);
	aspect-ratio: 834 / 292;
	display: flex;
	align-items: center;
	position: absolute;
	left: calc(1024 / 1920 * 100%);
	top: calc(315 / 1080 * 100%);
	overflow: hidden;
	clip-path: polygon(100% 100%, calc(242.43 / 834.08 * 100%) calc(292.9 / 292.56 * 100%), 0 calc(212.93 / 292.56 * 100%), calc(13.96 / 834.08 * 100%) calc(32.05 / 292.56 * 100%), calc(127.1 / 834.08 * 100%) 0, calc(673.95 / 834.08 * 100%) calc(18.52 / 292.56 * 100%), calc(781.45 / 834.08 * 100%) calc(33.23 / 292.56 * 100%), calc(800.36 / 834.08 * 100%) calc(196.67 / 292.56 * 100%), 100% 100%);
}
@media (min-aspect-ratio: 1920/1080) {
	#hero_movie .hero_movie_wrapper {
		width: 100%;
		height: auto;
	}
	#hero_movie .hero_movie_inner {
		width: calc(834 / 1920 * 100%);
		height: auto;
	}
}
#hero_movie .movie_box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	position: relative;
}
#hero_movie iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.hero-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px;
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	min-height: 100vh;
}

.hero-text {
	animation: slideInLeft 1s ease-out;
	text-align: left;
	max-width: 1000px;
	margin: 0;
}

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

.hero h1 {
	font-size: clamp(60px, 12vw, 120px);
	font-weight: 900;
	color: var(--text-dark);
	margin-bottom: 40px;
	line-height: 1;
	letter-spacing: -0.02em;
	text-shadow: 3px 3px 6px rgba(255,255,255,0.95),
					0 0 30px rgba(255,255,255,0.8),
					-3px -3px 6px rgba(255,255,255,0.95);
}

.hero h1 span {
	display: block;
	color: var(--primary);
	animation: fadeInUp 1s ease-out 0.3s both;
	font-size: 1.1em;
}

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

.hero-subtitle {
	font-size: clamp(20px, 3vw, 32px);
	color: var(--text-dark);
	margin-bottom: 0;
	animation: fadeInUp 1s ease-out 0.6s both;
	font-weight: 500;
	line-height: 1.5;
	text-shadow: 2px 2px 4px rgba(255,255,255,0.95),
					0 0 20px rgba(255,255,255,0.8),
					-2px -2px 4px rgba(255,255,255,0.95);
}

.cta-button {
	display: inline-block;
	padding: 20px 50px;
	background: var(--primary);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
	transition: var(--transition);
	animation: fadeInUp 1s ease-out 0.9s both;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,86,179,0.3);
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255,255,255,0.2);
	border-radius: 8px;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 30px rgba(0,86,179,0.4);
}

.cta-button:hover::before {
	width: 300px;
	height: 300px;
}

/* 会社紹介セクション */
.company-intro {
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.company-intro::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		linear-gradient(45deg, transparent 30%, rgba(0,86,179,0.05) 30%, rgba(0,86,179,0.05) 70%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(255,215,0,0.05) 30%, rgba(255,215,0,0.05) 70%, transparent 70%);
	background-size: 50px 50px;
	animation: movePattern 20s linear infinite;
}

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

@keyframes h2Clip {
	0% {clip-path: inset(0 100% 0 0);}
	100% {clip-path: inset(0 0 0 0);}
}
@keyframes h2Animation {
	0%, 50% {transform-origin: 0 50%;}
	60%, 100% {transform-origin: 100% 50%;}
	60% {transform: scaleX(1);}
	100% {transform: scaleX(0);}
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.section-title {
	font-size: clamp(32px, 5vw, 56px);
	text-align: center;
	margin-bottom: 80px;
	color: var(--text-dark);
	font-weight: 900;
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
}
.section-title span {
	display: block;
	position: relative;
	transition: var(--h2-transition);
	overflow: hidden;
}
.section-title span::after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: var(--primary);
	transform: scaleX(0);
	transform-origin: 0 50%;
}
.section-title.animated span {
	animation: h2Clip 1s cubic-bezier(1, 0, 0, 1) forwards;
}
.section-title.animated span::after {
	animation: h2Animation 1s cubic-bezier(1, 0, 0, 1) forwards;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--accent);
	border-radius: 0;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 80px;
	align-items: stretch;
}

.stat-card {
	background: white;
	padding: 50px 40px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: var(--transition);
	transform: translateY(50px);
	opacity: 0;
	animation: slideUp 0.8s ease-out forwards;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

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

.stat-card::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 200px;
	height: 200px;
	background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%);
	opacity: 0.1;
	transition: var(--transition);
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-card:hover::before {
	transform: scale(1.5);
}

.stat-number {
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 10px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
}

.stat-number span {
	font-size: 0.4em;
	font-weight: 700;
	margin-left: 8px;
}

.stat-label {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
	text-align: center;
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-description {
	text-align: center;
	color: var(--text-light);
	line-height: 1.8;
	font-size: 16px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-icon {
	width: 180px;
	height: 180px;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-icon svg,
.stat-icon img {
	width: 100%;
	height: 100%;
	transition: var(--transition);
	object-fit: contain;
}

.stat-card:hover .stat-icon svg,
.stat-card:hover .stat-icon img {
	transform: scale(1.1);
}

/* 「物流」ってなに？セクション */
.what-is-logistics {
	padding: 120px 0;
	background: white;
	position: relative;
	overflow: hidden;
}

.what-is-logistics::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 50%, rgba(0,86,179,0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(255,215,0,0.03) 0%, transparent 50%);
	pointer-events: none;
}

.logistics-blocks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 60px;
	margin-top: 80px;
	position: relative;
	z-index: 1;
}

.logistics-block {
	background: white;
	border-radius: 10px;
	padding: 50px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.logistics-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.logistics-block:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.logistics-block:hover::before {
	transform: scaleX(1);
}

.logistics-block-image {
	width: 500px;
	height: 400px;
	margin: 0 auto 40px;
	position: relative;
}

.logistics-block-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: var(--transition);
	max-width: 100%;
}

.logistics-block:hover .logistics-block-image img {
	transform: scale(1.05);
}

.logistics-block-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 20px;
	text-align: center;
}

.logistics-block-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-light);
	text-align: center;
}

/* 物流セクション */
.logistics-section {
	padding: 120px 0;
	position: relative;
	background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
	overflow: hidden;
}

.logistics-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 10px,
		rgba(255,255,255,0.05) 10px,
		rgba(255,255,255,0.05) 20px
	);
	animation: slide 20s linear infinite;
}

@keyframes slide {
	0% { transform: translateX(0); }
	100% { transform: translateX(50px); }
}

.logistics-section .section-title {
	color: var(--text-dark);
	margin-bottom: 30px;
}

.logistics-intro {
	text-align: center;
	font-size: 20px;
	color: var(--text-dark);
	margin-bottom: 80px;
	font-weight: 300;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.job-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 60px;
	position: relative;
	z-index: 1;
}

.job-card {
	background: white;
	border-radius: 10px;
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: var(--transition);
	cursor: pointer;
}

.job-card::before {
	content: attr(data-number);
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 80px;
	font-weight: 900;
	color: rgba(0,86,179,0.1);
	line-height: 1;
}

.job-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.job-icon {
	width: 150px;
	height: 150px;
	margin: 0 auto 40px;
	position: relative;
	transition: var(--transition);
}

.job-card:hover .job-icon {
	transform: scale(1.1);
}

.job-icon svg,
.job-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.job-title {
	font-size: 26px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 20px;
	text-align: center;
}

.job-description {
	color: var(--text-light);
	line-height: 1.8;
	text-align: center;
	font-size: 16px;
}

/* 成長セクション */
.growth-section {
	padding: 120px 0;
	background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
	position: relative;
	overflow: hidden;
}

.growth-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -100px;
	width: 200px;
	height: 200px;
	background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%);
	opacity: 0.1;
	animation: pulse 4s ease-in-out infinite;
}

.growth-section::after {
	content: '';
	position: absolute;
	bottom: 20%;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(ellipse, var(--primary) 0%, transparent 70%);
	opacity: 0.05;
	animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.growth-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 50px;
	margin-top: 80px;
	position: relative;
	z-index: 1;
}

.growth-item {
	text-align: center;
	padding: 40px;
	border-radius: 10px;
	background: white;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: var(--transition);
	transform: translateY(30px);
	opacity: 0;
	animation: slideUpFade 0.8s ease-out forwards;
}

.growth-item:nth-child(1) { animation-delay: 0.1s; }
.growth-item:nth-child(2) { animation-delay: 0.2s; }
.growth-item:nth-child(3) { animation-delay: 0.3s; }

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

.growth-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.growth-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
	position: relative;
	transition: var(--transition);
}

.growth-item:hover .growth-icon {
	transform: scale(1.1);
}

.growth-icon svg {
	width: 100%;
	height: 100%;
}

.growth-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 15px;
}

.growth-item p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 16px;
}

/* インタビューセクション */
.interview-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

.interview-carousel-wrapper {
	position: relative;
	margin-top: 80px;
	height: 600px;
}

.interview-carousel {
	display: flex;
	position: absolute;
	width: max-content;
	animation: carouselScroll 30s linear infinite;
}

@keyframes carouselScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-400px * 4));
	}
}

.interview-carousel:hover {
	animation-play-state: paused;
}

.interview-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transition: var(--transition);
	position: relative;
	width: 360px;
	margin: 0 20px;
	flex-shrink: 0;
	text-decoration: none;
}

/* アシンメトリーな配置 */
.interview-card:nth-child(odd) {
	transform: translateY(0);
}

.interview-card:nth-child(even) {
	transform: translateY(80px);
}

.interview-card:nth-child(1),
.interview-card:nth-child(5) {
	background: linear-gradient(135deg, white 0%, #e3f2fd 100%);
}

.interview-card:nth-child(2),
.interview-card:nth-child(6) {
	background: linear-gradient(135deg, white 0%, #fff3e0 100%);
}

.interview-card:nth-child(3),
.interview-card:nth-child(7) {
	background: linear-gradient(135deg, white 0%, #f3e5f5 100%);
}

.interview-card:nth-child(4),
.interview-card:nth-child(8) {
	background: linear-gradient(135deg, white 0%, #e8f5e9 100%);
}

.interview-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.interview-card:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	z-index: 10;
}

.interview-card:nth-child(even):hover {
	transform: translateY(70px) scale(1.05);
}

/* カルーセルインジケーター */
.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 80px;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 2px;
	background: rgba(0,86,179,0.3);
	cursor: pointer;
	transition: var(--transition);
}

.indicator.active {
	background: var(--primary);
	width: 40px;
	border-radius: 2px;
}

.interview-image {
	width: 100%;
	height: 280px;
	position: relative;
	overflow: hidden;
}

.interview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.interview-content {
	padding: 30px;
}

.interview-label {
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.interview-name {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.interview-department {
	color: var(--text-light);
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 300;
}

.interview-text {
	color: var(--text-dark);
	line-height: 1.8;
	font-size: 16px;
	position: relative;
	padding-left: 20px;
}

.interview-text::before {
	content: '“';
	position: absolute;
	left: 0;
	top: -5px;
	font-size: 30px;
	color: var(--accent);
	font-weight: 700;
}

/* 保護者・学校向けセクション */
.recruit-info {
	padding: 120px 0;
	background: linear-gradient(135deg, var(--primary) 0%, #004099 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.recruit-info .container {
	overflow: visible;
	position: relative;
}
.recruit-info .container a.link_tel {
	color: var(--accent);
	text-decoration: none;
	pointer-events: none;
}

.recruit-content-wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 60px;
	position: relative;
	margin: 0 auto 60px;
	max-width: 1200px;
}

.recruit-info::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 20px,
		rgba(255,255,255,0.03) 20px,
		rgba(255,255,255,0.03) 40px
	);
	animation: slidePattern 30s linear infinite;
}

@keyframes slidePattern {
	0% { transform: translate(0, 0); }
	100% { transform: translate(40px, 40px); }
}

.recruit-info .section-title {
	color: white;
	margin-bottom: 30px;
}

.recruit-info .section-title::after {
	background: var(--accent);
}

.recruit-intro {
	text-align: left;
	font-size: 18px;
	line-height: 2;
	flex: 1;
	max-width: 600px;
	max-width: 660px;
	color: white;
	opacity: 0.95;
	position: relative;
	padding-right: 40px;
}
.recruit-intro .right {
	display: block;
	text-align: right;
}
.sp_br {display: none;}

.recruit-intro p {
	margin-bottom: 20px;
}

.koguma-mascot {
	position: relative;
	width: 400px;
	height: auto;
	opacity: 0.9;
	filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
	animation: floatKoguma 3s ease-in-out infinite;
	z-index: 1;
	flex-shrink: 0;
	margin-bottom: -20px;
	align-self: flex-end;
}

@keyframes floatKoguma {
	0%, 100% {
		transform: translateY(0) translateX(0);
	}
	50% {
		transform: translateY(-15px) translateX(-10px);
	}
}

.contact-info {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.3);
}

.contact-name {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.contact-tel {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent);
}

.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 80px;
	position: relative;
	z-index: 1;
}

.info-card {
	background: rgba(255,255,255,0.1);
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	padding: 50px 40px;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.info-card::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 200px;
	height: 200px;
	background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%);
	opacity: 0;
	transition: var(--transition);
}

.info-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent);
	background: rgba(255,255,255,0.15);
}

.info-card:hover::before {
	opacity: 0.3;
}

.info-card h3 {
	font-size: 28px;
	margin-bottom: 20px;
	font-weight: 800;
}

.info-card p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 30px;
	opacity: 0.9;
}

.info-card a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 700;
	display: inline-block;
	padding: 15px 40px;
	border: 2px solid var(--accent);
	border-radius: 8px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.info-card a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: var(--accent);
	border-radius: 8px;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.info-card a:hover {
	color: var(--primary);
	z-index: 1;
}

.info-card a:hover::before {
	width: 200px;
	height: 200px;
	z-index: -1;
}

/* Q&Aセクション */
.qa-section {
	padding: 80px 0;
	background: white;
}

.qa-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.qa-item {
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
}

.qa-question {
	background: #f8f9fa;
	padding: 20px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.qa-question::after {
	content: '+';
	font-size: 24px;
	color: #0056b3;
}

.qa-answer {
	padding: 20px;
	display: none;
	background: white;
	color: #666;
	line-height: 1.8;
}

/* フッター */
footer {
	background: #333;
	color: white;
	padding: 50px 0 30px;
	text-align: center;
}

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

.company-info {
	margin-bottom: 30px;
}

.company-info h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.company-details {
	line-height: 2;
	color: #ccc;
}

.copyright {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #555;
	color: #999;
}

/* レスポンシブ対応 */
@media (max-width: 1400px) {
	.header-container {
		padding: 0 30px;
	}

	.logo {
		font-size: 24px;
	}

	nav ul {
		gap: 15px;
	}

	nav a {
		font-size: 13px;
	}
}

@media (max-width: 1200px) {
	.logistics-block-image {
		width: 350px;
		height: 350px;
	}
}

@media (max-width: 1024px) {
	.hero-content {
		text-align: left;
	}

	.stats-container,
	.job-cards,
	.growth-items,
	.info-cards {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 30px;
	}

	.recruit-content-wrapper {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.recruit-intro {
		padding-right: 0;
		max-width: 600px;
		max-width: 660px;
		text-align: center;
		margin: 0 auto;
	}
	.recruit-intro .right {text-align: center;}
	.sp_br {display: block;}

	.koguma-mascot {
		width: 150px;
		margin: 0 auto;
		animation: floatKogumaSmall 3s ease-in-out infinite;
	}

	@keyframes floatKogumaSmall {
		0%, 100% {
			transform: translateX(-50%) translateY(0);
		}
		50% {
			transform: translateX(-50%) translateY(-10px);
		}
	}

	.interview-carousel-wrapper {
		height: 500px;
	}

	.interview-card {
		width: 300px;
	}

	.interview-image {
		height: 220px;
	}

	.carousel-indicators {
		margin-top: 140px;
	}

	@keyframes carouselScroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-340px * 4));
		}
	}
}

@media (max-width: 900px) {
	.logistics-blocks {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.logistics-block-image {
		width: 320px;
		height: 320px;
	}
}

@media (max-width: 1280px) {
	nav {
		display: none;
	}

	.hamburger {
		display: block;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 30px;
		height: 24px;
		cursor: pointer;
	}

	.hamburger span {
		display: block;
		width: 100%;
		height: 3px;
		background: var(--primary);
		margin-bottom: 5px;
		transition: var(--transition);
	}

}
@media (max-width: 1280px) and (max-aspect-ratio: 1920/1080) {
	#hero_movie {
		justify-content: flex-end;
		align-items: flex-end;
	}
	#hero_movie .hero_movie_wrapper {
		height: 120%;
		transform: translateX(14%)
	}
	#hero_movie iframe {
		right: 5% !important;
		left: auto;
	}
	.hero-text {
		margin-top: 16vh;
	}
}

@media (max-width: 768px) {
	.job-icon {
		width: 120px;
		height: 120px;
	}
	.header-container {
		padding: 0 20px;
	}

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

	.hero {
		min-height: 100vh;
		padding: 0;
		background-position: center;
		display: flex;
		align-items: center;
	}

	.hero h1 {
		font-size: clamp(40px, 15vw, 70px);
	}

	.hero-subtitle {
		font-size: clamp(18px, 4vw, 24px);
	}

	.section-title {
		font-size: clamp(28px, 8vw, 40px);
		margin-bottom: 40px;
	}

	.container {
		padding: 0 20px;
	}

	.stat-number {
		font-size: clamp(36px, 10vw, 46px);
		min-height: 50px;
	}

	.stat-label {
		min-height: 48px;
	}

	.stat-icon {
		width: 160px;
		height: 160px;
		margin: 0 auto 30px;
	}

	.stat-icon svg,
	.stat-icon img {
		max-width: 100% !important;
		max-height: 100% !important;
	}

	.job-card,
	.growth-item,
	.info-card {
		padding: 30px 20px;
	}

	.stat-card {
		padding: 30px 20px;
		height: auto;
	}

	.stat-description {
		flex: initial;
		min-height: 80px;
	}

	.recruit-intro {
		font-size: 16px;
		padding: 0 20px;
		padding: 0;
		max-width: 100%;
		max-width: calc(100% + 20px);
		width: calc(100% + 20px);
		margin: 0 -10px;
	}

	.koguma-mascot {
		width: 120px;
		transform: translateX(0) !important;
	}

	.contact-tel {
		font-size: 20px;
	}

	.interview-carousel-wrapper {
		height: 450px;
	}

	.interview-card {
		width: 260px;
		margin: 0 10px;
	}

	.interview-image {
		height: 200px;
	}

	.interview-card:nth-child(even) {
		transform: translateY(40px);
	}

	@keyframes carouselScroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-280px * 4));
		}
	}

	.company-intro,
	.what-is-logistics,
	.logistics-section,
	.growth-section,
	.interview-section,
	.recruit-info {
		padding: 80px 0;
	}

	.logistics-block {
		padding: 30px;
	}

	.logistics-block-image {
		width: 500px;
		max-width: 90%;
		height: 300px;
		margin: 0 auto 30px;
	}

	.job-card::before {
		font-size: 60px;
		top: 10px;
		right: 10px;
	}
}

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

	.logistics-block {
		padding: 30px 20px;
	}

	.logistics-block-image {
		width: 90%;
		height: auto;
	}

	.job-title {
		font-size: 24px;
	}

	.job-icon {
		width: 100px;
		height: 100px;
		margin: 0 auto 30px;
	}

	.logistics-block-title {
		font-size: 20px;
	}

	.hero-content {
		padding: 0 20px;
	}
	.hero h1 {
		font-size: clamp(36px, 12vw, 56px);
	}

	.stat-number {
		font-size: 32px;
		min-height: 45px;
	}

	.stat-label {
		font-size: 18px;
		min-height: 44px;
	}

	.stat-icon {
		width: 160px;
		height: 160px;
		margin: 0 auto 20px;
	}

	.stat-icon svg,
	.stat-icon img {
		max-width: 100% !important;
		max-height: 100% !important;
	}

	.cta-button {
		padding: 15px 30px;
		font-size: 16px;
	}

	.recruit-intro {
		font-size: 14px;
		line-height: 1.8;
	}

	.koguma-mascot {
		width: 100px;
	}

	.contact-name {
		font-size: 16px;
	}

	.contact-tel {
		font-size: 18px;
	}

	.interview-section div:has(.cta-button) {
		margin-top: 60px !important;
	}

	.interview-carousel-wrapper {
		height: 400px;
	}

	.interview-card {
		width: 240px;
	}

	.interview-image {
		height: 180px;
	}

	.interview-content {
		padding: 25px;
	}

	.interview-name {
		font-size: 20px;
	}

	.carousel-indicators {
		margin-top: 180px;
	}
	.recruit-info .container a.link_tel {
		pointer-events: auto;
	}
}

@media (max-width: 320px) {
	.logistics-block-image {
		width: 200px;
		height: 200px;
	}

	.hero h1 {
		font-size: clamp(32px, 14vw, 48px);
	}

	.hero-subtitle {
		font-size: clamp(16px, 5vw, 20px);
	}

	.stat-icon {
		width: 100px;
		height: 100px;
		margin: 0 auto 20px;
	}

	.stat-icon svg,
	.stat-icon img {
		max-width: 80px !important;
		max-height: 80px !important;
	}
}

/* ハンバーガーメニュー */
.hamburger {
	display: none;
}
