@charset "UTF-8";
/* CSS Document */
/* フェードイン
****************************************/
body{
	animation: fadeIn 5s ease 0s 1 normal;
	-webkit-animation: fadeIn 5s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* フォーム共通
****************************************/
.main{
	margin: 0px auto;
	padding: 0px auto;
	white-space: nowrap;
	}

.hissu {
  color: #f00; }

body{
	font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
	line-height:1.5em;
}

h1 {
	font-family: 'Francois One', sans-serif;
	font-size:200%;
	font-weight:bold;
	color: #000;
	letter-spacing: 5px;
}

/*****************************************
●inquiry.css 画面の横幅が769px以上
****************************************/
@media screen and (min-width: 769px){

form{
	max-width: 769px;
	margin: 0 auto;
}

label {
  /* すべてのラベルを同じサイズにして、きちんと揃える */
  display: inline-block;
  width: 100px;
}

input, textarea, select {
  /* すべてのテキストフィールドのフォント設定を一致させる
     デフォルトで、textarea は等幅フォントが設定されている */
  font: 1em sans-serif;

  /* すべてのテキストフィールドを同じサイズにする */
  margin: 0px auto;
  padding: 0px auto;
  width: 250px;
  box-sizing: border-box;

  /* テキストフィールドのボーダーの外見を同一にする */
  border: 1px solid #999;
}

#formWrap {
	width:769px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:100%;

}
	
table.formTable{
	width:100%;
	margin:0px auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
	
button{
	margin: 0px auto;
	}

.button {
	margin: 20px auto;
 	border: 1px solid #00A3FF;
 	border-radius: 10px;
 	background-color: #00A3FF;
 	padding: 20px;
 	text-align: center;
	font-size: 100%;
	width: 150px;
	color: white;

}

}

/*****************************************
●tablet.css 画面の横幅が768pxまで
****************************************/
@media screen and (max-width: 768px){
	
form{
	margin: 0 auto;
}

label {
  /* すべてのラベルを同じサイズにして、きちんと揃える */
  display: inline-block;
  width: 100%;
  text-align: right;
}
	
input, textarea select {
  /* すべてのテキストフィールドのフォント設定を一致させる
     デフォルトで、textarea は等幅フォントが設定されている */
  font: 1em sans-serif;

  /* すべてのテキストフィールドを同じサイズにする */
  margin: 0px auto;
  padding: 0px auto;
  width: 100%;
  box-sizing: border-box;

  /* テキストフィールドのボーダーの外見を同一にする */
  border: 1px solid #999;
}
	
 #formWrap {
	margin:0px 100px;
	width: auto;

} 
	

table.formTable th, table.formTable td {
	border:1px solid #ccc;
	margin: 0px auto;
	width:auto;
} 
table.formTable th {
	margin: 0px auto;
	margin-top:5px;
	border-bottom:0;
	font-weight:normal;
	background:#efefef;
}

.button {
 	border: 1px solid #00A3FF;
 	border-radius: 10px;
 	background-color: #00A3FF;
 	padding: 20px;
 	text-align: center;
	font-size: 100%;
	width: 150px;
	margin: 20px auto;
	color: white;

}
}

/*****************************************
●smart.css 画面の横幅が640pxまで
****************************************/
@media screen and (max-width:640px){
	
form{
	margin: 0px auto;
	padding: 0px auto;
}
	
input, textarea select {
  /* すべてのテキストフィールドのフォント設定を一致させる
     デフォルトで、textarea は等幅フォントが設定されている */
  font: 1em sans-serif;

  /* すべてのテキストフィールドを同じサイズにする */
  margin: 0px auto;
  padding: 0px auto;
  width: 80%;
  box-sizing: border-box;

  /* テキストフィールドのボーダーの外見を同一にする */
  border: 1px solid #999;
}
	
#formWrap {
	width:80%;
	margin:0 auto;

}

table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}

.button {
	border: 1px solid #00A3FF;
 	border-radius: 10px;
 	background-color: #00A3FF;
 	padding: 20px;
 	text-align: center;
	font-size: 100%;
	width: 150px;
	color: white;
	margin: 10px auto;
	
}
}