/* プロ紹介ページのメインスタイル */
.pro-main {
    padding-top: calc(73px + 48px);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.pro-section {
    padding: 6rem 4rem;
}

.pro-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* プロフィールカード */
.pro-profile {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.pro-profile-inner {
    display: flex;
    gap: 4rem;
    padding: 3rem;
    align-items: flex-start;
}

/* 画像コンテナ */
.pro-image-container {
    position: relative;
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.pro-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.image-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 2;
}

.image-nav {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.image-nav:hover {
    background: rgba(255, 255, 255, 0.9);
}

.image-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background: #fff;
}

.pro-badge {
    position: absolute;
    top: 2rem;
    left: 0;
    background: rgba(52, 152, 219, 0.9);
    color: #ffffff;
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    z-index: 2;
}

/* プロフィール内容 */
.pro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pro-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.pro-name {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.pro-achievements {
    display: flex;
    gap: 2rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: #666;
}

.achievement i {
    color: #f1c40f;
    font-size: 1.6rem;
}

/* プロフィール詳細 */
.pro-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pro-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* 動画セクション */
.pro-video-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.pro-video-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-description {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.video-description p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .pro-section {
        padding: 4rem 2rem;
    }

    .pro-profile-inner {
        flex-direction: column;
        gap: 3rem;
        padding: 0;
    }

    .pro-image-container {
        width: 100%;
        height: auto;
        max-height: 500px;
        border-radius: 0;
    }

    .pro-image-container img {
        width: 100%;
        height: 100%;
        max-height: 500px;
        object-fit: contain;
    }

    .pro-content {
        padding: 2rem;
    }

    .pro-name {
        font-size: 2.8rem;
    }

    .pro-achievements {
        flex-wrap: wrap;
    }

    .video-container {
        padding-top: 56.25%;
    }

    .pro-badge {
        font-size: 1.2rem;
        padding: 0.6rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .pro-section {
        padding: 3rem 1.5rem;
    }

    .pro-name {
        font-size: 2.4rem;
    }

    .pro-image-container {
        max-height: 400px;
    }

    .pro-image-container img {
        max-height: 400px;
    }

    .image-nav {
        width: 35px;
        height: 35px;
    }
} 