/* 連絡先カードのスタイル */
.contact-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(80,34,0,0.10);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 600px;
    width: 100%;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 1.1rem;
    word-break: break-all;
}
.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f7fa;
    box-shadow: 0 1px 4px rgba(80,34,0,0.07);
}
.contact-url a {
    color: #1a237e;
    text-decoration: underline;
    transition: color 0.18s;
    word-break: break-all;
}
.contact-url a:hover {
    color: var(--color-primary, #e67e22);
}
@media (max-width: 700px) {
    .contact-card {
        padding: 1rem 0.5rem;
        max-width: 100%;
    }
    .contact-row {
        font-size: 0.98rem;
        gap: 0.7rem;
    }
}

