/* Enhanced Styles with Modern Design and Animations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #10b981;
  --accent-color: #8b5cf6;
  --text-primary: #1e3a8a;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f3f4f6;
  --bg-accent: #eff6ff;
  --border-color: #dbeafe;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  text-align: center;
  color: white;
}

.spinner-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.spinner-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: 4rem;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0.25rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

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

.logo-icon-wrapper {
  position: relative;
  overflow: hidden;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.logo-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.logo:hover .logo-icon-wrapper::after {
  left: 100%;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-primary);
  transition: var(--transition);
}

.nav {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.nav-link:hover {
  color: var(--primary-dark);
  background-color: var(--bg-accent);
}

.nav-indicator {
  position: absolute;
  bottom: -0.5rem;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
  transition: var(--transition);
  opacity: 0;
}

.nav-link:hover + .nav-indicator,
.nav-link.active + .nav-indicator {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transform: translateY(-100%);
  transition: var(--transition);
  z-index: 49;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background-color: var(--bg-accent);
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

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

.btn-white {
  background: white;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-animated {
  position: relative;
  overflow: hidden;
}

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

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

.btn-glow {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.btn-icon {
  transition: var(--transition);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  padding: 3rem 0 6rem;
  background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.badge {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  animation: none !important;
}

.badge-pulse {
  display: none;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 1rem 0;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-text {
  border-right: 3px solid var(--primary-color);
  animation: typing 3s steps(20) infinite, blink 0.75s step-end infinite;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: var(--primary-color); }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 1.25rem 1.75rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast); /* ボタン以外は高速トランジション */
}

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

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-icon-blue {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.stat-icon-green {
  background: linear-gradient(135deg, var(--secondary-color), #059669);
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Perfect For Section */
.perfect-for {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-secondary);
  max-width: 32rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.perfect-for-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 64rem;
  margin: 0 auto;
  transition: var(--transition);
}

.perfect-for-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25);
}

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

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: var(--transition-fast); /* ボタン以外は高速トランジション */
}

.checklist-item:hover {
  background-color: var(--bg-accent);
  transform: translateX(8px);
}

.check-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  box-shadow: var(--shadow-md);
}

.check-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

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

.checklist-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.perfect-for-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 96rem;
  margin: 0 auto;
}

.benefit-card {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-fast); /* ボタン以外は高速トランジション */
  position: relative;
  overflow: hidden;
  background: white;
}

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

.benefit-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover .benefit-hover-effect {
  opacity: 1;
}

.benefit-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.benefit-icon-blue {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.benefit-icon-green {
  background: linear-gradient(135deg, var(--secondary-color), #059669);
}

.benefit-icon-purple {
  background: linear-gradient(135deg, var(--accent-color), #7c3aed);
}

.benefit-title {
  font-size: 1.375rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Process Section */
.process {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast); /* ボタン以外は高速トランジション */
}

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

.process-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.process-step:hover .process-icon {
  transform: scale(1.1);
}

.process-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.process-icon-blue {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.process-icon-green {
  background: linear-gradient(135deg, var(--secondary-color), #059669);
}

.process-icon-purple {
  background: linear-gradient(135deg, var(--accent-color), #7c3aed);
}

.process-icon-orange {
  background: linear-gradient(135deg, #ea580c, #dc2626);
}

.process-number {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  box-shadow: var(--shadow-md);
}

.process-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.process-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
}

.process-note {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Job List Link */
.job-list-link {
  padding: 2rem 0;
  background-color: white;
  border-top: 1px solid #e5e7eb;
}

.job-list-link-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-list-link-content {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: var(--transition);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--bg-accent);
  border: 1px solid var(--border-color);
}

.job-list-link-content:hover {
  color: var(--primary-dark);
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.job-list-icon,
.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition);
}

.job-list-link-content:hover .arrow-icon {
  transform: translateX(4px);
}

/* Requirements Section */
.requirements {
  padding: 4rem 0;
  background-color: white;
}

.requirements-section {
  margin-bottom: 4rem;
}

.requirements-table {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.requirement-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  transition: var(--transition-fast); /* ボタン以外は高速トランジション */
}

.requirement-row:hover {
  background-color: var(--bg-accent);
  border-radius: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.requirement-row:last-child {
  border-bottom: none;
}

.requirement-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.requirement-value {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-category-title {
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.faq-category-blue {
  background: linear-gradient(135deg, var(--bg-accent), #dbeafe);
  color: var(--text-primary);
}

.faq-category-green {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #166534;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  background: white;
  transition: var(--transition-fast); /* ボタン以外は高速トランジション */
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 0.75rem 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Apply Section */
.apply {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

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

.apply-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.apply-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
}

.apply-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.apply-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

.apply-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation-delay: 4s;
}

.apply-content {
  position: relative;
  z-index: 2;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.apply-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.apply-description {
  font-size: 1.375rem;
  color: #bfdbfe;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

.apply-cta {
  margin: 1rem 0;
}

.apply-footer {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.apply-link {
  color: white;
  text-decoration: underline;
  transition: var(--transition);
  font-weight: 500;
}

.apply-link:hover {
  color: #bfdbfe;
}

.apply-note {
  font-size: 0.875rem;
  color: #bfdbfe;
}

/* Footer */
.footer {
  padding: 0;
  background-color: var(--text-primary);
  color: white;
}

.company-contact-bar {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 1.5rem 0;
  margin-bottom: 0;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

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

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #dbeafe;
  transition: var(--transition);
}

.contact-item:hover svg {
  color: white;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: #dbeafe;
  text-decoration: underline;
}

.footer-content {
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

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

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  color: white;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-description {
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

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

.footer-info-label {
  font-weight: 600;
  color: white;
  font-size: 0.875rem;
}

.footer-info-value {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.4;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--primary-color);
}

.footer-copyright {
  font-size: 0.875rem;
  color: #bfdbfe;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.scroll-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile-only break line */
.mobile-only {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

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

  .stat-card {
    width: 100%;
    max-width: 300px;
  }

  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .requirement-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

  .apply-description {
    font-size: 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

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

  .perfect-for-card {
    padding: 1.5rem;
  }

  .requirements-table {
    padding: 1.5rem;
  }

  .faq-category-title {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
  }

  /* モバイルでのみ改行を表示 */
  .mobile-only {
    display: inline;
  }
}

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Counter Animation */
.counter {
  transition: all 0.3s ease;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
