/* 連絡先セクションのヘッダー */
.contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.contact-header h2 {
    margin: 0;
    display: inline-block;
}

/* ソーシャルリンクのコンテナ */
.contact-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ソーシャルアイコンのスタイル */
.social-icon {
    color: #666;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #666; /* デフォルト色を保持 */
}

/* GitHubアイコンのホバー時 */
.social-icon:hover i.fa-github {
    color: #24292e;
}

/* Twitterアイコンのホバー時 */
.social-icon:hover i.fa-twitter {
    color: #1da1f2;
}

/* メールアイコンのホバー時 */
.social-icon:hover i.fa-envelope {
    color: #ea4335;
}

/* アイコン自体の色も親要素から継承 */
.social-icon i {
    color: inherit;
}

/* メインコンテナの調整 */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* 基本的なスタイル */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.section {
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #f8f9fa;
    margin-top: 4rem;
}
