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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ===== Typography ===== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== Common Components ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 20px;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ===== CTA Buttons - SNSボタンもCTAスタイルに統一 ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: auto;
    width: auto;
}

.cta-button.primary {
    background: linear-gradient(135deg, #B4D455, #9BC53D);
    color: white;
    box-shadow: 0 8px 30px rgba(180, 212, 85, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(180, 212, 85, 0.5);
    background: linear-gradient(135deg, #9BC53D, #8AB62F);
}

.cta-button.secondary {
    background: white;
    color: #B4D455;
    border: 2px solid #B4D455;
}

.cta-button.secondary:hover {
    background: #B4D455;
    color: white;
    box-shadow: 0 8px 25px rgba(180, 212, 85, 0.3);
}

.cta-button i {
    font-size: 1.2rem;
}

/* ===== Hero Section - オーバーレイ削除 ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* オーバーレイ削除 - filter: brightness(0.5); */
}

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

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* シャドウ強化 */
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); /* シャドウ追加 */
}

/* ヒーローボタン：横並び配置 */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons .cta-button {
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* ボタンにシャドウ追加 */
}

.hero-buttons .cta-button:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* ホバー時のシャドウ強化 */
}

/* 外部求人サイトリンク：横並び配置 */
.external-links {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6); /* 背景を少し薄く */
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.external-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.external-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.external-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.2); /* 背景を少し明るく */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3); /* ボーダーを少し明るく */
    min-width: 140px;
    justify-content: center;
}

.external-button:hover {
    background: rgba(255, 255, 255, 0.3); /* ホバー時の背景を明るく */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* シャドウ追加 */
}

.external-button i {
    font-size: 1.2rem;
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* シャドウ追加 */
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    margin-top: 10px;
    animation: scroll-animation 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* グローエフェクト */
}

@keyframes scroll-animation {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
.instagram-section {
  margin-bottom: 40px;
  padding: 2rem 0;
  background: #f8f9fa;          /* サイト全体と同じ淡いグレー背景 */
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(180, 212, 85, 0.10); /* グリーン系シャドウ配合 */
  border: 2px solid #B4D455;    /* ブランドグリーンのボーダーでアクセント */
}

.instagram-section h2 {
  text-align: center;
  color: #B4D455;               /* 見出しはブランドのグリーン */
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 1.5px;
}

.instagram-section > div {
  display: flex;
  justify-content: center;
}

.instagram-section iframe.snapwidget-widget {
  border: none;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  height: 400px;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(38, 167, 225, 0.12); /* アクセントで青みを少し加える */
}

/* タブレット対応 */
@media (max-width: 900px) {
  .instagram-section iframe.snapwidget-widget {
    max-width: 100%;
    height: 320px;
  }
}

/* スマートフォン対応 */
@media (max-width: 600px) {
  .instagram-section {
    padding: 1rem 0.5rem;
    margin-bottom: 24px;
  }
  .instagram-section iframe.snapwidget-widget {
    height: 200px;
  }
  .instagram-section h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

/* ===== Work Overview Section - フルワイド ===== */
.work-overview {
    padding: 6rem 0;
    background: #f8f9fa;
}

.work-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}

.work-item.reverse {
    direction: rtl;
}

.work-item.reverse > * {
    direction: ltr;
}

.work-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.work-text {
    padding: 3rem;
    background: white;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-text h3 {
    margin-bottom: 1rem;
    color: #333;
}

.work-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.work-text ul {
    list-style: none;
    padding: 0;
}

.work-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.work-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #B4D455;
    font-weight: bold;
}

.support-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.point {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #B4D455;
}

.point strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #B4D455;
}

.point span {
    font-size: 0.9rem;
    color: #666;
}

/* ===== 1日の流れセクション：右テキスト + 左スライドショー ===== */
.daily-flow {
    padding: 6rem 0;
    background: white;
}

.flow-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* 左側：スライドショー */
.flow-slideshow {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 600px;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

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

.dot:hover {
    background: rgba(180, 212, 85, 0.8);
}

/* 右側：テキストフロー */
.flow-text-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    height: 600px;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.flow-text-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #B4D455;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-text-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flow-time {
    font-size: 1.1rem;
    font-weight: bold;
    color: #B4D455;
    margin-bottom: 0.5rem;
}

.flow-text-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.flow-text-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.flow-arrow-down {
    text-align: center;
    color: #B4D455;
    font-size: 1.2rem;
    margin: 0.5rem 0;
    animation: bounce-vertical 2s infinite;
}

@keyframes bounce-vertical {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* カスタムスクロールバー */
.flow-text-container::-webkit-scrollbar {
    width: 6px;
}

.flow-text-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.flow-text-container::-webkit-scrollbar-thumb {
    background: #B4D455;
    border-radius: 10px;
}

.flow-text-container::-webkit-scrollbar-thumb:hover {
    background: #9BC53D;
}

/* ===== 社員の声：横長カード統一 + 画像・文章配置交互 ===== */
.employee-voices {
    padding: 6rem 0;
    background: #f8f9fa;
}

.voices-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.voice-card {
    display: grid;
    grid-template-columns: 1fr 300px; /* 左文章、右画像 */
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
    height: 300px; /* 横長の高さを固定 */
}

.voice-card.reverse {
    grid-template-columns: 300px 1fr; /* 左画像、右文章 */
}

.voice-card:hover {
    transform: translateY(-5px);
}

.voice-image {
    width: 100%;
    height: 300px; /* カードの高さと統一 */
    overflow: hidden;
}

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

.voice-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 300px; /* カードの高さと統一 */
}

