/* フォーム全体のレイアウト */
#estimateForm {
    background-color: #ffffff;
    padding:15px 50px;
    border-radius: 20px;
    box-shadow: 0 0 40px  rgba(126, 191, 204, 0.356);
    max-width: 1000px;
    margin:5px auto;
    margin-bottom: 80px auto;
 /* フォーム内のテキストやボタンを中央揃え */
    font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  border:3px solid #25459c;
 box-shadow:  #000000;
	text-align:center;
}

/* 見出しのスタイル */
#estimateForm h2 {
    text-align: center;
    font-size: 28px;
    color: #25459c;
    margin-bottom: 35px;
    
}

/* ラベルのスタイル */
#estimateForm label {
    margin: 15px;
    font-weight: bold;
    color: #000000;
	text-align:left;
}

/* セレクトボックスとインプットフィールドのスタイル */
#estimateForm select,
#estimateForm input[type="number"] {

    padding: 5px;
    margin-bottom: 15px;
    border: 1px solid #25459c;
    border-radius: 5px;
    box-sizing: border-box;
	width: 40%;
}

/* ボタンのスタイル */
#estimateForm input[type="submit"] {
  text-align:center;
	
    
}
#estimate_send {
	text-align:center;
	 border-radius: 30px; /* 丸みの調整 */
	 background-color: #ff4848;
    color: white;
    border: none;
    padding: 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 30px; /* 丸みの調整 */
    cursor: pointer;
    border:solid  2px;
     margin-top: 20px;
    margin-bottom: 50px;
}
#estimate_group{
	 display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}   

/* ボタンのホバースタイル */
#estimateForm input[type="submit"]:hover {
    background-color: #ff7979;
}

/* 入力ホバースタイル */
#estimateForm select:hover {
    background-color: #f3faff;
}

/* 事業所ホバースタイル */
#estimateForm input[type="number"]:hover {
    background-color: #f3faff;
}

/* １０秒簡単文字 */
#estimatesubtitle  {
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
    width: auto;
    text-align: center;
    font-weight: bold;
}

#estimatestrong {
    font-size: 26px;
    color: #ff5555;
    padding:3px;
    
}

/* 注意書き */
#estimateattention {
    color: #727577;
    font-size: 12px ;
    margin-bottom: 10px;
  
   
}

/* メディアクエリでモバイルに対応2 */
@media   (max-width: 860px ) and (min-width: 769px ){
    #estimateForm h2 {
      
        font-size: 22px;
       
        
    }
	#estimateForm select,
#estimateForm input[type="number"] {
	width: 100%;
}
}

/* メディアクエリでモバイルに対応 */
@media (max-width: 768px) {
    #estimateForm h2 {
       
        font-size: 22px;
       
        
    }
    #estimateForm {
       
        padding: 10px;
     
    }
 #estimateForm select,
#estimateForm input[type="number"] {
	width: 100%;
}

}