/* Contactセクション全体 */
.contact-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

/* タイトルと線（About meと統一） */
.contact-title {
    font-size: 2.2rem;
    color: #222;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.contact-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    background-color: #004d40; /* かっこいい深い緑 */
    margin-top: 10px;
    border-radius: 10px;
}

/* 情報リストの並び */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 項目同士の間隔 */
}

/* 各項目のスタイル */
.info-item {
    display: flex;
    align-items: center;
    gap: 30px; /* ラベルとリンクの間隔 */
}

/* ラベル（Email, GitHubなど） */
.info-label {
    font-weight: bold;
    color: #004d40; /* 緑色でアクセント */
    width: 80px;    /* 幅を揃えて縦のラインを整える */
    font-size: 0.9rem;
    text-transform: uppercase; /* 大文字にしてプロっぽく */
    letter-spacing: 1px;
}

/* 実際のリンク */
.info-link {
    color: #444;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

/* マウスを乗せたとき */
.info-link:hover {
    color: #004d40;
    border-bottom: 1px solid #004d40;
}