@charset "UTF-8";

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

body {
	font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	line-height: 1.6;
	color: #333;
	font-feature-settings: "palt"1;
	letter-spacing: 0.06em;
	overflow-x: hidden;
}

@media screen and (min-width: 769px) {
	.sp-mode {
		display: none !important;
	}
}

@media screen and (min-width: 1025px) {
	.tab-mode {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.pc-mode {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc-tab-mode {
		display: none !important;
	}
}

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

/* エントリーボタン */
.scroll-entry-button {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px) scale(0.8);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-entry-button.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.entry-btn {
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(37, 165, 252, 0.3);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.entry-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.entry-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.5s;
}

.entry-btn:hover::before {
	left: 100%;
}

.entry-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 165, 252, 0.4);
}

.entry-btn:active {
	transform: translateY(0);
}

/* キービジュアル */
.hero {
	backgound: white;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding-bottom: 20px;
}

.hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
}

.hero-visual {
	width: 100%;
	max-width: 1200px;
	height: auto;
	animation: slideInUp 1s ease-out;
	margin-bottom: 20px;
}

.hero-visual img {
	width: 100%;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

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

.cta-button {
	background: linear-gradient(45deg, #5c25ff, #25a5fc);
	color: white;
	padding: 18px 80px;
	border: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 8px rgba(92, 37, 255, 0.2);
	display: inline-block;
	text-decoration: none;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 12px rgba(92, 37, 255, 0.3);
}

/* セクション共通スタイル */
.section {
	padding: 80px 20px;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 20px;
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* 研修プログラムセクション */
.training {
	backgound: white;
}

.training-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.training-card {
	background: white;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	text-align: center;
	flex: 1;
	min-width: 250px;
}

.training-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
}

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

.training-content {
	margin-bottom: 20px;
}

.training-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.training-content p {
	color: #666;
	line-height: 1.7;
	text-align: left;
}

.training-image {
	margin: 0 -30px -30px -30px;
	flex-grow: 1;
	display: flex;
	align-items: flex-end;
}

.training-image img {
	width: 100%;
	height: auto;
	border-radius: 0 0 8px 8px;
	border: none;
	display: block;
}

/* 価値観セクション */
.values {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.values::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 20%, rgba(37, 165, 252, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(92, 37, 255, 0.03) 0%, transparent 50%);
	z-index: 0;
}

.values .container {
	position: relative;
	z-index: 1;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	position: relative;
}

.value-item {
	display: flex;
	gap: 20px;
	padding: 30px;
	border-radius: 12px;
	background: white;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(37, 165, 252, 0.1);
	position: relative;
	overflow: hidden;
}

.value-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.value-item:hover::before {
	transform: scaleX(1);
}

.value-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-color: rgba(37, 165, 252, 0.3);
}

.value-item:nth-child(odd) {
	background: linear-gradient(135deg, rgba(37, 165, 252, 0.02), rgba(92, 37, 255, 0.02));
}

.value-item:nth-child(even) {
	background: linear-gradient(135deg, rgba(92, 37, 255, 0.02), rgba(37, 165, 252, 0.02));
}

.value-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	font-weight: bold;
	flex-shrink: 0;
	position: relative;
}

.value-symbol {
	position: absolute;
	top: 40px;
	width: 50px;
	height: 50px;
	padding: 8px;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

.value-content p {
	color: #666;
	line-height: 1.6;
}

/* 社員写真セクション */
.team-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.team-photo {
	background: white;
	border-radius: 8px;
	padding: 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
	overflow: hidden;
}

.team-photo:hover {
	transform: translateY(-10px);
}

.team-photo img {
	width: 100%;
	height: auto;
	border-radius: 8px 8px 0 0;
	display: block;
}

.team-content {
	padding: 30px;
}

.team-photo h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.team-photo p {
	color: #666;
	line-height: 1.6;
}

/* 写真スライドショー */
.photo-slider {
	margin-top: 40px;
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}

.slider-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
}

.slider-wrapper {
	display: flex;
	width: 800%;
	transition: transform 0.5s ease-in-out;
}

