@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}
h1 {
  	background: #dfefff;
  	box-shadow: 0px 0px 0px 5px #dfefff;
 	border: dashed 2px white;
  	padding: 0.2em 0.5em;
	text-align: center;
	color:#00008b;
	margin: 1rem 0;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 23px;
  }
}
.content {
	text-align: center;
	line-height: 3;
}
/*.txt {	
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
*/
/* <button> タグを使った submit ボタン */
button[type="submit"] {
  background-color: #009fe8;  /* 背景色 */
  color: white;               /* テキスト色 */
  padding: 5px 10px;         /* ボタン内の余白 */
  border: none;               /* 枠線なし */
  border-radius: 5px;         /* 角を丸く */
  font-size: 16px;            /* フォントサイズ */
  cursor: pointer;           /* ポインターカーソル */
  transition: background-color 0.3s ease; /* ホバー時のトランジション */
}

