.about-section {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 32px;
    margin-bottom: 24px;
}

.about-section h2 {
    font-size: 21px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.about-section p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 25px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    margin-top: 0;
}

.profile-details {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.profile-details-item {
    margin-bottom: 4px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.skill-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: #f0f0f0;
    color: #666;
    font-size: 15px;
    border-radius: 3px;
}

.experience-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.experience-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.experience-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.experience-company {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.experience-period {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.experience-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.contact-info li:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-right: 12px;
    display: inline-block;
    min-width: 100px;
}

.contact-value {
    color: #666;
}

.contact-value a {
    color: #333;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

/* 開発スキルセクション */
.skill-category {
    margin-bottom: 32px;
}

.skill-category h3 {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .skill-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .skill-grid {
        grid-template-columns: 1fr;
    }
}

.skill-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.skill-item:hover {
    background-color: #f5f5f5;
}

.skill-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    flex-shrink: 0;
}

.skill-info {
    flex: 1;
}

.skill-name {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.skill-years {
    font-size: 15px;
    color: #666;
}

.skill-level {
    font-size: 15px;
    color: #555;
    margin-top: 2px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.expertise-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e8f4f8;
    color: #2c5f7d;
    font-size: 15px;
    border-radius: 3px;
}

.project-item {
    margin-bottom: 24px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.project-title {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.project-period {
    font-size: 15px;
    color: #999;
    white-space: nowrap;
    margin-left: 16px;
}

.project-role {
    font-size: 17px;
    color: #666;
    margin-bottom: 8px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 14px;
    color: #666;
}

.tech-badge-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.project-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.project-description strong {
    color: #333;
    font-weight: 600;
}

.project-team {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 20px;
    }
    
    .about-section h2 {
        font-size: 19px;
    }
    
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 16px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 19px;
    }
    
    .skill-grid {
        grid-template-columns: 1fr;
    }
    
    .project-header {
        flex-direction: column;
    }
    
    .project-period {
        margin-left: 0;
        margin-top: 4px;
    }
}

/* Q&Aスタイル */
.qa-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.qa-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.qa-question {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: #fafafa;
    transition: background 0.2s;
    gap: 12px;
}

.qa-question:hover {
    background: #f0f0f0;
}

.qa-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #667eea;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.qa-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.qa-toggle {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #999;
    transition: transform 0.3s;
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.qa-answer.open {
    max-height: 2000px;
}

.qa-answer-inner {
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
}

.qa-answer-inner p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.qa-answer-inner strong {
    color: #333;
}

@media (max-width: 768px) {
    .qa-question {
        padding: 14px 16px;
        gap: 10px;
    }

    .qa-badge {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .qa-question-text {
        font-size: 15px;
    }

    .qa-answer-inner {
        padding: 16px;
    }

    .qa-answer-inner p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .qa-question {
        padding: 12px 14px;
    }

    .qa-question-text {
        font-size: 14px;
    }

    .qa-answer-inner {
        padding: 14px;
    }

    .qa-answer-inner p {
        font-size: 13px;
    }
}

/* 趣味ページスタイル */
.hobby-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hobby-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 24px;
    min-width: 140px;
}

.hobby-icon {
    font-size: 24px;
    line-height: 1;
}

.hobby-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hobby-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.hobby-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* 音楽カードスタイル */
.music-featured {
    margin-bottom: 8px;
}

.music-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.music-card.featured {
    background: linear-gradient(135deg, #f0f2ff 0%, #f8f9fa 100%);
    border-color: #c5cdf5;
}

.music-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.music-note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.music-note-icon.small {
    width: 32px;
    height: 32px;
    font-size: 14px;
    background: #8a9aef;
}

.music-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.music-artist {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.music-lyrics {
    background: #f8f8f8;
    border-left: 3px solid #667eea;
    padding: 14px 18px;
    margin-bottom: 14px;
    border-radius: 0 6px 6px 0;
}

.music-lyrics p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 8px;
}

.music-lyrics p:last-child {
    margin-bottom: 0;
}

.music-player {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

@media (max-width: 768px) {
    .hobby-list {
        gap: 12px;
    }

    .hobby-item {
        padding: 12px 18px;
        min-width: 120px;
    }

    .hobby-icon {
        font-size: 20px;
    }

    .hobby-name {
        font-size: 15px;
    }

    .music-card {
        padding: 14px 16px;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hobby-item {
        padding: 10px 14px;
        min-width: 100px;
    }

    .hobby-name {
        font-size: 14px;
    }

    .music-title {
        font-size: 15px;
    }
}

/* ライブ写真 */
.music-photos {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.music-photo {
    border-radius: 6px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.music-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 480px) {
    .music-photo {
        width: 100px;
        height: 100px;
    }
}
