/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* フォーム送信ボタンを「全幅」にしない */
input[type="submit"],button[type="submit"] {  
  width: auto; /* 中身のテキストに合わせた幅にする */  
 display: inline-block;　/* ブロックではなく「ボタンらしい」幅に */  
 max-width: 260px;/* 最大幅だけゆるく制限（お好みで） */}

/* すべてのHubSpotフォームの幅を最大1000pxに制限し中央寄せ */
.hs-form {  
  max-width: 1000px;  /* フォーム全体の最大幅 */  
  width: 100%; /* 画面が狭い場合は1000pxまで縮む */  
  margin: 0 auto;     /* 中央寄せ */}