/* === about.css (修正版) === */

/* --- 基本設定 --- */
body {
    margin: 0;
    font-family: 'League Spartan', 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #fff;
}
a {
    color: inherit;
    text-decoration: none;
}

/* --- ヘッダーの個別設定 --- */
.page-header {
    background-color: transparent;
    border-bottom: none;
}

/* --- ファーストビュー (aboutセクション) --- */
.first-view {
    padding-top: 149px;
    padding-bottom: 100px;
    box-sizing: border-box; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('/images/common/WALL.jpg');
    background-size: cover;
    background-position: center;
    margin-top: -49px; 
}
.first-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(242, 243, 237, 0.5);
}
.first-view-content {
    position: relative;
    z-index: 2;
}
.first-view h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 48px;
    font-weight: 500;
    margin: 0 0 40px 0;
}
.profile-photo {
    width: 379px;
    height: 514px;
    object-fit: cover;
}
.name {
    margin: 30px 0 0 0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
}
.name .en-name {
    font-family: 'League Spartan', sans-serif;
    display: block;
}

/* --- プロフィール詳細 (SECONDセクション) --- */
.profile-details {
    padding: 120px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bio {
    width: 834px;
    max-width: 100%;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 60px 0;
}
.profile-details .section-title {
    width: 834px;
    max-width: 100%;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.profile-details .section-title::before {
    content: '';
    display: block;
    width: 15px;
    height: 6px;
    background-color: #333;
}
.skills-area, .genre-area {
    width: 834px;
    max-width: 100%;
    margin-bottom: 24px;
}
.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 40px;
    align-items: center;
    padding-left: 27px;
    box-sizing: border-box;
}
.skills-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 400; 
}
.skills-list img {
    width: 34px;
    height: 32px;
    filter: brightness(0) invert(1) brightness(0.2);
}
.skills-list li:nth-child(2) img {
    width: 35px;
    height: 33px;
}
.genre-list {
    font-size: 20px;
    font-weight: 400; 
    margin: 0;
    padding-left: 27px;
    box-sizing: border-box;
}


/* ===============================================
   スマートフォン用のスタイル (画面幅が768px以下の場合)
   =============================================== */
@media (max-width: 768px) {

    .first-view {
        padding-top: 87px;
        padding-bottom: 50px;
        box-sizing: border-box;
        margin-top: -37px;
    }
    .first-view h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .profile-photo {
        width: 280px;
        height: 380px;
    }
    .name {
        font-size: 20px;
        margin-top: 12px;
    }

    .profile-details {
        padding: 80px 40px;
    }
    .bio {
        font-size: clamp(14px, 4.2vw, 16px);
        width: 100%;
        line-height: 1.7;
    }
    .profile-details .section-title {
        font-size: 18px;
        width: 100%;
    }
    .skills-area, .genre-area {
        width: 100%;
    }
    .skills-area {
        overflow-x: initial;
        padding-bottom: 0;
    }

    .skills-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 40px;
        padding-left: 27px;
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .skills-list img {
        width: 20px;
        height: 19px;
        object-fit: contain;
    }
    
    .skills-list li:nth-child(2) img {
        width: 22px;
        height: 25px;
    }

    .skills-list li {
        font-size: clamp(14px, 4.2vw, 16px);
    }
    .genre-list {
        font-size: clamp(14px, 4.2vw, 16px);
        padding-left: 27px;
        box-sizing: border-box;
    }
}


/* ===============================================
   さらに狭いスマートフォン用のスタイル (画面幅が480px以下の場合)
   =============================================== */
@media (max-width: 480px) {
    .profile-details {
        padding: 80px 20px;
    }
}

/* ▼▼▼ 修正: フッターアイコンの個別指定を削除しました ▼▼▼ */
/* (このセクションは空になります) */
/* ▲▲▲ 修正ここまで ▲▲▲ */