/* 
 * Be Prime 採用ランディングページ CSS
 * SAVE POINT: Initial CSS structure created - 2026-01-22
 * 
 * 制作履歴:
 * - 2026-01-22: 初期CSS作成
 * - レスポンシブ対応（768px以下でスマホ表示）
 * - PC/スマホでのレイアウト切替実装
 */

/* ========================================
   リセット & 基本設定
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ========================================
   コンテナ
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ========================================
   セクション共通
   ======================================== */
.section {
    padding: 80px 0;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #667eea;
}

.section-title-large .title-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 10px;
    color: #764ba2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #fff;
    font-weight: bold;
}

.section-subtitle-large {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #e91e63;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.company-logo {
    display: flex;
    align-items: center;
}

.company-logo img {
    height: 40px;
    width: auto;
    max-width: 250px;
}

.company-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

.nav-list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-list li a {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-list li a:hover {
    color: #3498db;
}

/* ========================================
   ファーストビュー
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    margin-bottom: 0;
}

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ボタン
   ======================================== */
.btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: #fff;
    color: #f5576c;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    border: 2px solid #f5576c;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
    background: #fff;
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.2rem;
}

.tel-number {
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* ========================================
   写真スライダー
   ======================================== */
.slider-section {
    padding: 40px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 20px;
    animation: slideLeft 30s linear infinite;
}

.slide {
    flex: 0 0 auto;
}

.slide img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-track:hover {
    animation-play-state: paused;
}

/* ========================================
   イントロダクション
   ======================================== */
.intro-section {
    background: #fff;
    padding: 60px 0;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 2;
    text-align: center;
    color: #333;
    font-weight: 500;
}

/* ========================================
   こんな人歓迎
   ======================================== */
.welcome-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.welcome-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.welcome-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.welcome-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.welcome-text {
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================
   メリット（1カラム・センターレイアウト）
   ======================================== */
.merit-section {
    background: #f8f9fa;
}

.merit-image {
    margin-bottom: 40px;
}

.merit-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.merit-content {
    text-align: center;
}

.merit-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.merit-text-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e74c3c;
    margin-top: 30px;
}

/* ========================================
   仕事内容（ジグザグレイアウト）
   ======================================== */
.business-section {
    background: #fff;
}

.business-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.business-item:last-child {
    margin-bottom: 0;
}

.business-item-reverse {
    flex-direction: row-reverse;
}

.business-image {
    flex: 0 0 45%;
}

.business-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.business-content {
    flex: 1;
}

.business-step {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.business-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.business-highlight {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e91e63;
    display: inline-block;
    line-height: 1.6;
}

/* ========================================
   CTAセクション
   ======================================== */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* ========================================
   研修制度（3カラムカード）
   ======================================== */
.training-section {
    background: #f8f9fa;
}

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

.training-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.training-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.training-content {
    padding: 30px;
}

.training-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.training-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   スタートアップの魅力（3カラムカード）
   ======================================== */
.startup-section {
    background: #fff;
}

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

.startup-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.startup-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.startup-content {
    padding: 30px;
}

.startup-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.startup-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   メンバー紹介（3カラムカード）
   ======================================== */
.member-section {
    background: #f8f9fa;
}

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

.member-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.member-image img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.member-content {
    padding: 25px;
}

.member-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.member-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* メンバー紹介のサブタイトルだけ黒色 */
.member-section .section-subtitle {
    color: #333;
}

/* ========================================
   会社概要
   ======================================== */
.company-section {
    background: #fff;
}

.company-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.company-table th {
    background: #f8f9fa;
    font-size: 1.1rem;
    font-weight: bold;
    color: #667eea;
    width: 180px;
    vertical-align: top;
}

.company-table td {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   募集要項
   ======================================== */
.requirements-section {
    background: #f8f9fa;
}

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

.requirement-item {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.requirement-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
}

.requirement-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    margin: 25px 0 15px;
}

.requirement-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.requirement-text-large {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 20px;
}

.requirement-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.requirement-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

/* 職場の雰囲気紹介動画セクション */
.atmosphere-video-section {
    margin-top: 60px;
}

.atmosphere-video-section .container {
    margin-bottom: 30px;
}

.atmosphere-video-section .requirement-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.atmosphere-video-section .requirement-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* 職場の雰囲気紹介動画 */
.atmosphere-video {
    text-align: center;
    margin-top: 0;
    padding: 0;
}

.atmosphere-video .youtube-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 アスペクト比 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.atmosphere-video .youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.atmosphere-video video {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   動画セクション（YouTube埋め込み）
   ======================================== */
.movie-section {
    background: #f8f9fa;
}

.movie-description {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.movie-container {
    max-width: 900px;
    margin: 0 auto;
}

.movie-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.movie-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* ========================================
   おわりに（1カラム・センターレイアウト）
   ======================================== */
.closing-section {
    background: #fff;
}

.closing-image {
    margin-bottom: 40px;
}

.closing-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.closing-content {
    text-align: center;
}

.closing-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.closing-signature {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
}

/* ========================================
   応募フォーム
   ======================================== */
.contact-section {
    background: #f8f9fa;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.required {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-left: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

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

.form-message {
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-company {
    flex: 1;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-address {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-tel {
    font-size: 1.1rem;
}

.footer-tel a {
    color: #3498db;
    transition: color 0.3s ease;
}

.footer-tel a:hover {
    color: #2980b9;
}

.footer-nav {
    flex: 1;
}

.footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer-list li a {
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #3498db;
}

.footer-copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   レスポンシブ対応（768px以下）
   ======================================== */
@media (max-width: 768px) {
    /* ヘッダー */
    .company-logo img {
        height: 30px;
        max-width: 180px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-list li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    /* ファーストビュー */
    .hero {
        min-height: 500px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 15px 40px;
        font-size: 1rem;
    }

    /* スライダー */
    .slide img {
        width: 300px;
        height: 225px;
    }

    /* セクション */
    .section {
        padding: 60px 0;
    }

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

    .section-title-large .title-sub {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    /* イントロダクション */
    .intro-section {
        padding: 40px 0;
    }

    .intro-text {
        font-size: 1.1rem;
        line-height: 1.9;
    }

    /* こんな人歓迎 */
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* 仕事内容（スマホ：必ず画像→文章の順） */
    .business-item,
    .business-item-reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .business-image {
        flex: 0 0 auto;
        width: 100%;
        order: 1;
    }

    .business-content {
        order: 2;
    }

    .business-step {
        font-size: 1.3rem;
    }

    .business-text {
        font-size: 1rem;
    }

    /* CTAボックス */
    .cta-box {
        padding: 40px 20px;
    }

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

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* 研修制度 */
    .training-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* スマホ：画像→文章の順 */
    .training-card {
        display: flex;
        flex-direction: column;
    }

    .training-image {
        order: 1;
    }

    .training-content {
        order: 2;
        padding: 25px;
    }

    /* スタートアップの魅力 */
    .startup-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* スマホ：画像→文章の順 */
    .startup-card {
        display: flex;
        flex-direction: column;
    }

    .startup-image {
        order: 1;
    }

    .startup-content {
        order: 2;
        padding: 25px;
    }

    /* メンバー紹介 */
    .member-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* スマホ：画像→文章の順 */
    .member-card {
        display: flex;
        flex-direction: column;
    }

    .member-image {
        order: 1;
    }

    .member-content {
        order: 2;
    }

    /* 会社概要 */
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .company-table th {
        padding-bottom: 10px;
        border-bottom: none;
    }

    .company-table td {
        padding-top: 0;
        padding-bottom: 20px;
    }

    /* 募集要項 */
    .requirement-item {
        padding: 30px 20px;
    }

    .requirement-title {
        font-size: 1.3rem;
    }

    .requirement-text {
        font-size: 1rem;
    }

    /* フォーム */
    .contact-form {
        padding: 30px 20px;
    }

    /* フッター */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-list {
        grid-template-columns: 1fr;
    }
    /* 職場の雰囲気動画 */
    .atmosphere-video .youtube-wrapper {
        max-width: 100%;
        border-radius: 8px;
    }
}

/* SAVE POINT: CSS completed with responsive design - 2026-01-22 */