.slide {
	width: 12.5%;
	flex-shrink: 0;
}

.slide img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	font-size: 60px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: bold;
	transition: all 0.3s ease;
	z-index: 10;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	padding: 10px;
}

.slider-nav:hover {
	color: white;
	transform: translateY(-50%) scale(1.2);
}

.slider-prev {
	left: 10px;
}

.slider-next {
	right: 10px;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(37, 165, 252, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #25a5fc;
	transform: scale(1.2);
}

.dot:hover {
	background: #5c25ff;
}

/* ワークライフバランスセクション */
.worklife {
	background: linear-gradient(135deg, rgba(37, 165, 252, 0.05) 0%, rgba(92, 37, 255, 0.05) 100%);
	color: #333;
}

.worklife .section-title {
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.worklife .section-subtitle {
	color: #666;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.benefit-card {
	background: white;
	border-radius: 8px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
	background: linear-gradient(135deg, rgba(37, 165, 252, 0.05), rgba(92, 37, 255, 0.05));
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
	width: 100px;
	height: 100px;
	margin-bottom: 15px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.benefit-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.benefit-card p {
	font-size: 0.9rem;
	opacity: 0.9;
}

/* キャリアパスセクション */
.career {
	background-color: white;
	background-image: url("../images/career_bg.png");
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
}

.career-timeline {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.career-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, #25a5fc, #5c25ff);
	transform: translateX(-50%);
}

.career-step {
	display: flex;
	align-items: center;
	margin-bottom: 80px;
	position: relative;
	min-height: 120px;
}

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

.career-content {
	background: white;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	width: calc(50% - 40px);
	position: relative;
}

.career-step:nth-child(even) .career-content {
	margin-right: 80px;
}

.career-step:nth-child(odd) .career-content {
	margin-left: 80px;
}

.career-number {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	z-index: 2;
}

.career-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

.career-content p {
	color: #666;
	line-height: 1.6;
}

/* 募集要項セクション */
.requirements {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.requirements-content {
	max-width: 800px;
	margin: 0 auto;
}

.requirements-table {
	background: white;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

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

.requirements-table th,
.requirements-table td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.requirements-table th {
	background: linear-gradient(135deg, rgba(37, 165, 252, 0.1), rgba(92, 37, 255, 0.1));
	font-weight: 600;
	color: #333;
	width: 30%;
	vertical-align: top;
}

.requirements-table td {
	color: #666;
	line-height: 1.7;
}

.requirements-table tr:last-child th,
.requirements-table tr:last-child td {
	border-bottom: none;
}

.highlight-text {
	color: #5c25ff;
	font-weight: 600;
}

.benefit-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.benefit-list li {
	padding: 5px 0;
	position: relative;
	padding-left: 20px;
}

.benefit-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #25a5fc;
	font-weight: bold;
}

/* 会社概要セクション */
.company {
	background: #1a1a1a;
	color: white;
}

.company .section-title {
	color: white;
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.company .section-subtitle {
	color: #ccc;
}

.company-content {
	max-width: 800px;
	margin: 0 auto;
}

.company-image {
	text-align: center;
	margin-bottom: 50px;
}

.company-image img {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 8px;
}

.company-table {
	background: #2a2a2a;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	border: 1px solid #444;
}

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

.company-table th,
.company-table td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid #444;
}

.company-table th {
	font-weight: 600;
	color: white;
	width: 30%;
	vertical-align: top;
}

.company-table td {
	color: #ccc;
	line-height: 1.7;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
	border-bottom: none;
}

.company-highlight {
	color: #25a5fc;
	font-weight: 600;
}

/* フッターセクション */
.ftr {
	background: #1a1a1a;
	color: white;
	padding: 40px 20px 30px;
	text-align: center;
}

.ftr-logo {
	margin-bottom: 25px;
}

.ftr-logo-link {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	color: white;
	transition: all 0.3s ease;
}

.ftr-logo-link:hover {
	transform: translateY(-2px);
}

.ftr-logo-link img {
	width: 240px;
	height: auto;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.ftr-logo-link:hover img {
	filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(37, 165, 252, 0.5));
}

.ftr-logo-link span {
	font-size: 0.875rem;
	color: white;
}

.ftr-copyright {
	border-top: 1px solid #333;
	padding-top: 20px;
}

.ftr-copyright-txt {
	font-size: 0.7rem;
	color: #888;
	margin: 0;
}

.cta-section {
	background: linear-gradient(135deg, #25a5fc 0%, #5c25ff 100%);
	color: white;
	text-align: center;
	padding: 80px 10px;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	opacity: 0.95;
}

.cta-primary {
	background: white;
	color: #5c25ff;
	padding: 18px 40px;
	border: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	display: inline-block;
}

.cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-primary-icon {
	width: 20px;
	height: 20px;
	margin-bottom: -3px;
	margin-right: 6px;
}

/* エントリーフォームセクション */
.entry-form {
	background: white;
	color: #333;
}

.entry-form-header {
	color: #333;
	text-align: center;
}

.form-description {
	padding: 30px 20px;
	margin-bottom: 50px;
	text-align: center;
}

.form-description p {
	font-size: 1.1rem;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.form-table {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-table th,
.form-table td {
	padding: 25px;
	border-bottom: 1px solid #eee;
}

.form-table th {
	background: linear-gradient(135deg, rgba(37, 165, 252, 0.1), rgba(92, 37, 255, 0.1));
	font-weight: 600;
	color: #333;
	width: 30%;
	vertical-align: middle;
	position: relative;
}

.form-table td {
	color: #666;
	vertical-align: top;
}

.form-table tr:last-child th,
.form-table tr:last-child td {
	border-bottom: none;
}

.required-badge {
	display: inline-block;
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	color: white;
	font-size: 0.75rem;
	padding: 4px 8px;
	border-radius: 4px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: normal;
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 15px 20px;
	font-size: 1rem;
	border: 2px solid #e6e6e6;
	border-radius: 6px;
	background-color: #f8f9fa;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: #25a5fc;
	background-color: white;
	box-shadow: 0 0 0 3px rgba(37, 165, 252, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: #ccc;
}

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

.form-textarea.tall-textarea {
	height: 160px;
}

.form-input.short-input {
	width: 200px;
	max-width: 100%;
}

.address-input {
	margin-bottom: 10px;
}

.privacy-check {
	text-align: center;
	margin: 40px 0;
	padding: 25px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-policy-link {
	display: block;
	margin-bottom: 15px;
	font-size: 0.9rem;
	color: #666;
}

.privacy-policy-link a {
	color: #333;
	text-decoration: underline;
	border-bottom: none;
	transition: opacity 0.3s ease;
}

.privacy-policy-link a:hover {
	opacity: 0.7;
	border-bottom: none;
}

.privacy-check label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 1rem;
	color: #333;
	cursor: pointer;
}

.privacy-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #25a5fc;
}

.form-submit-area {
	text-align: center;
	margin-top: 40px;
}

.form-submit-btn {
	background: linear-gradient(45deg, #25a5fc, #5c25ff);
	color: white;
	padding: 18px 60px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(37, 165, 252, 0.2);
	max-width: 400px;
	width: 100%;
}

.form-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 165, 252, 0.25);
}

/* レスポンシブ */
@media (max-width: 1024px) {
	.training-card {
		flex: 1 1 calc(50% - 15px);
	}
}

/* レスポンシブ */
@media (max-width: 768px) {
	.scroll-entry-button {
		top: 15px;
		right: 15px;
	}

	.entry-btn {
		padding: 10px 16px;
		font-size: 0.8rem;
		gap: 6px;
	}

	.entry-icon {
		width: 16px;
		height: 16px;
	}
	
	.hero-visual {
		max-width: 100%;
	}

	.cta-button {
		padding: 18px 40px;
	}
	
	.section {
		padding: 50px 15px;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.section-subtitle {
		margin-bottom: 50px;
		font-size: 1rem;
	}

	.training-card {
		flex: 1 1 100%;
		min-width: unset;
		padding: 30px 20px;
	}

	.training-content {
		margin-bottom: 15px;
	}

	.section-title {
		font-size: 2rem;
	}

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

	.value-item {
		padding: 25px 20px;
		gap: 15px;
	}

	.value-icon {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.value-symbol {
		width: 45px;
		height: 45px;
		top: 40px;
	}

	.value-symbol img {
		display: block;
		width: 100%;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.team-gallery {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.team-content {
		padding: 15px 15px 20px;
	}

	.slider-nav {
		font-size: 40px;
		padding: 5px;
	}

	.slider-prev {
		left: 5px;
	}

	.slider-next {
		right: 5px;
	}

	.dot {
		width: 10px;
		height: 10px;
	}

	.career-timeline::before {
		left: 20px;
	}

	.career-step {
		flex-direction: column !important;
		align-items: flex-start;
		padding-left: 30px;
	}

	.career-content {
		width: 100% !important;
		margin: 0 !important;
	}

	.career-number {
		top: 50%;
		left: 0 !important;
		transform: translateY(-50%) !important;
	}

	.requirements-table th,
	.requirements-table td {
		padding: 10px;
		font-size: 0.875rem;
	}

	.requirements-table th {
		width: 100px;
		background: linear-gradient(135deg, rgba(37, 165, 252, 0.1), rgba(92, 37, 255, 0.1));
		border-bottom: none;
	}

	.requirements-table td {
		border-bottom: none;
		padding-top: 10px;
	}

	.requirements-table tr {
		display: block;
		margin-bottom: 0;
		border-bottom: 1px solid #f0f0f0;
	}

	.requirements-table tr:last-child {
		border-bottom: none;
	}

	.company-table th,
	.company-table td {
		padding: 10px;
		font-size: 14px;
	}

	.company-table th {
		width: 100px;
		border-bottom: none;
		color: white;
	}

	.company-table td {
		border-bottom: none;
		padding-top: 10px;
		color: #ccc;
	}

	.company-table tr {
		display: block;
		margin-bottom: 0;
		border-bottom: 1px solid #444;
		padding-bottom: 0;
	}

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

	.ftr {
		padding: 30px 15px 20px;
	}

	.ftr-logo-link img {
		width: 160px;
	}

	.ftr-logo-link span {
		font-size: 0.875rem;
	}

	.ftr-copyright-txt {
		font-size: 0.7rem;
	}

	.cta-content h2 {
		font-size: 1.5rem;
	}

	.cta-content p {
		font-size: 0.9rem;
	}

	.form-table {
		border-radius: 8px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
		border: 1px solid rgba(0, 0, 0, 0.05);
	}

	.form-table,
	.form-table tbody,
	.form-table tr,
	.form-table th,
	.form-table td {
		display: block;
	}

	.form-table th {
		width: 100%;
		background: white;
		border-bottom: none;
		padding: 15px 20px 5px;
		position: relative;
		vertical-align: middle;
		text-align: left;
	}

	.form-table td {
		padding: 5px 20px 20px;
		border-bottom: 2px solid #f0f0f0;
	}

	.form-table tr:last-child td {
		border-bottom: none;
	}

	.required-badge {
		position: static;
		transform: none;
		margin-left: 10px;
	}

	.form-description {
		padding: 20px 15px;
		margin-bottom: 30px;
	}

	.form-description p {
		font-size: 1rem;
		color: #666;
	}

	.privacy-check {
		margin: 30px 0;
		padding: 20px 15px;
		background: white;
		border: 1px solid rgba(0, 0, 0, 0.05);
	}

	.privacy-check label {
		font-size: 0.9rem;
		gap: 8px;
		color: #333;
	}

	.privacy-policy-link {
		font-size: 0.8rem;
		margin-bottom: 12px;
		color: #666;
	}

	.privacy-policy-link a {
		color: #333;
	}

	.form-submit-btn {
		padding: 16px 40px;
		font-size: 1rem;
	}

	.form-input.short-input {
		width: 100%;
	}

}

@media (max-width: 1024px) and (min-width: 769px) {
	.training-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

/* アニメーション */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

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