.voice-header {
    margin-bottom: 1rem;
}

.voice-header h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.3rem;
}

.voice-header p {
    color: #666;
    font-size: 0.9rem;
}

.voice-qa {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.question {
    color: #B4D455;
    font-weight: 500;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.answer {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    border-left: 3px solid #B4D455;
    font-size: 0.9rem;
}

/* ===== やりがい・成長機会：コンテナ幅制限追加 ===== */
.growth-opportunities {
    position: relative;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

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

.growth-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.growth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.growth-content {
    position: relative;
    z-index: 2;
}

.growth-content h2 {
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.growth-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.growth-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.growth-point h3 {
    margin-bottom: 1rem;
    color: #B4D455;
}

.growth-point p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Recruitment Info Section - 単一表 ===== */
.recruitment-info {
    padding: 6rem 0;
    background: white;
}

.requirements-table {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

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

.requirements-table table td {
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.requirements-table table td:first-child {
    font-weight: 500;
    color: #333;
    width: 30%;
    background: white;
}

.requirements-table table td:last-child {
    color: #666;
}

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

/* ===== 福利厚生セクション ===== */
.benefits {
    padding: 6rem 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #B4D455;
}

.benefit-card i {
    font-size: 3rem;
    color: #B4D455;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== 採用フロー：正方形カード統一 + 矢印追加 ===== */
.recruitment-flow {
    padding: 6rem 0;
    background: white;
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 180px;  /* 正方形の幅 */
    height: 180px; /* 正方形の高さ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #B4D455;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
}

.step-content p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}

.step-arrow {
    color: #B4D455;
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

/* ===== Entry Section ===== */
.entry-section {
    padding: 6rem 0;
    background: #f8f9fa;
    text-align: center;
}

.entry-content {
    max-width: 600px;
    margin: 0 auto;
}

.entry-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.entry-content > p {
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.entry-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* お問い合わせセクション：外部求人サイトボタン */
.external-entry-buttons {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #B4D455;
}

.external-entry-text {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.external-entry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.external-entry-grid .cta-button {
    width: 100%;
    max-width: 250px;
    justify-content: center;
}

.external-entry-grid .cta-button i {
    margin-right: 0.5rem;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* ===== Mobile Fixed CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-cta-button {
    width: 100%;
    display: block;
    padding: 1rem;
    background: linear-gradient(135deg, #B4D455, #9BC53D);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

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

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

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

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

/* ===== JavaScript用のアニメーション ===== */
@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25) !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .cta-button {
        min-width: 140px;
        font-size: 1rem;
        padding: 0.9rem 1.3rem;
    }
    
    .external-buttons {
        gap: 0.8rem;
    }
    
    .external-button {
        min-width: 120px;
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
    
    .work-item {
        grid-template-columns: 1fr;
    }
    
    .work-item.reverse {
        direction: ltr;
    }
    
    .work-image {
        height: 300px;
    }
    
    .work-text {
        height: auto;
        padding: 2rem;
    }
    
    .flow-main-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-slideshow {
        height: 300px;
    }
    
    .flow-text-container {
        height: auto;
        max-height: 500px;
        padding: 1.5rem;
    }
    
    .flow-text-item {
        padding: 1rem;
    }
    
    .voice-card {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .voice-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .voice-image {
        height: 200px;
    }
    
    .voice-content {
        height: auto;
        padding: 1.5rem;
    }
    
    .growth-points {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        width: 200px;
        height: 200px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .entry-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .entry-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .external-entry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .external-entry-buttons {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .entry-section {
        padding-bottom: 8rem;
    }
    
    .requirements-table {
        padding: 1rem;
    }
    
    .requirements-table table td {
        padding: 1rem;
    }
    
    .requirements-table table td:first-child {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .external-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .external-button {
        width: 100%;
        max-width: 200px;
    }
    
    .external-links {
        padding: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .flow-slideshow {
        height: 250px;
    }
    
    .flow-text-container {
        padding: 1rem;
        max-height: 400px;
    }
    
    .flow-text-item {
        padding: 0.8rem;
    }
    
    .slideshow-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .work-overview,
    .daily-flow,
    .employee-voices,
    .growth-opportunities,
    .recruitment-info,
    .benefits,
    .recruitment-flow,
    .entry-section {
        padding: 4rem 0;
    }
    
    .voice-content {
        padding: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .step {
        width: 180px;
        height: 180px;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content h3 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.75rem;
    }
    
    .external-entry-buttons {
        padding: 1rem;
    }
    
    .external-entry-text {
        font-size: 0.9rem;
    }
    
    .external-entry-grid .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

/* ===== Accessibility & Performance ===== */
@media (prefers-contrast: high) {
    .cta-button.primary {
        background: #000;
        color: #fff;
    }
    
    .cta-button.secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-line {
        animation: none;
    }
    
    .flow-arrow-down {
        animation: none;
    }
}

/* ===== Print Styles ===== */
@media print {
    .hero-buttons,
    .external-links,
    .mobile-cta,
    .scroll-indicator {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 50vh;
    }
    
    section {
        page-break-inside: avoid;
    }
}
