
/* SNSカードの共通デザイン */
.sns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.sns-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e1e1e1;
    border-radius: 16px;
    background: #fff;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.sns-card img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 8px;
}

.sns-card .name {
    font-weight: bold;
    font-size: 16px;
}

.sns-card .id {
    font-size: 13px;
    color: #666;
}