/* #contactForm textarea のスタイル */
#contactForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    
    /* ▼ 修正点: リサイズを完全に無効化する ▼ */
    resize: none; 
    
    /* 最小の高さを設定することで、固定サイズになります */
    min-height: 150px; 
    height: 150px; /* 必要であればmin-heightと同じ値を設定 */
}