@charset "utf-8";
/* CSS Document */

<!-- WordPress用統計セクション -->
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .recruitment-header {
            background: linear-gradient(135deg, #4a90b8 0%, #2c5aa0 100%);
            color: white;
            font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Times New Roman', serif;
            position: relative;
            overflow: hidden;
            min-height: 800px;
        }

        .header-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            height: 100%;
            display: block;
        }

        .text-content {
            position: absolute;
            left: 40px;
            top: 100px;
            z-index: 2;
        }

        .main-title {
            font-size: 7rem;
            font-weight: 300;
            line-height: 1;
            margin-bottom: 10px;
            letter-spacing: 0.3em;
            text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
            font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
        }

        .subtitle {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: 0.15em;
            opacity: 0.95;
            font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
        }

        .team-video-container {
            position: absolute;
            right: 20px;
            top: 100px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            z-index: 1;
        }

        .team-video-container:hover {
            transform: scale(1.02);
        }

        .team-video {
            width: 100%;
            height: auto;
            display: block;
            max-width: 600px;
            min-width: 500px;
            object-fit: cover;
        }

        /* 下部動画セクション */
        .bottom-videos {
            position: static;
            margin-top: 350px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: row;
            gap: 40px;
            z-index: 3;
            visibility: visible;
            opacity: 1;
            justify-content: center;
            align-items: flex-start;
            width: fit-content;
        }

        .video-container-wide {
            width: 800px;
            height: auto;
            border-radius: 12px;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .video-content-wide {
            width: 100%;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .video-text {
            color: white;
            text-align: center;
            font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
        }

        .video-text-heading {
            font-size: 2.2rem;
            font-weight: 300;
            line-height: 1.4;
            letter-spacing: 0.2em;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 8px;
        }

        .video-text-description {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 0.15em;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .video-container-tall {
            width: 400px;
            height: 480px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .video-container-wide:hover, .video-container-tall:hover {
            transform: scale(1.02);
        }

        .video-fill {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ダミー画像用のスタイル */
        .placeholder-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff6b6b, #ffa500);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            text-align: center;
            font-size: 1.2rem;
            letter-spacing: 0.1em;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .placeholder-team {
            width: 500px;
            height: 250px;
            background: linear-gradient(135deg, #87CEEB, #4682B4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

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

        .placeholder-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .placeholder-subtitle {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* レスポンシブデザイン */
        @media (max-width: 1024px) {
            .main-title {
                font-size: 5.5rem;
            }
            
            .subtitle {
                font-size: 2.8rem;
            }
            
            .header-container {
                padding: 30px 20px;
            }

            .text-content {
                left: 30px;
                top: 80px;
            }

            .team-video-container {
                right: 15px;
                top: 80px;
            }

            .team-video {
                max-width: 450px;
                min-width: 400px;
            }

            .bottom-videos {
                gap: 30px;
            }

            .video-container-wide {
                width: 600px;
                height: auto;
            }

            .video-content-wide {
                height: 190px;
            }

            .video-text-heading {
                font-size: 1.8rem;
            }

            .video-text-description {
                font-size: 1.4rem;
            }

            .video-container-tall {
                width: 300px;
                height: 360px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                position: static;
                display: flex;
                flex-direction: column;
                text-align: center;
                gap: 30px;
                padding: 30px 20px;
            }

            .text-content {
                position: static;
                transform: none;
                z-index: auto;
            }

            .team-video-container {
                position: static;
                transform: none;
                margin: 0 auto;
            }

            .main-title {
                font-size: 4rem;
                margin-bottom: 15px;
                letter-spacing: 0.2em;
            }

            .subtitle {
                font-size: 2rem;
                letter-spacing: 0.1em;
            }

            .team-video {
                max-width: 100%;
                width: 100%;
                height: auto;
            }

            .bottom-videos {
                position: static;
                transform: none;
                margin-top: 30px;
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .video-container-wide {
                width: 95%;
                max-width: 600px;
                height: auto;
            }

            .video-content-wide {
                height: 220px;
            }

            .video-text-heading {
                font-size: 1.5rem;
            }

            .video-text-description {
                font-size: 1.2rem;
            }

            .video-container-tall {
                width: 70%;
                max-width: 280px;
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2.8rem;
                letter-spacing: 0.15em;
            }

            .subtitle {
                font-size: 1.5rem;
                letter-spacing: 0.08em;
            }

            .header-container {
                padding: 20px 15px;
            }

            .video-container-wide {
                width: 95%;
                max-width: 400px;
                height: auto;
            }

            .video-content-wide {
                height: 160px;
            }

            .video-text-heading {
                font-size: 1.2rem;
            }

            .video-text-description {
                font-size: 1rem;
            }

            .video-container-tall {
                width: 70%;
                max-width: 250px;
                height: 300px;
            }
        }

        /* アニメーション効果 */
        .recruitment-header {
            animation: fadeIn 1.2s ease-out;
        }

        .main-title {
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        .subtitle {
            animation: slideInLeft 1s ease-out 0.6s both;
        }

        .team-video-container {
            animation: slideInRight 1s ease-out 0.9s both;
        }

        .bottom-videos {
            animation: none;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

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

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

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