.table_text {
    color: #CBD5E1; /* 本文カラー */
    font-size: 1em;
    margin: 0;
    line-height: 1.5;
    word-break: break-word; /* 長い文字列の折り返し */
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 各連絡先ブロック間の隙間 */
}

.table_list {
    background-color: rgba(16, 185, 129, 0.05); /* 薄いアクセントカラー背景 */
    padding: 20px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.table_list:hover {
    background-color: rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    cursor: pointer; /* ブロック全体がクリック可能であることを示唆 */
}

.list-title {
    color: #A7F3D0; /* アクセントカラー */
    font-weight: 600;
    font-size: 1.1em;
    margin: 0 0 10px 0; /* 下にマージン */
    line-height: 1.4;
}

.list-string {
    color: #CBD5E1; /* 本文カラー */
    font-size: 1em;
    margin: 0;
    line-height: 1.5;
    word-break: break-word; /* 長い文字列の折り返し */
}

/* 連絡先文字列内のリンクスタイル */
.list-string a.contact-link {
    color: inherit; /* 親(.list-string)の色を継承 */
    transition: color 0.2s ease;
}

.list-string a.contact-link:hover {
    color: #E2E8F0; /* ホバーで少し明るく */
    text-decoration: underline; /* ホバーで下線を表示 */
}

footer {
    background-color: #111;
    color: #fff;
    padding: 20px 10px; /* ユーザーのCSSから */
    text-align: center;
    margin-top: auto;
}