/* ===================================
   About Usページ - ぴにょぐらむphoto session
   =================================== */

/* フォント設定 */
body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ページ全体のレイアウト */
.about-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #F5F5F5;
    min-height: 100vh;
}

/* ヒーロームービーセクション */
.hero-video-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-video-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: 0;
    padding: 0;
    pointer-events: none;
    user-select: none;
}

/* セクション共通スタイル */
.company-intro-section,
.mission-section,
.vision-section,
.services-section,
.contact-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

/* 会社紹介セクション */
.company-intro-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-image-wrapper,
.mission-image-wrapper,
.vision-image-wrapper,
.services-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-image,
.mission-image,
.vision-image,
.services-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-content,
.mission-content,
.vision-content,
.services-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: center;
}

.intro-text,
.mission-text,
.vision-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

/* ミッションセクション */
.mission-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ビジョンセクション */
.vision-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* サービスセクション */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 24px;
    color: #C67DFF;
    width: 32px;
    text-align: center;
}

.service-item span {
    font-size: 16px;
    color: #0f172a;
    font-weight: 500;
}

/* お問い合わせセクション */
.contact-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #C67DFF, #5856D6);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(198, 125, 255, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(198, 125, 255, 0.4);
    background: linear-gradient(135deg, #5856D6, #C67DFF);
}

.contact-button i {
    font-size: 20px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .company-intro-section,
    .mission-section,
    .vision-section,
    .services-section,
    .contact-section {
        padding: 24px;
        margin: 24px 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .intro-text,
    .mission-text,
    .vision-text,
    .contact-description {
        font-size: 15px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-item {
        padding: 16px;
    }
    
    .contact-button {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .company-intro-section,
    .mission-section,
    .vision-section,
    .services-section,
    .contact-section {
        padding: 20px;
        margin: 20px 12px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .contact-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}


